当前页面:
在线文档首页 >
NetBeans API Javadoc 4.1.0
Table (NetBeans VCS API) - NetBeans API Javadoc 4.1.0
org.netbeans.modules.vcscore.util
Class Table
java.lang.Object
java.util.AbstractMap
java.util.HashMap
java.util.LinkedHashMap
org.netbeans.modules.vcscore.util.Table
- All Implemented Interfaces:
- Cloneable, Map, Serializable
- public class Table
- extends LinkedHashMap
Table class implements the Map interface. It guarantees that the order of keys will be the same
all the time Table exists. The order is the same in which the pairs were inserted into the table.
- See Also:
- Serialized Form
Constructor Summary |
Table()
|
Table(int initialCapacity)
|
Table
public Table()
Table
public Table(int initialCapacity)
clear
public void clear()
clone
public Object clone()
containsKey
public boolean containsKey(Object key)
containsValue
public boolean containsValue(Object value)
entrySet
public Set entrySet()
equals
public boolean equals(Object o)
get
public Object get(Object key)
hashCode
public int hashCode()
isEmpty
public boolean isEmpty()
keySet
public Set keySet()
put
public Object put(Object key,
Object value)
putAll
public void putAll(Map m)
remove
public Object remove(Object key)
size
public int size()
toString
public String toString()
values
public Collection values()
keys
public Enumeration keys()
- Deprecated. use keyset().iterator() instead