Java org.apache.commons.collections4 CollectionUtils fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.collections4 CollectionUtils fields, constructors, methods, implement or subclass

Introduction

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

The text is from its open source code.

Method

booleancontainsAll(final Collection coll1, final Collection coll2)
Returns true iff all elements of coll2 are also contained in coll1 .
Tfind(final Iterable collection, final Predicate predicate)
Finds the first element in the given collection which matches the given predicate.
CforAllDo(final Iterable collection, final C closure)
Executes the given closure on each element in the collection.
booleanisEmpty(final Collection coll)
Null-safe check if the specified collection is empty.
booleanisNotEmpty(final Collection coll)
Null-safe check if the specified collection is not empty.