|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectjava.util.Dictionary
dods.util.SortedTable
SortedTable looks exactly like Hashtable but preserves the insertion order of elements. While this results in slower performance, it ensures that the DAS will always be printed in the same order in which it was read.
| Constructor Summary | |
SortedTable()
|
|
| Method Summary | |
Object |
elementAt(int index)
Returns the element at the specified index. |
Enumeration |
elements()
Returns an enumeration of the values in this table. |
Object |
get(Object key)
Returns the value to which the key is mapped in this table. |
Vector |
getElementVector()
Returns a Vector containing the elements in the SortedTable. |
Object |
getKey(int index)
Returns the key at the specified index. |
boolean |
isEmpty()
Tests if this table is empty. |
Enumeration |
keys()
Returns an enumeration of the keys in this table. |
Object |
put(Object key,
Object value)
Maps the specified key to the specified value in this table. |
Object |
remove(Object key)
Removes the key (and its corresponding value) from this table. |
int |
size()
Returns the number of keys in this table. |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
public SortedTable()
| Method Detail |
public int size()
public boolean isEmpty()
public Enumeration keys()
public Enumeration elements()
public Object get(Object key)
key - a key in this table.
public Object getKey(int index)
index - the index to return
public Object elementAt(int index)
index - the index to return
public Object put(Object key,
Object value)
throws NullPointerException
key - the keyvalue - the value
NullPointerExceptionpublic Object remove(Object key)
key - the key to remove.
public Vector getElementVector()
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||