Methods Summary |
---|
public boolean | contains(java.lang.Object value)Check if the table contains a particular value.
initAll();
return super.contains(value);
|
public boolean | containsKey(java.lang.Object value)Check if the table contains a particular key.
initAll();
return super.containsKey(value);
|
public boolean | containsValue(java.lang.Object value)Delegates to {@link #contains contains}.
return contains(value);
|
public java.util.Enumeration | elements()Get a enumeration over the elements.
initAll();
return super.elements();
|
protected void | initAll()Used to be part of init. It must be done once - but
we delay it until we do need _all_ tasks. Otherwise we
just get the tasks that we need, and avoid costly init.
if (initAllDone) {
return;
}
initAllDone = true;
|
public boolean | isEmpty()Check if the table is empty.
initAll();
return super.isEmpty();
|
public java.util.Enumeration | keys()Get an enumeration over the keys.
initAll();
return super.keys();
|
public int | size()Get the size of the table.
initAll();
return super.size();
|