Java org.apache.commons.collections ListUtils fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.collections ListUtils fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.commons.collections ListUtils.

The text is from its open source code.

Subclass

org.apache.commons.collections.ListUtils has subclasses.
Click this link to see all its subclasses.

Field

ListEMPTY_LIST
An empty unmodifiable list.

Method

inthashCodeForList(final Collection list)
Generates a hash code using the algorithm specified in java.util.List#hashCode() .
Listintersection(final List list1, final List list2)
Returns a new list containing all elements that are contained in both given lists.
booleanisEqualList(final Collection list1, final Collection list2)
Tests two lists for value-equality as per the equality contract in java.util.List#equals(java.lang.Object) .
ListlazyList(List list, Factory factory)
Returns a "lazy" list whose elements will be created on demand.
ListremoveAll(Collection collection, Collection remove)
Removes the elements in remove from collection.
Listsubtract(final List list1, final List list2)
Subtracts all elements in the second list from the first list, placing the results in a new list.
Listsum(final List list1, final List list2)
Returns the sum of the given lists.
ListtransformedList(List list, Transformer transformer)
Returns a transformed list backed by the given list.
Listunion(final List list1, final List list2)
Returns a new list containing the second list appended to the first list.
ListunmodifiableList(List list)
Returns an unmodifiable list backed by the given list.