Example usage for Java javax.naming NamingEnumeration fields, constructors, methods, implement or subclass
The text is from its open source code.
void | close() Closes this enumeration. |
boolean | hasMore() Determines whether there are any more elements in the enumeration. |
boolean | hasMoreElements() Tests if this enumeration contains more elements. |
T | next() Retrieves the next element in the enumeration. |
E | nextElement() Returns the next element of this enumeration if this enumeration object has at least one more element to provide. |
String | toString() Returns a string representation of the object. |