Start line:  
End line:  

Snippet Preview

Snippet HTML Code

Stack Overflow Questions
   /*
    * Copyright (c) 1997, 2011, Oracle and/or its affiliates. All rights reserved.
    * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    *
    * This code is free software; you can redistribute it and/or modify it
    * under the terms of the GNU General Public License version 2 only, as
    * published by the Free Software Foundation.  Oracle designates this
    * particular file as subject to the "Classpath" exception as provided
    * by Oracle in the LICENSE file that accompanied this code.
   *
   * This code is distributed in the hope that it will be useful, but WITHOUT
   * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
   * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
   * version 2 for more details (a copy is included in the LICENSE file that
   * accompanied this code).
   *
   * You should have received a copy of the GNU General Public License version
   * 2 along with this work; if not, write to the Free Software Foundation,
   * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
   *
   * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
   * or visit www.oracle.com if you need additional information or have any
   * questions.
   */
  
  package java.util;
This class consists exclusively of static methods that operate on or return collections. It contains polymorphic algorithms that operate on collections, "wrappers", which return a new collection backed by a specified collection, and a few other odds and ends.

The methods of this class all throw a NullPointerException if the collections or class objects provided to them are null.

The documentation for the polymorphic algorithms contained in this class generally includes a brief description of the implementation. Such descriptions should be regarded as implementation notes, rather than parts of the specification. Implementors should feel free to substitute other algorithms, so long as the specification itself is adhered to. (For example, the algorithm used by sort does not have to be a mergesort, but it does have to be stable.)

The "destructive" algorithms contained in this class, that is, the algorithms that modify the collection on which they operate, are specified to throw UnsupportedOperationException if the collection does not support the appropriate mutation primitive(s), such as the set method. These algorithms may, but are not required to, throw this exception if an invocation would have no effect on the collection. For example, invoking the sort method on an unmodifiable list that is already sorted may or may not throw UnsupportedOperationException.

This class is a member of the Java Collections Framework.

Author(s):
Josh Bloch
Neal Gafter
Since:
1.2
See also:
Collection
Set
List
Map
  
  
  public class Collections {
      // Suppresses default constructor, ensuring non-instantiability.
      private Collections() {
      }
  
      // Algorithms
  
      /*
       * Tuning parameters for algorithms - Many of the List algorithms have
       * two implementations, one of which is appropriate for RandomAccess
       * lists, the other for "sequential."  Often, the random access variant
       * yields better performance on small sequential access lists.  The
       * tuning parameters below determine the cutoff point for what constitutes
       * a "small" sequential access list for each algorithm.  The values below
       * were empirically determined to work well for LinkedList. Hopefully
       * they should be reasonable for other sequential access List
       * implementations.  Those doing performance work on this code would
       * do well to validate the values of these parameters from time to time.
       * (The first word of each tuning parameter name is the algorithm to which
       * it applies.)
       */
      private static final int BINARYSEARCH_THRESHOLD   = 5000;
      private static final int REVERSE_THRESHOLD        =   18;
      private static final int SHUFFLE_THRESHOLD        =    5;
      private static final int FILL_THRESHOLD           =   25;
      private static final int ROTATE_THRESHOLD         =  100;
      private static final int COPY_THRESHOLD           =   10;
      private static final int REPLACEALL_THRESHOLD     =   11;
      private static final int INDEXOFSUBLIST_THRESHOLD =   35;

    
Sorts the specified list into ascending order, according to the natural ordering of its elements. All elements in the list must implement the java.lang.Comparable interface. Furthermore, all elements in the list must be mutually comparable (that is, e1.compareTo(e2) must not throw a ClassCastException for any elements e1 and e2 in the list).

This sort is guaranteed to be stable: equal elements will not be reordered as a result of the sort.

The specified list must be modifiable, but need not be resizable.

Implementation note: This implementation is a stable, adaptive, iterative mergesort that requires far fewer than n lg(n) comparisons when the input array is partially sorted, while offering the performance of a traditional mergesort when the input array is randomly ordered. If the input array is nearly sorted, the implementation requires approximately n comparisons. Temporary storage requirements vary from a small constant for nearly sorted input arrays to n/2 object references for randomly ordered input arrays.

The implementation takes equal advantage of ascending and descending order in its input array, and can take advantage of ascending and descending order in different parts of the same input array. It is well-suited to merging two or more sorted arrays: simply concatenate the arrays and sort the resulting array.

The implementation was adapted from Tim Peters's list sort for Python ( TimSort). It uses techiques from Peter McIlroy's "Optimistic Sorting and Information Theoretic Complexity", in Proceedings of the Fourth Annual ACM-SIAM Symposium on Discrete Algorithms, pp 467-474, January 1993.

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 n2 log(n) performance that would result from attempting to sort a linked list in place.

Parameters:
list the list to be sorted.
Throws:
java.lang.ClassCastException if the list contains elements that are not mutually comparable (for example, strings and integers).
java.lang.UnsupportedOperationException if the specified list's list-iterator does not support the set operation.
java.lang.IllegalArgumentException (optional) if the implementation detects that the natural ordering of the list elements is found to violate the java.lang.Comparable contract
 
     public static <T extends Comparable<? super T>> void sort(List<T> list) {
         Object[] a = list.toArray();
         Arrays.sort(a);
         ListIterator<T> i = list.listIterator();
         for (int j=0; j<a.lengthj++) {
             i.next();
             i.set((T)a[j]);
         }
     }

    
Sorts the specified list according to the order induced by the specified comparator. All elements in the list must be mutually comparable using the specified comparator (that is, c.compare(e1, e2) must not throw a ClassCastException for any elements e1 and e2 in the list).

This sort is guaranteed to be stable: equal elements will not be reordered as a result of the sort.

The specified list must be modifiable, but need not be resizable.

Implementation note: This implementation is a stable, adaptive, iterative mergesort that requires far fewer than n lg(n) comparisons when the input array is partially sorted, while offering the performance of a traditional mergesort when the input array is randomly ordered. If the input array is nearly sorted, the implementation requires approximately n comparisons. Temporary storage requirements vary from a small constant for nearly sorted input arrays to n/2 object references for randomly ordered input arrays.

The implementation takes equal advantage of ascending and descending order in its input array, and can take advantage of ascending and descending order in different parts of the same input array. It is well-suited to merging two or more sorted arrays: simply concatenate the arrays and sort the resulting array.

The implementation was adapted from Tim Peters's list sort for Python ( TimSort). It uses techiques from Peter McIlroy's "Optimistic Sorting and Information Theoretic Complexity", in Proceedings of the Fourth Annual ACM-SIAM Symposium on Discrete Algorithms, pp 467-474, January 1993.

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 n2 log(n) performance that would result from attempting to sort a linked list in place.

Parameters:
list the list to be sorted.
c the comparator to determine the order of the list. A null value indicates that the elements' natural ordering should be used.
Throws:
java.lang.ClassCastException if the list contains elements that are not mutually comparable using the specified comparator.
java.lang.UnsupportedOperationException if the specified list's list-iterator does not support the set operation.
java.lang.IllegalArgumentException (optional) if the comparator is found to violate the Comparator contract
 
     public static <T> void sort(List<T> listComparator<? super T> c) {
         Object[] a = list.toArray();
         Arrays.sort(a, (Comparator)c);
         ListIterator i = list.listIterator();
         for (int j=0; j<a.lengthj++) {
             i.next();
             i.set(a[j]);
         }
     }


    
Searches the specified list for the specified object using the binary search algorithm. The list must be sorted into ascending order according to the natural ordering of its elements (as by the sort(java.util.List) method) prior to making this call. If it is not sorted, the results are undefined. If the list contains multiple elements equal to the specified object, there is no guarantee which one will be found.

This method runs in log(n) time for a "random access" list (which provides near-constant-time positional access). If the specified list does not implement the RandomAccess interface and is large, this method will do an iterator-based binary search that performs O(n) link traversals and O(log n) element comparisons.

Parameters:
list the list to be searched.
key the key to be searched for.
Returns:
the index of the search key, if it is contained in the list; otherwise, (-(insertion point) - 1). The insertion point is defined as the point at which the key would be inserted into the list: the index of the first element greater than the key, or list.size() if all elements in the list are less than the specified key. Note that this guarantees that the return value will be >= 0 if and only if the key is found.
Throws:
java.lang.ClassCastException if the list contains elements that are not mutually comparable (for example, strings and integers), or the search key is not mutually comparable with the elements of the list.
 
     public static <T>
     int binarySearch(List<? extends Comparable<? super T>> list, T key) {
         if (list instanceof RandomAccess || list.size()<)
             return Collections.indexedBinarySearch(listkey);
         else
             return Collections.iteratorBinarySearch(listkey);
     }
 
     private static <T>
     int indexedBinarySearch(List<? extends Comparable<? super T>> list, T key)
     {
         int low = 0;
         int high = list.size()-1;
 
         while (low <= high) {
             int mid = (low + high) >>> 1;
             Comparable<? super T> midVal = list.get(mid);
             int cmp = midVal.compareTo(key);
 
             if (cmp < 0)
                 low = mid + 1;
             else if (cmp > 0)
                 high = mid - 1;
             else
                 return mid// key found
         }
         return -(low + 1);  // key not found
     }
 
     private static <T>
     int iteratorBinarySearch(List<? extends Comparable<? super T>> list, T key)
     {
         int low = 0;
         int high = list.size()-1;
         ListIterator<? extends Comparable<? super T>> i = list.listIterator();
 
         while (low <= high) {
             int mid = (low + high) >>> 1;
             Comparable<? super T> midVal = get(imid);
             int cmp = midVal.compareTo(key);
 
             if (cmp < 0)
                 low = mid + 1;
             else if (cmp > 0)
                 high = mid - 1;
             else
                 return mid// key found
         }
         return -(low + 1);  // key not found
     }

    
Gets the ith element from the given list by repositioning the specified list listIterator.
 
     private static <T> T get(ListIterator<? extends T> iint index) {
         T obj = null;
         int pos = i.nextIndex();
         if (pos <= index) {
             do {
                 obj = i.next();
             } while (pos++ < index);
         } else {
             do {
                 obj = i.previous();
             } while (--pos > index);
         }
         return obj;
     }

    
Searches the specified list for the specified object using the binary search algorithm. The list must be sorted into ascending order according to the specified comparator (as by the sort(List, Comparator) method), prior to making this call. If it is not sorted, the results are undefined. If the list contains multiple elements equal to the specified object, there is no guarantee which one will be found.

This method runs in log(n) time for a "random access" list (which provides near-constant-time positional access). If the specified list does not implement the RandomAccess interface and is large, this method will do an iterator-based binary search that performs O(n) link traversals and O(log n) element comparisons.

Parameters:
list the list to be searched.
key the key to be searched for.
c the comparator by which the list is ordered. A null value indicates that the elements' natural ordering should be used.
Returns:
the index of the search key, if it is contained in the list; otherwise, (-(insertion point) - 1). The insertion point is defined as the point at which the key would be inserted into the list: the index of the first element greater than the key, or list.size() if all elements in the list are less than the specified key. Note that this guarantees that the return value will be >= 0 if and only if the key is found.
Throws:
java.lang.ClassCastException if the list contains elements that are not mutually comparable using the specified comparator, or the search key is not mutually comparable with the elements of the list using this comparator.
 
     public static <T> int binarySearch(List<? extends T> list, T keyComparator<? super T> c) {
         if (c==null)
             return binarySearch((Listlistkey);
 
         if (list instanceof RandomAccess || list.size()<)
             return Collections.indexedBinarySearch(listkeyc);
         else
             return Collections.iteratorBinarySearch(listkeyc);
     }
 
     private static <T> int indexedBinarySearch(List<? extends T> l, T keyComparator<? super T> c) {
         int low = 0;
         int high = l.size()-1;
 
         while (low <= high) {
             int mid = (low + high) >>> 1;
             T midVal = l.get(mid);
             int cmp = c.compare(midValkey);
 
             if (cmp < 0)
                 low = mid + 1;
             else if (cmp > 0)
                 high = mid - 1;
             else
                 return mid// key found
         }
         return -(low + 1);  // key not found
     }
 
     private static <T> int iteratorBinarySearch(List<? extends T> l, T keyComparator<? super T> c) {
         int low = 0;
         int high = l.size()-1;
         ListIterator<? extends T> i = l.listIterator();
 
         while (low <= high) {
             int mid = (low + high) >>> 1;
             T midVal = get(imid);
             int cmp = c.compare(midValkey);
 
             if (cmp < 0)
                 low = mid + 1;
             else if (cmp > 0)
                 high = mid - 1;
             else
                 return mid// key found
         }
         return -(low + 1);  // key not found
     }
 
     private interface SelfComparable extends Comparable<SelfComparable> {}


    
Reverses the order of the elements in the specified list.

This method runs in linear time.

Parameters:
list the list whose elements are to be reversed.
Throws:
java.lang.UnsupportedOperationException if the specified list or its list-iterator does not support the set operation.
 
     public static void reverse(List<?> list) {
         int size = list.size();
         if (size <  || list instanceof RandomAccess) {
             for (int i=0, mid=size>>1, j=size-1; i<midi++, j--)
                 swap(listij);
         } else {
             ListIterator fwd = list.listIterator();
             ListIterator rev = list.listIterator(size);
             for (int i=0, mid=list.size()>>1; i<midi++) {
                 Object tmp = fwd.next();
                 fwd.set(rev.previous());
                 rev.set(tmp);
             }
         }
     }

    
Randomly permutes the specified list using a default source of randomness. All permutations occur with approximately equal likelihood.

The hedge "approximately" is used in the foregoing description because default source of randomness is only approximately an unbiased source of independently chosen bits. If it were a perfect source of randomly chosen bits, then the algorithm would choose permutations with perfect uniformity.

This implementation traverses the list backwards, from the last element up to the second, repeatedly swapping a randomly selected element into the "current position". Elements are randomly selected from the portion of the list that runs from the first element to the current position, inclusive.

This method runs in linear time. If the specified list does not implement the RandomAccess interface and is large, this implementation dumps the specified list into an array before shuffling it, and dumps the shuffled array back into the list. This avoids the quadratic behavior that would result from shuffling a "sequential access" list in place.

Parameters:
list the list to be shuffled.
Throws:
java.lang.UnsupportedOperationException if the specified list or its list-iterator does not support the set operation.
 
     public static void shuffle(List<?> list) {
         Random rnd = ;
         if (rnd == null)
              = rnd = new Random();
         shuffle(listrnd);
     }
     private static Random r;

    
Randomly permute the specified list using the specified source of randomness. All permutations occur with equal likelihood assuming that the source of randomness is fair.

This implementation traverses the list backwards, from the last element up to the second, repeatedly swapping a randomly selected element into the "current position". Elements are randomly selected from the portion of the list that runs from the first element to the current position, inclusive.

This method runs in linear time. If the specified list does not implement the RandomAccess interface and is large, this implementation dumps the specified list into an array before shuffling it, and dumps the shuffled array back into the list. This avoids the quadratic behavior that would result from shuffling a "sequential access" list in place.

Parameters:
list the list to be shuffled.
rnd the source of randomness to use to shuffle the list.
Throws:
java.lang.UnsupportedOperationException if the specified list or its list-iterator does not support the set operation.
 
     public static void shuffle(List<?> listRandom rnd) {
         int size = list.size();
         if (size <  || list instanceof RandomAccess) {
             for (int i=sizei>1; i--)
                 swap(listi-1, rnd.nextInt(i));
         } else {
             Object arr[] = list.toArray();
 
             // Shuffle array
             for (int i=sizei>1; i--)
                 swap(arri-1, rnd.nextInt(i));
 
             // Dump array back into list
             ListIterator it = list.listIterator();
             for (int i=0; i<arr.lengthi++) {
                 it.next();
                 it.set(arr[i]);
             }
         }
     }

    
Swaps the elements at the specified positions in the specified list. (If the specified positions are equal, invoking this method leaves the list unchanged.)

Parameters:
list The list in which to swap elements.
i the index of one element to be swapped.
j the index of the other element to be swapped.
Throws:
java.lang.IndexOutOfBoundsException if either i or j is out of range (i < 0 || i >= list.size() || j < 0 || j >= list.size()).
Since:
1.4
 
     public static void swap(List<?> listint iint j) {
         final List l = list;
         l.set(il.set(jl.get(i)));
     }

    
Swaps the two specified elements in the specified array.
 
     private static void swap(Object[] arrint iint j) {
         Object tmp = arr[i];
         arr[i] = arr[j];
         arr[j] = tmp;
     }

    
Replaces all of the elements of the specified list with the specified element.

This method runs in linear time.

Parameters:
list the list to be filled with the specified element.
obj The element with which to fill the specified list.
Throws:
java.lang.UnsupportedOperationException if the specified list or its list-iterator does not support the set operation.
 
     public static <T> void fill(List<? super T> list, T obj) {
         int size = list.size();
 
         if (size <  || list instanceof RandomAccess) {
             for (int i=0; i<sizei++)
                 list.set(iobj);
         } else {
             ListIterator<? super T> itr = list.listIterator();
             for (int i=0; i<sizei++) {
                 itr.next();
                 itr.set(obj);
             }
         }
     }

    
Copies all of the elements from one list into another. After the operation, the index of each copied element in the destination list will be identical to its index in the source list. The destination list must be at least as long as the source list. If it is longer, the remaining elements in the destination list are unaffected.

This method runs in linear time.

Parameters:
dest The destination list.
src The source list.
Throws:
java.lang.IndexOutOfBoundsException if the destination list is too small to contain the entire source List.
java.lang.UnsupportedOperationException if the destination list's list-iterator does not support the set operation.
 
     public static <T> void copy(List<? super T> destList<? extends T> src) {
         int srcSize = src.size();
         if (srcSize > dest.size())
             throw new IndexOutOfBoundsException("Source does not fit in dest");
 
         if (srcSize <  ||
             (src instanceof RandomAccess && dest instanceof RandomAccess)) {
             for (int i=0; i<srcSizei++)
                 dest.set(isrc.get(i));
         } else {
             ListIterator<? super T> di=dest.listIterator();
             ListIterator<? extends T> si=src.listIterator();
             for (int i=0; i<srcSizei++) {
                 di.next();
                 di.set(si.next());
             }
         }
     }

    
Returns the minimum element of the given collection, according to the natural ordering of its elements. All elements in the collection must implement the Comparable interface. Furthermore, all elements in the collection must be mutually comparable (that is, e1.compareTo(e2) must not throw a ClassCastException for any elements e1 and e2 in the collection).

This method iterates over the entire collection, hence it requires time proportional to the size of the collection.

Parameters:
coll the collection whose minimum element is to be determined.
Returns:
the minimum element of the given collection, according to the natural ordering of its elements.
Throws:
java.lang.ClassCastException if the collection contains elements that are not mutually comparable (for example, strings and integers).
NoSuchElementException if the collection is empty.
See also:
java.lang.Comparable
 
     public static <T extends Object & Comparable<? super T>> T min(Collection<? extends T> coll) {
         Iterator<? extends T> i = coll.iterator();
         T candidate = i.next();
 
         while (i.hasNext()) {
             T next = i.next();
             if (next.compareTo(candidate) < 0)
                 candidate = next;
         }
         return candidate;
     }

    
Returns the minimum element of the given collection, according to the order induced by the specified comparator. All elements in the collection must be mutually comparable by the specified comparator (that is, comp.compare(e1, e2) must not throw a ClassCastException for any elements e1 and e2 in the collection).

This method iterates over the entire collection, hence it requires time proportional to the size of the collection.

Parameters:
coll the collection whose minimum element is to be determined.
comp the comparator with which to determine the minimum element. A null value indicates that the elements' natural ordering should be used.
Returns:
the minimum element of the given collection, according to the specified comparator.
Throws:
java.lang.ClassCastException if the collection contains elements that are not mutually comparable using the specified comparator.
NoSuchElementException if the collection is empty.
See also:
java.lang.Comparable
 
     public static <T> T min(Collection<? extends T> collComparator<? super T> comp) {
         if (comp==null)
             return (T)min((Collection<SelfComparable>) (Collectioncoll);
 
         Iterator<? extends T> i = coll.iterator();
         T candidate = i.next();
 
         while (i.hasNext()) {
             T next = i.next();
             if (comp.compare(nextcandidate) < 0)
                 candidate = next;
         }
         return candidate;
     }

    
Returns the maximum element of the given collection, according to the natural ordering of its elements. All elements in the collection must implement the Comparable interface. Furthermore, all elements in the collection must be mutually comparable (that is, e1.compareTo(e2) must not throw a ClassCastException for any elements e1 and e2 in the collection).

This method iterates over the entire collection, hence it requires time proportional to the size of the collection.

Parameters:
coll the collection whose maximum element is to be determined.
Returns:
the maximum element of the given collection, according to the natural ordering of its elements.
Throws:
java.lang.ClassCastException if the collection contains elements that are not mutually comparable (for example, strings and integers).
NoSuchElementException if the collection is empty.
See also:
java.lang.Comparable
 
     public static <T extends Object & Comparable<? super T>> T max(Collection<? extends T> coll) {
         Iterator<? extends T> i = coll.iterator();
         T candidate = i.next();
 
         while (i.hasNext()) {
             T next = i.next();
             if (next.compareTo(candidate) > 0)
                 candidate = next;
         }
         return candidate;
     }

    
Returns the maximum element of the given collection, according to the order induced by the specified comparator. All elements in the collection must be mutually comparable by the specified comparator (that is, comp.compare(e1, e2) must not throw a ClassCastException for any elements e1 and e2 in the collection).

This method iterates over the entire collection, hence it requires time proportional to the size of the collection.

Parameters:
coll the collection whose maximum element is to be determined.
comp the comparator with which to determine the maximum element. A null value indicates that the elements' natural ordering should be used.
Returns:
the maximum element of the given collection, according to the specified comparator.
Throws:
java.lang.ClassCastException if the collection contains elements that are not mutually comparable using the specified comparator.
NoSuchElementException if the collection is empty.
See also:
java.lang.Comparable
 
     public static <T> T max(Collection<? extends T> collComparator<? super T> comp) {
         if (comp==null)
             return (T)max((Collection<SelfComparable>) (Collectioncoll);
 
         Iterator<? extends T> i = coll.iterator();
         T candidate = i.next();
 
         while (i.hasNext()) {
             T next = i.next();
             if (comp.compare(nextcandidate) > 0)
                 candidate = next;
         }
         return candidate;
     }

    
Rotates the elements in the specified list by the specified distance. After calling this method, the element at index i will be the element previously at index (i - distance) mod list.size(), for all values of i between 0 and list.size()-1, inclusive. (This method has no effect on the size of the list.)

For example, suppose list comprises [t, a, n, k, s]. After invoking Collections.rotate(list, 1) (or Collections.rotate(list, -4)), list will comprise [s, t, a, n, k].

Note that this method can usefully be applied to sublists to move one or more elements within a list while preserving the order of the remaining elements. For example, the following idiom moves the element at index j forward to position k (which must be greater than or equal to j):

     Collections.rotate(list.subList(j, k+1), -1);
 
To make this concrete, suppose list comprises [a, b, c, d, e]. To move the element at index 1 (b) forward two positions, perform the following invocation:
     Collections.rotate(l.subList(1, 4), -1);
 
The resulting list is [a, c, d, b, e].

To move more than one element forward, increase the absolute value of the rotation distance. To move elements backward, use a positive shift distance.

If the specified list is small or implements the RandomAccess interface, this implementation exchanges the first element into the location it should go, and then repeatedly exchanges the displaced element into the location it should go until a displaced element is swapped into the first element. If necessary, the process is repeated on the second and successive elements, until the rotation is complete. If the specified list is large and doesn't implement the RandomAccess interface, this implementation breaks the list into two sublist views around index -distance mod size. Then the reverse(java.util.List) method is invoked on each sublist view, and finally it is invoked on the entire list. For a more complete description of both algorithms, see Section 2.3 of Jon Bentley's Programming Pearls (Addison-Wesley, 1986).

Parameters:
list the list to be rotated.
distance the distance to rotate the list. There are no constraints on this value; it may be zero, negative, or greater than list.size().
Throws:
java.lang.UnsupportedOperationException if the specified list or its list-iterator does not support the set operation.
Since:
1.4
 
     public static void rotate(List<?> listint distance) {
         if (list instanceof RandomAccess || list.size() < )
             rotate1(listdistance);
         else
             rotate2(listdistance);
     }
 
     private static <T> void rotate1(List<T> listint distance) {
         int size = list.size();
         if (size == 0)
             return;
         distance = distance % size;
         if (distance < 0)
             distance += size;
         if (distance == 0)
             return;
 
         for (int cycleStart = 0, nMoved = 0; nMoved != sizecycleStart++) {
             T displaced = list.get(cycleStart);
             int i = cycleStart;
             do {
                 i += distance;
                 if (i >= size)
                     i -= size;
                 displaced = list.set(idisplaced);
                 nMoved ++;
             } while (i != cycleStart);
         }
     }
 
     private static void rotate2(List<?> listint distance) {
         int size = list.size();
         if (size == 0)
             return;
         int mid =  -distance % size;
         if (mid < 0)
             mid += size;
         if (mid == 0)
             return;
 
         reverse(list.subList(0, mid));
         reverse(list.subList(midsize));
         reverse(list);
     }

    
Replaces all occurrences of one specified value in a list with another. More formally, replaces with newVal each element e in list such that (oldVal==null ? e==null : oldVal.equals(e)). (This method has no effect on the size of the list.)

Parameters:
list the list in which replacement is to occur.
oldVal the old value to be replaced.
newVal the new value with which oldVal is to be replaced.
Returns:
true if list contained one or more elements e such that (oldVal==null ? e==null : oldVal.equals(e)).
Throws:
java.lang.UnsupportedOperationException if the specified list or its list-iterator does not support the set operation.
Since:
1.4
 
     public static <T> boolean replaceAll(List<T> list, T oldVal, T newVal) {
         boolean result = false;
         int size = list.size();
         if (size <  || list instanceof RandomAccess) {
             if (oldVal==null) {
                 for (int i=0; i<sizei++) {
                     if (list.get(i)==null) {
                         list.set(inewVal);
                         result = true;
                     }
                 }
             } else {
                 for (int i=0; i<sizei++) {
                     if (oldVal.equals(list.get(i))) {
                         list.set(inewVal);
                         result = true;
                     }
                 }
             }
         } else {
             ListIterator<T> itr=list.listIterator();
             if (oldVal==null) {
                 for (int i=0; i<sizei++) {
                     if (itr.next()==null) {
                         itr.set(newVal);
                         result = true;
                     }
                 }
             } else {
                 for (int i=0; i<sizei++) {
                     if (oldVal.equals(itr.next())) {
                         itr.set(newVal);
                         result = true;
                     }
                 }
             }
         }
         return result;
     }

    
Returns the starting position of the first occurrence of the specified target list within the specified source list, or -1 if there is no such occurrence. More formally, returns the lowest index i such that source.subList(i, i+target.size()).equals(target), or -1 if there is no such index. (Returns -1 if target.size() > source.size().)

This implementation uses the "brute force" technique of scanning over the source list, looking for a match with the target at each location in turn.

Parameters:
source the list in which to search for the first occurrence of target.
target the list to search for as a subList of source.
Returns:
the starting position of the first occurrence of the specified target list within the specified source list, or -1 if there is no such occurrence.
Since:
1.4
 
     public static int indexOfSubList(List<?> sourceList<?> target) {
         int sourceSize = source.size();
         int targetSize = target.size();
         int maxCandidate = sourceSize - targetSize;
 
         if (sourceSize <  ||
             (source instanceof RandomAccess&&target instanceof RandomAccess)) {
         nextCand:
             for (int candidate = 0; candidate <= maxCandidatecandidate++) {
                 for (int i=0, j=candidatei<targetSizei++, j++)
                     if (!eq(target.get(i), source.get(j)))
                         continue nextCand;  // Element mismatch, try next cand
                 return candidate;  // All elements of candidate matched target
             }
         } else {  // Iterator version of above algorithm
             ListIterator<?> si = source.listIterator();
         nextCand:
             for (int candidate = 0; candidate <= maxCandidatecandidate++) {
                 ListIterator<?> ti = target.listIterator();
                 for (int i=0; i<targetSizei++) {
                     if (!eq(ti.next(), si.next())) {
                         // Back up source iterator to next candidate
                         for (int j=0; j<ij++)
                             si.previous();
                         continue nextCand;
                     }
                 }
                 return candidate;
             }
         }
         return -1;  // No candidate matched the target
     }

    
Returns the starting position of the last occurrence of the specified target list within the specified source list, or -1 if there is no such occurrence. More formally, returns the highest index i such that source.subList(i, i+target.size()).equals(target), or -1 if there is no such index. (Returns -1 if target.size() > source.size().)

This implementation uses the "brute force" technique of iterating over the source list, looking for a match with the target at each location in turn.

Parameters:
source the list in which to search for the last occurrence of target.
target the list to search for as a subList of source.
Returns:
the starting position of the last occurrence of the specified target list within the specified source list, or -1 if there is no such occurrence.
Since:
1.4
 
     public static int lastIndexOfSubList(List<?> sourceList<?> target) {
         int sourceSize = source.size();
         int targetSize = target.size();
         int maxCandidate = sourceSize - targetSize;
 
         if (sourceSize <  ||
             source instanceof RandomAccess) {   // Index access version
         nextCand:
             for (int candidate = maxCandidatecandidate >= 0; candidate--) {
                 for (int i=0, j=candidatei<targetSizei++, j++)
                     if (!eq(target.get(i), source.get(j)))
                         continue nextCand;  // Element mismatch, try next cand
                 return candidate;  // All elements of candidate matched target
             }
         } else {  // Iterator version of above algorithm
             if (maxCandidate < 0)
                 return -1;
             ListIterator<?> si = source.listIterator(maxCandidate);
         nextCand:
             for (int candidate = maxCandidatecandidate >= 0; candidate--) {
                 ListIterator<?> ti = target.listIterator();
                 for (int i=0; i<targetSizei++) {
                     if (!eq(ti.next(), si.next())) {
                         if (candidate != 0) {
                            // Back up source iterator to next candidate
                            for (int j=0; j<=i+1; j++)
                                si.previous();
                        }
                        continue nextCand;
                    }
                }
                return candidate;
            }
        }
        return -1;  // No candidate matched the target
    }
    // Unmodifiable Wrappers

    
Returns an unmodifiable view of the specified collection. This method allows modules to provide users with "read-only" access to internal collections. Query operations on the returned collection "read through" to the specified collection, and attempts to modify the returned collection, whether direct or via its iterator, result in an UnsupportedOperationException.

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 the case that the backing collection is a set or a list.

The returned collection will be serializable if the specified collection is serializable.

Parameters:
c the collection for which an unmodifiable view is to be returned.
Returns:
an unmodifiable view of the specified collection.
    public static <T> Collection<T> unmodifiableCollection(Collection<? extends T> c) {
        return new UnmodifiableCollection<>(c);
    }

    

Serial:
include
    static class UnmodifiableCollection<E> implements Collection<E>, Serializable {
        private static final long serialVersionUID = 1820017752578914078L;
        final Collection<? extends E> c;
        UnmodifiableCollection(Collection<? extends E> c) {
            if (c==null)
                throw new NullPointerException();
            this. = c;
        }
        public int size()                   {return .size();}
        public boolean isEmpty()            {return .isEmpty();}
        public boolean contains(Object o)   {return .contains(o);}
        public Object[] toArray()           {return .toArray();}
        public <T> T[] toArray(T[] a)       {return .toArray(a);}
        public String toString()            {return .toString();}
        public Iterator<E> iterator() {
            return new Iterator<E>() {
                private final Iterator<? extends E> i = .iterator();
                public boolean hasNext() {return .hasNext();}
                public E next()          {return .next();}
                public void remove() {
                    throw new UnsupportedOperationException();
                }
            };
        }
        public boolean add(E e) {
            throw new UnsupportedOperationException();
        }
        public boolean remove(Object o) {
            throw new UnsupportedOperationException();
        }
        public boolean containsAll(Collection<?> coll) {
            return .containsAll(coll);
        }
        public boolean addAll(Collection<? extends E> coll) {
            throw new UnsupportedOperationException();
        }
        public boolean removeAll(Collection<?> coll) {
            throw new UnsupportedOperationException();
        }
        public boolean retainAll(Collection<?> coll) {
            throw new UnsupportedOperationException();
        }
        public void clear() {
            throw new UnsupportedOperationException();
        }
    }

    
Returns an unmodifiable view of the specified set. This method allows modules to provide users with "read-only" access to internal sets. Query operations on the returned set "read through" to the specified set, and attempts to modify the returned set, whether direct or via its iterator, result in an UnsupportedOperationException.

The returned set will be serializable if the specified set is serializable.

Parameters:
s the set for which an unmodifiable view is to be returned.
Returns:
an unmodifiable view of the specified set.
    public static <T> Set<T> unmodifiableSet(Set<? extends T> s) {
        return new UnmodifiableSet<>(s);
    }

    

Serial:
include
    static class UnmodifiableSet<E> extends UnmodifiableCollection<E>
                                 implements Set<E>, Serializable {
        private static final long serialVersionUID = -9215047833775013803L;
        UnmodifiableSet(Set<? extends E> s)     {super(s);}
        public boolean equals(Object o) {return o == this || .equals(o);}
        public int hashCode()           {return .hashCode();}
    }

    
Returns an unmodifiable view of the specified sorted set. This method allows modules to provide users with "read-only" access to internal sorted sets. Query operations on the returned sorted set "read through" to the specified sorted set. Attempts to modify the returned sorted set, whether direct, via its iterator, or via its subSet, headSet, or tailSet views, result in an UnsupportedOperationException.

The returned sorted set will be serializable if the specified sorted set is serializable.

Parameters:
s the sorted set for which an unmodifiable view is to be returned.
Returns:
an unmodifiable view of the specified sorted set.
    public static <T> SortedSet<T> unmodifiableSortedSet(SortedSet<T> s) {
        return new UnmodifiableSortedSet<>(s);
    }

    

Serial:
include
    static class UnmodifiableSortedSet<E>
                             extends UnmodifiableSet<E>
                             implements SortedSet<E>, Serializable {
        private static final long serialVersionUID = -4929149591599911165L;
        private final SortedSet<E> ss;
        UnmodifiableSortedSet(SortedSet<E> s) {super(s);  = s;}
        public Comparator<? super E> comparator() {return .comparator();}
        public SortedSet<E> subSet(E fromElement, E toElement) {
            return new UnmodifiableSortedSet<>(.subSet(fromElement,toElement));
        }
        public SortedSet<E> headSet(E toElement) {
            return new UnmodifiableSortedSet<>(.headSet(toElement));
        }
        public SortedSet<E> tailSet(E fromElement) {
            return new UnmodifiableSortedSet<>(.tailSet(fromElement));
        }
        public E first()                   {return .first();}
        public E last()                    {return .last();}
    }

    
Returns an unmodifiable view of the specified list. This method allows modules to provide users with "read-only" access to internal lists. Query operations on the returned list "read through" to the specified list, and attempts to modify the returned list, whether direct or via its iterator, result in an UnsupportedOperationException.

The returned list will be serializable if the specified list is serializable. Similarly, the returned list will implement RandomAccess if the specified list does.

Parameters:
list the list for which an unmodifiable view is to be returned.
Returns:
an unmodifiable view of the specified list.
    public static <T> List<T> unmodifiableList(List<? extends T> list) {
        return (list instanceof RandomAccess ?
                new UnmodifiableRandomAccessList<>(list) :
                new UnmodifiableList<>(list));
    }

    

Serial:
include
    static class UnmodifiableList<E> extends UnmodifiableCollection<E>
                                  implements List<E> {
        private static final long serialVersionUID = -283967356065247728L;
        final List<? extends E> list;
        UnmodifiableList(List<? extends E> list) {
            super(list);
            this. = list;
        }
        public boolean equals(Object o) {return o == this || .equals(o);}
        public int hashCode()           {return .hashCode();}
        public E get(int index) {return .get(index);}
        public E set(int index, E element) {
            throw new UnsupportedOperationException();
        }
        public void add(int index, E element) {
            throw new UnsupportedOperationException();
        }
        public E remove(int index) {
            throw new UnsupportedOperationException();
        }
        public int indexOf(Object o)            {return .indexOf(o);}
        public int lastIndexOf(Object o)        {return .lastIndexOf(o);}
        public boolean addAll(int indexCollection<? extends E> c) {
            throw new UnsupportedOperationException();
        }
        public ListIterator<E> listIterator()   {return listIterator(0);}
        public ListIterator<E> listIterator(final int index) {
            return new ListIterator<E>() {
                private final ListIterator<? extends E> i
                    = .listIterator(index);
                public boolean hasNext()     {return .hasNext();}
                public E next()              {return .next();}
                public boolean hasPrevious() {return .hasPrevious();}
                public E previous()          {return .previous();}
                public int nextIndex()       {return .nextIndex();}
                public int previousIndex()   {return .previousIndex();}
                public void remove() {
                    throw new UnsupportedOperationException();
                }
                public void set(E e) {
                    throw new UnsupportedOperationException();
                }
                public void add(E e) {
                    throw new UnsupportedOperationException();
                }
            };
        }
        public List<E> subList(int fromIndexint toIndex) {
            return new UnmodifiableList<>(.subList(fromIndextoIndex));
        }

        
UnmodifiableRandomAccessList instances are serialized as UnmodifiableList instances to allow them to be deserialized in pre-1.4 JREs (which do not have UnmodifiableRandomAccessList). This method inverts the transformation. As a beneficial side-effect, it also grafts the RandomAccess marker onto UnmodifiableList instances that were serialized in pre-1.4 JREs. Note: Unfortunately, UnmodifiableRandomAccessList instances serialized in 1.4.1 and deserialized in 1.4 will become UnmodifiableList instances, as this method was missing in 1.4.
        private Object readResolve() {
            return ( instanceof RandomAccess
                    ? new UnmodifiableRandomAccessList<>()
                    : this);
        }
    }

    

Serial:
include
    static class UnmodifiableRandomAccessList<E> extends UnmodifiableList<E>
                                              implements RandomAccess
    {
        UnmodifiableRandomAccessList(List<? extends E> list) {
            super(list);
        }
        public List<E> subList(int fromIndexint toIndex) {
            return new UnmodifiableRandomAccessList<>(
                .subList(fromIndextoIndex));
        }
        private static final long serialVersionUID = -2542308836966382001L;

        
Allows instances to be deserialized in pre-1.4 JREs (which do not have UnmodifiableRandomAccessList). UnmodifiableList has a readResolve method that inverts this transformation upon deserialization.
        private Object writeReplace() {
            return new UnmodifiableList<>();
        }
    }

    
Returns an unmodifiable view of the specified map. This method allows modules to provide users with "read-only" access to internal maps. Query operations on the returned map "read through" to the specified map, and attempts to modify the returned map, whether direct or via its collection views, result in an UnsupportedOperationException.

The returned map will be serializable if the specified map is serializable.

Parameters:
m the map for which an unmodifiable view is to be returned.
Returns:
an unmodifiable view of the specified map.
    public static <K,V> Map<K,V> unmodifiableMap(Map<? extends K, ? extends V> m) {
        return new UnmodifiableMap<>(m);
    }

    

Serial:
include
    private static class UnmodifiableMap<K,V> implements Map<K,V>, Serializable {
        private static final long serialVersionUID = -1034234728574286014L;
        private final Map<? extends K, ? extends V> m;
        UnmodifiableMap(Map<? extends K, ? extends V> m) {
            if (m==null)
                throw new NullPointerException();
            this. = m;
        }
        public int size()                        {return .size();}
        public boolean isEmpty()                 {return .isEmpty();}
        public boolean containsKey(Object key)   {return .containsKey(key);}
        public boolean containsValue(Object val) {return .containsValue(val);}
        public V get(Object key)                 {return .get(key);}
        public V put(K key, V value) {
            throw new UnsupportedOperationException();
        }
        public V remove(Object key) {
            throw new UnsupportedOperationException();
        }
        public void putAll(Map<? extends K, ? extends V> m) {
            throw new UnsupportedOperationException();
        }
        public void clear() {
            throw new UnsupportedOperationException();
        }
        private transient Set<K> keySet = null;
        private transient Set<Map.Entry<K,V>> entrySet = null;
        private transient Collection<V> values = null;
        public Set<K> keySet() {
            if (==null)
                 = unmodifiableSet(.keySet());
            return ;
        }
        public Set<Map.Entry<K,V>> entrySet() {
            if (==null)
                 = new UnmodifiableEntrySet<>(.entrySet());
            return ;
        }
        public Collection<V> values() {
            if (==null)
                 = unmodifiableCollection(.values());
            return ;
        }
        public boolean equals(Object o) {return o == this || .equals(o);}
        public int hashCode()           {return .hashCode();}
        public String toString()        {return .toString();}

        
We need this class in addition to UnmodifiableSet as Map.Entries themselves permit modification of the backing Map via their setValue operation. This class is subtle: there are many possible attacks that must be thwarted.

Serial:
include
        static class UnmodifiableEntrySet<K,V>
            extends UnmodifiableSet<Map.Entry<K,V>> {
            private static final long serialVersionUID = 7854390611657943733L;
            UnmodifiableEntrySet(Set<? extends Map.Entry<? extends K, ? extends V>> s) {
                super((Set)s);
            }
            public Iterator<Map.Entry<K,V>> iterator() {
                return new Iterator<Map.Entry<K,V>>() {
                    private final Iterator<? extends Map.Entry<? extends K, ? extends V>> i = .iterator();
                    public boolean hasNext() {
                        return .hasNext();
                    }
                    public Map.Entry<K,V> next() {
                        return new UnmodifiableEntry<>(.next());
                    }
                    public void remove() {
                        throw new UnsupportedOperationException();
                    }
                };
            }
            public Object[] toArray() {
                Object[] a = .toArray();
                for (int i=0; i<a.lengthi++)
                    a[i] = new UnmodifiableEntry<>((Map.Entry<K,V>)a[i]);
                return a;
            }
            public <T> T[] toArray(T[] a) {
                // We don't pass a to c.toArray, to avoid window of
                // vulnerability wherein an unscrupulous multithreaded client
                // could get his hands on raw (unwrapped) Entries from c.
                Object[] arr = .toArray(a.length==0 ? a : Arrays.copyOf(a, 0));
                for (int i=0; i<arr.lengthi++)
                    arr[i] = new UnmodifiableEntry<>((Map.Entry<K,V>)arr[i]);
                if (arr.length > a.length)
                    return (T[])arr;
                System.arraycopy(arr, 0, a, 0, arr.length);
                if (a.length > arr.length)
                    a[arr.length] = null;
                return a;
            }

            
This method is overridden to protect the backing set against an object with a nefarious equals function that senses that the equality-candidate is Map.Entry and calls its setValue method.
            public boolean contains(Object o) {
                if (!(o instanceof Map.Entry))
                    return false;
                return .contains(
                    new UnmodifiableEntry<>((Map.Entry<?,?>) o));
            }

            
The next two methods are overridden to protect against an unscrupulous List whose contains(Object o) method senses when o is a Map.Entry, and calls o.setValue.
            public boolean containsAll(Collection<?> coll) {
                for (Object e : coll) {
                    if (!contains(e)) // Invokes safe contains() above
                        return false;
                }
                return true;
            }
            public boolean equals(Object o) {
                if (o == this)
                    return true;
                if (!(o instanceof Set))
                    return false;
                Set s = (Seto;
                if (s.size() != .size())
                    return false;
                return containsAll(s); // Invokes safe containsAll() above
            }

            
This "wrapper class" serves two purposes: it prevents the client from modifying the backing Map, by short-circuiting the setValue method, and it protects the backing Map against an ill-behaved Map.Entry that attempts to modify another Map Entry when asked to perform an equality check.
            private static class UnmodifiableEntry<K,V> implements Map.Entry<K,V> {
                private Map.Entry<? extends K, ? extends V> e;
                UnmodifiableEntry(Map.Entry<? extends K, ? extends V> e) {this. = e;}
                public K getKey()        {return .getKey();}
                public V getValue()      {return .getValue();}
                public V setValue(V value) {
                    throw new UnsupportedOperationException();
                }
                public int hashCode()    {return .hashCode();}
                public boolean equals(Object o) {
                    if (!(o instanceof Map.Entry))
                        return false;
                    Map.Entry t = (Map.Entry)o;
                    return eq(.getKey(),   t.getKey()) &&
                           eq(.getValue(), t.getValue());
                }
                public String toString() {return .toString();}
            }
        }
    }

    
Returns an unmodifiable view of the specified sorted map. This method allows modules to provide users with "read-only" access to internal sorted maps. Query operations on the returned sorted map "read through" to the specified sorted map. Attempts to modify the returned sorted map, whether direct, via its collection views, or via its subMap, headMap, or tailMap views, result in an UnsupportedOperationException.

The returned sorted map will be serializable if the specified sorted map is serializable.

Parameters:
m the sorted map for which an unmodifiable view is to be returned.
Returns:
an unmodifiable view of the specified sorted map.
    public static <K,V> SortedMap<K,V> unmodifiableSortedMap(SortedMap<K, ? extends V> m) {
        return new UnmodifiableSortedMap<>(m);
    }

    

Serial:
include
    static class UnmodifiableSortedMap<K,V>
          extends UnmodifiableMap<K,V>
          implements SortedMap<K,V>, Serializable {
        private static final long serialVersionUID = -8806743815996713206L;
        private final SortedMap<K, ? extends V> sm;
        UnmodifiableSortedMap(SortedMap<K, ? extends V> m) {super(m);  = m;}
        public Comparator<? super K> comparator() {return .comparator();}
        public SortedMap<K,V> subMap(K fromKey, K toKey) {
            return new UnmodifiableSortedMap<>(.subMap(fromKeytoKey));
        }
        public SortedMap<K,V> headMap(K toKey) {
            return new UnmodifiableSortedMap<>(.headMap(toKey));
        }
        public SortedMap<K,V> tailMap(K fromKey) {
            return new UnmodifiableSortedMap<>(.tailMap(fromKey));
        }
        public K firstKey()           {return .firstKey();}
        public K lastKey()            {return .lastKey();}
    }
    // Synch Wrappers

    
Returns a synchronized (thread-safe) collection backed by the specified collection. In order to guarantee serial access, it is critical that all access to the backing collection is accomplished through the returned collection.

It is imperative that the user manually synchronize on the returned collection when iterating over it:

  Collection c = Collections.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 the case that the backing collection is a set or a list.

The returned collection will be serializable if the specified collection is serializable.

Parameters:
c the collection to be "wrapped" in a synchronized collection.
Returns:
a synchronized view of the specified collection.
    public static <T> Collection<T> synchronizedCollection(Collection<T> c) {
        return new SynchronizedCollection<>(c);
    }
    static <T> Collection<T> synchronizedCollection(Collection<T> cObject mutex) {
        return new SynchronizedCollection<>(cmutex);
    }

    

Serial:
include
    static class SynchronizedCollection<E> implements Collection<E>, Serializable {
        private static final long serialVersionUID = 3053995032091335093L;
        final Collection<E> c;  // Backing Collection
        final Object mutex;     // Object on which to synchronize
        SynchronizedCollection(Collection<E> c) {
            if (c==null)
                throw new NullPointerException();
            this. = c;
             = this;
        }
        SynchronizedCollection(Collection<E> cObject mutex) {
            this. = c;
            this. = mutex;
        }
        public int size() {
            synchronized () {return .size();}
        }
        public boolean isEmpty() {
            synchronized () {return .isEmpty();}
        }
        public boolean contains(Object o) {
            synchronized () {return .contains(o);}
        }
        public Object[] toArray() {
            synchronized () {return .toArray();}
        }
        public <T> T[] toArray(T[] a) {
            synchronized () {return .toArray(a);}
        }
        public Iterator<E> iterator() {
            return .iterator(); // Must be manually synched by user!
        }
        public boolean add(E e) {
            synchronized () {return .add(e);}
        }
        public boolean remove(Object o) {
            synchronized () {return .remove(o);}
        }
        public boolean containsAll(Collection<?> coll) {
            synchronized () {return .containsAll(coll);}
        }
        public boolean addAll(Collection<? extends E> coll) {
            synchronized () {return .addAll(coll);}
        }
        public boolean removeAll(Collection<?> coll) {
            synchronized () {return .removeAll(coll);}
        }
        public boolean retainAll(Collection<?> coll) {
            synchronized () {return .retainAll(coll);}
        }
        public void clear() {
            synchronized () {.clear();}
        }
        public String toString() {
            synchronized () {return .toString();}
        }
        private void writeObject(ObjectOutputStream sthrows IOException {
            synchronized () {s.defaultWriteObject();}
        }
    }

    
Returns a synchronized (thread-safe) set backed by the specified set. In order to guarantee serial access, it is critical that all access to the backing set is accomplished through the returned set.

It is imperative that the user manually synchronize on the returned set when iterating over it:

  Set s = Collections.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.

Parameters:
s the set to be "wrapped" in a synchronized set.
Returns:
a synchronized view of the specified set.
    public static <T> Set<T> synchronizedSet(Set<T> s) {
        return new SynchronizedSet<>(s);
    }
    static <T> Set<T> synchronizedSet(Set<T> sObject mutex) {
        return new SynchronizedSet<>(smutex);
    }

    

Serial:
include
    static class SynchronizedSet<E>
          extends SynchronizedCollection<E>
          implements Set<E> {
        private static final long serialVersionUID = 487447009682186044L;
        SynchronizedSet(Set<E> s) {
            super(s);
        }
        SynchronizedSet(Set<E> sObject mutex) {
            super(smutex);
        }
        public boolean equals(Object o) {
            synchronized () {return .equals(o);}
        }
        public int hashCode() {
            synchronized () {return .hashCode();}
        }
    }

    
Returns a synchronized (thread-safe) sorted set backed by the specified sorted set. In order to guarantee serial access, it is critical that all access to the backing sorted set is accomplished through the returned sorted set (or its views).

It is imperative that the user manually synchronize on the returned sorted set when iterating over it or any of its subSet, headSet, or tailSet views.

  SortedSet s = Collections.synchronizedSortedSet(new TreeSet());
      ...
  synchronized (s) {
      Iterator i = s.iterator(); // Must be in the synchronized block
      while (i.hasNext())
          foo(i.next());
  }
 
or:
  SortedSet s = Collections.synchronizedSortedSet(new TreeSet());
  SortedSet s2 = s.headSet(foo);
      ...
  synchronized (s) {  // Note: s, not s2!!!
      Iterator i = s2.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 sorted set will be serializable if the specified sorted set is serializable.

Parameters:
s the sorted set to be "wrapped" in a synchronized sorted set.
Returns:
a synchronized view of the specified sorted set.
    public static <T> SortedSet<T> synchronizedSortedSet(SortedSet<T> s) {
        return new SynchronizedSortedSet<>(s);
    }

    

Serial:
include
    static class SynchronizedSortedSet<E>
        extends SynchronizedSet<E>
        implements SortedSet<E>
    {
        private static final long serialVersionUID = 8695801310862127406L;
        private final SortedSet<E> ss;
        SynchronizedSortedSet(SortedSet<E> s) {
            super(s);
             = s;
        }
        SynchronizedSortedSet(SortedSet<E> sObject mutex) {
            super(smutex);
             = s;
        }
        public Comparator<? super E> comparator() {
            synchronized () {return .comparator();}
        }
        public SortedSet<E> subSet(E fromElement, E toElement) {
            synchronized () {
                return new SynchronizedSortedSet<>(
                    .subSet(fromElementtoElement), );
            }
        }
        public SortedSet<E> headSet(E toElement) {
            synchronized () {
                return new SynchronizedSortedSet<>(.headSet(toElement), );
            }
        }
        public SortedSet<E> tailSet(E fromElement) {
            synchronized () {
               return new SynchronizedSortedSet<>(.tailSet(fromElement),);
            }
        }
        public E first() {
            synchronized () {return .first();}
        }
        public E last() {
            synchronized () {return .last();}
        }
    }

    
Returns a synchronized (thread-safe) list backed by the specified list. In order to guarantee serial access, it is critical that all access to the backing list is accomplished through the returned list.

It is imperative that the user manually synchronize on the returned list when iterating over it:

  List list = Collections.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.

Parameters:
list the list to be "wrapped" in a synchronized list.
Returns:
a synchronized view of the specified list.
    public static <T> List<T> synchronizedList(List<T> list) {
        return (list instanceof RandomAccess ?
                new SynchronizedRandomAccessList<>(list) :
                new SynchronizedList<>(list));
    }
    static <T> List<T> synchronizedList(List<T> listObject mutex) {
        return (list instanceof RandomAccess ?
                new SynchronizedRandomAccessList<>(listmutex) :
                new SynchronizedList<>(listmutex));
    }

    

Serial:
include
    static class SynchronizedList<E>
        extends SynchronizedCollection<E>
        implements List<E> {
        private static final long serialVersionUID = -7754090372962971524L;
        final List<E> list;
        SynchronizedList(List<E> list) {
            super(list);
            this. = list;
        }
        SynchronizedList(List<E> listObject mutex) {
            super(listmutex);
            this. = list;
        }
        public boolean equals(Object o) {
            synchronized () {return .equals(o);}
        }
        public int hashCode() {
            synchronized () {return .hashCode();}
        }
        public E get(int index) {
            synchronized () {return .get(index);}
        }
        public E set(int index, E element) {
            synchronized () {return .set(indexelement);}
        }
        public void add(int index, E element) {
            synchronized () {.add(indexelement);}
        }
        public E remove(int index) {
            synchronized () {return .remove(index);}
        }
        public int indexOf(Object o) {
            synchronized () {return .indexOf(o);}
        }
        public int lastIndexOf(Object o) {
            synchronized () {return .lastIndexOf(o);}
        }
        public boolean addAll(int indexCollection<? extends E> c) {
            synchronized () {return .addAll(indexc);}
        }
        public ListIterator<E> listIterator() {
            return .listIterator(); // Must be manually synched by user
        }
        public ListIterator<E> listIterator(int index) {
            return .listIterator(index); // Must be manually synched by user
        }
        public List<E> subList(int fromIndexint toIndex) {
            synchronized () {
                return new SynchronizedList<>(.subList(fromIndextoIndex),
                                            );
            }
        }

        
SynchronizedRandomAccessList instances are serialized as SynchronizedList instances to allow them to be deserialized in pre-1.4 JREs (which do not have SynchronizedRandomAccessList). This method inverts the transformation. As a beneficial side-effect, it also grafts the RandomAccess marker onto SynchronizedList instances that were serialized in pre-1.4 JREs. Note: Unfortunately, SynchronizedRandomAccessList instances serialized in 1.4.1 and deserialized in 1.4 will become SynchronizedList instances, as this method was missing in 1.4.
        private Object readResolve() {
            return ( instanceof RandomAccess
                    ? new SynchronizedRandomAccessList<>()
                    : this);
        }
    }

    

Serial:
include
    static class SynchronizedRandomAccessList<E>
        extends SynchronizedList<E>
        implements RandomAccess {
        SynchronizedRandomAccessList(List<E> list) {
            super(list);
        }
        SynchronizedRandomAccessList(List<E> listObject mutex) {
            super(listmutex);
        }
        public List<E> subList(int fromIndexint toIndex) {
            synchronized () {
                return new SynchronizedRandomAccessList<>(
                    .subList(fromIndextoIndex), );
            }
        }
        private static final long serialVersionUID = 1530674583602358482L;

        
Allows instances to be deserialized in pre-1.4 JREs (which do not have SynchronizedRandomAccessList). SynchronizedList has a readResolve method that inverts this transformation upon deserialization.
        private Object writeReplace() {
            return new SynchronizedList<>();
        }
    }

    
Returns a synchronized (thread-safe) map backed by the specified map. In order to guarantee serial access, it is critical that all access to the backing map is accomplished through the returned map.

It is imperative that the user manually synchronize on the returned map when iterating over any of its collection views:

  Map m = Collections.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.

Parameters:
m the map to be "wrapped" in a synchronized map.
Returns:
a synchronized view of the specified map.
    public static <K,V> Map<K,V> synchronizedMap(Map<K,V> m) {
        return new SynchronizedMap<>(m);
    }

    

Serial:
include
    private static class SynchronizedMap<K,V>
        implements Map<K,V>, Serializable {
        private static final long serialVersionUID = 1978198479659022715L;
        private final Map<K,V> m;     // Backing Map
        final Object      mutex;        // Object on which to synchronize
        SynchronizedMap(Map<K,V> m) {
            if (m==null)
                throw new NullPointerException();
            this. = m;
             = this;
        }
        SynchronizedMap(Map<K,V> mObject mutex) {
            this. = m;
            this. = mutex;
        }
        public int size() {
            synchronized () {return .size();}
        }
        public boolean isEmpty() {
            synchronized () {return .isEmpty();}
        }
        public boolean containsKey(Object key) {
            synchronized () {return .containsKey(key);}
        }
        public boolean containsValue(Object value) {
            synchronized () {return .containsValue(value);}
        }
        public V get(Object key) {
            synchronized () {return .get(key);}
        }
        public V put(K key, V value) {
            synchronized () {return .put(keyvalue);}
        }
        public V remove(Object key) {
            synchronized () {return .remove(key);}
        }
        public void putAll(Map<? extends K, ? extends V> map) {
            synchronized () {.putAll(map);}
        }
        public void clear() {
            synchronized () {.clear();}
        }
        private transient Set<K> keySet = null;
        private transient Set<Map.Entry<K,V>> entrySet = null;
        private transient Collection<V> values = null;
        public Set<K> keySet() {
            synchronized () {
                if (==null)
                     = new SynchronizedSet<>(.keySet(), );
                return ;
            }
        }
        public Set<Map.Entry<K,V>> entrySet() {
            synchronized () {
                if (==null)
                     = new SynchronizedSet<>(.entrySet(), );
                return ;
            }
        }
        public Collection<V> values() {
            synchronized () {
                if (==null)
                     = new SynchronizedCollection<>(.values(), );
                return ;
            }
        }
        public boolean equals(Object o) {
            synchronized () {return .equals(o);}
        }
        public int hashCode() {
            synchronized () {return .hashCode();}
        }
        public String toString() {
            synchronized () {return .toString();}
        }
        private void writeObject(ObjectOutputStream sthrows IOException {
            synchronized () {s.defaultWriteObject();}
        }
    }

    
Returns a synchronized (thread-safe) sorted map backed by the specified sorted map. In order to guarantee serial access, it is critical that all access to the backing sorted map is accomplished through the returned sorted map (or its views).

It is imperative that the user manually synchronize on the returned sorted map when iterating over any of its collection views, or the collections views of any of its subMap, headMap or tailMap views.

  SortedMap m = Collections.synchronizedSortedMap(new TreeMap());
      ...
  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());
  }
 
or:
  SortedMap m = Collections.synchronizedSortedMap(new TreeMap());
  SortedMap m2 = m.subMap(foo, bar);
      ...
  Set s2 = m2.keySet();  // Needn't be in synchronized block
      ...
  synchronized (m) {  // Synchronizing on m, not m2 or s2!
      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 sorted map will be serializable if the specified sorted map is serializable.

Parameters:
m the sorted map to be "wrapped" in a synchronized sorted map.
Returns:
a synchronized view of the specified sorted map.
    public static <K,V> SortedMap<K,V> synchronizedSortedMap(SortedMap<K,V> m) {
        return new SynchronizedSortedMap<>(m);
    }


    

Serial:
include
    static class SynchronizedSortedMap<K,V>
        extends SynchronizedMap<K,V>
        implements SortedMap<K,V>
    {
        private static final long serialVersionUID = -8798146769416483793L;
        private final SortedMap<K,V> sm;
        SynchronizedSortedMap(SortedMap<K,V> m) {
            super(m);
             = m;
        }
        SynchronizedSortedMap(SortedMap<K,V> mObject mutex) {
            super(mmutex);
             = m;
        }
        public Comparator<? super K> comparator() {
            synchronized () {return .comparator();}
        }
        public SortedMap<K,V> subMap(K fromKey, K toKey) {
            synchronized () {
                return new SynchronizedSortedMap<>(
                    .subMap(fromKeytoKey), );
            }
        }
        public SortedMap<K,V> headMap(K toKey) {
            synchronized () {
                return new SynchronizedSortedMap<>(.headMap(toKey), );
            }
        }
        public SortedMap<K,V> tailMap(K fromKey) {
            synchronized () {
               return new SynchronizedSortedMap<>(.tailMap(fromKey),);
            }
        }
        public K firstKey() {
            synchronized () {return .firstKey();}
        }
        public K lastKey() {
            synchronized () {return .lastKey();}
        }
    }
    // Dynamically typesafe collection wrappers

    
Returns a dynamically typesafe view of the specified collection. Any attempt to insert an element of the wrong type will result in an immediate java.lang.ClassCastException. Assuming a collection contains no incorrectly typed elements prior to the time a dynamically typesafe view is generated, and that all subsequent access to the collection takes place through the view, it is guaranteed that the collection cannot contain an incorrectly typed element.

The generics mechanism in the language provides compile-time (static) type checking, but it is possible to defeat this mechanism with unchecked casts. Usually this is not a problem, as the compiler issues warnings on all such unchecked operations. There are, however, times when static type checking alone is not sufficient. For example, suppose a collection is passed to a third-party library and it is imperative that the library code not corrupt the collection by inserting an element of the wrong type.

Another use of dynamically typesafe views is debugging. Suppose a program fails with a ClassCastException, indicating that an incorrectly typed element was put into a parameterized collection. Unfortunately, the exception can occur at any time after the erroneous element is inserted, so it typically provides little or no information as to the real source of the problem. If the problem is reproducible, one can quickly determine its source by temporarily modifying the program to wrap the collection with a dynamically typesafe view. For example, this declaration:

 Collection<String> c = new HashSet<String>();
 
may be replaced temporarily by this one:
 Collection<String> c = Collections.checkedCollection(
         new HashSet<String>(), String.class);
 
Running the program again will cause it to fail at the point where an incorrectly typed element is inserted into the collection, clearly identifying the source of the problem. Once the problem is fixed, the modified declaration may be reverted back to the original.

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 the case that the backing collection is a set or a list.

The returned collection will be serializable if the specified collection is serializable.

Since null is considered to be a value of any reference type, the returned collection permits insertion of null elements whenever the backing collection does.

Parameters:
c the collection for which a dynamically typesafe view is to be returned
type the type of element that c is permitted to hold
Returns:
a dynamically typesafe view of the specified collection
Since:
1.5
    public static <E> Collection<E> checkedCollection(Collection<E> c,
                                                      Class<E> type) {
        return new CheckedCollection<>(ctype);
    }
    @SuppressWarnings("unchecked")
    static <T> T[] zeroLengthArray(Class<T> type) {
        return (T[]) Array.newInstance(type, 0);
    }

    

Serial:
include
    static class CheckedCollection<E> implements Collection<E>, Serializable {
        private static final long serialVersionUID = 1578914078182001775L;
        final Collection<E> c;
        final Class<E> type;
        void typeCheck(Object o) {
            if (o != null && !.isInstance(o))
                throw new ClassCastException(badElementMsg(o));
        }
        private String badElementMsg(Object o) {
            return "Attempt to insert " + o.getClass() +
                " element into collection with element type " + ;
        }
        CheckedCollection(Collection<E> cClass<E> type) {
            if (c==null || type == null)
                throw new NullPointerException();
            this. = c;
            this. = type;
        }
        public int size()                 { return .size(); }
        public boolean isEmpty()          { return .isEmpty(); }
        public boolean contains(Object o) { return .contains(o); }
        public Object[] toArray()         { return .toArray(); }
        public <T> T[] toArray(T[] a)     { return .toArray(a); }
        public String toString()          { return .toString(); }
        public boolean remove(Object o)   { return .remove(o); }
        public void clear()               {        .clear(); }
        public boolean containsAll(Collection<?> coll) {
            return .containsAll(coll);
        }
        public boolean removeAll(Collection<?> coll) {
            return .removeAll(coll);
        }
        public boolean retainAll(Collection<?> coll) {
            return .retainAll(coll);
        }
        public Iterator<E> iterator() {
            final Iterator<E> it = .iterator();
            return new Iterator<E>() {
                public boolean hasNext() { return it.hasNext(); }
                public E next()          { return it.next(); }
                public void remove()     {        it.remove(); }};
        }
        public boolean add(E e) {
            typeCheck(e);
            return .add(e);
        }
        private E[] zeroLengthElementArray = null// Lazily initialized
        private E[] zeroLengthElementArray() {
            return  != null ?  :
                ( = zeroLengthArray());
        }
        @SuppressWarnings("unchecked")
        Collection<E> checkedCopyOf(Collection<? extends E> coll) {
            Object[] a = null;
            try {
                E[] z = zeroLengthElementArray();
                a = coll.toArray(z);
                // Defend against coll violating the toArray contract
                if (a.getClass() != z.getClass())
                    a = Arrays.copyOf(aa.lengthz.getClass());
            } catch (ArrayStoreException ignore) {
                // To get better and consistent diagnostics,
                // we call typeCheck explicitly on each element.
                // We call clone() to defend against coll retaining a
                // reference to the returned array and storing a bad
                // element into it after it has been type checked.
                a = coll.toArray().clone();
                for (Object o : a)
                    typeCheck(o);
            }
            // A slight abuse of the type system, but safe here.
            return (Collection<E>) Arrays.asList(a);
        }
        public boolean addAll(Collection<? extends E> coll) {
            // Doing things this way insulates us from concurrent changes
            // in the contents of coll and provides all-or-nothing
            // semantics (which we wouldn't get if we type-checked each
            // element as we added it)
            return .addAll(checkedCopyOf(coll));
        }
    }

    
Returns a dynamically typesafe view of the specified set. Any attempt to insert an element of the wrong type will result in an immediate java.lang.ClassCastException. Assuming a set contains no incorrectly typed elements prior to the time a dynamically typesafe view is generated, and that all subsequent access to the set takes place through the view, it is guaranteed that the set cannot contain an incorrectly typed element.

A discussion of the use of dynamically typesafe views may be found in the documentation for the checkedCollection method.

The returned set will be serializable if the specified set is serializable.

Since null is considered to be a value of any reference type, the returned set permits insertion of null elements whenever the backing set does.

Parameters:
s the set for which a dynamically typesafe view is to be returned
type the type of element that s is permitted to hold
Returns:
a dynamically typesafe view of the specified set
Since:
1.5
    public static <E> Set<E> checkedSet(Set<E> sClass<E> type) {
        return new CheckedSet<>(stype);
    }

    

Serial:
include
    static class CheckedSet<E> extends CheckedCollection<E>
                                 implements Set<E>, Serializable
    {
        private static final long serialVersionUID = 4694047833775013803L;
        CheckedSet(Set<E> sClass<E> elementType) { super(selementType); }
        public boolean equals(Object o) { return o == this || .equals(o); }
        public int hashCode()           { return .hashCode(); }
    }

    
Returns a dynamically typesafe view of the specified sorted set. Any attempt to insert an element of the wrong type will result in an immediate java.lang.ClassCastException. Assuming a sorted set contains no incorrectly typed elements prior to the time a dynamically typesafe view is generated, and that all subsequent access to the sorted set takes place through the view, it is guaranteed that the sorted set cannot contain an incorrectly typed element.

A discussion of the use of dynamically typesafe views may be found in the documentation for the checkedCollection method.

The returned sorted set will be serializable if the specified sorted set is serializable.

Since null is considered to be a value of any reference type, the returned sorted set permits insertion of null elements whenever the backing sorted set does.

Parameters:
s the sorted set for which a dynamically typesafe view is to be returned
type the type of element that s is permitted to hold
Returns:
a dynamically typesafe view of the specified sorted set
Since:
1.5
    public static <E> SortedSet<E> checkedSortedSet(SortedSet<E> s,
                                                    Class<E> type) {
        return new CheckedSortedSet<>(stype);
    }

    

Serial:
include
    static class CheckedSortedSet<E> extends CheckedSet<E>
        implements SortedSet<E>, Serializable
    {
        private static final long serialVersionUID = 1599911165492914959L;
        private final SortedSet<E> ss;
        CheckedSortedSet(SortedSet<E> sClass<E> type) {
            super(stype);
             = s;
        }
        public Comparator<? super E> comparator() { return .comparator(); }
        public E first()                   { return .first(); }
        public E last()                    { return .last(); }
        public SortedSet<E> subSet(E fromElement, E toElement) {
            return checkedSortedSet(.subSet(fromElement,toElement), );
        }
        public SortedSet<E> headSet(E toElement) {
            return checkedSortedSet(.headSet(toElement), );
        }
        public SortedSet<E> tailSet(E fromElement) {
            return checkedSortedSet(.tailSet(fromElement), );
        }
    }

    
Returns a dynamically typesafe view of the specified list. Any attempt to insert an element of the wrong type will result in an immediate java.lang.ClassCastException. Assuming a list contains no incorrectly typed elements prior to the time a dynamically typesafe view is generated, and that all subsequent access to the list takes place through the view, it is guaranteed that the list cannot contain an incorrectly typed element.

A discussion of the use of dynamically typesafe views may be found in the documentation for the checkedCollection method.

The returned list will be serializable if the specified list is serializable.

Since null is considered to be a value of any reference type, the returned list permits insertion of null elements whenever the backing list does.

Parameters:
list the list for which a dynamically typesafe view is to be returned
type the type of element that list is permitted to hold
Returns:
a dynamically typesafe view of the specified list
Since:
1.5
    public static <E> List<E> checkedList(List<E> listClass<E> type) {
        return (list instanceof RandomAccess ?
                new CheckedRandomAccessList<>(listtype) :
                new CheckedList<>(listtype));
    }

    

Serial:
include
    static class CheckedList<E>
        extends CheckedCollection<E>
        implements List<E>
    {
        private static final long serialVersionUID = 65247728283967356L;
        final List<E> list;
        CheckedList(List<E> listClass<E> type) {
            super(listtype);
            this. = list;
        }
        public boolean equals(Object o)  { return o == this || .equals(o); }
        public int hashCode()            { return .hashCode(); }
        public E get(int index)          { return .get(index); }
        public E remove(int index)       { return .remove(index); }
        public int indexOf(Object o)     { return .indexOf(o); }
        public int lastIndexOf(Object o) { return .lastIndexOf(o); }
        public E set(int index, E element) {
            typeCheck(element);
            return .set(indexelement);
        }
        public void add(int index, E element) {
            typeCheck(element);
            .add(indexelement);
        }
        public boolean addAll(int indexCollection<? extends E> c) {
            return .addAll(indexcheckedCopyOf(c));
        }
        public ListIterator<E> listIterator()   { return listIterator(0); }
        public ListIterator<E> listIterator(final int index) {
            final ListIterator<E> i = .listIterator(index);
            return new ListIterator<E>() {
                public boolean hasNext()     { return i.hasNext(); }
                public E next()              { return i.next(); }
                public boolean hasPrevious() { return i.hasPrevious(); }
                public E previous()          { return i.previous(); }
                public int nextIndex()       { return i.nextIndex(); }
                public int previousIndex()   { return i.previousIndex(); }
                public void remove()         {        i.remove(); }
                public void set(E e) {
                    typeCheck(e);
                    i.set(e);
                }
                public void add(E e) {
                    typeCheck(e);
                    i.add(e);
                }
            };
        }
        public List<E> subList(int fromIndexint toIndex) {
            return new CheckedList<>(.subList(fromIndextoIndex), );
        }
    }

    

Serial:
include
    static class CheckedRandomAccessList<E> extends CheckedList<E>
                                            implements RandomAccess
    {
        private static final long serialVersionUID = 1638200125423088369L;
        CheckedRandomAccessList(List<E> listClass<E> type) {
            super(listtype);
        }
        public List<E> subList(int fromIndexint toIndex) {
            return new CheckedRandomAccessList<>(
                .subList(fromIndextoIndex), );
        }
    }

    
Returns a dynamically typesafe view of the specified map. Any attempt to insert a mapping whose key or value have the wrong type will result in an immediate java.lang.ClassCastException. Similarly, any attempt to modify the value currently associated with a key will result in an immediate java.lang.ClassCastException, whether the modification is attempted directly through the map itself, or through a Map.Entry instance obtained from the map's entry set view.

Assuming a map contains no incorrectly typed keys or values prior to the time a dynamically typesafe view is generated, and that all subsequent access to the map takes place through the view (or one of its collection views), it is guaranteed that the map cannot contain an incorrectly typed key or value.

A discussion of the use of dynamically typesafe views may be found in the documentation for the checkedCollection method.

The returned map will be serializable if the specified map is serializable.

Since null is considered to be a value of any reference type, the returned map permits insertion of null keys or values whenever the backing map does.

Parameters:
m the map for which a dynamically typesafe view is to be returned
keyType the type of key that m is permitted to hold
valueType the type of value that m is permitted to hold
Returns:
a dynamically typesafe view of the specified map
Since:
1.5
    public static <K, V> Map<K, V> checkedMap(Map<K, V> m,
                                              Class<K> keyType,
                                              Class<V> valueType) {
        return new CheckedMap<>(mkeyTypevalueType);
    }


    

Serial:
include
    private static class CheckedMap<K,V>
        implements Map<K,V>, Serializable
    {
        private static final long serialVersionUID = 5742860141034234728L;
        private final Map<K, V> m;
        final Class<K> keyType;
        final Class<V> valueType;
        private void typeCheck(Object keyObject value) {
            if (key != null && !.isInstance(key))
                throw new ClassCastException(badKeyMsg(key));
            if (value != null && !.isInstance(value))
                throw new ClassCastException(badValueMsg(value));
        }
        private String badKeyMsg(Object key) {
            return "Attempt to insert " + key.getClass() +
                " key into map with key type " + ;
        }
        private String badValueMsg(Object value) {
            return "Attempt to insert " + value.getClass() +
                " value into map with value type " + ;
        }
        CheckedMap(Map<K, V> mClass<K> keyTypeClass<V> valueType) {
            if (m == null || keyType == null || valueType == null)
                throw new NullPointerException();
            this. = m;
            this. = keyType;
            this. = valueType;
        }
        public int size()                      { return .size(); }
        public boolean isEmpty()               { return .isEmpty(); }
        public boolean containsKey(Object key) { return .containsKey(key); }
        public boolean containsValue(Object v) { return .containsValue(v); }
        public V get(Object key)               { return .get(key); }
        public V remove(Object key)            { return .remove(key); }
        public void clear()                    { .clear(); }
        public Set<K> keySet()                 { return .keySet(); }
        public Collection<V> values()          { return .values(); }
        public boolean equals(Object o)        { return o == this || .equals(o); }
        public int hashCode()                  { return .hashCode(); }
        public String toString()               { return .toString(); }
        public V put(K key, V value) {
            typeCheck(keyvalue);
            return .put(keyvalue);
        }
        @SuppressWarnings("unchecked")
        public void putAll(Map<? extends K, ? extends V> t) {
            // Satisfy the following goals:
            // - good diagnostics in case of type mismatch
            // - all-or-nothing semantics
            // - protection from malicious t
            // - correct behavior if t is a concurrent map
            Object[] entries = t.entrySet().toArray();
            List<Map.Entry<K,V>> checked = new ArrayList<>(entries.length);
            for (Object o : entries) {
                Map.Entry<?,?> e = (Map.Entry<?,?>) o;
                Object k = e.getKey();
                Object v = e.getValue();
                typeCheck(kv);
                checked.add(
                    new AbstractMap.SimpleImmutableEntry<>((K) k, (V) v));
            }
            for (Map.Entry<K,V> e : checked)
                .put(e.getKey(), e.getValue());
        }
        private transient Set<Map.Entry<K,V>> entrySet = null;
        public Set<Map.Entry<K,V>> entrySet() {
            if (==null)
                 = new CheckedEntrySet<>(.entrySet(), );
            return ;
        }

        
We need this class in addition to CheckedSet as Map.Entry permits modification of the backing Map via the setValue operation. This class is subtle: there are many possible attacks that must be thwarted.

Serial:
exclude
        static class CheckedEntrySet<K,V> implements Set<Map.Entry<K,V>> {
            private final Set<Map.Entry<K,V>> s;
            private final Class<V> valueType;
            CheckedEntrySet(Set<Map.Entry<K, V>> sClass<V> valueType) {
                this. = s;
                this. = valueType;
            }
            public int size()        { return .size(); }
            public boolean isEmpty() { return .isEmpty(); }
            public String toString() { return .toString(); }
            public int hashCode()    { return .hashCode(); }
            public void clear()      {        .clear(); }
            public boolean add(Map.Entry<K, V> e) {
                throw new UnsupportedOperationException();
            }
            public boolean addAll(Collection<? extends Map.Entry<K, V>> coll) {
                throw new UnsupportedOperationException();
            }
            public Iterator<Map.Entry<K,V>> iterator() {
                final Iterator<Map.Entry<K, V>> i = .iterator();
                final Class<V> valueType = this.;
                return new Iterator<Map.Entry<K,V>>() {
                    public boolean hasNext() { return i.hasNext(); }
                    public void remove()     { i.remove(); }
                    public Map.Entry<K,V> next() {
                        return checkedEntry(i.next(), valueType);
                    }
                };
            }
            @SuppressWarnings("unchecked")
            public Object[] toArray() {
                Object[] source = .toArray();
                /*
                 * Ensure that we don't get an ArrayStoreException even if
                 * s.toArray returns an array of something other than Object
                 */
                Object[] dest = (CheckedEntry.class.isInstance(
                    source.getClass().getComponentType()) ? source :
                                 new Object[source.length]);
                for (int i = 0; i < source.lengthi++)
                    dest[i] = checkedEntry((Map.Entry<K,V>)source[i],
                                           );
                return dest;
            }
            @SuppressWarnings("unchecked")
            public <T> T[] toArray(T[] a) {
                // We don't pass a to s.toArray, to avoid window of
                // vulnerability wherein an unscrupulous multithreaded client
                // could get his hands on raw (unwrapped) Entries from s.
                T[] arr = .toArray(a.length==0 ? a : Arrays.copyOf(a, 0));
                for (int i=0; i<arr.lengthi++)
                    arr[i] = (T) checkedEntry((Map.Entry<K,V>)arr[i],
                                              );
                if (arr.length > a.length)
                    return arr;
                System.arraycopy(arr, 0, a, 0, arr.length);
                if (a.length > arr.length)
                    a[arr.length] = null;
                return a;
            }

            
This method is overridden to protect the backing set against an object with a nefarious equals function that senses that the equality-candidate is Map.Entry and calls its setValue method.
            public boolean contains(Object o) {
                if (!(o instanceof Map.Entry))
                    return false;
                Map.Entry<?,?> e = (Map.Entry<?,?>) o;
                return .contains(
                    (e instanceof CheckedEntry) ? e : checkedEntry(e));
            }

            
The bulk collection methods are overridden to protect against an unscrupulous collection whose contains(Object o) method senses when o is a Map.Entry, and calls o.setValue.
            public boolean containsAll(Collection<?> c) {
                for (Object o : c)
                    if (!contains(o)) // Invokes safe contains() above
                        return false;
                return true;
            }
            public boolean remove(Object o) {
                if (!(o instanceof Map.Entry))
                    return false;
                return .remove(new AbstractMap.SimpleImmutableEntry
                                <>((Map.Entry<?,?>)o));
            }
            public boolean removeAll(Collection<?> c) {
                return batchRemove(cfalse);
            }
            public boolean retainAll(Collection<?> c) {
                return batchRemove(ctrue);
            }
            private boolean batchRemove(Collection<?> cboolean complement) {
                boolean modified = false;
                Iterator<Map.Entry<K,V>> it = iterator();
                while (it.hasNext()) {
                    if (c.contains(it.next()) != complement) {
                        it.remove();
                        modified = true;
                    }
                }
                return modified;
            }
            public boolean equals(Object o) {
                if (o == this)
                    return true;
                if (!(o instanceof Set))
                    return false;
                Set<?> that = (Set<?>) o;
                return that.size() == .size()
                    && containsAll(that); // Invokes safe containsAll() above
            }
            static <K,V,T> CheckedEntry<K,V,T> checkedEntry(Map.Entry<K,V> e,
                                                            Class<T> valueType) {
                return new CheckedEntry<>(evalueType);
            }

            
This "wrapper class" serves two purposes: it prevents the client from modifying the backing Map, by short-circuiting the setValue method, and it protects the backing Map against an ill-behaved Map.Entry that attempts to modify another Map.Entry when asked to perform an equality check.
            private static class CheckedEntry<K,V,T> implements Map.Entry<K,V> {
                private final Map.Entry<K, V> e;
                private final Class<T> valueType;
                CheckedEntry(Map.Entry<K, V> eClass<T> valueType) {
                    this. = e;
                    this. = valueType;
                }
                public K getKey()        { return .getKey(); }
                public V getValue()      { return .getValue(); }
                public int hashCode()    { return .hashCode(); }
                public String toString() { return .toString(); }
                public V setValue(V value) {
                    if (value != null && !.isInstance(value))
                        throw new ClassCastException(badValueMsg(value));
                    return .setValue(value);
                }
                private String badValueMsg(Object value) {
                    return "Attempt to insert " + value.getClass() +
                        " value into map with value type " + ;
                }
                public boolean equals(Object o) {
                    if (o == this)
                        return true;
                    if (!(o instanceof Map.Entry))
                        return false;
                    return .equals(new AbstractMap.SimpleImmutableEntry
                                    <>((Map.Entry<?,?>)o));
                }
            }
        }
    }

    
Returns a dynamically typesafe view of the specified sorted map. Any attempt to insert a mapping whose key or value have the wrong type will result in an immediate java.lang.ClassCastException. Similarly, any attempt to modify the value currently associated with a key will result in an immediate java.lang.ClassCastException, whether the modification is attempted directly through the map itself, or through a Map.Entry instance obtained from the map's entry set view.

Assuming a map contains no incorrectly typed keys or values prior to the time a dynamically typesafe view is generated, and that all subsequent access to the map takes place through the view (or one of its collection views), it is guaranteed that the map cannot contain an incorrectly typed key or value.

A discussion of the use of dynamically typesafe views may be found in the documentation for the checkedCollection method.

The returned map will be serializable if the specified map is serializable.

Since null is considered to be a value of any reference type, the returned map permits insertion of null keys or values whenever the backing map does.

Parameters:
m the map for which a dynamically typesafe view is to be returned
keyType the type of key that m is permitted to hold
valueType the type of value that m is permitted to hold
Returns:
a dynamically typesafe view of the specified map
Since:
1.5
    public static <K,V> SortedMap<K,V> checkedSortedMap(SortedMap<K, V> m,
                                                        Class<K> keyType,
                                                        Class<V> valueType) {
        return new CheckedSortedMap<>(mkeyTypevalueType);
    }

    

Serial:
include
    static class CheckedSortedMap<K,V> extends CheckedMap<K,V>
        implements SortedMap<K,V>, Serializable
    {
        private static final long serialVersionUID = 1599671320688067438L;
        private final SortedMap<K, V> sm;
        CheckedSortedMap(SortedMap<K, V> m,
                         Class<K> keyTypeClass<V> valueType) {
            super(mkeyTypevalueType);
             = m;
        }
        public Comparator<? super K> comparator() { return .comparator(); }
        public K firstKey()                       { return .firstKey(); }
        public K lastKey()                        { return .lastKey(); }
        public SortedMap<K,V> subMap(K fromKey, K toKey) {
            return checkedSortedMap(.subMap(fromKeytoKey),
                                    );
        }
        public SortedMap<K,V> headMap(K toKey) {
            return checkedSortedMap(.headMap(toKey), );
        }
        public SortedMap<K,V> tailMap(K fromKey) {
            return checkedSortedMap(.tailMap(fromKey), );
        }
    }
    // Empty collections

    
Returns an iterator that has no elements. More precisely,

Implementations of this method are permitted, but not required, to return the same object from multiple invocations.

Returns:
an empty iterator
Since:
1.7
    @SuppressWarnings("unchecked")
    public static <T> Iterator<T> emptyIterator() {
        return (Iterator<T>) .;
    }
    private static class EmptyIterator<E> implements Iterator<E> {
        static final EmptyIterator<ObjectEMPTY_ITERATOR
            = new EmptyIterator<>();
        public boolean hasNext() { return false; }
        public E next() { throw new NoSuchElementException(); }
        public void remove() { throw new IllegalStateException(); }
    }

    
Returns a list iterator that has no elements. More precisely,

Implementations of this method are permitted, but not required, to return the same object from multiple invocations.

Returns:
an empty list iterator
Since:
1.7
    @SuppressWarnings("unchecked")
    public static <T> ListIterator<T> emptyListIterator() {
        return (ListIterator<T>) .;
    }
    private static class EmptyListIterator<E>
        extends EmptyIterator<E>
        implements ListIterator<E>
    {
        static final EmptyListIterator<ObjectEMPTY_ITERATOR
            = new EmptyListIterator<>();
        public boolean hasPrevious() { return false; }
        public E previous() { throw new NoSuchElementException(); }
        public int nextIndex()     { return 0; }
        public int previousIndex() { return -1; }
        public void set(E e) { throw new IllegalStateException(); }
        public void add(E e) { throw new UnsupportedOperationException(); }
    }

    
Returns an enumeration that has no elements. More precisely,

Implementations of this method are permitted, but not required, to return the same object from multiple invocations.

Returns:
an empty enumeration
Since:
1.7
    @SuppressWarnings("unchecked")
    public static <T> Enumeration<T> emptyEnumeration() {
        return (Enumeration<T>) .;
    }
    private static class EmptyEnumeration<E> implements Enumeration<E> {
        static final EmptyEnumeration<ObjectEMPTY_ENUMERATION
            = new EmptyEnumeration<>();
        public boolean hasMoreElements() { return false; }
        public E nextElement() { throw new NoSuchElementException(); }
    }

    
The empty set (immutable). This set is serializable.

See also:
emptySet()
    @SuppressWarnings("unchecked")
    public static final Set EMPTY_SET = new EmptySet<>();

    
Returns the empty set (immutable). This set is serializable. Unlike the like-named field, this method is parameterized.

This example illustrates the type-safe way to obtain an empty set:

     Set<String> s = Collections.emptySet();
 
Implementation note: Implementations of this method need not create a separate Set object for each call. Using this method is likely to have comparable cost to using the like-named field. (Unlike this method, the field does not provide type safety.)

Since:
1.5
See also:
EMPTY_SET
    @SuppressWarnings("unchecked")
    public static final <T> Set<T> emptySet() {
        return (Set<T>) ;
    }

    

Serial:
include
    private static class EmptySet<E>
        extends AbstractSet<E>
        implements Serializable
    {
        private static final long serialVersionUID = 1582296315990362920L;
        public Iterator<E> iterator() { return emptyIterator(); }
        public int size() {return 0;}
        public boolean isEmpty() {return true;}
        public boolean contains(Object obj) {return false;}
        public boolean containsAll(Collection<?> c) { return c.isEmpty(); }
        public Object[] toArray() { return new Object[0]; }
        public <T> T[] toArray(T[] a) {
            if (a.length > 0)
                a[0] = null;
            return a;
        }
        // Preserves singleton property
        private Object readResolve() {
            return ;
        }
    }

    
The empty list (immutable). This list is serializable.

See also:
emptyList()
    @SuppressWarnings("unchecked")
    public static final List EMPTY_LIST = new EmptyList<>();

    
Returns the empty list (immutable). This list is serializable.

This example illustrates the type-safe way to obtain an empty list:

     List<String> s = Collections.emptyList();
 
Implementation note: Implementations of this method need not create a separate List object for each call. Using this method is likely to have comparable cost to using the like-named field. (Unlike this method, the field does not provide type safety.)

Since:
1.5
See also:
EMPTY_LIST
    @SuppressWarnings("unchecked")
    public static final <T> List<T> emptyList() {
        return (List<T>) ;
    }

    

Serial:
include
    private static class EmptyList<E>
        extends AbstractList<E>
        implements RandomAccessSerializable {
        private static final long serialVersionUID = 8842843931221139166L;
        public Iterator<E> iterator() {
            return emptyIterator();
        }
        public ListIterator<E> listIterator() {
            return emptyListIterator();
        }
        public int size() {return 0;}
        public boolean isEmpty() {return true;}
        public boolean contains(Object obj) {return false;}
        public boolean containsAll(Collection<?> c) { return c.isEmpty(); }
        public Object[] toArray() { return new Object[0]; }
        public <T> T[] toArray(T[] a) {
            if (a.length > 0)
                a[0] = null;
            return a;
        }
        public E get(int index) {
            throw new IndexOutOfBoundsException("Index: "+index);
        }
        public boolean equals(Object o) {
            return (o instanceof List) && ((List<?>)o).isEmpty();
        }
        public int hashCode() { return 1; }
        // Preserves singleton property
        private Object readResolve() {
            return ;
        }
    }

    
The empty map (immutable). This map is serializable.

Since:
1.3
See also:
emptyMap()
    @SuppressWarnings("unchecked")
    public static final Map EMPTY_MAP = new EmptyMap<>();

    
Returns the empty map (immutable). This map is serializable.

This example illustrates the type-safe way to obtain an empty set:

     Map<String, Date> s = Collections.emptyMap();
 
Implementation note: Implementations of this method need not create a separate Map object for each call. Using this method is likely to have comparable cost to using the like-named field. (Unlike this method, the field does not provide type safety.)

Since:
1.5
See also:
EMPTY_MAP
    @SuppressWarnings("unchecked")
    public static final <K,V> Map<K,V> emptyMap() {
        return (Map<K,V>) ;
    }

    

Serial:
include
    private static class EmptyMap<K,V>
        extends AbstractMap<K,V>
        implements Serializable
    {
        private static final long serialVersionUID = 6428348081105594320L;
        public int size()                          {return 0;}
        public boolean isEmpty()                   {return true;}
        public boolean containsKey(Object key)     {return false;}
        public boolean containsValue(Object value) {return false;}
        public V get(Object key)                   {return null;}
        public Set<K> keySet()                     {return emptySet();}
        public Collection<V> values()              {return emptySet();}
        public Set<Map.Entry<K,V>> entrySet()      {return emptySet();}
        public boolean equals(Object o) {
            return (o instanceof Map) && ((Map<?,?>)o).isEmpty();
        }
        public int hashCode()                      {return 0;}
        // Preserves singleton property
        private Object readResolve() {
            return ;
        }
    }
    // Singleton collections

    
Returns an immutable set containing only the specified object. The returned set is serializable.

Parameters:
o the sole object to be stored in the returned set.
Returns:
an immutable set containing only the specified object.
    public static <T> Set<T> singleton(T o) {
        return new SingletonSet<>(o);
    }
    static <E> Iterator<E> singletonIterator(final E e) {
        return new Iterator<E>() {
            private boolean hasNext = true;
            public boolean hasNext() {
                return ;
            }
            public E next() {
                if () {
                     = false;
                    return e;
                }
                throw new NoSuchElementException();
            }
            public void remove() {
                throw new UnsupportedOperationException();
            }
        };
    }

    

Serial:
include
    private static class SingletonSet<E>
        extends AbstractSet<E>
        implements Serializable
    {
        private static final long serialVersionUID = 3193687207550431679L;
        private final E element;
        SingletonSet(E e) { = e;}
        public Iterator<E> iterator() {
            return singletonIterator();
        }
        public int size() {return 1;}
        public boolean contains(Object o) {return eq(o);}
    }

    
Returns an immutable list containing only the specified object. The returned list is serializable.

Parameters:
o the sole object to be stored in the returned list.
Returns:
an immutable list containing only the specified object.
Since:
1.3
    public static <T> List<T> singletonList(T o) {
        return new SingletonList<>(o);
    }

    

Serial:
include
    private static class SingletonList<E>
        extends AbstractList<E>
        implements RandomAccessSerializable {
        private static final long serialVersionUID = 3093736618740652951L;
        private final E element;
        SingletonList(E obj)                { = obj;}
        public Iterator<E> iterator() {
            return singletonIterator();
        }
        public int size()                   {return 1;}
        public boolean contains(Object obj) {return eq(obj);}
        public E get(int index) {
            if (index != 0)
              throw new IndexOutOfBoundsException("Index: "+index+", Size: 1");
            return ;
        }
    }

    
Returns an immutable map, mapping only the specified key to the specified value. The returned map is serializable.

Parameters:
key the sole key to be stored in the returned map.
value the value to which the returned map maps key.
Returns:
an immutable map containing only the specified key-value mapping.
Since:
1.3
    public static <K,V> Map<K,V> singletonMap(K key, V value) {
        return new SingletonMap<>(keyvalue);
    }

    

Serial:
include
    private static class SingletonMap<K,V>
          extends AbstractMap<K,V>
          implements Serializable {
        private static final long serialVersionUID = -6979724477215052911L;
        private final K k;
        private final V v;
        SingletonMap(K key, V value) {
             = key;
             = value;
        }
        public int size()                          {return 1;}
        public boolean isEmpty()                   {return false;}
        public boolean containsKey(Object key)     {return eq(key);}
        public boolean containsValue(Object value) {return eq(value);}
        public V get(Object key)                   {return (eq(key) ?  : null);}
        private transient Set<K> keySet = null;
        private transient Set<Map.Entry<K,V>> entrySet = null;
        private transient Collection<V> values = null;
        public Set<K> keySet() {
            if (==null)
                 = singleton();
            return ;
        }
        public Set<Map.Entry<K,V>> entrySet() {
            if (==null)
                 = Collections.<Map.Entry<K,V>>singleton(
                    new SimpleImmutableEntry<>());
            return ;
        }
        public Collection<V> values() {
            if (==null)
                 = singleton();
            return ;
        }
    }
    // Miscellaneous

    
Returns an immutable list consisting of n copies of the specified object. The newly allocated data object is tiny (it contains a single reference to the data object). This method is useful in combination with the List.addAll method to grow lists. The returned list is serializable.

Parameters:
n the number of elements in the returned list.
o the element to appear repeatedly in the returned list.
Returns:
an immutable list consisting of n copies of the specified object.
Throws:
java.lang.IllegalArgumentException if n < 0
See also:
List.addAll(java.util.Collection)
List.addAll(int,java.util.Collection)
    public static <T> List<T> nCopies(int n, T o) {
        if (n < 0)
            throw new IllegalArgumentException("List length = " + n);
        return new CopiesList<>(no);
    }

    

Serial:
include
    private static class CopiesList<E>
        extends AbstractList<E>
        implements RandomAccessSerializable
    {
        private static final long serialVersionUID = 2739099268398711800L;
        final int n;
        final E element;
        CopiesList(int n, E e) {
            assert n >= 0;
            this. = n;
             = e;
        }
        public int size() {
            return ;
        }
        public boolean contains(Object obj) {
            return  != 0 && eq(obj);
        }
        public int indexOf(Object o) {
            return contains(o) ? 0 : -1;
        }
        public int lastIndexOf(Object o) {
            return contains(o) ?  - 1 : -1;
        }
        public E get(int index) {
            if (index < 0 || index >= )
                throw new IndexOutOfBoundsException("Index: "+index+
                                                    ", Size: "+);
            return ;
        }
        public Object[] toArray() {
            final Object[] a = new Object[];
            if ( != null)
                Arrays.fill(a, 0, );
            return a;
        }
        public <T> T[] toArray(T[] a) {
            final int n = this.;
            if (a.length < n) {
                a = (T[])java.lang.reflect.Array
                    .newInstance(a.getClass().getComponentType(), n);
                if ( != null)
                    Arrays.fill(a, 0, n);
            } else {
                Arrays.fill(a, 0, n);
                if (a.length > n)
                    a[n] = null;
            }
            return a;
        }
        public List<E> subList(int fromIndexint toIndex) {
            if (fromIndex < 0)
                throw new IndexOutOfBoundsException("fromIndex = " + fromIndex);
            if (toIndex > )
                throw new IndexOutOfBoundsException("toIndex = " + toIndex);
            if (fromIndex > toIndex)
                throw new IllegalArgumentException("fromIndex(" + fromIndex +
                                                   ") > toIndex(" + toIndex + ")");
            return new CopiesList<>(toIndex - fromIndex);
        }
    }

    
Returns a comparator that imposes the reverse of the natural ordering on a collection of objects that implement the Comparable interface. (The natural ordering is the ordering imposed by the objects' own compareTo method.) This enables a simple idiom for sorting (or maintaining) collections (or arrays) of objects that implement the Comparable interface in reverse-natural-order. For example, suppose a is an array of strings. Then:
          Arrays.sort(a, Collections.reverseOrder());
 
sorts the array in reverse-lexicographic (alphabetical) order.

The returned comparator is serializable.

Returns:
A comparator that imposes the reverse of the natural ordering on a collection of objects that implement the Comparable interface.
See also:
java.lang.Comparable
    public static <T> Comparator<T> reverseOrder() {
        return (Comparator<T>) .;
    }

    

Serial:
include
    private static class ReverseComparator
        implements Comparator<Comparable<Object>>, Serializable {
        private static final long serialVersionUID = 7207038068494060240L;
        static final ReverseComparator REVERSE_ORDER
            = new ReverseComparator();
        public int compare(Comparable<Objectc1Comparable<Objectc2) {
            return c2.compareTo(c1);
        }
        private Object readResolve() { return reverseOrder(); }
    }

    
Returns a comparator that imposes the reverse ordering of the specified comparator. If the specified comparator is null, this method is equivalent to reverseOrder() (in other words, it returns a comparator that imposes the reverse of the natural ordering on a collection of objects that implement the Comparable interface).

The returned comparator is serializable (assuming the specified comparator is also serializable or null).

Parameters:
cmp a comparator who's ordering is to be reversed by the returned comparator or null
Returns:
A comparator that imposes the reverse ordering of the specified comparator.
Since:
1.5
    public static <T> Comparator<T> reverseOrder(Comparator<T> cmp) {
        if (cmp == null)
            return reverseOrder();
        if (cmp instanceof ReverseComparator2)
            return ((ReverseComparator2<T>)cmp).;
        return new ReverseComparator2<>(cmp);
    }

    

Serial:
include
    private static class ReverseComparator2<T> implements Comparator<T>,
        Serializable
    {
        private static final long serialVersionUID = 4374092139857L;

        
The comparator specified in the static factory. This will never be null, as the static factory returns a ReverseComparator instance if its argument is null.

Serial:
        final Comparator<T> cmp;
        ReverseComparator2(Comparator<T> cmp) {
            assert cmp != null;
            this. = cmp;
        }
        public int compare(T t1, T t2) {
            return .compare(t2t1);
        }
        public boolean equals(Object o) {
            return (o == this) ||
                (o instanceof ReverseComparator2 &&
                 .equals(((ReverseComparator2)o).));
        }
        public int hashCode() {
            return .hashCode() ^ .;
        }
    }

    
Returns an enumeration over the specified collection. This provides interoperability with legacy APIs that require an enumeration as input.

Parameters:
c the collection for which an enumeration is to be returned.
Returns:
an enumeration over the specified collection.
See also:
Enumeration
    public static <T> Enumeration<T> enumeration(final Collection<T> c) {
        return new Enumeration<T>() {
            private final Iterator<T> i = c.iterator();
            public boolean hasMoreElements() {
                return .hasNext();
            }
            public T nextElement() {
                return .next();
            }
        };
    }

    
Returns an array list containing the elements returned by the specified enumeration in the order they are returned by the enumeration. This method provides interoperability between legacy APIs that return enumerations and new APIs that require collections.

Parameters:
e enumeration providing elements for the returned array list
Returns:
an array list containing the elements returned by the specified enumeration.
Since:
1.4
See also:
Enumeration
ArrayList
    public static <T> ArrayList<T> list(Enumeration<T> e) {
        ArrayList<T> l = new ArrayList<>();
        while (e.hasMoreElements())
            l.add(e.nextElement());
        return l;
    }

    
Returns true if the specified arguments are equal, or both null.
    static boolean eq(Object o1Object o2) {
        return o1==null ? o2==null : o1.equals(o2);
    }

    
Returns the number of elements in the specified collection equal to the specified object. More formally, returns the number of elements e in the collection such that (o == null ? e == null : o.equals(e)).

Parameters:
c the collection in which to determine the frequency of o
o the object whose frequency is to be determined
Throws:
java.lang.NullPointerException if c is null
Since:
1.5
    public static int frequency(Collection<?> cObject o) {
        int result = 0;
        if (o == null) {
            for (Object e : c)
                if (e == null)
                    result++;
        } else {
            for (Object e : c)
                if (o.equals(e))
                    result++;
        }
        return result;
    }

    
Returns true if the two specified collections have no elements in common.

Care must be exercised if this method is used on collections that do not comply with the general contract for Collection. Implementations may elect to iterate over either collection and test for containment in the other collection (or to perform any equivalent computation). If either collection uses a nonstandard equality test (as does a SortedSet whose ordering is not compatible with equals, or the key set of an IdentityHashMap), both collections must use the same nonstandard equality test, or the result of this method is undefined.

Care must also be exercised when using collections that have restrictions on the elements that they may contain. Collection implementations are allowed to throw exceptions for any operation involving elements they deem ineligible. For absolute safety the specified collections should contain only elements which are eligible elements for both collections.

Note that it is permissible to pass the same collection in both parameters, in which case the method will return true if and only if the collection is empty.

Parameters:
c1 a collection
c2 a collection
Returns:
true if the two specified collections have no elements in common.
Throws:
java.lang.NullPointerException if either collection is null.
java.lang.NullPointerException if one collection contains a null element and null is not an eligible element for the other collection. (optional)
java.lang.ClassCastException if one collection contains an element that is of a type which is ineligible for the other collection. (optional)
Since:
1.5
    public static boolean disjoint(Collection<?> c1Collection<?> c2) {
        // The collection to be used for contains(). Preference is given to
        // the collection who's contains() has lower O() complexity.
        Collection<?> contains = c2;
        // The collection to be iterated. If the collections' contains() impl
        // are of different O() complexity, the collection with slower
        // contains() will be used for iteration. For collections who's
        // contains() are of the same complexity then best performance is
        // achieved by iterating the smaller collection.
        Collection<?> iterate = c1;
        // Performance optimization cases. The heuristics:
        //   1. Generally iterate over c1.
        //   2. If c1 is a Set then iterate over c2.
        //   3. If either collection is empty then result is always true.
        //   4. Iterate over the smaller Collection.
        if (c1 instanceof Set) {
            // Use c1 for contains as a Set's contains() is expected to perform
            // better than O(N/2)
            iterate = c2;
            contains = c1;
        } else if (!(c2 instanceof Set)) {
            // Both are mere Collections. Iterate over smaller collection.
            // Example: If c1 contains 3 elements and c2 contains 50 elements and
            // assuming contains() requires ceiling(N/2) comparisons then
            // checking for all c1 elements in c2 would require 75 comparisons
            // (3 * ceiling(50/2)) vs. checking all c2 elements in c1 requiring
            // 100 comparisons (50 * ceiling(3/2)).
            int c1size = c1.size();
            int c2size = c2.size();
            if (c1size == 0 || c2size == 0) {
                // At least one collection is empty. Nothing will match.
                return true;
            }
            if (c1size > c2size) {
                iterate = c2;
                contains = c1;
            }
        }
        for (Object e : iterate) {
            if (contains.contains(e)) {
               // Found a common element. Collections are not disjoint.
                return false;
            }
        }
        // No common elements were found.
        return true;
    }

    
Adds all of the specified elements to the specified collection. Elements to be added may be specified individually or as an array. The behavior of this convenience method is identical to that of c.addAll(Arrays.asList(elements)), but this method is likely to run significantly faster under most implementations.

When elements are specified individually, this method provides a convenient way to add a few elements to an existing collection:

     Collections.addAll(flavors, "Peaches 'n Plutonium", "Rocky Racoon");
 

Parameters:
c the collection into which elements are to be inserted
elements the elements to insert into c
Returns:
true if the collection changed as a result of the call
Throws:
java.lang.UnsupportedOperationException if c does not support the add operation
java.lang.NullPointerException if elements contains one or more null values and c does not permit null elements, or if c or elements are null
java.lang.IllegalArgumentException if some property of a value in elements prevents it from being added to c
Since:
1.5
See also:
Collection.addAll(java.util.Collection)
    public static <T> boolean addAll(Collection<? super T> c, T... elements) {
        boolean result = false;
        for (T element : elements)
            result |= c.add(element);
        return result;
    }

    
Returns a set backed by the specified map. The resulting set displays the same ordering, concurrency, and performance characteristics as the backing map. In essence, this factory method provides a Set implementation corresponding to any Map implementation. There is no need to use this method on a Map implementation that already has a corresponding Set implementation (such as HashMap or TreeMap).

Each method invocation on the set returned by this method results in exactly one method invocation on the backing map or its keySet view, with one exception. The addAll method is implemented as a sequence of put invocations on the backing map.

The specified map must be empty at the time this method is invoked, and should not be accessed directly after this method returns. These conditions are ensured if the map is created empty, passed directly to this method, and no reference to the map is retained, as illustrated in the following code fragment:

    Set<Object> weakHashSet = Collections.newSetFromMap(
        new WeakHashMap<Object, Boolean>());
 

Parameters:
map the backing map
Returns:
the set backed by the map
Throws:
java.lang.IllegalArgumentException if map is not empty
Since:
1.6
    public static <E> Set<E> newSetFromMap(Map<E, Booleanmap) {
        return new SetFromMap<>(map);
    }

    

Serial:
include
    private static class SetFromMap<E> extends AbstractSet<E>
        implements Set<E>, Serializable
    {
        private final Map<E, Booleanm;  // The backing map
        private transient Set<E> s;       // Its keySet
        SetFromMap(Map<E, Booleanmap) {
            if (!map.isEmpty())
                throw new IllegalArgumentException("Map is non-empty");
             = map;
             = map.keySet();
        }
        public void clear()               {        .clear(); }
        public int size()                 { return .size(); }
        public boolean isEmpty()          { return .isEmpty(); }
        public boolean contains(Object o) { return .containsKey(o); }
        public boolean remove(Object o)   { return .remove(o) != null; }
        public boolean add(E e) { return .put(e.) == null; }
        public Iterator<E> iterator()     { return .iterator(); }
        public Object[] toArray()         { return .toArray(); }
        public <T> T[] toArray(T[] a)     { return .toArray(a); }
        public String toString()          { return .toString(); }
        public int hashCode()             { return .hashCode(); }
        public boolean equals(Object o)   { return o == this || .equals(o); }
        public boolean containsAll(Collection<?> c) {return .containsAll(c);}
        public boolean removeAll(Collection<?> c)   {return .removeAll(c);}
        public boolean retainAll(Collection<?> c)   {return .retainAll(c);}
        // addAll is the only inherited implementation
        private static final long serialVersionUID = 2454657854757543876L;
        private void readObject(java.io.ObjectInputStream stream)
            throws IOExceptionClassNotFoundException
        {
            stream.defaultReadObject();
             = .keySet();
        }
    }

    
Returns a view of a Deque as a Last-in-first-out (Lifo) Queue. Method add is mapped to push, remove is mapped to pop and so on. This view can be useful when you would like to use a method requiring a Queue but you need Lifo ordering.

Each method invocation on the queue returned by this method results in exactly one method invocation on the backing deque, with one exception. The addAll method is implemented as a sequence of addFirst invocations on the backing deque.

Parameters:
deque the deque
Returns:
the queue
Since:
1.6
    public static <T> Queue<T> asLifoQueue(Deque<T> deque) {
        return new AsLIFOQueue<>(deque);
    }

    

Serial:
include
    static class AsLIFOQueue<E> extends AbstractQueue<E>
        implements Queue<E>, Serializable {
        private static final long serialVersionUID = 1802017725587941708L;
        private final Deque<E> q;
        AsLIFOQueue(Deque<E> q)           { this. = q; }
        public boolean add(E e)           { .addFirst(e); return true; }
        public boolean offer(E e)         { return .offerFirst(e); }
        public E poll()                   { return .pollFirst(); }
        public E remove()                 { return .removeFirst(); }
        public E peek()                   { return .peekFirst(); }
        public E element()                { return .getFirst(); }
        public void clear()               {        .clear(); }
        public int size()                 { return .size(); }
        public boolean isEmpty()          { return .isEmpty(); }
        public boolean contains(Object o) { return .contains(o); }
        public boolean remove(Object o)   { return .remove(o); }
        public Iterator<E> iterator()     { return .iterator(); }
        public Object[] toArray()         { return .toArray(); }
        public <T> T[] toArray(T[] a)     { return .toArray(a); }
        public String toString()          { return .toString(); }
        public boolean containsAll(Collection<?> c) {return .containsAll(c);}
        public boolean removeAll(Collection<?> c)   {return .removeAll(c);}
        public boolean retainAll(Collection<?> c)   {return .retainAll(c);}
        // We use inherited addAll; forwarding addAll would be wrong
    }
New to GrepCode? Check out our FAQ X