iterator = entries;
Closes this enumeration.
Determines whether there are any more elements in the enumeration. return iterator.hasNext();
return iterator.hasNext();
Retrieves the next element in the enumeration. return nextElement();
return nextElement();
NamingEntry entry = (NamingEntry) iterator.next(); return new NameClassPair(entry.name, entry.value.getClass().getName());