org.apache.geronimo.naming.java
class: ReadOnlyContext.ListBindingEnumeration [javadoc |
source]
java.lang.Object
org.apache.geronimo.naming.java.ReadOnlyContext.LocalNamingEnumeration
org.apache.geronimo.naming.java.ReadOnlyContext$ListBindingEnumeration
All Implemented Interfaces:
NamingEnumeration
Method from org.apache.geronimo.naming.java.ReadOnlyContext$ListBindingEnumeration Summary: |
---|
next, nextElement |
Methods from java.lang.Object: |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method from org.apache.geronimo.naming.java.ReadOnlyContext$ListBindingEnumeration Detail: |
public Object next() throws NamingException {
return nextElement();
}
|
public Object nextElement() {
Map.Entry entry = getNext();
return new Binding((String) entry.getKey(), entry.getValue());
}
|