javax.faces.component
static class: UIComponentBase.FacetsMapValues [javadoc |
source]
java.lang.Object
java.util.AbstractCollection<UIComponent>
javax.faces.component.UIComponentBase$FacetsMapValues
All Implemented Interfaces:
Collection
Methods from java.util.AbstractCollection: |
---|
add, addAll, clear, contains, containsAll, isEmpty, iterator, remove, removeAll, retainAll, size, toArray, toArray, toString |
Methods from java.lang.Object: |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method from javax.faces.component.UIComponentBase$FacetsMapValues Detail: |
public boolean add(UIComponent o) {
throw new UnsupportedOperationException();
}
|
public boolean addAll(Collection c) {
throw new UnsupportedOperationException();
}
|
public void clear() {
map.clear();
}
|
public boolean isEmpty() {
return (map.isEmpty());
}
|
public Iterator<UIComponent> iterator() {
return (new FacetsMapValuesIterator(map));
}
|
public int size() {
return (map.size());
}
|