javax.faces.component
static class: UIComponentBase.FacetsMapEntrySetIterator [javadoc |
source]
java.lang.Object
javax.faces.component.UIComponentBase$FacetsMapEntrySetIterator
All Implemented Interfaces:
Iterator
Method from javax.faces.component.UIComponentBase$FacetsMapEntrySetIterator Summary: |
---|
hasNext, next, remove |
Methods from java.lang.Object: |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method from javax.faces.component.UIComponentBase$FacetsMapEntrySetIterator Detail: |
public boolean hasNext() {
return (iterator.hasNext());
}
|
public Entry<String, UIComponent> next() {
last = new FacetsMapEntrySetEntry(map, iterator.next());
return (last);
}
|
public void remove() {
if (last == null) {
throw new IllegalStateException();
}
map.remove(((Map.Entry) last).getKey());
last = null;
}
|