| com.ibm.richtext.textlayout.attributes.Map
All known Subclasses: com.ibm.richtext.textlayout.attributes.AttributeMap,
Map | public interface Map (Code) | | A Map is a collection of key-value pairs (or entries), where each
key in the Map is unique. This interface is a subset of the
JDK 1.2 Map interface. It is used by JDK 1.1-compatible code.
|
Method Summary | |
public boolean | containsKey(Object key) Return true if this Map contains the given key. | public Object | get(Object key) Return the value of the given key.
the value of the given key. | public boolean | isEmpty() Return true if this Map has no entries. | public int | size() Return the number of entries in this Map. |
containsKey | public boolean containsKey(Object key)(Code) | | Return true if this Map contains the given key.
true if this Map contains the given key |
get | public Object get(Object key)(Code) | | Return the value of the given key.
the value of the given key. If the key does not havea value in this Map, null is returned. |
isEmpty | public boolean isEmpty()(Code) | | Return true if this Map has no entries.
true if this Map has no entries |
size | public int size()(Code) | | Return the number of entries in this Map.
the number of entries in this Map |
|
|