Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Interface
java.util.Enumeration

Uses of Enumeration in java.util
 

Classes in java.util that implement Enumeration
private  class Hashtable.EntryEnumerator
          Enumeration view of the entries in this Hashtable, providing sequential access to its elements.
private  class Hashtable.KeyEnumerator
          Enumeration view of this Hashtable, providing sequential access to its elements.
private  class Hashtable.ValueEnumerator
          Enumeration view of this Hashtable, providing sequential access to its values.
 class StringTokenizer
          This class splits a string into tokens.
 

Methods in java.util that return Enumeration
abstract  Enumeration Dictionary.elements()
          Returns an Enumeration of the values in this Dictionary.
abstract  Enumeration Dictionary.keys()
          Returns an Enumeration of the keys in this Dictionary
 Enumeration Hashtable.keys()
          Return an enumeration of the keys of this table.
 Enumeration Hashtable.elements()
          Return an enumeration of the values of this table.
 Enumeration Properties.propertyNames()
          Returns an enumeration of all keys in this property list, including the keys in the default property list.
 Enumeration Vector.elements()
          Returns an Enumeration of the elements of this Vector.
static Enumeration Collections.enumeration(Collection c)
          Returns an Enumeration over a collection.
abstract  Enumeration ResourceBundle.getKeys()
          This method should return all keys for which a resource exists; you should include the enumeration of any parent's keys, after filtering out duplicates.
 Enumeration ListResourceBundle.getKeys()
          This method should return all keys for which a resource exists.
 Enumeration PropertyResourceBundle.getKeys()
          This method should return all keys for which a resource exists.
 Enumeration PropertyPermissionCollection.elements()
          Enumerate over the collection.
 

Methods in java.util with parameters of type Enumeration
static ArrayList Collections.list(Enumeration e)
          Returns an ArrayList holding the elements visited by a given Enumeration.