|
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.Collections
This class consists exclusively of static methods that operate on or return Collections. It contains polymorphic algorithms that operate on collections, "views" and "wrappers", which return a new collection backed by a specified collection, and a few other odds and ends.
Collection, Set, List, Map| Constructor Summary | |
Collections() |
|
| Method Summary | |
static int |
binarySearch(List list, java.lang.Object key)Searches the specified List for the specified Object using the binary search algorithm. |
static int |
binarySearch(List list, java.lang.Object key, Comparator c)Searches the specified List for the specified Object using the binary search algorithm. |
static java.util.Enumeration |
enumeration(Collection c)Returns an Enumeration over the specified Collection. |
static java.lang.Object |
max(Collection coll)Returns the maximum element of the given Collection, according to the natural comparison method of its elements. |
static java.lang.Object |
max(Collection coll, Comparator comp)Returns the maximum element of the given Collection, according to the order induced by the specified Comparator. |
static java.lang.Object |
min(Collection coll)Returns the minimum element of the given Collection, according to the natural comparison method of its elements. |
static java.lang.Object |
min(Collection coll, Comparator comp)Returns the minimum element of the given Collection, according to the order induced by the specified Comparator. |
static List |
nCopies(int n, java.lang.Object o)Returns an immutable List consisting of n copies of the specified Object. |
static void |
sort(List list)Sorts the specified List into ascending order, according to the natural comparison method of its elements. |
static void |
sort(List list, Comparator c)Sorts the specified List according to the order induced by the specified Comparator. |
static List |
subList(List list, int fromIndex, int toIndex)Returns a List backed by the specified List that represents the portion of the specified List whose index ranges from fromIndex (inclusive) to toIndex (exclusive). |
static Collection |
synchronizedCollection(Collection c)Returns a synchronized (thread-safe) Collection backed by the specified Collection. |
static List |
synchronizedList(List list)Returns a synchronized (thread-safe) List backed by the specified List. |
static Map |
synchronizedMap(Map m)Returns a synchronized (thread-safe) Map backed by the specified Map. |
static Set |
synchronizedSet(Set s)Returns a synchronized (thread-safe) Set backed by the specified Set. |
static Collection |
unmodifiableCollection(Collection c)Returns an unmodifiable view of the specified Collection. |
static List |
unmodifiableList(List list)Returns an unmodifiable view of the specified List. |
static Map |
unmodifiableMap(Map m)Returns an unmodifiable view of the specified Map. |
static Set |
unmodifiableSet(Set s)Returns an unmodifiable view of the specified Set. |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
public Collections()
| Method Detail |
public static void sort(List list)
The sorting algorithm is a tuned quicksort, adapted from Jon L. Bentley and M. Douglas McIlroy's "Engineering a Sort Function", Software-Practice and Experience, Vol. 23(11) P. 1249-1265 (November 1993). This algorithm offers n*log(n) performance on many data sets that cause other quicksorts to degrade to quadratic performance.
The specified List must be modifiable, but need not be resizable. This implementation dumps the specified List into an List, sorts the array, and iterates over the List resetting each element from the corresponding position in the array. This avoids the n^2*log(n) performance that would result from attempting to sort a LinkedList in place.
list - the List to be sorted.java.lang.ClassCastException - List contains elements that are not mutually comparable (for example, Strings and Integers).UnsupportedOperationException - The specified List's ListIterator not support the set operation.Comparable
public static void sort(List list,
Comparator c)
The sorting algorithm is a tuned quicksort, adapted from Jon L. Bentley and M. Douglas McIlroy's "Engineering a Sort Function", Software-Practice and Experience, Vol. 23(11) P. 1249-1265 (November 1993). This algorithm offers n*log(n) performance on many data sets that cause other quicksorts to degrade to quadratic performance.
The specified List must be modifiable, but need not be resizable. This implementation dumps the specified List into an array, sorts the array, and iterates over the List resetting each element from the corresponding position in the array. This avoids the n^2*log(n) performance that would result from attempting to sort a LinkedList in place.
list - the List to be sorted.java.lang.ClassCastException - List contains elements that are not mutually comparable with the specified Comparator.UnsupportedOperationException - The specified List's did ListIterator not support the set operation.Comparator
public static int binarySearch(List list,
java.lang.Object key)
This method will run in log(n) time for a "random access" List (which provides near-constant-time positional access) like a Vector. It may run in n*log(n) time if it is called on a "sequential access" List (which provides linear-time positional access). If the specified List is an instanceof AbstracSequentialList, this method will do a sequential search instead of a binary search; this offers linear performance instead of n*log(n) performance if this method is called on a LinkedList.
list - the List to be searched.key - the key to be searched for.java.lang.ClassCastException - List contains elements that are not mutually comparable (for example, Strings and Integers), or the search key in not mutually comparable with the elements of the List.Comparable, sort(List)
public static int binarySearch(List list,
java.lang.Object key,
Comparator c)
This method will run in log(n) time for a "random access" List (which provides near-constant-time positional access) like a Vector. It may run in n*log(n) time if it is called on a "sequential access" List (which provides linear-time positional access). If the specified List is an instanceof AbstracSequentialList, this method will do a sequential search instead of a binary search; this offers linear performance instead of n*log(n) performance if this method is called on a LinkedList.
list - the List to be searched.key - the key to be searched for.java.lang.ClassCastException - List contains elements that are not mutually comparable with the specified Comparator, or the search key in not mutually comparable with the elements of the List using this Comparator.Comparable, sort(List, Comparator)public static java.lang.Object min(Collection coll)
This method iterates over the entire Collection, hence it requires time proportional to the size of the Collection.
coll - the collection whose minimum element is to be determined.java.lang.ClassCastException - Collection contains elements that are not mutually comparable (for example, Strings and Integers).NoSuchElementException - Collection is empty.Comparable
public static java.lang.Object min(Collection coll,
Comparator comp)
This method iterates over the entire Collection, hence it requires time proportional to the size of the Collection.
coll - the collection whose minimum element is to be determined.java.lang.ClassCastException - Collection contains elements that are not mutually comparable with the specified Comparator.NoSuchElementException - Collection is empty.Comparablepublic static java.lang.Object max(Collection coll)
This method iterates over the entire Collection, hence it requires time proportional to the size of the Collection.
coll - the collection whose maximum element is to be determined.java.lang.ClassCastException - Collection contains elements that are not mutually comparable (for example, Strings and Integers).NoSuchElementException - Collection is empty.Comparable
public static java.lang.Object max(Collection coll,
Comparator comp)
This method iterates over the entire Collection, hence it requires time proportional to the size of the Collection.
coll - the collection whose maximum element is to be determined.java.lang.ClassCastException - Collection contains elements that are not mutually comparable with the specified Comparator.NoSuchElementException - Collection is empty.Comparable
public static List subList(List list,
int fromIndex,
int toIndex)
If the caller wants a List that is independent of the input List, and free of the restrictions noted above, he should immediately copy the returned List into a new List, for example:
Vector v = new Vector(Collections.subList(myList, 17, 42));
list - the List whose subList is to be returned.fromIndex - the index (in this List) of the first element to appear in the subList.toIndex - the index (in this List) following the last element to appear in the subList.java.lang.ArrayIndexOutOfBoundsException - fromIndex or toIndex is out of range (fromIndex < 0 || fromIndex > size || toIndex < 0 || toIndex > size).java.lang.IllegalArgumentException - fromIndex > toIndex.public static Collection unmodifiableCollection(Collection c)
The returned Collection does not pass the hashCode and equals operations through to the backing Collection, but relies on Object's equals and hashCode methods. This is necessary to preserve the contracts of these operations in case that the backing Collection is a Set or a List.
c - the Collection for which an unmodifiable view is to be returned.public static Set unmodifiableSet(Set s)
s - the Set for which an unmodifiable view is to be returned.public static List unmodifiableList(List list)
list - the List for which an unmodifiable view is to be returned.public static Map unmodifiableMap(Map m)
m - the Map for which an unmodifiable view is to be returned.public static Collection synchronizedCollection(Collection c)
It is imperative that user manually synchronize on the returned Collection when iterating over it:
Collection c = synchronizedCollection(myCollection);
...
synchronized(c) {
Iterator i = c.iterator(); // Must be in the synchronized block
while (i.hasNext())
foo(i.next();
}
Failure to follow this advice may result in non-deterministic behavior.
The returned Collection does not pass the hashCode and equals operations through to the backing Collection, but relies on Object's equals and hashCode methods. This is necessary to preserve the contracts of these operations in case that the backing Collection is a Set or a List.
The returned Collection will be Serializable if the specified Collection is Serializable.
c - the Collection to be "wrapped" in a synchronized Collection.public static Set synchronizedSet(Set s)
It is imperative that user manually synchronize on the returned Set when iterating over it:
Set s = synchronizedSet(new HashSet());
...
synchronized(s) {
Iterator i = s.iterator(); // Must be in the synchronized block
while (i.hasNext())
foo(i.next();
}
Failure to follow this advice may result in non-deterministic behavior.
The returned Set will be Serializable if the specified Set is Serializable.
s - the Set to be "wrapped" in a synchronized Set.public static List synchronizedList(List list)
It is imperative that user manually synchronize on the returned List when iterating over it:
List list = synchronizedList(new Arraylist());
...
synchronized(list) {
Iterator i = list.iterator(); // Must be in synchronized block
while (i.hasNext())
foo(i.next();
}
Failure to follow this advice may result in non-deterministic behavior.
The returned List will be Serializable if the specified List is Serializable.
list - the List to be "wrapped" in a synchronized List.public static Map synchronizedMap(Map m)
It is imperative that user manually synchronize on the returned Map when iterating over any of its Collection views:
Map m = synchronizedMap(new HashMap());
...
Set s = m.keySet(); // Needn't be in synchronized block
...
synchronized(m) { // Synchronizing on m, not s!
Iterator i = s.iterator(); // Must be in synchronized block
while (i.hasNext())
foo(i.next();
}
Failure to follow this advice may result in non-deterministic behavior.
The returned Map will be Serializable if the specified Map is Serializable.
m - the Map to be "wrapped" in a synchronized Map.
public static List nCopies(int n,
java.lang.Object o)
n - the number of elements in the returned List.o - the element to appear repeatedly in the returned List.java.lang.IllegalArgumentException - n < 0.List.addAll(Collection), List.addAll(int, Collection)public static java.util.Enumeration enumeration(Collection c)
c - the Collection for which an Enumeration is to be returned.
|
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 | |||||||||