|
Oracle Application Development Framework Model and Business Components Java API Reference
10g Release 3 (10.1.3) B16005-01 |
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
A Collection that contains no duplicate elements. More formally, Sets contain no pair of elements e1 and e2 such that e1.equals(e2), and at most one null element. As implied by its name, this interface models the mathematical set abstraction.
The Set interface places additional stipulations, beyond those inherited from the Collection interface, on the contracts of all constructors and of the add, equals and hashCode methods. Declarations for other inherited methods are also included here for convenience. (The specifications accompanying these declarations have been tailored to Set, but they do not contain any additional stipulations.)
The additional stipulation on constructors is, not surprisingly, that all constructors must create a Set that contain no duplicate elements (as defined above).
Implemented by HashSet, ArraySet.
Collection, List, HashSet, ArraySet, AbstractSet| Method Summary | |
boolean |
add(java.lang.Object o)Adds the specified element to this Set if it is not already present (optional operation). |
boolean |
addAll(Collection c)Adds all of the elements in the specified Collection to this Set if they're not already present (optional operation). |
void |
clear()Removes all of the elements from this Set (optional operation). |
boolean |
contains(java.lang.Object o)Returns true if this Set contains the specified element. |
boolean |
containsAll(Collection c)Returns true if this Set contains all of the elements of the specified Collection. |
boolean |
equals(java.lang.Object o)Compares the specified Object with this Set for equality. |
int |
hashCode()Returns the hash code value for this Set. |
boolean |
isEmpty()Returns true if this Set contains no elements. |
Iterator |
iterator()Returns an Iterator over the elements in this Set. |
boolean |
remove(java.lang.Object o)Removes the given element from this Set if it is present (optional operation). |
boolean |
removeAll(Collection c)Removes from this Set all of its elements that are contained in the specified Collection (optional operation). |
boolean |
retainAll(Collection c)Retains only the elements in this Set that are contained in the specified Collection (optional operation). |
int |
size()Returns the number of elements in this Set (its cardinality). |
java.lang.Object[] |
toArray()Returns an array containing all of the elements in this Set. |
| Method Detail |
public int size()
size in interface Collectionpublic boolean isEmpty()
isEmpty in interface Collectionpublic boolean contains(java.lang.Object o)
e such that (o==null ? e==null : o.equals(e)).contains in interface Collectiono - element whose presence in this Collection is to be tested.public Iterator iterator()
iterator in interface Collectionpublic java.lang.Object[] toArray()
toArray in interface Collectionpublic boolean add(java.lang.Object o)
o, to the Set if the Set contains no element e such that (o==null ? e==null : o.equals(e)). If the Set already contains the specified element, the call leaves the Set unchanged (and returns false). In combination with the restriction on constructors, this ensures that Sets never contain duplicate elements.
This stipulation should not be construed to imply that Sets must accept all elements; Sets have the option of refusing to add any particular element, including null, and throwing an exception, as described in the specification for Collection.add. Individual Set implementations should clearly document any restrictions on the the elements that they may contain.
add in interface Collectiono - element to be added to this Set.UnsupportedOperationException - add is not supported by this Set.java.lang.ClassCastException - class of the specified element prevents it from being added to this Set.java.lang.IllegalArgumentException - some aspect of this element prevents it from being added to this Set.public boolean remove(java.lang.Object o)
e such that (o==null ? e==null : o.equals(e)), if the Set contains such an element. Returns true if the Set contained the specified element (or equivalently, if the Set changed as a result of the call). (The Set will not contain the specified element once the call returns.)remove in interface Collectiono - object to be removed from this Set, if present.UnsupportedOperationException - remove is not supported by this Set.public boolean containsAll(Collection c)
containsAll in interface CollectionCollection.contains(Object)public boolean addAll(Collection c)
addAll in interface Collectionc - elements to be inserted into this Collection.UnsupportedOperationException - addAll is not supported by this Set.java.lang.ClassCastException - class of some element of the specified Collection prevents it from being added to this Set.java.lang.IllegalArgumentException - some aspect of some element of the specified Collection prevents it from being added to this Set.add(Object)public boolean retainAll(Collection c)
retainAll in interface Collectionc - elements to be retained in this Collection.UnsupportedOperationException - retainAll is not supported by this Collection.remove(Object)public boolean removeAll(Collection c)
removeAll in interface Collectionc - elements to be removed from this Collection.UnsupportedOperationException - removeAll is not supported by this Collection.remove(Object)public void clear()
clear in interface CollectionUnsupportedOperationException - clear is not supported by this Set.public boolean equals(java.lang.Object o)
equals in interface Collectiono - Object to be compared for equality with this Set.public int hashCode()
s1.equals(s2) implies that s1.hashCode()==s2.hashCode() for any two Sets s1 and s2, as required by the general contract of Object.hashCode.hashCode in interface CollectionObject.hashCode(), Object.equals(Object), equals(Object)
|
Oracle Application Development Framework Model and Business Components Java API Reference
10g Release 3 (10.1.3) B16005-01 |
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||