java.util
Class ResourceBundleEnumeration
java.lang.Object
  |
  +--java.util.ResourceBundleEnumeration
- All Implemented Interfaces: 
- Enumeration
-  class ResourceBundleEnumeration- extends Object- implements Enumeration
Implements an Enumeration that combines elements from a Set and
 an Enumeration. Used by ListResourceBundle and PropertyResourceBundle.
 
 
| Method Summary | 
|  boolean | hasMoreElements()Enabled:  Tests if this enumeration contains more elements.
 | 
|  Object | nextElement()Enabled:  Returns the next element of this enumeration if this enumeration
 object has at least one more element to provide.
 | 
 
| Methods inherited from class java.lang.Object | 
| clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait | 
 
 
set
Set set
iterator
Iterator iterator
enumeration
Enumeration enumeration
next
Object next
ResourceBundleEnumeration
ResourceBundleEnumeration(Set set,
                          Enumeration enumeration)
- Constructs a resource bundle enumeration.
 
- Parameters:
- set- an set providing some elements of the enumeration
- enumeration- an enumeration providing more elements of the enumeration.
        enumeration may be null.
hasMoreElements
public boolean hasMoreElements()
- Description copied from interface: Enumeration
- Enabled:  Tests if this enumeration contains more elements.
 
- 
- Specified by:
- hasMoreElementsin interface- Enumeration
 
- 
- Returns:
- trueif and only if this enumeration object
           contains at least one more element to provide;- falseotherwise.
 
nextElement
public Object nextElement()
- Description copied from interface: Enumeration
- Enabled:  Returns the next element of this enumeration if this enumeration
 object has at least one more element to provide.
 
- 
- Specified by:
- nextElementin interface- Enumeration
 
- 
- Returns:
- the next element of this enumeration.
 
comments? 