| Package | Description |
|---|---|
| java.lang |
Back 2 Browser Bytecode Translator
Copyright (C) 2012 Jaroslav Tulach
|
| java.util |
Back 2 Browser Bytecode Translator
Copyright (C) 2012 Jaroslav Tulach
|
| Modifier and Type | Method and Description |
|---|---|
protected Enumeration<URL> |
ClassLoader.findResources(String name)
Returns an enumeration of
URL objects
representing all the resources with the given name. |
Enumeration<URL> |
ClassLoader.getResources(String name)
Finds all the resources with the given name.
|
static Enumeration<URL> |
ClassLoader.getSystemResources(String name)
Finds all resources of the specified name from the search path used to
load classes.
|
| Modifier and Type | Class and Description |
|---|---|
class |
StringTokenizer
The string tokenizer class allows an application to break a
string into tokens.
|
| Modifier and Type | Method and Description |
|---|---|
Enumeration<E> |
Vector.elements()
Returns an enumeration of the components of this vector.
|
Enumeration<V> |
Hashtable.elements()
Returns an enumeration of the values in this hashtable.
|
abstract Enumeration<V> |
Dictionary.elements()
Returns an enumeration of the values in this dictionary.
|
static <T> Enumeration<T> |
Collections.emptyEnumeration()
Returns an enumeration that has no elements.
|
static <T> Enumeration<T> |
Collections.enumeration(Collection<T> c)
Returns an enumeration over the specified collection.
|
abstract Enumeration<String> |
ResourceBundle.getKeys()
Returns an enumeration of the keys.
|
Enumeration<String> |
PropertyResourceBundle.getKeys()
Returns an
Enumeration of the keys contained in
this ResourceBundle and its parent bundles. |
Enumeration<K> |
Hashtable.keys()
Returns an enumeration of the keys in this hashtable.
|
abstract Enumeration<K> |
Dictionary.keys()
Returns an enumeration of the keys in this dictionary.
|
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.
|
| Modifier and Type | Method and Description |
|---|---|
static <T> ArrayList<T> |
Collections.list(Enumeration<T> e)
Returns an array list containing the elements returned by the
specified enumeration in the order they are returned by the
enumeration.
|
Copyright © 2019 API Design. All Rights Reserved.