Method Summary |
|
public boolean | add(Object o) Throws UnsupportedOperationException. |
public boolean | addAll(Collection coll) Throws UnsupportedOperationException. |
public AttributeSet | addElement(Object element) |
public void | clear() Throws UnsupportedOperationException. |
public boolean | contains(Object o) |
public boolean | containsAll(Collection coll) |
static AttributeSet | createKeySet(Hashtable hashtable) Package only. |
public Enumeration | elements() Return an Enumeration of the elements in this set. |
public boolean | equals(Object rhs) |
public boolean | equals(AttributeSet rhs) |
public AttributeSet | intersectWith(AttributeSet s) Return an AttributeSet which is the intersection of
this set with the given set. |
public boolean | isEmpty() Return true if the number of elements in this set is 0. |
public Iterator | iterator() Return an Iterator with the elements in this set. |
public boolean | remove(Object o) Throws UnsupportedOperationException. |
public boolean | removeAll(Collection coll) Throws UnsupportedOperationException. |
public boolean | retainAll(Collection coll) Throws UnsupportedOperationException. |
public int | size() Return the number of elements in this set. |
public AttributeSet | subtract(AttributeSet s) Return an AttributeSet with the elements in this set which
are not in the given set. |
public Object[] | toArray(Object[] storage) Fill in the given array with the elements in this set.
Parameters: storage - an array to fill with this set's elements.The array cannot be null. |
public Object[] | toArray() Return an array with the elements in this set. |
public AttributeSet | unionWith(AttributeSet s) Return an AttributeSet which is the union of
this set with the given set. |