Package | Description |
---|---|
java.io |
Input/Output support
|
java.util |
Utilities
|
Constructor and Description |
---|
SequenceInputStream(Enumeration<? extends InputStream> e)
This method creates a new
SequenceInputStream that obtains
its list of subordinate InputStream s from the specified
Enumeration |
Modifier and Type | Class and Description |
---|---|
class |
StringTokenizer
This class splits a string into tokens.
|
Modifier and Type | Method and Description |
---|---|
Enumeration<T> |
Vector.elements()
Returns an Enumeration of the elements of this Vector.
|
Enumeration<V> |
Hashtable.elements()
Return an enumeration of the values of this table.
|
abstract Enumeration<V> |
Dictionary.elements()
Returns an Enumeration of the values in this Dictionary.
|
static <T> Enumeration<T> |
Collections.enumeration(Collection<T> c)
Returns an Enumeration over a collection.
|
Enumeration<K> |
Hashtable.keys()
Return an enumeration of the keys of this table.
|
abstract Enumeration<K> |
Dictionary.keys()
Returns an Enumeration of the keys in this Dictionary
|
Enumeration<?> |
Properties.propertyNames()
Returns an enumeration of all keys in this property list, including
the keys in the default property list.
|
Modifier and Type | Method and Description |
---|---|
static <T> ArrayList<T> |
Collections.list(Enumeration<T> e)
Returns an ArrayList holding the elements visited by a given
Enumeration.
|