Java com.google.common.collect Collections2 fields, constructors, methods, implement or subclass

Example usage for Java com.google.common.collect Collections2 fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for com.google.common.collect Collections2.

The text is from its open source code.

Method

Collectionfilter(Collection unfiltered, Predicate predicate)
Returns the elements of unfiltered that satisfy a predicate.
Collection>orderedPermutations(Iterable elements)
Returns a Collection of all the permutations of the specified Iterable .
Collection>permutations(Collection elements)
Returns a Collection of all the permutations of the specified Collection .
Collectiontransform(Collection fromCollection, Function function)
Returns a collection that applies function to each element of fromCollection .