Class ListUtils
- java.lang.Object
-
- org.apache.commons.collections.ListUtils
-
public class ListUtils extends java.lang.ObjectProvides utility methods and decorators forListinstances.- Since:
- Commons Collections 1.0
-
-
Field Summary
Fields Modifier and Type Field Description static java.util.ListEMPTY_LISTAn empty unmodifiable list.
-
Constructor Summary
Constructors Constructor Description ListUtils()ListUtilsshould not normally be instantiated.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static java.util.ListfixedSizeList(java.util.List list)Returns a fixed-sized list backed by the given list.static inthashCodeForList(java.util.Collection list)Generates a hash code using the algorithm specified inList.hashCode().static java.util.Listintersection(java.util.List list1, java.util.List list2)Returns a new list containing all elements that are contained in both given lists.static booleanisEqualList(java.util.Collection list1, java.util.Collection list2)Tests two lists for value-equality as per the equality contract inList.equals(java.lang.Object).static java.util.ListlazyList(java.util.List list, Factory factory)Returns a "lazy" list whose elements will be created on demand.static java.util.ListpredicatedList(java.util.List list, Predicate predicate)Returns a predicated (validating) list backed by the given list.static java.util.ListremoveAll(java.util.Collection collection, java.util.Collection remove)Removes the elements inremovefromcollection.static java.util.ListretainAll(java.util.Collection collection, java.util.Collection retain)Returns a List containing all the elements incollectionthat are also inretain.static java.util.Listsubtract(java.util.List list1, java.util.List list2)Subtracts all elements in the second list from the first list, placing the results in a new list.static java.util.Listsum(java.util.List list1, java.util.List list2)Returns the sum of the given lists.static java.util.ListsynchronizedList(java.util.List list)Returns a synchronized list backed by the given list.static java.util.ListtransformedList(java.util.List list, Transformer transformer)Returns a transformed list backed by the given list.static java.util.ListtypedList(java.util.List list, java.lang.Class type)Returns a typed list backed by the given list.static java.util.Listunion(java.util.List list1, java.util.List list2)Returns a new list containing the second list appended to the first list.static java.util.ListunmodifiableList(java.util.List list)Returns an unmodifiable list backed by the given list.
-
-
-
Method Detail
-
intersection
public static java.util.List intersection(java.util.List list1, java.util.List list2)Returns a new list containing all elements that are contained in both given lists.- Parameters:
list1- the first listlist2- the second list- Returns:
- the intersection of those two lists
- Throws:
java.lang.NullPointerException- if either list is null
-
subtract
public static java.util.List subtract(java.util.List list1, java.util.List list2)Subtracts all elements in the second list from the first list, placing the results in a new list.This differs from
List.removeAll(Collection)in that cardinality is respected; iflist1contains two occurrences ofnullandlist2only contains one occurrence, then the returned list will still contain one occurrence.- Parameters:
list1- the list to subtract fromlist2- the list to subtract- Returns:
- a new list containing the results
- Throws:
java.lang.NullPointerException- if either list is null
-
sum
public static java.util.List sum(java.util.List list1, java.util.List list2)Returns the sum of the given lists. This is their intersection subtracted from their union.- Parameters:
list1- the first listlist2- the second list- Returns:
- a new list containing the sum of those lists
- Throws:
java.lang.NullPointerException- if either list is null
-
union
public static java.util.List union(java.util.List list1, java.util.List list2)Returns a new list containing the second list appended to the first list. TheList.addAll(Collection)operation is used to append the two given lists into a new list.- Parameters:
list1- the first listlist2- the second list- Returns:
- a new list containing the union of those lists
- Throws:
java.lang.NullPointerException- if either list is null
-
isEqualList
public static boolean isEqualList(java.util.Collection list1, java.util.Collection list2)Tests two lists for value-equality as per the equality contract inList.equals(java.lang.Object).This method is useful for implementing
Listwhen you cannot extend AbstractList. The method takes Collection instances to enable other collection types to use the List implementation algorithm.The relevant text (slightly paraphrased as this is a static method) is:
Compares the two list objects for equality. Returns true if and only if both lists have the same size, and all corresponding pairs of elements in the two lists are equal. (Two elements e1 and e2 are equal if (e1==null ? e2==null : e1.equals(e2)).) In other words, two lists are defined to be equal if they contain the same elements in the same order. This definition ensures that the equals method works properly across different implementations of the List interface.
Note: The behaviour of this method is undefined if the lists are modified during the equals comparison.- Parameters:
list1- the first list, may be nulllist2- the second list, may be null- Returns:
- whether the lists are equal by value comparison
- See Also:
List
-
hashCodeForList
public static int hashCodeForList(java.util.Collection list)
Generates a hash code using the algorithm specified inList.hashCode().This method is useful for implementing
Listwhen you cannot extend AbstractList. The method takes Collection instances to enable other collection types to use the List implementation algorithm.- Parameters:
list- the list to generate the hashCode for, may be null- Returns:
- the hash code
- See Also:
List.hashCode()
-
retainAll
public static java.util.List retainAll(java.util.Collection collection, java.util.Collection retain)Returns a List containing all the elements incollectionthat are also inretain. The cardinality of an elementein the returned list is the same as the cardinality ofeincollectionunlessretaindoes not containe, in which case the cardinality is zero. This method is useful if you do not wish to modify the collectioncand thus cannot callcollection.retainAll(retain);.- Parameters:
collection- the collection whose contents are the target of the #retailAll operationretain- the collection containing the elements to be retained in the returned collection- Returns:
- a
Listcontaining all the elements ofcthat occur at least once inretain. - Throws:
java.lang.NullPointerException- if either parameter is null- Since:
- Commons Collections 3.2
-
removeAll
public static java.util.List removeAll(java.util.Collection collection, java.util.Collection remove)Removes the elements inremovefromcollection. That is, this method returns a list containing all the elements incthat are not inremove. The cardinality of an elementein the returned collection is the same as the cardinality ofeincollectionunlessremovecontainse, in which case the cardinality is zero. This method is useful if you do not wish to modifycollectionand thus cannot callcollection.removeAll(remove);.- Parameters:
collection- the collection from which items are removed (in the returned collection)remove- the items to be removed from the returnedcollection- Returns:
- a
Listcontaining all the elements ofcexcept any elements that also occur inremove. - Throws:
java.lang.NullPointerException- if either parameter is null- Since:
- Commons Collections 3.2
-
synchronizedList
public static java.util.List synchronizedList(java.util.List list)
Returns a synchronized list backed by the given list.You must manually synchronize on the returned buffer's iterator to avoid non-deterministic behavior:
List list = ListUtils.synchronizedList(myList); synchronized (list) { Iterator i = list.iterator(); while (i.hasNext()) { process (i.next()); } }This method uses the implementation in the decorators subpackage.- Parameters:
list- the list to synchronize, must not be null- Returns:
- a synchronized list backed by the given list
- Throws:
java.lang.IllegalArgumentException- if the list is null
-
unmodifiableList
public static java.util.List unmodifiableList(java.util.List list)
Returns an unmodifiable list backed by the given list.This method uses the implementation in the decorators subpackage.
- Parameters:
list- the list to make unmodifiable, must not be null- Returns:
- an unmodifiable list backed by the given list
- Throws:
java.lang.IllegalArgumentException- if the list is null
-
predicatedList
public static java.util.List predicatedList(java.util.List list, Predicate predicate)Returns a predicated (validating) list backed by the given list.Only objects that pass the test in the given predicate can be added to the list. Trying to add an invalid object results in an IllegalArgumentException. It is important not to use the original list after invoking this method, as it is a backdoor for adding invalid objects.
- Parameters:
list- the list to predicate, must not be nullpredicate- the predicate for the list, must not be null- Returns:
- a predicated list backed by the given list
- Throws:
java.lang.IllegalArgumentException- if the List or Predicate is null
-
typedList
public static java.util.List typedList(java.util.List list, java.lang.Class type)Returns a typed list backed by the given list.Only objects of the specified type can be added to the list.
- Parameters:
list- the list to limit to a specific type, must not be nulltype- the type of objects which may be added to the list- Returns:
- a typed list backed by the specified list
-
transformedList
public static java.util.List transformedList(java.util.List list, Transformer transformer)Returns a transformed list backed by the given list.Each object is passed through the transformer as it is added to the List. It is important not to use the original list after invoking this method, as it is a backdoor for adding untransformed objects.
- Parameters:
list- the list to predicate, must not be nulltransformer- the transformer for the list, must not be null- Returns:
- a transformed list backed by the given list
- Throws:
java.lang.IllegalArgumentException- if the List or Transformer is null
-
lazyList
public static java.util.List lazyList(java.util.List list, Factory factory)Returns a "lazy" list whose elements will be created on demand.When the index passed to the returned list's
getmethod is greater than the list's size, then the factory will be used to create a new object and that object will be inserted at that index.For instance:
Factory factory = new Factory() { public Object create() { return new Date(); } } List lazy = ListUtils.lazyList(new ArrayList(), factory); Object obj = lazy.get(3);After the above code is executed,objwill contain a newDateinstance. Furthermore, thatDateinstance is the fourth element in the list. The first, second, and third element are all set tonull.- Parameters:
list- the list to make lazy, must not be nullfactory- the factory for creating new objects, must not be null- Returns:
- a lazy list backed by the given list
- Throws:
java.lang.IllegalArgumentException- if the List or Factory is null
-
fixedSizeList
public static java.util.List fixedSizeList(java.util.List list)
Returns a fixed-sized list backed by the given list. Elements may not be added or removed from the returned list, but existing elements can be changed (for instance, via theList.set(int,Object)method).- Parameters:
list- the list whose size to fix, must not be null- Returns:
- a fixed-size list backed by that list
- Throws:
java.lang.IllegalArgumentException- if the List is null
-
-