Interface COM.odi.util.Set

public interface Set
extends Collection
This is the COM.odi.util version of java.util.Set, which will be generally available in the JDK 1.2. At that time, COM.odi.util.Set will be obsoleted, in favor of the interface in java.util.Set. Additional information about sets is in the user guide.


Method Index

 o add(Object)
Adds the specified element to this Set if it is not already present (optional operation).
 o addAll(Collection)
Adds all of the elements in the specified Collection to this Set if they're not already present (optional operation).
 o clear()
Removes all of the elements from this Set (optional operation).
 o contains(Object)
Returns true if this Set contains the specified element.
 o containsAll(Collection)
Returns true if this Set contains all of the elements of the specified Collection.
 o equals(Object)
Compares the specified Object with this Set for equality.
 o hashCode()
Returns the hash code value for this Set.
 o isEmpty()
Returns true if this Set contains no elements.
 o iterator()
Returns an Iterator over the elements in this Set.
 o remove(Object)
Removes the given element from this Set if it is present (optional operation).
 o removeAll(Collection)
Removes from this Set all of its elements that are contained in the specified Collection (optional operation).
 o retainAll(Collection)
Retains only the elements in this Set that are contained in the specified Collection (optional operation).
 o size()
Returns the number of elements in this Set (its cardinality).
 o toArray()
Returns an array containing all of the elements in this Set.

Methods

 o size
  public abstract int size()
Returns the number of elements in this Set (its cardinality).

 o isEmpty
  public abstract boolean isEmpty()
Returns true if this Set contains no elements.

 o contains
  public abstract boolean contains(Object o)
Returns true if this Set contains the specified element. More formally, returns true if and only if this Set contains an element e such that (o==null ? e==null : o.equals(e)).

 o iterator
  public abstract Iterator iterator()
Returns an Iterator over the elements in this Set. The elements are returned in no particular order (unless the Set is an instance of some class that provides a guarantee).

 o toArray
  public abstract Object[] toArray()
Returns an array containing all of the elements in this Set. Obeys the general contract of Collection.toArray.

 o add
  public abstract boolean add(Object o)
Adds the specified element to this Set if it is not already present (optional operation). More formally, adds the specified element, 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.

Parameters:
o - element to be added to this Set.
Returns:
true if the Set did not already contain the specified element.
Throws: UnsupportedOperationException
add is not supported by this Set.
Throws: ClassCastException
class of the specified element prevents it from being added to this Set.
Throws: IllegalArgumentException
some aspect of this element prevents it from being added to this Set.
 o remove
  public abstract boolean remove(Object o)
Removes the given element from this Set if it is present (optional operation). More formally, removes an element 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.)

Parameters:
o - object to be removed from this Set, if present.
Returns:
true if the Set contained the specified element.
Throws: UnsupportedOperationException
remove is not supported by this Set.
 o containsAll
  public abstract boolean containsAll(Collection c)
Returns true if this Set contains all of the elements of the specified Collection. If the specified Collection is also a Set, this method returns true if it is a subset of this Set.

 o addAll
  public abstract boolean addAll(Collection c)
Adds all of the elements in the specified Collection to this Set if they're not already present (optional operation). If the specified Collection is also a Set, this operation effectively modifies this Set so that its value is the union of the two Sets. The behavior of this operation is unspecified if the specified Collection is modified while the operation is in progress.

Returns:
true if this Set changed as a result of the call.
Throws: UnsupportedOperationException
addAll is not supported by this Set.
Throws: ClassCastException
class of some element of the specified Collection prevents it from being added to this Set.
Throws: IllegalArgumentException
some aspect of some element of the specified Collection prevents it from being added to this Set.
 o removeAll
  public abstract boolean removeAll(Collection c)
Removes from this Set all of its elements that are contained in the specified Collection (optional operation). If the specified Collection is also a Set, this operation effectively modifies this Set so that its value is the intersection of the two Sets.

Returns:
true if this Set changed as a result of the call.
Throws: UnsupportedOperationException
removeAll is not supported by this Collection.
 o retainAll
  public abstract boolean retainAll(Collection c)
Retains only the elements in this Set that are contained in the specified Collection (optional operation). In other words, removes from this Set all of its elements that are not contained in the specified Collection. If the specified Collection is also a Set, this operation effectively modifies this Set so that its value is the asymmetric set difference of the two Sets.

Returns:
true if this Collection changed as a result of the call.
Throws: UnsupportedOperationException
retainAll is not supported by this Collection.
 o clear
  public abstract void clear()
Removes all of the elements from this Set (optional operation). The Set will be empty after this call returns (unless it throws an exception).

Throws: UnsupportedOperationException
clear is not supported by this Set.
 o equals
  public abstract boolean equals(Object o)
Compares the specified Object with this Set for equality. Returns true if the given object is also a Set, the two Sets have the same size, and every member of the given Set is contained in this Set. This ensures that the equals method works properly accross different implementations of the Set interface.

Parameters:
o - Object to be compared for equality with this Set.
Returns:
true if the specified Object is equal to this Set.
Overrides:
equals in class Object
 o hashCode
  public abstract int hashCode()
Returns the hash code value for this Set. The hash code of a Set is defined to be the sum of the hashCodes of the elements in the Set, where the hashcode of a null element is defined to be zero. This ensures that 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.

Overrides:
hashCode in class Object

Copyright © 1996, 1997, 1998 Object Design, Inc. All rights reserved.