站内搜索: 请输入搜索关键词
当前页面: 在线文档首页 > 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
  extended byjava.util.AbstractMap
      extended byjava.util.HashMap
          extended byjava.util.LinkedHashMap
              extended byorg.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)
           
 
Method Summary
 void clear()
           
 Object clone()
           
 boolean containsKey(Object key)
           
 boolean containsValue(Object value)
           
 Set entrySet()
           
 boolean equals(Object o)
           
 Object get(Object key)
           
 int hashCode()
           
 boolean isEmpty()
           
 Enumeration keys()
          Deprecated. use keyset().iterator() instead
 Set keySet()
           
 Object put(Object key, Object value)
           
 void putAll(Map m)
           
 Object remove(Object key)
           
 int size()
           
 String toString()
           
 Collection values()
           
 
Methods inherited from class java.util.LinkedHashMap
removeEldestEntry
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

Table

public Table()

Table

public Table(int initialCapacity)
Method Detail

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


 

Built on May 4 2005.  |  Portions Copyright 1997-2005 Sun Microsystems, Inc. All rights reserved.