|
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 | |||||||||
java.lang.Object
oracle.jbo.server.java.util.AbstractCollection
This class provides a skeletal implementation of the Collection interface, to minimize the effort required to implement this interface.
To implement an unmodifiable Collection, the programmer needs only to extend this class and provide implementations for the iterator and size methods. (The Iterator returned by the iterator method must implement hasNext and next.)
To implement a modifiable Collection, the programmer must additionally override this class's add method (which otherwise throws an UnsupportedOperationException), and the Iterator returned by the iterator method must additionally implement its remove method.
The programmer should generally provide a void (no argument) and Collection constructor, as per the recommendation in the Collection interface specification.
The documentation for each non-abstract methods in this class describes its implementation in detail. Each of these methods may be overridden if the Collection being implemented admits a more efficient implementation.
Collection| Constructor Summary | |
AbstractCollection() |
|
| Method Summary | |
boolean |
add(java.lang.Object o)Ensures that this Collection contains the specified element (optional operation). |
boolean |
addAll(Collection c)Adds all of the elements in the specified Collection to this Collection (optional operation). |
void |
clear()Removes all of the elements from this Collection (optional operation). |
boolean |
contains(java.lang.Object o)Returns true if this Collection contains the specified element. |
boolean |
containsAll(Collection c)Returns true if this Collection contains all of the elements in the specified Collection. |
boolean |
isEmpty()Returns true if this Collection contains no elements. |
abstract Iterator |
iterator()Returns an Iterator over the elements contained in this Collection. |
boolean |
remove(java.lang.Object o)Removes a single instance of the specified element from this Collection, if it is present (optional operation). |
boolean |
removeAll(Collection c)Removes from this Collection all of its elements that are contained in the specified Collection (optional operation). |
boolean |
retainAll(Collection c)Retains only the elements in this Collection that are contained in the specified Collection (optional operation). |
abstract int |
size()Returns the number of elements in this Collection. |
java.lang.Object[] |
toArray()Returns an array containing all of the elements in this Collection. |
java.lang.String |
toString()Returns a string representation of this Collection, containing the String representation of each element. |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Methods inherited from interface oracle.jbo.server.java.util.Collection |
equals, hashCode |
| Constructor Detail |
public AbstractCollection()
| Method Detail |
public abstract Iterator iterator()
iterator in interface Collectionpublic abstract int size()
size in interface Collectionpublic boolean isEmpty()
size() == 0.isEmpty in interface Collectionpublic boolean contains(java.lang.Object o)
e such that (o==null ? e==null : o.equals(e)).
This implementation iterates over the elements in the Collection, checking each element in turn for equality with o.
contains in interface Collectiono - element whose presence in this Collection is to be tested.public java.lang.Object[] toArray()
This implementation allocates the array to be returned, and iterates over the elements in the Collection, storing each object reference in the next consecutive element of the array, starting with element 0.
toArray in interface Collectionpublic boolean add(java.lang.Object o)
This implementation always throws an UnsupportedOperationException.
add in interface Collectiono - element whose presence in this Collection is to be ensured.UnsupportedOperationException - add is not supported by this Collection.java.lang.NullPointerException - this Collection does not permit null elements, and the specified element is null.java.lang.ClassCastException - class of the specified element prevents it from being added to this Collection.java.lang.IllegalArgumentException - some aspect of this element prevents it from being added to this Collection.public boolean remove(java.lang.Object o)
e such that (o==null ? e==null : o.equals(e)), if the Collection contains one or more such elements. Returns true if the Collection contained the specified element (or equivalently, if the Collection changed as a result of the call).
This implementation iterates over the Collection looking for the specified element. If it finds the element, it removes the element from the Collection using the iterator's remove method.
Note that this implementation will throw an UnsupportedOperationException if the Iterator returned by this Collection's iterator method does not implement the remove method.
remove in interface Collectiono - element to be removed from this Collection, if present.UnsupportedOperationException - remove is not supported by this Collection.public boolean containsAll(Collection c)
This implementation iterates over the specified Collection, checking each element returned by the Iterator in turn to see if it's contained in this Collection. If all elements are so contained true is returned, otherwise false.
containsAll in interface Collectioncontains(Object)public boolean addAll(Collection c)
This implementation iterates over the specified Collection, and adds each object returned by the Iterator to this Collection, in turn.
Note that this implementation will throw an UnsupportedOperationException unless add is overridden.
addAll in interface Collectionc - elements to be inserted into this Collection.UnsupportedOperationException - addAll is not supported by this Collection.add(Object)public boolean removeAll(Collection c)
This implementation iterates over this Collection, checking each element returned by the Iterator in turn to see if it's contained in the specified Collection. If it's so contained, it's removed from this Collection with the Iterator's remove method.
Note that this implementation will throw an UnsupportedOperationException if the Iterator returned by iterator does not implement the remove method.
removeAll in interface Collectionc - elements to be removed from this Collection.UnsupportedOperationException - removeAll is not supported by this Collection.remove(Object), contains(Object)public boolean retainAll(Collection c)
This implementation iterates over this Collection, checking each element returned by the Iterator in turn to see if it's contained in the specified Collection. If it's not so contained, it's removed from this Collection with the Iterator's remove method.
Note that this implementation will throw an UnsupportedOperationException if the Iterator returned by iterator does not implement the remove method.
retainAll in interface Collectionc - elements to be retained in this Collection.UnsupportedOperationException - retainAll is not supported by this Collection.remove(Object), contains(Object)public void clear()
This implementation iterates over this Collection, removing each element using the Iterator.remove operation. Most implementations will probably choose to override this method for efficiency.
Note that this implementation will throw an UnsupportedOperationException if the Iterator returned by this Collection's iterator method does not implement the remove method.
clear in interface CollectionUnsupportedOperationException - remove is not supported by this Collection.public java.lang.String toString()
|
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 | |||||||||