This class is not part of the public API.

Class: java.util.ResourceBundleEnumeration

Implements an Enumeration that combines elements from a Set and an Enumeration. Used by ListResourceBundle and PropertyResourceBundle.

Inheritance

Superclass tree: Implements:

Methods

  • ResourceBundleEnumerationtop

    ResourceBundleEnumeration(Set<String> set, Enumeration<String> enumeration)
    Constructs a resource bundle enumeration.
    Parameters:
    @param set an set providing some elements of the enumeration
    @param enumeration an enumeration providing more elements of the enumeration. enumeration may be null.
    Google Code Search
    Stack Overflow
  • hasMoreElementstop

    public boolean hasMoreElements()
    Tests if this enumeration contains more elements.
    Return:
    @return true if and only if this enumeration object contains at least one more element to provide; false otherwise.
    Specified by:
    hasMoreElements from Enumeration<String>
    Google Code Search
    Stack Overflow
  • nextElementtop

    public String nextElement()
    Returns the next element of this enumeration if this enumeration object has at least one more element to provide.
    Return:
    @return the next element of this enumeration.
    Specified by:
    nextElement from Enumeration<String>
    Google Code Search
    Stack Overflow

Fields