org.apache.tools.ant.util
public class LazyHashtable extends Hashtable
Since: Ant 1.6
| Field Summary | |
|---|---|
| protected boolean | initAllDone |
| Constructor Summary | |
|---|---|
| LazyHashtable() No arg constructor. | |
| Method Summary | |
|---|---|
| boolean | contains(Object value)
Check if the table contains a particular value. |
| boolean | containsKey(Object value)
Check if the table contains a particular key. |
| boolean | containsValue(Object value)
Delegates to contains. |
| 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. |
| Enumeration | keys()
Get an enumeration over the keys. |
| int | size()
Get the size of the table. |
Parameters: value the value to look for.
Returns: true if the table contains the value.
Parameters: value the key to look for.
Returns: true if the table contains key.
contains.Parameters: value the value to look for.
Returns: true if the table contains the value.
Returns: an enumeration.
Returns: true if it is.
Returns: an enumeration.
Returns: the size.