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

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

Introduction

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

The text is from its open source code.

Method

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) .
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.
Listunion(final List list1, final List list2)
Returns a new list containing the second list appended to the first list.