API Overview API Index Package Overview Direct link to this page
Apache Ant 1.7.1
  org.apache.tools.ant.util. LazyHashtable View Source
Author(s)
Since
Ant 1.6
Version
Serial
Hierarchy
 Object
      Dictionary
          Hashtable
              LazyHashtable
Implements
Subclasses
Description
public class LazyHashtable
  Hashtable implementation that allows delayed construction of expensive objects All operations that need access to the full list of objects will call initAll() first.
See also:   
Constructors
public LazyHashtable ()
No arg constructor.
Methods
Hide/Show inherited methods
publicsynchronized void clear () [Inherited From java.util.Hashtable]
publicsynchronized java.lang.Object clone () [Inherited From java.util.Hashtable]
public boolean contains (java.lang.Object value) [Overrides java.util.Hashtable]
  Check if the table contains a particular value.
public boolean containsKey (java.lang.Object value) [Overrides java.util.Hashtable]
  Check if the table contains a particular key.
public boolean containsValue (java.lang.Object value) [Overrides java.util.Hashtable]
  Delegates to contains.
public java.util.Enumeration elements () [Overrides java.util.Hashtable] [Specified in java.util.Dictionary]
  Get a enumeration over the elements.
public java.util.Set<java.util.Map.Entry< K, V>> entrySet () [Inherited From java.util.Hashtable]
publicsynchronized boolean equals (java.lang.Object arg0) [Inherited From java.util.Hashtable]
publicsynchronized V get (java.lang.Object arg0) [Inherited From java.util.Hashtable] [Specified in java.util.Dictionary]
publicsynchronized int hashCode () [Inherited From java.util.Hashtable]
protected void initAll ()
  Used to be part of init.
public boolean isEmpty () [Overrides java.util.Hashtable] [Specified in java.util.Dictionary]
  Check if the table is empty.
public java.util.Enumeration keys () [Overrides java.util.Hashtable] [Specified in java.util.Dictionary]
  Get an enumeration over the keys.
public java.util.Set< K> keySet () [Inherited From java.util.Hashtable]
publicsynchronized V put ( K arg0, V arg1) [Inherited From java.util.Hashtable] [Specified in java.util.Dictionary]
publicsynchronized void putAll (java.util.Map<java.lang.Object, java.lang.Object> arg0) [Inherited From java.util.Hashtable]
protected void rehash () [Inherited From java.util.Hashtable]
publicsynchronized V remove (java.lang.Object arg0) [Inherited From java.util.Hashtable] [Specified in java.util.Dictionary]
public int size () [Overrides java.util.Hashtable] [Specified in java.util.Dictionary]
  Get the size of the table.
publicsynchronized java.lang.String toString () [Inherited From java.util.Hashtable]
public java.util.Collection< V> values () [Inherited From java.util.Hashtable]
Fields
Hide/Show inherited fields
protected boolean initAllDone
Nested Classes
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar