public class LazyHashtable
extends java.util.Hashtable
Modifier and Type | Field and Description |
---|---|
protected boolean |
initAllDone |
Constructor and Description |
---|
LazyHashtable()
No arg constructor.
|
Modifier and Type | Method and Description |
---|---|
boolean |
contains(java.lang.Object value)
Check if the table contains a particular value.
|
boolean |
containsKey(java.lang.Object value)
Check if the table contains a particular key.
|
boolean |
containsValue(java.lang.Object value)
Delegates to
contains . |
java.util.Enumeration |
elements()
Get a enumeration over the elements.
|
protected void |
initAll()
Used to be part of init.
|
boolean |
isEmpty()
Check if the table is empty.
|
java.util.Enumeration |
keys()
Get an enumeration over the keys.
|
int |
size()
Get the size of the table.
|
protected void initAll()
public java.util.Enumeration elements()
elements
in class java.util.Hashtable
public boolean isEmpty()
isEmpty
in interface java.util.Map
isEmpty
in class java.util.Hashtable
public int size()
size
in interface java.util.Map
size
in class java.util.Hashtable
public boolean contains(java.lang.Object value)
contains
in class java.util.Hashtable
value
- the value to look for.public boolean containsKey(java.lang.Object value)
containsKey
in interface java.util.Map
containsKey
in class java.util.Hashtable
value
- the key to look for.public boolean containsValue(java.lang.Object value)
contains
.containsValue
in interface java.util.Map
containsValue
in class java.util.Hashtable
value
- the value to look for.public java.util.Enumeration keys()
keys
in class java.util.Hashtable