Oracle Application Development Framework Model and Business Components Java API Reference 10g Release 3 (10.1.3)
B16005-01


Package oracle.jbo.server.java.util

Interface Summary
Collection The root interface in the collection hierarchy.
Comparable This interface imposes a total ordering on the objects of each class that implements it.
Comparator A comparison function, which imposes a total ordering on some collection of Objects.
Iterator An iterator over a Collection.
List An ordered Collection (also known as a sequence).
ListIterator An Iterator for Lists that allows the programmer to traverse the List in either direction and modify the list during iteration.
Map An object that maps keys to values.
Set A Collection that contains no duplicate elements.

 

Class Summary
AbstractCollection This class provides a skeletal implementation of the Collection interface, to minimize the effort required to implement this interface.
AbstractList This class provides a skeletal implementation of the List interface to minimize the effort required to implement this interface backed by a "random access" data store (such as an array).
AbstractSequentialList This class provides a skeletal implementation of the List interface to minimize the effort required to implement this interface backed by a "sequential access" data store (such as a linked list).
AbstractSet This class provides a skeletal implementation of the Set interface to minimize the effort required to implement this interface.
ArrayList Resizable-array implementation of the List interface.
Arrays This class contains various methods for manipulating arrays (such as sorting and searching).
ArraySet This class implements the Set interface, backed by an ArrayList.
Collections This class consists exclusively of static methods that operate on or return Collections.

 

Exception Summary
ConcurrentModificationException This exception may be thrown by methods that have detected concurrent modification of a backing object when such modification is not permissible.
NoSuchElementException Thrown by the nextElement method of an Enumeration to indicate that there are no more elements in the enumeration.
UnsupportedOperationException Thrown by an Object to indicate that it does not support the requested operation.

 


Oracle Application Development Framework Model and Business Components Java API Reference 10g Release 3 (10.1.3)
B16005-01


Copyright © 1997, 2005, Oracle. All rights reserved.