org.apache.struts2.util
类 AttributeMap
java.lang.Object
org.apache.struts2.util.AttributeMap
- 所有已实现的接口:
- Map
public class AttributeMap
- extends Object
- implements Map
A Map that holds 4 levels of scope.
The scopes are the ones known in the web world.:
- Page scope
- Request scope
- Session scope
- Application scope
A object is searched in the order above, starting from page and ending at application scope.
AttributeMap
public AttributeMap(Map context)
isEmpty
public boolean isEmpty()
- 指定者:
- 接口
Map
中的 isEmpty
clear
public void clear()
- 指定者:
- 接口
Map
中的 clear
containsKey
public boolean containsKey(Object key)
- 指定者:
- 接口
Map
中的 containsKey
containsValue
public boolean containsValue(Object value)
- 指定者:
- 接口
Map
中的 containsValue
entrySet
public Set entrySet()
- 指定者:
- 接口
Map
中的 entrySet
get
public Object get(Object key)
- 指定者:
- 接口
Map
中的 get
keySet
public Set keySet()
- 指定者:
- 接口
Map
中的 keySet
put
public Object put(Object key,
Object value)
- 指定者:
- 接口
Map
中的 put
putAll
public void putAll(Map t)
- 指定者:
- 接口
Map
中的 putAll
remove
public Object remove(Object key)
- 指定者:
- 接口
Map
中的 remove
size
public int size()
- 指定者:
- 接口
Map
中的 size
values
public Collection values()
- 指定者:
- 接口
Map
中的 values
toString
public String toString()
- 覆盖:
- 类
Object
中的 toString