Use is subject to License Terms. Your use of this web site or any of its content or software indicates your agreement to be bound by these License Terms.

Copyright © 2006 Sun Microsystems, Inc. All rights reserved.

CDC 1.1.2

Uses of Interface
java.util.Enumeration

Packages that use Enumeration
java.lang Provides classes that are fundamental to the design of the Java programming language. 
java.net Provides the classes for implementing networking applications. 
java.security Provides the classes and interfaces for the security framework. 
java.util Contains the collections framework, legacy collection classes, event model, date and time facilities, internationalization, and miscellaneous utility classes (a string tokenizer, a random-number generator, and a bit array). 
java.util.jar Provides classes for reading and writing the JAR (Java ARchive) file format, which is based on the standard ZIP file format with an optional manifest file. 
java.util.zip Provides classes for reading and writing the standard ZIP and GZIP file formats. 
 

Uses of Enumeration in java.lang
 

Methods in java.lang that return Enumeration
 Enumeration ClassLoader.getResources(String name)
          Finds all the resources with the given name.
protected  Enumeration ClassLoader.findResources(String name)
          Returns an enumeration of URL objects representing all the resources with the given name.
static Enumeration ClassLoader.getSystemResources(String name)
          Finds all resources of the specified name from the search path used to load classes.
 

Uses of Enumeration in java.net
 

Methods in java.net that return Enumeration
 Enumeration URLClassLoader.findResources(String name)
          Returns an Enumeration of URLs representing all of the resources on the URL search path having the specified name.
 Enumeration NetworkInterface.getInetAddresses()
          Convenience method to return an Enumeration with all or a subset of the InetAddresses bound to this network interface.
static Enumeration NetworkInterface.getNetworkInterfaces()
          Returns all the interfaces on this machine.
 

Uses of Enumeration in java.security
 

Methods in java.security that return Enumeration
 Enumeration Permissions.elements()
          Returns an enumeration of all the Permission objects in all the PermissionCollections in this Permissions object.
abstract  Enumeration PermissionCollection.elements()
          Returns an enumeration of all the Permission objects in the collection.
 

Uses of Enumeration in java.util
 

Classes in java.util that implement Enumeration
 class StringTokenizer
          The string tokenizer class allows an application to break a string into tokens.
 

Methods in java.util that return Enumeration
 Enumeration Vector.elements()
          Returns an enumeration of the components of this vector.
abstract  Enumeration ResourceBundle.getKeys()
          Returns an enumeration of the keys.
 Enumeration PropertyResourceBundle.getKeys()
          Implementation of ResourceBundle.getKeys.
 Enumeration Properties.propertyNames()
          Returns an enumeration of all the keys in this property list, including distinct keys in the default property list if a key of the same name has not already been found from the main properties list.
 Enumeration ListResourceBundle.getKeys()
          Implementation of ResourceBundle.getKeys.
 Enumeration Hashtable.keys()
          Returns an enumeration of the keys in this hashtable.
 Enumeration Hashtable.elements()
          Returns an enumeration of the values in this hashtable.
abstract  Enumeration Dictionary.keys()
          Returns an enumeration of the keys in this dictionary.
abstract  Enumeration Dictionary.elements()
          Returns an enumeration of the values in this dictionary.
static Enumeration Collections.enumeration(Collection c)
          Returns an enumeration over the specified collection.
 

Methods in java.util with parameters of type Enumeration
static ArrayList Collections.list(Enumeration e)
          Returns an array list containing the elements returned by the specified enumeration in the order they are returned by the enumeration.
 

Uses of Enumeration in java.util.jar
 

Methods in java.util.jar that return Enumeration
 Enumeration JarFile.entries()
          Returns an enumeration of the ZIP file entries.
 

Uses of Enumeration in java.util.zip
 

Methods in java.util.zip that return Enumeration
 Enumeration ZipFile.entries()
          Returns an enumeration of the ZIP file entries.
 


CDC 1.1.2

Copyright © 2006 Sun Microsystems, Inc. All rights reserved. Use is subject to License Terms. Your use of this web site or any of its content or software indicates your agreement to be bound by these License Terms.

For more information, please consult the JSR 218 specification.