Package | Description |
---|---|
org.eclipse.collections.api |
This package contains interfaces for Eclipse Collections API.
|
org.eclipse.collections.api.bag |
This package contains interfaces for Bag API.
|
org.eclipse.collections.api.bag.sorted |
This package contains interfaces for SortedBag API.
|
org.eclipse.collections.api.bimap |
This package contains interfaces for BiMap API.
|
org.eclipse.collections.api.collection | |
org.eclipse.collections.api.list |
This package contains interfaces for list API which enhance the performance and functionality of
List . |
org.eclipse.collections.api.map |
This package contains interfaces for map API which enhance the performance and functionality of
Map |
org.eclipse.collections.api.map.primitive |
This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.
|
org.eclipse.collections.api.map.sorted |
This package contains mutable and immutable sorted map interfaces.
|
org.eclipse.collections.api.multimap |
This package contains interfaces for
Multimap . |
org.eclipse.collections.api.multimap.bag |
This package contains interfaces for
BagMultimap . |
org.eclipse.collections.api.multimap.list |
This package contains interfaces for
ListMultimap . |
org.eclipse.collections.api.multimap.ordered | |
org.eclipse.collections.api.multimap.set |
This package contains interfaces for
SetMultimap . |
org.eclipse.collections.api.multimap.sortedbag |
This package contains interfaces for
SortedBagMultimap . |
org.eclipse.collections.api.multimap.sortedset |
This package contains interfaces for
SortedSetMultimap . |
org.eclipse.collections.api.ordered | |
org.eclipse.collections.api.set |
This package contains interfaces for set API which enhance the performance and functionality of
Set . |
org.eclipse.collections.api.set.sorted |
This package contains interfaces for sorted set API.
|
org.eclipse.collections.api.stack |
This package contains interfaces for stack API.
|
org.eclipse.collections.impl |
This package contains implementations for Eclipse Collections API.
|
org.eclipse.collections.impl.bag | |
org.eclipse.collections.impl.bag.immutable |
This package contains implementations of the
ImmutableBag interface. |
org.eclipse.collections.impl.bag.mutable |
This package contains implementations of the
MutableBag interface. |
org.eclipse.collections.impl.bag.sorted.mutable |
This package contains implementations of
MutableSortedBag . |
org.eclipse.collections.impl.bimap | |
org.eclipse.collections.impl.bimap.immutable | |
org.eclipse.collections.impl.block.comparator |
This package contains implementations of the
SerializableComparator interface. |
org.eclipse.collections.impl.block.factory |
This package contains factory implementations for
Function , Predicate , SerializableComparator and Procedure . |
org.eclipse.collections.impl.block.function | |
org.eclipse.collections.impl.block.function.checked | |
org.eclipse.collections.impl.block.function.primitive |
This package contains implementations of primitive functions.
|
org.eclipse.collections.impl.block.procedure |
This package contains implementations of
Procedure and Procedure2 . |
org.eclipse.collections.impl.collection | |
org.eclipse.collections.impl.collection.immutable |
This package contains implementations of the
ImmutableCollection interface. |
org.eclipse.collections.impl.collection.mutable |
This package contains implementations of the
MutableCollection interface. |
org.eclipse.collections.impl.forkjoin |
This package contains implementations which has several parallel algorithms that work with Collections and make use of Java's fork-join
framework.
|
org.eclipse.collections.impl.lazy |
This package contains implementations of the
LazyIterable interface. |
org.eclipse.collections.impl.lazy.iterator |
This package contains implementations of the
Iterator interface. |
org.eclipse.collections.impl.lazy.parallel | |
org.eclipse.collections.impl.lazy.parallel.bag | |
org.eclipse.collections.impl.lazy.parallel.list | |
org.eclipse.collections.impl.lazy.parallel.set | |
org.eclipse.collections.impl.lazy.parallel.set.sorted | |
org.eclipse.collections.impl.list |
This package contains implementations of the
ListIterable interface. |
org.eclipse.collections.impl.list.fixed |
This package contains implementations of the
FixedSizeList interface. |
org.eclipse.collections.impl.list.mutable |
This package contains implementations of the
MutableList interface. |
org.eclipse.collections.impl.map |
This package contains implementations of the
MapIterable interface. |
org.eclipse.collections.impl.map.immutable |
This package contains implementations of the
ImmutableMap interface. |
org.eclipse.collections.impl.map.immutable.primitive |
This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.
|
org.eclipse.collections.impl.map.mutable |
This package contains implementations of the
MutableMap interface. |
org.eclipse.collections.impl.map.mutable.primitive |
This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.
|
org.eclipse.collections.impl.map.sorted.immutable |
This package contains implementations of the
MutableSortedMap interface. |
org.eclipse.collections.impl.map.sorted.mutable |
This package contains implementations of the
MutableSortedMap interface. |
org.eclipse.collections.impl.map.strategy.mutable |
This package contains mutable map implementations backed by hashtables that rely on
HashingStrategy s provided by
the developer to compute the hashCode and equals for the objects stored in the map. |
org.eclipse.collections.impl.multimap |
This package contains implementations of the
Multimap interface. |
org.eclipse.collections.impl.multimap.bag |
This package contains implementations of the
BagMultimap interface. |
org.eclipse.collections.impl.multimap.bag.sorted | |
org.eclipse.collections.impl.multimap.bag.sorted.immutable | |
org.eclipse.collections.impl.multimap.bag.sorted.mutable | |
org.eclipse.collections.impl.multimap.bag.strategy | |
org.eclipse.collections.impl.multimap.list |
This package contains implementations of the
ListMultimap interface. |
org.eclipse.collections.impl.multimap.set |
This package contains implementations of the
SetMultimap interface. |
org.eclipse.collections.impl.multimap.set.sorted |
This package contains implementations of the
SortedSetMultimap interface. |
org.eclipse.collections.impl.parallel |
This package contains classes which is used for parallel iteration through the containers.
|
org.eclipse.collections.impl.set | |
org.eclipse.collections.impl.set.immutable |
This package package contains the implementations of
ImmutableSet . |
org.eclipse.collections.impl.set.mutable |
This package package contains implementations of
MutableSet . |
org.eclipse.collections.impl.set.sorted.mutable |
This package contains implementations of
MutableSortedSet . |
org.eclipse.collections.impl.set.strategy.mutable |
This package contains implementations of sets with user defined
HashingStrategy s. |
org.eclipse.collections.impl.stack.mutable |
This package contains implementations of the
MutableStack interface. |
org.eclipse.collections.impl.tuple | |
org.eclipse.collections.impl.utility |
This package contains static utilities that provide iteration pattern implementations which work with JCF collections.
|
org.eclipse.collections.impl.utility.internal |
This package contains static utilities that provide internal iteration pattern implementations which work with JCF collections.
|
Modifier and Type | Method and Description |
---|---|
<K,V> MapIterable<K,V> |
ParallelIterable.aggregateBy(Function<? super T,? extends K> groupBy,
Function0<? extends V> zeroValueFactory,
Function2<? super V,? super T,? extends V> nonMutatingAggregator) |
<K,V> MapIterable<K,V> |
RichIterable.aggregateBy(Function<? super T,? extends K> groupBy,
Function0<? extends V> zeroValueFactory,
Function2<? super V,? super T,? extends V> nonMutatingAggregator)
Applies an aggregate function over the iterable grouping results into a map based on the specific groupBy function.
|
<K,V> MapIterable<K,V> |
ParallelIterable.aggregateInPlaceBy(Function<? super T,? extends K> groupBy,
Function0<? extends V> zeroValueFactory,
Procedure2<? super V,? super T> mutatingAggregator) |
<K,V> MapIterable<K,V> |
RichIterable.aggregateInPlaceBy(Function<? super T,? extends K> groupBy,
Function0<? extends V> zeroValueFactory,
Procedure2<? super V,? super T> mutatingAggregator)
Applies an aggregate procedure over the iterable grouping results into a Map based on the specific groupBy function.
|
<V> LazyIterable<V> |
LazyIterable.collect(Function<? super T,? extends V> function)
Creates a deferred iterable for collecting elements from the current iterable.
|
<V> ParallelIterable<V> |
ParallelIterable.collect(Function<? super T,? extends V> function)
Creates a parallel iterable for collecting elements from the current iterable.
|
<V> RichIterable<V> |
RichIterable.collect(Function<? super T,? extends V> function)
Returns a new collection with the results of applying the specified function on each element of the source
collection.
|
<V,R extends Collection<V>> |
RichIterable.collect(Function<? super T,? extends V> function,
R target)
Same as
RichIterable.collect(Function) , except that the results are gathered into the specified target
collection. |
<V> LazyIterable<V> |
LazyIterable.collectIf(Predicate<? super T> predicate,
Function<? super T,? extends V> function)
Creates a deferred iterable for selecting and collecting elements from the current iterable.
|
<V> ParallelIterable<V> |
ParallelIterable.collectIf(Predicate<? super T> predicate,
Function<? super T,? extends V> function)
Creates a parallel iterable for selecting and collecting elements from the current iterable.
|
<V> RichIterable<V> |
RichIterable.collectIf(Predicate<? super T> predicate,
Function<? super T,? extends V> function)
Returns a new collection with the results of applying the specified function on each element of the source
collection, but only for those elements which return true upon evaluation of the predicate.
|
<V,R extends Collection<V>> |
RichIterable.collectIf(Predicate<? super T> predicate,
Function<? super T,? extends V> function,
R target)
Same as the collectIf method with two parameters but uses the specified target collection for the results.
|
<V> LazyIterable<V> |
LazyIterable.flatCollect(Function<? super T,? extends Iterable<V>> function)
Creates a deferred flattening iterable for the current iterable.
|
<V> ParallelIterable<V> |
ParallelIterable.flatCollect(Function<? super T,? extends Iterable<V>> function)
Creates a parallel flattening iterable for the current iterable.
|
<V> RichIterable<V> |
RichIterable.flatCollect(Function<? super T,? extends Iterable<V>> function)
flatCollect is a special case of RichIterable.collect(Function) . |
<V,R extends Collection<V>> |
RichIterable.flatCollect(Function<? super T,? extends Iterable<V>> function,
R target)
Same as flatCollect, only the results are collected into the target collection.
|
<V> Multimap<V,T> |
ParallelIterable.groupBy(Function<? super T,? extends V> function) |
<V> Multimap<V,T> |
RichIterable.groupBy(Function<? super T,? extends V> function)
For each element of the iterable, the function is evaluated and the results of these evaluations are collected
into a new multimap, where the transformed value is the key and the original values are added to the same (or similar)
species of collection as the source iterable.
|
<V,R extends MutableMultimap<V,T>> |
RichIterable.groupBy(Function<? super T,? extends V> function,
R target)
Same as
RichIterable.groupBy(Function) , except that the results are gathered into the specified target
multimap. |
<V> Multimap<V,T> |
ParallelIterable.groupByEach(Function<? super T,? extends Iterable<V>> function) |
<V> Multimap<V,T> |
RichIterable.groupByEach(Function<? super T,? extends Iterable<V>> function)
Similar to
RichIterable.groupBy(Function) , except the result of evaluating function will return a collection of keys
for each value. |
<V,R extends MutableMultimap<V,T>> |
RichIterable.groupByEach(Function<? super T,? extends Iterable<V>> function,
R target)
Same as
RichIterable.groupByEach(Function) , except that the results are gathered into the specified target
multimap. |
<V> MapIterable<V,T> |
ParallelIterable.groupByUniqueKey(Function<? super T,? extends V> function) |
<V> MapIterable<V,T> |
RichIterable.groupByUniqueKey(Function<? super T,? extends V> function)
For each element of the iterable, the function is evaluated and he results of these evaluations are collected
into a new map, where the transformed value is the key.
|
<V,R extends MutableMap<V,T>> |
RichIterable.groupByUniqueKey(Function<? super T,? extends V> function,
R target)
Same as
RichIterable.groupByUniqueKey(Function) , except that the results are gathered into the specified target
map. |
<V extends Comparable<? super V>> |
ParallelIterable.maxBy(Function<? super T,? extends V> function) |
<V extends Comparable<? super V>> |
RichIterable.maxBy(Function<? super T,? extends V> function)
Returns the maximum elements out of this container based on the natural order of the attribute returned by Function.
|
<V extends Comparable<? super V>> |
ParallelIterable.minBy(Function<? super T,? extends V> function) |
<V extends Comparable<? super V>> |
RichIterable.minBy(Function<? super T,? extends V> function)
Returns the minimum elements out of this container based on the natural order of the attribute returned by Function.
|
<V> ObjectDoubleMap<V> |
RichIterable.sumByDouble(Function<T,V> groupBy,
DoubleFunction<? super T> function)
Groups and sums the values using the two specified functions.
|
<V> ObjectDoubleMap<V> |
RichIterable.sumByFloat(Function<T,V> groupBy,
FloatFunction<? super T> function)
Groups and sums the values using the two specified functions.
|
<V> ObjectLongMap<V> |
RichIterable.sumByInt(Function<T,V> groupBy,
IntFunction<? super T> function)
Groups and sums the values using the two specified functions.
|
<V> ObjectLongMap<V> |
RichIterable.sumByLong(Function<T,V> groupBy,
LongFunction<? super T> function)
Groups and sums the values using the two specified functions.
|
<NK,NV> MutableMap<NK,NV> |
ParallelIterable.toMap(Function<? super T,? extends NK> keyFunction,
Function<? super T,? extends NV> valueFunction) |
<NK,NV> MutableMap<NK,NV> |
ParallelIterable.toMap(Function<? super T,? extends NK> keyFunction,
Function<? super T,? extends NV> valueFunction) |
<NK,NV> MutableMap<NK,NV> |
RichIterable.toMap(Function<? super T,? extends NK> keyFunction,
Function<? super T,? extends NV> valueFunction)
Converts the collection to a MutableMap implementation using the specified key and value functions.
|
<NK,NV> MutableMap<NK,NV> |
RichIterable.toMap(Function<? super T,? extends NK> keyFunction,
Function<? super T,? extends NV> valueFunction)
Converts the collection to a MutableMap implementation using the specified key and value functions.
|
<V extends Comparable<? super V>> |
ParallelIterable.toSortedBagBy(Function<? super T,? extends V> function) |
<V extends Comparable<? super V>> |
RichIterable.toSortedBagBy(Function<? super T,? extends V> function)
Converts the collection to a MutableSortedBag implementation and sorts it based on the natural order of the
attribute returned by
function . |
<V extends Comparable<? super V>> |
ParallelIterable.toSortedListBy(Function<? super T,? extends V> function) |
<V extends Comparable<? super V>> |
RichIterable.toSortedListBy(Function<? super T,? extends V> function)
Converts the collection to a MutableList implementation and sorts it based on the natural order of the
attribute returned by
function . |
<NK,NV> MutableSortedMap<NK,NV> |
ParallelIterable.toSortedMap(Comparator<? super NK> comparator,
Function<? super T,? extends NK> keyFunction,
Function<? super T,? extends NV> valueFunction) |
<NK,NV> MutableSortedMap<NK,NV> |
ParallelIterable.toSortedMap(Comparator<? super NK> comparator,
Function<? super T,? extends NK> keyFunction,
Function<? super T,? extends NV> valueFunction) |
<NK,NV> MutableSortedMap<NK,NV> |
RichIterable.toSortedMap(Comparator<? super NK> comparator,
Function<? super T,? extends NK> keyFunction,
Function<? super T,? extends NV> valueFunction)
Converts the collection to a MutableSortedMap implementation using the specified key and value functions
sorted by the given comparator.
|
<NK,NV> MutableSortedMap<NK,NV> |
RichIterable.toSortedMap(Comparator<? super NK> comparator,
Function<? super T,? extends NK> keyFunction,
Function<? super T,? extends NV> valueFunction)
Converts the collection to a MutableSortedMap implementation using the specified key and value functions
sorted by the given comparator.
|
<NK,NV> MutableSortedMap<NK,NV> |
ParallelIterable.toSortedMap(Function<? super T,? extends NK> keyFunction,
Function<? super T,? extends NV> valueFunction) |
<NK,NV> MutableSortedMap<NK,NV> |
ParallelIterable.toSortedMap(Function<? super T,? extends NK> keyFunction,
Function<? super T,? extends NV> valueFunction) |
<NK,NV> MutableSortedMap<NK,NV> |
RichIterable.toSortedMap(Function<? super T,? extends NK> keyFunction,
Function<? super T,? extends NV> valueFunction)
Converts the collection to a MutableSortedMap implementation using the specified key and value functions
sorted by the key elements' natural ordering.
|
<NK,NV> MutableSortedMap<NK,NV> |
RichIterable.toSortedMap(Function<? super T,? extends NK> keyFunction,
Function<? super T,? extends NV> valueFunction)
Converts the collection to a MutableSortedMap implementation using the specified key and value functions
sorted by the key elements' natural ordering.
|
<V extends Comparable<? super V>> |
ParallelIterable.toSortedSetBy(Function<? super T,? extends V> function) |
<V extends Comparable<? super V>> |
RichIterable.toSortedSetBy(Function<? super T,? extends V> function)
Converts the collection to a MutableSortedSet implementation and sorts it based on the natural order of the
attribute returned by
function . |
Modifier and Type | Method and Description |
---|---|
<V> UnsortedBag<V> |
UnsortedBag.collect(Function<? super T,? extends V> function) |
<V> ImmutableBag<V> |
ImmutableBag.collect(Function<? super T,? extends V> function) |
<V> ParallelUnsortedBag<V> |
ParallelUnsortedBag.collect(Function<? super T,? extends V> function)
Creates a parallel iterable for collecting elements from the current iterable.
|
<V> MutableBag<V> |
MutableBag.collect(Function<? super T,? extends V> function) |
<V> UnsortedBag<V> |
UnsortedBag.collectIf(Predicate<? super T> predicate,
Function<? super T,? extends V> function) |
<V> ImmutableBag<V> |
ImmutableBag.collectIf(Predicate<? super T> predicate,
Function<? super T,? extends V> function) |
<V> ParallelUnsortedBag<V> |
ParallelUnsortedBag.collectIf(Predicate<? super T> predicate,
Function<? super T,? extends V> function)
Creates a parallel iterable for selecting and collecting elements from the current iterable.
|
<V> MutableBag<V> |
MutableBag.collectIf(Predicate<? super T> predicate,
Function<? super T,? extends V> function) |
<V> UnsortedBag<V> |
UnsortedBag.flatCollect(Function<? super T,? extends Iterable<V>> function) |
<V> ImmutableBag<V> |
ImmutableBag.flatCollect(Function<? super T,? extends Iterable<V>> function) |
<V> ParallelUnsortedBag<V> |
ParallelUnsortedBag.flatCollect(Function<? super T,? extends Iterable<V>> function)
Creates a parallel flattening iterable for the current iterable.
|
<V> MutableBag<V> |
MutableBag.flatCollect(Function<? super T,? extends Iterable<V>> function) |
<V> MutableBagIterableMultimap<V,T> |
MutableBagIterable.groupBy(Function<? super T,? extends V> function) |
<V> UnsortedBagMultimap<V,T> |
UnsortedBag.groupBy(Function<? super T,? extends V> function) |
<V> ImmutableBagMultimap<V,T> |
ImmutableBag.groupBy(Function<? super T,? extends V> function) |
<V> UnsortedBagMultimap<V,T> |
ParallelUnsortedBag.groupBy(Function<? super T,? extends V> function) |
<V> ImmutableBagIterableMultimap<V,T> |
ImmutableBagIterable.groupBy(Function<? super T,? extends V> function) |
<V> BagMultimap<V,T> |
Bag.groupBy(Function<? super T,? extends V> function) |
<V> MutableBagMultimap<V,T> |
MutableBag.groupBy(Function<? super T,? extends V> function) |
<V> BagMultimap<V,T> |
ParallelBag.groupBy(Function<? super T,? extends V> function) |
<V> MutableBagIterableMultimap<V,T> |
MutableBagIterable.groupByEach(Function<? super T,? extends Iterable<V>> function) |
<V> UnsortedBagMultimap<V,T> |
UnsortedBag.groupByEach(Function<? super T,? extends Iterable<V>> function) |
<V> ImmutableBagMultimap<V,T> |
ImmutableBag.groupByEach(Function<? super T,? extends Iterable<V>> function) |
<V> UnsortedBagMultimap<V,T> |
ParallelUnsortedBag.groupByEach(Function<? super T,? extends Iterable<V>> function) |
<V> ImmutableBagIterableMultimap<V,T> |
ImmutableBagIterable.groupByEach(Function<? super T,? extends Iterable<V>> function) |
<V> BagMultimap<V,T> |
Bag.groupByEach(Function<? super T,? extends Iterable<V>> function) |
<V> MutableBagMultimap<V,T> |
MutableBag.groupByEach(Function<? super T,? extends Iterable<V>> function) |
<V> BagMultimap<V,T> |
ParallelBag.groupByEach(Function<? super T,? extends Iterable<V>> function) |
Modifier and Type | Method and Description |
---|---|
<K,V> MapIterable<K,V> |
SortedBag.aggregateBy(Function<? super T,? extends K> groupBy,
Function0<? extends V> zeroValueFactory,
Function2<? super V,? super T,? extends V> nonMutatingAggregator)
Can return an MapIterable that's backed by a LinkedHashMap.
|
<K,V> ImmutableMap<K,V> |
ImmutableSortedBag.aggregateBy(Function<? super T,? extends K> groupBy,
Function0<? extends V> zeroValueFactory,
Function2<? super V,? super T,? extends V> nonMutatingAggregator)
Can return an ImmutableMap that's backed by a LinkedHashMap.
|
<K,V> MutableMap<K,V> |
MutableSortedBag.aggregateBy(Function<? super T,? extends K> groupBy,
Function0<? extends V> zeroValueFactory,
Function2<? super V,? super T,? extends V> nonMutatingAggregator)
Can return an MutableMap that's backed by a LinkedHashMap.
|
<K,V> MapIterable<K,V> |
SortedBag.aggregateInPlaceBy(Function<? super T,? extends K> groupBy,
Function0<? extends V> zeroValueFactory,
Procedure2<? super V,? super T> mutatingAggregator)
Can return an MapIterable that's backed by a LinkedHashMap.
|
<K,V> ImmutableMap<K,V> |
ImmutableSortedBag.aggregateInPlaceBy(Function<? super T,? extends K> groupBy,
Function0<? extends V> zeroValueFactory,
Procedure2<? super V,? super T> mutatingAggregator)
Can return an ImmutableMap that's backed by a LinkedHashMap.
|
<K,V> MutableMap<K,V> |
MutableSortedBag.aggregateInPlaceBy(Function<? super T,? extends K> groupBy,
Function0<? extends V> zeroValueFactory,
Procedure2<? super V,? super T> mutatingAggregator)
Can return an MutableMap that's backed by a LinkedHashMap.
|
<V> ListIterable<V> |
SortedBag.collect(Function<? super T,? extends V> function) |
<V> ParallelListIterable<V> |
ParallelSortedBag.collect(Function<? super T,? extends V> function)
Creates a parallel iterable for collecting elements from the current iterable.
|
<V> ImmutableList<V> |
ImmutableSortedBag.collect(Function<? super T,? extends V> function) |
<V> MutableList<V> |
MutableSortedBag.collect(Function<? super T,? extends V> function) |
<V> ListIterable<V> |
SortedBag.collectIf(Predicate<? super T> predicate,
Function<? super T,? extends V> function) |
<V> ParallelListIterable<V> |
ParallelSortedBag.collectIf(Predicate<? super T> predicate,
Function<? super T,? extends V> function)
Creates a parallel iterable for selecting and collecting elements from the current iterable.
|
<V> ImmutableList<V> |
ImmutableSortedBag.collectIf(Predicate<? super T> predicate,
Function<? super T,? extends V> function) |
<V> MutableList<V> |
MutableSortedBag.collectIf(Predicate<? super T> predicate,
Function<? super T,? extends V> function) |
<V> ListIterable<V> |
SortedBag.flatCollect(Function<? super T,? extends Iterable<V>> function) |
<V> ParallelListIterable<V> |
ParallelSortedBag.flatCollect(Function<? super T,? extends Iterable<V>> function)
Creates a parallel flattening iterable for the current iterable.
|
<V> ImmutableList<V> |
ImmutableSortedBag.flatCollect(Function<? super T,? extends Iterable<V>> function) |
<V> MutableList<V> |
MutableSortedBag.flatCollect(Function<? super T,? extends Iterable<V>> function) |
<V> SortedBagMultimap<V,T> |
SortedBag.groupBy(Function<? super T,? extends V> function) |
<V> SortedBagMultimap<V,T> |
ParallelSortedBag.groupBy(Function<? super T,? extends V> function) |
<V> ImmutableSortedBagMultimap<V,T> |
ImmutableSortedBag.groupBy(Function<? super T,? extends V> function) |
<V> MutableSortedBagMultimap<V,T> |
MutableSortedBag.groupBy(Function<? super T,? extends V> function) |
<V> SortedBagMultimap<V,T> |
SortedBag.groupByEach(Function<? super T,? extends Iterable<V>> function) |
<V> SortedBagMultimap<V,T> |
ParallelSortedBag.groupByEach(Function<? super T,? extends Iterable<V>> function) |
<V> ImmutableSortedBagMultimap<V,T> |
ImmutableSortedBag.groupByEach(Function<? super T,? extends Iterable<V>> function) |
<V> MutableSortedBagMultimap<V,T> |
MutableSortedBag.groupByEach(Function<? super T,? extends Iterable<V>> function) |
Modifier and Type | Method and Description |
---|---|
<V1> ImmutableBagIterable<V1> |
ImmutableBiMap.collect(Function<? super V,? extends V1> function) |
<V1> ImmutableBagIterable<V1> |
ImmutableBiMap.collectIf(Predicate<? super V> predicate,
Function<? super V,? extends V1> function) |
<V1> ImmutableBagIterable<V1> |
ImmutableBiMap.flatCollect(Function<? super V,? extends Iterable<V1>> function) |
<V1> ImmutableSetMultimap<V1,V> |
ImmutableBiMap.groupBy(Function<? super V,? extends V1> function) |
<V1> SetMultimap<V1,V> |
BiMap.groupBy(Function<? super V,? extends V1> function) |
<V1> MutableSetMultimap<V1,V> |
MutableBiMap.groupBy(Function<? super V,? extends V1> function) |
<V1> ImmutableSetMultimap<V1,V> |
ImmutableBiMap.groupByEach(Function<? super V,? extends Iterable<V1>> function) |
<V1> SetMultimap<V1,V> |
BiMap.groupByEach(Function<? super V,? extends Iterable<V1>> function) |
<V1> MutableSetMultimap<V1,V> |
MutableBiMap.groupByEach(Function<? super V,? extends Iterable<V1>> function) |
<VV> ImmutableBiMap<VV,V> |
ImmutableBiMap.groupByUniqueKey(Function<? super V,? extends VV> function) |
<VV> BiMap<VV,V> |
BiMap.groupByUniqueKey(Function<? super V,? extends VV> function) |
<VV> MutableBiMap<VV,V> |
MutableBiMap.groupByUniqueKey(Function<? super V,? extends VV> function) |
Modifier and Type | Method and Description |
---|---|
<K,V> MutableMap<K,V> |
MutableCollection.aggregateBy(Function<? super T,? extends K> groupBy,
Function0<? extends V> zeroValueFactory,
Function2<? super V,? super T,? extends V> nonMutatingAggregator) |
<K,V> ImmutableMap<K,V> |
ImmutableCollection.aggregateBy(Function<? super T,? extends K> groupBy,
Function0<? extends V> zeroValueFactory,
Function2<? super V,? super T,? extends V> nonMutatingAggregator) |
<K,V> MutableMap<K,V> |
MutableCollection.aggregateInPlaceBy(Function<? super T,? extends K> groupBy,
Function0<? extends V> zeroValueFactory,
Procedure2<? super V,? super T> mutatingAggregator) |
<K,V> ImmutableMap<K,V> |
ImmutableCollection.aggregateInPlaceBy(Function<? super T,? extends K> groupBy,
Function0<? extends V> zeroValueFactory,
Procedure2<? super V,? super T> mutatingAggregator) |
<V> MutableCollection<V> |
MutableCollection.collect(Function<? super T,? extends V> function)
Returns a new MutableCollection with the results of applying the specified function to each element of the source
collection.
|
<V> ImmutableCollection<V> |
ImmutableCollection.collect(Function<? super T,? extends V> function) |
<V> MutableCollection<V> |
MutableCollection.collectIf(Predicate<? super T> predicate,
Function<? super T,? extends V> function)
Returns a new MutableCollection with the results of applying the specified function to each element of the source
collection, but only for elements that evaluate to true for the specified predicate.
|
<V> ImmutableCollection<V> |
ImmutableCollection.collectIf(Predicate<? super T> predicate,
Function<? super T,? extends V> function) |
<V> MutableCollection<V> |
MutableCollection.flatCollect(Function<? super T,? extends Iterable<V>> function) |
<V> ImmutableCollection<V> |
ImmutableCollection.flatCollect(Function<? super T,? extends Iterable<V>> function) |
<V> MutableMultimap<V,T> |
MutableCollection.groupBy(Function<? super T,? extends V> function) |
<V> ImmutableMultimap<V,T> |
ImmutableCollection.groupBy(Function<? super T,? extends V> function) |
<V> MutableMultimap<V,T> |
MutableCollection.groupByEach(Function<? super T,? extends Iterable<V>> function) |
<V> ImmutableMultimap<V,T> |
ImmutableCollection.groupByEach(Function<? super T,? extends Iterable<V>> function) |
<V> MutableMap<V,T> |
MutableCollection.groupByUniqueKey(Function<? super T,? extends V> function) |
<V> ImmutableMap<V,T> |
ImmutableCollection.groupByUniqueKey(Function<? super T,? extends V> function) |
Modifier and Type | Method and Description |
---|---|
<V> ParallelListIterable<V> |
ParallelListIterable.collect(Function<? super T,? extends V> function)
Creates a parallel iterable for collecting elements from the current iterable.
|
<V> ImmutableList<V> |
ImmutableList.collect(Function<? super T,? extends V> function) |
<V> ListIterable<V> |
ListIterable.collect(Function<? super T,? extends V> function) |
<V> MutableList<V> |
MutableList.collect(Function<? super T,? extends V> function) |
<V> ParallelListIterable<V> |
ParallelListIterable.collectIf(Predicate<? super T> predicate,
Function<? super T,? extends V> function)
Creates a parallel iterable for selecting and collecting elements from the current iterable.
|
<V> ImmutableList<V> |
ImmutableList.collectIf(Predicate<? super T> predicate,
Function<? super T,? extends V> function) |
<V> ListIterable<V> |
ListIterable.collectIf(Predicate<? super T> predicate,
Function<? super T,? extends V> function) |
<V> MutableList<V> |
MutableList.collectIf(Predicate<? super T> predicate,
Function<? super T,? extends V> function) |
<V> ParallelListIterable<V> |
ParallelListIterable.flatCollect(Function<? super T,? extends Iterable<V>> function)
Creates a parallel flattening iterable for the current iterable.
|
<V> ImmutableList<V> |
ImmutableList.flatCollect(Function<? super T,? extends Iterable<V>> function) |
<V> ListIterable<V> |
ListIterable.flatCollect(Function<? super T,? extends Iterable<V>> function) |
<V> MutableList<V> |
MutableList.flatCollect(Function<? super T,? extends Iterable<V>> function) |
<V> ListMultimap<V,T> |
ParallelListIterable.groupBy(Function<? super T,? extends V> function) |
<V> ImmutableListMultimap<V,T> |
ImmutableList.groupBy(Function<? super T,? extends V> function) |
<V> ListMultimap<V,T> |
ListIterable.groupBy(Function<? super T,? extends V> function) |
<V> MutableListMultimap<V,T> |
MutableList.groupBy(Function<? super T,? extends V> function) |
<V> ListMultimap<V,T> |
ParallelListIterable.groupByEach(Function<? super T,? extends Iterable<V>> function) |
<V> ImmutableListMultimap<V,T> |
ImmutableList.groupByEach(Function<? super T,? extends Iterable<V>> function) |
<V> ListMultimap<V,T> |
ListIterable.groupByEach(Function<? super T,? extends Iterable<V>> function) |
<V> MutableListMultimap<V,T> |
MutableList.groupByEach(Function<? super T,? extends Iterable<V>> function) |
<V extends Comparable<? super V>> |
MutableList.sortThisBy(Function<? super T,? extends V> function)
Sorts the internal data structure of this list based on the natural order of the attribute returned by
function . |
Modifier and Type | Method and Description |
---|---|
<K2,V2> MutableMap<K2,V2> |
MutableMap.aggregateBy(Function<? super V,? extends K2> groupBy,
Function0<? extends V2> zeroValueFactory,
Function2<? super V2,? super V,? extends V2> nonMutatingAggregator) |
<K2,V2> ImmutableMap<K2,V2> |
ImmutableMap.aggregateBy(Function<? super V,? extends K2> groupBy,
Function0<? extends V2> zeroValueFactory,
Function2<? super V2,? super V,? extends V2> nonMutatingAggregator) |
<KK,VV> MutableMapIterable<KK,VV> |
MutableMapIterable.aggregateBy(Function<? super V,? extends KK> groupBy,
Function0<? extends VV> zeroValueFactory,
Function2<? super VV,? super V,? extends VV> nonMutatingAggregator) |
<KK,VV> OrderedMap<KK,VV> |
OrderedMap.aggregateBy(Function<? super V,? extends KK> groupBy,
Function0<? extends VV> zeroValueFactory,
Function2<? super VV,? super V,? extends VV> nonMutatingAggregator) |
<KK,VV> MutableOrderedMap<KK,VV> |
MutableOrderedMap.aggregateBy(Function<? super V,? extends KK> groupBy,
Function0<? extends VV> zeroValueFactory,
Function2<? super VV,? super V,? extends VV> nonMutatingAggregator) |
<KK,VV> ImmutableMapIterable<KK,VV> |
ImmutableMapIterable.aggregateBy(Function<? super V,? extends KK> groupBy,
Function0<? extends VV> zeroValueFactory,
Function2<? super VV,? super V,? extends VV> nonMutatingAggregator) |
<KK,VV> ImmutableOrderedMap<KK,VV> |
ImmutableOrderedMap.aggregateBy(Function<? super V,? extends KK> groupBy,
Function0<? extends VV> zeroValueFactory,
Function2<? super VV,? super V,? extends VV> nonMutatingAggregator) |
<K2,V2> MutableMap<K2,V2> |
MutableMap.aggregateInPlaceBy(Function<? super V,? extends K2> groupBy,
Function0<? extends V2> zeroValueFactory,
Procedure2<? super V2,? super V> mutatingAggregator) |
<K2,V2> ImmutableMap<K2,V2> |
ImmutableMap.aggregateInPlaceBy(Function<? super V,? extends K2> groupBy,
Function0<? extends V2> zeroValueFactory,
Procedure2<? super V2,? super V> mutatingAggregator) |
<KK,VV> MutableMapIterable<KK,VV> |
MutableMapIterable.aggregateInPlaceBy(Function<? super V,? extends KK> groupBy,
Function0<? extends VV> zeroValueFactory,
Procedure2<? super VV,? super V> mutatingAggregator) |
<KK,VV> OrderedMap<KK,VV> |
OrderedMap.aggregateInPlaceBy(Function<? super V,? extends KK> groupBy,
Function0<? extends VV> zeroValueFactory,
Procedure2<? super VV,? super V> mutatingAggregator) |
<KK,VV> MutableOrderedMap<KK,VV> |
MutableOrderedMap.aggregateInPlaceBy(Function<? super V,? extends KK> groupBy,
Function0<? extends VV> zeroValueFactory,
Procedure2<? super VV,? super V> mutatingAggregator) |
<KK,VV> ImmutableMapIterable<KK,VV> |
ImmutableMapIterable.aggregateInPlaceBy(Function<? super V,? extends KK> groupBy,
Function0<? extends VV> zeroValueFactory,
Procedure2<? super VV,? super V> mutatingAggregator) |
<KK,VV> ImmutableOrderedMap<KK,VV> |
ImmutableOrderedMap.aggregateInPlaceBy(Function<? super V,? extends KK> groupBy,
Function0<? extends VV> zeroValueFactory,
Procedure2<? super VV,? super V> mutatingAggregator) |
<R> MutableBag<R> |
MutableMap.collect(Function<? super V,? extends R> function) |
<V1> Bag<V1> |
UnsortedMapIterable.collect(Function<? super V,? extends V1> function) |
<VV> ImmutableBag<VV> |
ImmutableMap.collect(Function<? super V,? extends VV> function) |
<R> MutableBag<R> |
MutableMap.collectIf(Predicate<? super V> predicate,
Function<? super V,? extends R> function) |
<R> ImmutableBag<R> |
ImmutableMap.collectIf(Predicate<? super V> predicate,
Function<? super V,? extends R> function) |
<V1> ListIterable<V1> |
OrderedMap.collectIf(Predicate<? super V> predicate,
Function<? super V,? extends V1> function) |
<V1> MutableList<V1> |
MutableOrderedMap.collectIf(Predicate<? super V> predicate,
Function<? super V,? extends V1> function) |
<V1> Bag<V1> |
UnsortedMapIterable.collectIf(Predicate<? super V> predicate,
Function<? super V,? extends V1> function) |
<V1> ImmutableList<V1> |
ImmutableOrderedMap.collectIf(Predicate<? super V> predicate,
Function<? super V,? extends V1> function) |
<E> MutableMap<K,V> |
MutableMap.collectKeysAndValues(Iterable<E> iterable,
Function<? super E,? extends K> keyFunction,
Function<? super E,? extends V> valueFunction)
Adds all the entries derived from
iterable to this . |
<E> MutableMap<K,V> |
MutableMap.collectKeysAndValues(Iterable<E> iterable,
Function<? super E,? extends K> keyFunction,
Function<? super E,? extends V> valueFunction)
Adds all the entries derived from
iterable to this . |
<R> MutableBag<R> |
MutableMap.flatCollect(Function<? super V,? extends Iterable<R>> function) |
<R> ImmutableBag<R> |
ImmutableMap.flatCollect(Function<? super V,? extends Iterable<R>> function) |
<V1> ListIterable<V1> |
OrderedMap.flatCollect(Function<? super V,? extends Iterable<V1>> function) |
<V1> MutableList<V1> |
MutableOrderedMap.flatCollect(Function<? super V,? extends Iterable<V1>> function) |
<V1> Bag<V1> |
UnsortedMapIterable.flatCollect(Function<? super V,? extends Iterable<V1>> function) |
<V1> ImmutableList<V1> |
ImmutableOrderedMap.flatCollect(Function<? super V,? extends Iterable<V1>> function) |
<P> V |
MutableMapIterable.getIfAbsentPutWith(K key,
Function<? super P,? extends V> function,
P parameter)
Get and return the value in the Map at the specified key.
|
V |
MutableMapIterable.getIfAbsentPutWithKey(K key,
Function<? super K,? extends V> function)
Get and return the value in the Map at the specified key.
|
<P> V |
MapIterable.getIfAbsentWith(K key,
Function<? super P,? extends V> function,
P parameter)
Return the value in the Map that corresponds to the specified key, or if there is no value at the key, return the
result of evaluating the specified function and parameter.
|
<V1> MutableMultimap<V1,V> |
MutableMapIterable.groupBy(Function<? super V,? extends V1> function) |
<V1> ListMultimap<V1,V> |
OrderedMap.groupBy(Function<? super V,? extends V1> function) |
<V1> MutableListMultimap<V1,V> |
MutableOrderedMap.groupBy(Function<? super V,? extends V1> function) |
<V1> BagMultimap<V1,V> |
UnsortedMapIterable.groupBy(Function<? super V,? extends V1> function) |
<V1> ImmutableMultimap<V1,V> |
ImmutableMapIterable.groupBy(Function<? super V,? extends V1> function) |
<V1> ImmutableListMultimap<V1,V> |
ImmutableOrderedMap.groupBy(Function<? super V,? extends V1> function) |
<VV> MutableBagMultimap<VV,V> |
MutableMap.groupBy(Function<? super V,? extends VV> function) |
<VV> ImmutableBagMultimap<VV,V> |
ImmutableMap.groupBy(Function<? super V,? extends VV> function) |
<V1> MutableMultimap<V1,V> |
MutableMapIterable.groupByEach(Function<? super V,? extends Iterable<V1>> function) |
<V1> ListMultimap<V1,V> |
OrderedMap.groupByEach(Function<? super V,? extends Iterable<V1>> function) |
<V1> MutableListMultimap<V1,V> |
MutableOrderedMap.groupByEach(Function<? super V,? extends Iterable<V1>> function) |
<V1> BagMultimap<V1,V> |
UnsortedMapIterable.groupByEach(Function<? super V,? extends Iterable<V1>> function) |
<V1> ImmutableMultimap<V1,V> |
ImmutableMapIterable.groupByEach(Function<? super V,? extends Iterable<V1>> function) |
<V1> ImmutableListMultimap<V1,V> |
ImmutableOrderedMap.groupByEach(Function<? super V,? extends Iterable<V1>> function) |
<VV> MutableBagMultimap<VV,V> |
MutableMap.groupByEach(Function<? super V,? extends Iterable<VV>> function) |
<VV> ImmutableBagMultimap<VV,V> |
ImmutableMap.groupByEach(Function<? super V,? extends Iterable<VV>> function) |
<V1> MutableMapIterable<V1,V> |
MutableMapIterable.groupByUniqueKey(Function<? super V,? extends V1> function) |
<V1> OrderedMap<V1,V> |
OrderedMap.groupByUniqueKey(Function<? super V,? extends V1> function) |
<V1> MutableOrderedMap<V1,V> |
MutableOrderedMap.groupByUniqueKey(Function<? super V,? extends V1> function) |
<V1> UnsortedMapIterable<V1,V> |
UnsortedMapIterable.groupByUniqueKey(Function<? super V,? extends V1> function) |
<V1> MutableMap<V1,V> |
MutableMap.groupByUniqueKey(Function<? super V,? extends V1> function) |
<V1> ImmutableMapIterable<V1,V> |
ImmutableMapIterable.groupByUniqueKey(Function<? super V,? extends V1> function) |
<V1> ImmutableOrderedMap<V1,V> |
ImmutableOrderedMap.groupByUniqueKey(Function<? super V,? extends V1> function) |
<V1> ImmutableMap<V1,V> |
ImmutableMap.groupByUniqueKey(Function<? super V,? extends V1> function) |
<A> A |
MapIterable.ifPresentApply(K key,
Function<? super V,? extends A> function)
If there is a value in the Map that corresponds to the specified key return the result of applying the specified
Function on the value, otherwise return null.
|
V |
MutableMapIterable.updateValue(K key,
Function0<? extends V> factory,
Function<? super V,? extends V> function)
Looks up the value associated with
key , applies the function to it, and replaces the value. |
Modifier and Type | Method and Description |
---|---|
<K,VV> MutableMap<K,VV> |
MutablePrimitiveObjectMap.aggregateBy(Function<? super V,? extends K> groupBy,
Function0<? extends VV> zeroValueFactory,
Function2<? super VV,? super V,? extends VV> nonMutatingAggregator) |
<K,VV> MutableMap<K,VV> |
MutablePrimitiveObjectMap.aggregateInPlaceBy(Function<? super V,? extends K> groupBy,
Function0<? extends VV> zeroValueFactory,
Procedure2<? super VV,? super V> mutatingAggregator) |
<VV> ImmutableCollection<VV> |
ImmutableDoubleObjectMap.collect(Function<? super V,? extends VV> function) |
<VV> ImmutableCollection<VV> |
ImmutableLongObjectMap.collect(Function<? super V,? extends VV> function) |
<VV> ImmutableCollection<VV> |
ImmutableShortObjectMap.collect(Function<? super V,? extends VV> function) |
<VV> ImmutableCollection<VV> |
ImmutableFloatObjectMap.collect(Function<? super V,? extends VV> function) |
<VV> MutableCollection<VV> |
MutablePrimitiveObjectMap.collect(Function<? super V,? extends VV> function) |
<VV> ImmutableCollection<VV> |
ImmutableCharObjectMap.collect(Function<? super V,? extends VV> function) |
<VV> ImmutableCollection<VV> |
ImmutableIntObjectMap.collect(Function<? super V,? extends VV> function) |
<VV> ImmutableCollection<VV> |
ImmutableByteObjectMap.collect(Function<? super V,? extends VV> function) |
<VV> MutableBag<VV> |
MutablePrimitiveObjectMap.collectIf(Predicate<? super V> predicate,
Function<? super V,? extends VV> function) |
<P> V |
MutableByteObjectMap.getIfAbsentPutWith(byte key,
Function<? super P,? extends V> function,
P parameter) |
<P> V |
MutableCharObjectMap.getIfAbsentPutWith(char key,
Function<? super P,? extends V> function,
P parameter) |
<P> V |
MutableDoubleObjectMap.getIfAbsentPutWith(double key,
Function<? super P,? extends V> function,
P parameter) |
<P> V |
MutableFloatObjectMap.getIfAbsentPutWith(float key,
Function<? super P,? extends V> function,
P parameter) |
<P> V |
MutableIntObjectMap.getIfAbsentPutWith(int key,
Function<? super P,? extends V> function,
P parameter) |
<P> V |
MutableLongObjectMap.getIfAbsentPutWith(long key,
Function<? super P,? extends V> function,
P parameter) |
<P> V |
MutableShortObjectMap.getIfAbsentPutWith(short key,
Function<? super P,? extends V> function,
P parameter) |
<VV> MutableBagMultimap<VV,V> |
MutablePrimitiveObjectMap.groupBy(Function<? super V,? extends VV> function) |
<VV> MutableBagMultimap<VV,V> |
MutablePrimitiveObjectMap.groupByEach(Function<? super V,? extends Iterable<VV>> function) |
<VV> MutableMap<VV,V> |
MutablePrimitiveObjectMap.groupByUniqueKey(Function<? super V,? extends VV> function) |
V |
MutableByteObjectMap.updateValue(byte key,
Function0<? extends V> factory,
Function<? super V,? extends V> function)
Look up the value associated with
key , apply the function to it, and replace the value. |
V |
MutableCharObjectMap.updateValue(char key,
Function0<? extends V> factory,
Function<? super V,? extends V> function)
Look up the value associated with
key , apply the function to it, and replace the value. |
V |
MutableDoubleObjectMap.updateValue(double key,
Function0<? extends V> factory,
Function<? super V,? extends V> function)
Look up the value associated with
key , apply the function to it, and replace the value. |
V |
MutableFloatObjectMap.updateValue(float key,
Function0<? extends V> factory,
Function<? super V,? extends V> function)
Look up the value associated with
key , apply the function to it, and replace the value. |
V |
MutableIntObjectMap.updateValue(int key,
Function0<? extends V> factory,
Function<? super V,? extends V> function)
Look up the value associated with
key , apply the function to it, and replace the value. |
V |
MutableLongObjectMap.updateValue(long key,
Function0<? extends V> factory,
Function<? super V,? extends V> function)
Look up the value associated with
key , apply the function to it, and replace the value. |
V |
MutableShortObjectMap.updateValue(short key,
Function0<? extends V> factory,
Function<? super V,? extends V> function)
Look up the value associated with
key , apply the function to it, and replace the value. |
Modifier and Type | Method and Description |
---|---|
<K2,V2> MutableMap<K2,V2> |
MutableSortedMap.aggregateBy(Function<? super V,? extends K2> groupBy,
Function0<? extends V2> zeroValueFactory,
Function2<? super V2,? super V,? extends V2> nonMutatingAggregator) |
<K2,V2> ImmutableMap<K2,V2> |
ImmutableSortedMap.aggregateBy(Function<? super V,? extends K2> groupBy,
Function0<? extends V2> zeroValueFactory,
Function2<? super V2,? super V,? extends V2> nonMutatingAggregator) |
<K2,V2> MutableMap<K2,V2> |
MutableSortedMap.aggregateInPlaceBy(Function<? super V,? extends K2> groupBy,
Function0<? extends V2> zeroValueFactory,
Procedure2<? super V2,? super V> mutatingAggregator) |
<K2,V2> ImmutableMap<K2,V2> |
ImmutableSortedMap.aggregateInPlaceBy(Function<? super V,? extends K2> groupBy,
Function0<? extends V2> zeroValueFactory,
Procedure2<? super V2,? super V> mutatingAggregator) |
<R> MutableList<R> |
MutableSortedMap.collect(Function<? super V,? extends R> function) |
<R> ImmutableList<R> |
ImmutableSortedMap.collect(Function<? super V,? extends R> function) |
<V1> ListIterable<V1> |
SortedMapIterable.collect(Function<? super V,? extends V1> function) |
<R> MutableList<R> |
MutableSortedMap.collectIf(Predicate<? super V> predicate,
Function<? super V,? extends R> function) |
<R> ImmutableList<R> |
ImmutableSortedMap.collectIf(Predicate<? super V> predicate,
Function<? super V,? extends R> function) |
<V1> ListIterable<V1> |
SortedMapIterable.collectIf(Predicate<? super V> predicate,
Function<? super V,? extends V1> function) |
<E> MutableSortedMap<K,V> |
MutableSortedMap.collectKeysAndValues(Iterable<E> iterable,
Function<? super E,? extends K> keyFunction,
Function<? super E,? extends V> valueFunction)
Adds all the entries derived from
iterable to this . |
<E> MutableSortedMap<K,V> |
MutableSortedMap.collectKeysAndValues(Iterable<E> iterable,
Function<? super E,? extends K> keyFunction,
Function<? super E,? extends V> valueFunction)
Adds all the entries derived from
iterable to this . |
<R> MutableList<R> |
MutableSortedMap.flatCollect(Function<? super V,? extends Iterable<R>> function) |
<R> ImmutableList<R> |
ImmutableSortedMap.flatCollect(Function<? super V,? extends Iterable<R>> function) |
<V1> ListIterable<V1> |
SortedMapIterable.flatCollect(Function<? super V,? extends Iterable<V1>> function) |
<P> V |
MutableSortedMap.getIfAbsentPutWith(K key,
Function<? super P,? extends V> function,
P parameter)
Return the value in the Map that corresponds to the specified key, or if there is no value
at the key, return the result of evaluating the specified one argument Function
using the specified parameter, and put that value in the map at the specified key.
|
<VV> MutableListMultimap<VV,V> |
MutableSortedMap.groupBy(Function<? super V,? extends VV> function) |
<VV> ListMultimap<VV,V> |
SortedMapIterable.groupBy(Function<? super V,? extends VV> function) |
<VV> ImmutableListMultimap<VV,V> |
ImmutableSortedMap.groupBy(Function<? super V,? extends VV> function) |
<VV> MutableListMultimap<VV,V> |
MutableSortedMap.groupByEach(Function<? super V,? extends Iterable<VV>> function) |
<VV> ListMultimap<VV,V> |
SortedMapIterable.groupByEach(Function<? super V,? extends Iterable<VV>> function) |
<VV> ImmutableListMultimap<VV,V> |
ImmutableSortedMap.groupByEach(Function<? super V,? extends Iterable<VV>> function) |
<VV> MutableMap<VV,V> |
MutableSortedMap.groupByUniqueKey(Function<? super V,? extends VV> function) |
<VV> ImmutableMap<VV,V> |
ImmutableSortedMap.groupByUniqueKey(Function<? super V,? extends VV> function) |
Modifier and Type | Method and Description |
---|---|
<V2> Multimap<K,V2> |
Multimap.collectValues(Function<? super V,? extends V2> function)
Returns a new multimap with the results of applying the specified function on each value of the source
multimap.
|
<V2> MutableMultimap<K,V2> |
MutableMultimap.collectValues(Function<? super V,? extends V2> function) |
<V2> ImmutableMultimap<K,V2> |
ImmutableMultimap.collectValues(Function<? super V,? extends V2> function) |
<V2,R extends MutableMultimap<K,V2>> |
Multimap.collectValues(Function<? super V,? extends V2> function,
R target)
Same as the collect method but uses the specified target multimap for the results.
|
Modifier and Type | Method and Description |
---|---|
<V2> MutableBagMultimap<K,V2> |
MutableBagMultimap.collectValues(Function<? super V,? extends V2> function) |
<V2> ImmutableBagMultimap<K,V2> |
ImmutableBagMultimap.collectValues(Function<? super V,? extends V2> function) |
<V2> ImmutableMultimap<K,V2> |
ImmutableBagIterableMultimap.collectValues(Function<? super V,? extends V2> function) |
<V2> MutableMultimap<K,V2> |
MutableBagIterableMultimap.collectValues(Function<? super V,? extends V2> function) |
<V2> UnsortedBagMultimap<K,V2> |
UnsortedBagMultimap.collectValues(Function<? super V,? extends V2> function) |
Modifier and Type | Method and Description |
---|---|
<V2> ListMultimap<K,V2> |
ListMultimap.collectValues(Function<? super V,? extends V2> function) |
<V2> ImmutableListMultimap<K,V2> |
ImmutableListMultimap.collectValues(Function<? super V,? extends V2> function) |
<V2> MutableListMultimap<K,V2> |
MutableListMultimap.collectValues(Function<? super V,? extends V2> function) |
Modifier and Type | Method and Description |
---|---|
<V2> ListMultimap<K,V2> |
SortedIterableMultimap.collectValues(Function<? super V,? extends V2> function) |
<V2> OrderedIterableMultimap<K,V2> |
OrderedIterableMultimap.collectValues(Function<? super V,? extends V2> function) |
<V2> ReversibleIterableMultimap<K,V2> |
ReversibleIterableMultimap.collectValues(Function<? super V,? extends V2> function) |
Modifier and Type | Method and Description |
---|---|
<V2> ImmutableBagMultimap<K,V2> |
ImmutableSetMultimap.collectValues(Function<? super V,? extends V2> function) |
<V2> UnsortedBagMultimap<K,V2> |
UnsortedSetMultimap.collectValues(Function<? super V,? extends V2> function) |
<V2> MutableBagMultimap<K,V2> |
MutableSetMultimap.collectValues(Function<? super V,? extends V2> function) |
<V2> ImmutableMultimap<K,V2> |
ImmutableSetIterableMultimap.collectValues(Function<? super V,? extends V2> function) |
<V2> MutableMultimap<K,V2> |
MutableSetIterableMultimap.collectValues(Function<? super V,? extends V2> function) |
Modifier and Type | Method and Description |
---|---|
<V2> ListMultimap<K,V2> |
SortedBagMultimap.collectValues(Function<? super V,? extends V2> function) |
<V2> ImmutableListMultimap<K,V2> |
ImmutableSortedBagMultimap.collectValues(Function<? super V,? extends V2> function) |
<V2> MutableListMultimap<K,V2> |
MutableSortedBagMultimap.collectValues(Function<? super V,? extends V2> function) |
Modifier and Type | Method and Description |
---|---|
<V2> ImmutableListMultimap<K,V2> |
ImmutableSortedSetMultimap.collectValues(Function<? super V,? extends V2> function) |
<V2> ListMultimap<K,V2> |
SortedSetMultimap.collectValues(Function<? super V,? extends V2> function) |
<V2> MutableListMultimap<K,V2> |
MutableSortedSetMultimap.collectValues(Function<? super V,? extends V2> function) |
Modifier and Type | Method and Description |
---|---|
<V> ReversibleIterable<V> |
ReversibleIterable.collect(Function<? super T,? extends V> function) |
<V> OrderedIterable<V> |
OrderedIterable.collect(Function<? super T,? extends V> function) |
<V> ReversibleIterable<V> |
ReversibleIterable.collectIf(Predicate<? super T> predicate,
Function<? super T,? extends V> function) |
<V> OrderedIterable<V> |
OrderedIterable.collectIf(Predicate<? super T> predicate,
Function<? super T,? extends V> function) |
<V> ReversibleIterable<V> |
ReversibleIterable.flatCollect(Function<? super T,? extends Iterable<V>> function) |
<V> OrderedIterable<V> |
OrderedIterable.flatCollect(Function<? super T,? extends Iterable<V>> function) |
<V> SortedIterableMultimap<V,T> |
SortedIterable.groupBy(Function<? super T,? extends V> function) |
<V> ReversibleIterableMultimap<V,T> |
ReversibleIterable.groupBy(Function<? super T,? extends V> function) |
<V> OrderedIterableMultimap<V,T> |
OrderedIterable.groupBy(Function<? super T,? extends V> function) |
<V> SortedIterableMultimap<V,T> |
SortedIterable.groupByEach(Function<? super T,? extends Iterable<V>> function) |
<V> ReversibleIterableMultimap<V,T> |
ReversibleIterable.groupByEach(Function<? super T,? extends Iterable<V>> function) |
<V> OrderedIterableMultimap<V,T> |
OrderedIterable.groupByEach(Function<? super T,? extends Iterable<V>> function) |
Modifier and Type | Method and Description |
---|---|
<V> ImmutableSet<V> |
ImmutableSet.collect(Function<? super T,? extends V> function) |
<V> UnsortedSetIterable<V> |
UnsortedSetIterable.collect(Function<? super T,? extends V> function) |
<V> MutableSet<V> |
MutableSet.collect(Function<? super T,? extends V> function) |
<V> ImmutableSet<V> |
ImmutableSet.collectIf(Predicate<? super T> predicate,
Function<? super T,? extends V> function) |
<V> UnsortedSetIterable<V> |
UnsortedSetIterable.collectIf(Predicate<? super T> predicate,
Function<? super T,? extends V> function) |
<V> MutableSet<V> |
MutableSet.collectIf(Predicate<? super T> predicate,
Function<? super T,? extends V> function) |
<V> ImmutableSet<V> |
ImmutableSet.flatCollect(Function<? super T,? extends Iterable<V>> function) |
<V> UnsortedSetIterable<V> |
UnsortedSetIterable.flatCollect(Function<? super T,? extends Iterable<V>> function) |
<V> MutableSet<V> |
MutableSet.flatCollect(Function<? super T,? extends Iterable<V>> function) |
<V> SetMultimap<V,T> |
ParallelSetIterable.groupBy(Function<? super T,? extends V> function) |
<V> ImmutableSetMultimap<V,T> |
ImmutableSet.groupBy(Function<? super T,? extends V> function) |
<V> UnsortedSetMultimap<V,T> |
UnsortedSetIterable.groupBy(Function<? super T,? extends V> function) |
<V> MutableSetMultimap<V,T> |
MutableSet.groupBy(Function<? super T,? extends V> function) |
<V> MutableSetIterableMultimap<V,T> |
MutableSetIterable.groupBy(Function<? super T,? extends V> function) |
<V> ImmutableSetIterableMultimap<V,T> |
ImmutableSetIterable.groupBy(Function<? super T,? extends V> function) |
<V> UnsortedSetMultimap<V,T> |
ParallelUnsortedSetIterable.groupBy(Function<? super T,? extends V> function) |
<V> SetMultimap<V,T> |
ParallelSetIterable.groupByEach(Function<? super T,? extends Iterable<V>> function) |
<V> ImmutableSetMultimap<V,T> |
ImmutableSet.groupByEach(Function<? super T,? extends Iterable<V>> function) |
<V> UnsortedSetMultimap<V,T> |
UnsortedSetIterable.groupByEach(Function<? super T,? extends Iterable<V>> function) |
<V> MutableSetMultimap<V,T> |
MutableSet.groupByEach(Function<? super T,? extends Iterable<V>> function) |
<V> MutableSetIterableMultimap<V,T> |
MutableSetIterable.groupByEach(Function<? super T,? extends Iterable<V>> function) |
<V> ImmutableSetIterableMultimap<V,T> |
ImmutableSetIterable.groupByEach(Function<? super T,? extends Iterable<V>> function) |
<V> UnsortedSetMultimap<V,T> |
ParallelUnsortedSetIterable.groupByEach(Function<? super T,? extends Iterable<V>> function) |
Modifier and Type | Method and Description |
---|---|
<V> ParallelListIterable<V> |
ParallelSortedSetIterable.collect(Function<? super T,? extends V> function)
Creates a parallel iterable for collecting elements from the current iterable.
|
<V> ImmutableList<V> |
ImmutableSortedSet.collect(Function<? super T,? extends V> function) |
<V> MutableList<V> |
MutableSortedSet.collect(Function<? super T,? extends V> function) |
<V> ListIterable<V> |
SortedSetIterable.collect(Function<? super T,? extends V> function) |
<V> ParallelListIterable<V> |
ParallelSortedSetIterable.collectIf(Predicate<? super T> predicate,
Function<? super T,? extends V> function)
Creates a parallel iterable for selecting and collecting elements from the current iterable.
|
<V> ImmutableList<V> |
ImmutableSortedSet.collectIf(Predicate<? super T> predicate,
Function<? super T,? extends V> function) |
<V> MutableList<V> |
MutableSortedSet.collectIf(Predicate<? super T> predicate,
Function<? super T,? extends V> function) |
<V> ListIterable<V> |
SortedSetIterable.collectIf(Predicate<? super T> predicate,
Function<? super T,? extends V> function) |
<V> ParallelListIterable<V> |
ParallelSortedSetIterable.flatCollect(Function<? super T,? extends Iterable<V>> function)
Creates a parallel flattening iterable for the current iterable.
|
<V> ImmutableList<V> |
ImmutableSortedSet.flatCollect(Function<? super T,? extends Iterable<V>> function) |
<V> MutableList<V> |
MutableSortedSet.flatCollect(Function<? super T,? extends Iterable<V>> function) |
<V> ListIterable<V> |
SortedSetIterable.flatCollect(Function<? super T,? extends Iterable<V>> function) |
<V> SortedSetMultimap<V,T> |
ParallelSortedSetIterable.groupBy(Function<? super T,? extends V> function) |
<V> ImmutableSortedSetMultimap<V,T> |
ImmutableSortedSet.groupBy(Function<? super T,? extends V> function) |
<V> MutableSortedSetMultimap<V,T> |
MutableSortedSet.groupBy(Function<? super T,? extends V> function) |
<V> SortedSetMultimap<V,T> |
SortedSetIterable.groupBy(Function<? super T,? extends V> function) |
<V> SortedSetMultimap<V,T> |
ParallelSortedSetIterable.groupByEach(Function<? super T,? extends Iterable<V>> function) |
<V> ImmutableSortedSetMultimap<V,T> |
ImmutableSortedSet.groupByEach(Function<? super T,? extends Iterable<V>> function) |
<V> MutableSortedSetMultimap<V,T> |
MutableSortedSet.groupByEach(Function<? super T,? extends Iterable<V>> function) |
<V> SortedSetMultimap<V,T> |
SortedSetIterable.groupByEach(Function<? super T,? extends Iterable<V>> function) |
Modifier and Type | Method and Description |
---|---|
<V> StackIterable<V> |
StackIterable.collect(Function<? super T,? extends V> function) |
<V> ImmutableStack<V> |
ImmutableStack.collect(Function<? super T,? extends V> function) |
<V> MutableStack<V> |
MutableStack.collect(Function<? super T,? extends V> function) |
<V> StackIterable<V> |
StackIterable.collectIf(Predicate<? super T> predicate,
Function<? super T,? extends V> function) |
<V> ImmutableStack<V> |
ImmutableStack.collectIf(Predicate<? super T> predicate,
Function<? super T,? extends V> function) |
<V> MutableStack<V> |
MutableStack.collectIf(Predicate<? super T> predicate,
Function<? super T,? extends V> function) |
<V> StackIterable<V> |
StackIterable.flatCollect(Function<? super T,? extends Iterable<V>> function) |
<V> ImmutableStack<V> |
ImmutableStack.flatCollect(Function<? super T,? extends Iterable<V>> function) |
<V> MutableStack<V> |
MutableStack.flatCollect(Function<? super T,? extends Iterable<V>> function) |
<V> ListMultimap<V,T> |
StackIterable.groupBy(Function<? super T,? extends V> function) |
<V> ImmutableListMultimap<V,T> |
ImmutableStack.groupBy(Function<? super T,? extends V> function) |
<V> MutableListMultimap<V,T> |
MutableStack.groupBy(Function<? super T,? extends V> function) |
<V> ListMultimap<V,T> |
StackIterable.groupByEach(Function<? super T,? extends Iterable<V>> function) |
<V> ImmutableListMultimap<V,T> |
ImmutableStack.groupByEach(Function<? super T,? extends Iterable<V>> function) |
<V> MutableListMultimap<V,T> |
MutableStack.groupByEach(Function<? super T,? extends Iterable<V>> function) |
<V> ImmutableMap<V,T> |
ImmutableStack.groupByUniqueKey(Function<? super T,? extends V> function) |
<V> MutableMap<V,T> |
MutableStack.groupByUniqueKey(Function<? super T,? extends V> function) |
Modifier and Type | Method and Description |
---|---|
<K,V> MapIterable<K,V> |
UnmodifiableRichIterable.aggregateBy(Function<? super T,? extends K> groupBy,
Function0<? extends V> zeroValueFactory,
Function2<? super V,? super T,? extends V> nonMutatingAggregator) |
<K,V> MapIterable<K,V> |
SynchronizedRichIterable.aggregateBy(Function<? super T,? extends K> groupBy,
Function0<? extends V> zeroValueFactory,
Function2<? super V,? super T,? extends V> nonMutatingAggregator) |
<K,V> MapIterable<K,V> |
UnmodifiableRichIterable.aggregateInPlaceBy(Function<? super T,? extends K> groupBy,
Function0<? extends V> zeroValueFactory,
Procedure2<? super V,? super T> mutatingAggregator) |
<K,V> MapIterable<K,V> |
SynchronizedRichIterable.aggregateInPlaceBy(Function<? super T,? extends K> groupBy,
Function0<? extends V> zeroValueFactory,
Procedure2<? super V,? super T> mutatingAggregator) |
<V> RichIterable<V> |
UnmodifiableRichIterable.collect(Function<? super T,? extends V> function) |
<V> RichIterable<V> |
SynchronizedRichIterable.collect(Function<? super T,? extends V> function) |
<V,R extends Collection<V>> |
AbstractRichIterable.collect(Function<? super T,? extends V> function,
R target) |
<V,R extends Collection<V>> |
UnmodifiableRichIterable.collect(Function<? super T,? extends V> function,
R target) |
<V,R extends Collection<V>> |
SynchronizedRichIterable.collect(Function<? super T,? extends V> function,
R target) |
<V> RichIterable<V> |
UnmodifiableRichIterable.collectIf(Predicate<? super T> predicate,
Function<? super T,? extends V> function) |
<V> RichIterable<V> |
SynchronizedRichIterable.collectIf(Predicate<? super T> predicate,
Function<? super T,? extends V> function) |
<V,R extends Collection<V>> |
AbstractRichIterable.collectIf(Predicate<? super T> predicate,
Function<? super T,? extends V> function,
R target) |
<V,R extends Collection<V>> |
UnmodifiableRichIterable.collectIf(Predicate<? super T> predicate,
Function<? super T,? extends V> function,
R target) |
<V,R extends Collection<V>> |
SynchronizedRichIterable.collectIf(Predicate<? super T> predicate,
Function<? super T,? extends V> function,
R target) |
<V> RichIterable<V> |
UnmodifiableRichIterable.flatCollect(Function<? super T,? extends Iterable<V>> function) |
<V> RichIterable<V> |
SynchronizedRichIterable.flatCollect(Function<? super T,? extends Iterable<V>> function) |
<V,R extends Collection<V>> |
AbstractRichIterable.flatCollect(Function<? super T,? extends Iterable<V>> function,
R target) |
<V,R extends Collection<V>> |
UnmodifiableRichIterable.flatCollect(Function<? super T,? extends Iterable<V>> function,
R target) |
<V,R extends Collection<V>> |
SynchronizedRichIterable.flatCollect(Function<? super T,? extends Iterable<V>> function,
R target) |
<V> Multimap<V,T> |
UnmodifiableRichIterable.groupBy(Function<? super T,? extends V> function) |
<V> Multimap<V,T> |
SynchronizedRichIterable.groupBy(Function<? super T,? extends V> function) |
<V,R extends MutableMultimap<V,T>> |
AbstractRichIterable.groupBy(Function<? super T,? extends V> function,
R target) |
<V,R extends MutableMultimap<V,T>> |
UnmodifiableRichIterable.groupBy(Function<? super T,? extends V> function,
R target) |
<V,R extends MutableMultimap<V,T>> |
SynchronizedRichIterable.groupBy(Function<? super T,? extends V> function,
R target) |
<V> Multimap<V,T> |
UnmodifiableRichIterable.groupByEach(Function<? super T,? extends Iterable<V>> function) |
<V> Multimap<V,T> |
SynchronizedRichIterable.groupByEach(Function<? super T,? extends Iterable<V>> function) |
<V,R extends MutableMultimap<V,T>> |
AbstractRichIterable.groupByEach(Function<? super T,? extends Iterable<V>> function,
R target) |
<V,R extends MutableMultimap<V,T>> |
UnmodifiableRichIterable.groupByEach(Function<? super T,? extends Iterable<V>> function,
R target) |
<V,R extends MutableMultimap<V,T>> |
SynchronizedRichIterable.groupByEach(Function<? super T,? extends Iterable<V>> function,
R target) |
<V> MapIterable<V,T> |
UnmodifiableRichIterable.groupByUniqueKey(Function<? super T,? extends V> function) |
<V> MapIterable<V,T> |
SynchronizedRichIterable.groupByUniqueKey(Function<? super T,? extends V> function) |
<V,R extends MutableMap<V,T>> |
AbstractRichIterable.groupByUniqueKey(Function<? super T,? extends V> function,
R target) |
<V,R extends MutableMap<V,T>> |
UnmodifiableRichIterable.groupByUniqueKey(Function<? super T,? extends V> function,
R target) |
<V,R extends MutableMap<V,T>> |
SynchronizedRichIterable.groupByUniqueKey(Function<? super T,? extends V> function,
R target) |
<V extends Comparable<? super V>> |
AbstractRichIterable.maxBy(Function<? super T,? extends V> function) |
<V extends Comparable<? super V>> |
UnmodifiableRichIterable.maxBy(Function<? super T,? extends V> function) |
<V extends Comparable<? super V>> |
SynchronizedRichIterable.maxBy(Function<? super T,? extends V> function) |
<V extends Comparable<? super V>> |
AbstractRichIterable.minBy(Function<? super T,? extends V> function) |
<V extends Comparable<? super V>> |
UnmodifiableRichIterable.minBy(Function<? super T,? extends V> function) |
<V extends Comparable<? super V>> |
SynchronizedRichIterable.minBy(Function<? super T,? extends V> function) |
<V> ObjectDoubleMap<V> |
AbstractRichIterable.sumByDouble(Function<T,V> groupBy,
DoubleFunction<? super T> function) |
<V> ObjectDoubleMap<V> |
UnmodifiableRichIterable.sumByDouble(Function<T,V> groupBy,
DoubleFunction<? super T> function) |
<V> ObjectDoubleMap<V> |
SynchronizedRichIterable.sumByDouble(Function<T,V> groupBy,
DoubleFunction<? super T> function) |
<V> ObjectDoubleMap<V> |
AbstractRichIterable.sumByFloat(Function<T,V> groupBy,
FloatFunction<? super T> function) |
<V> ObjectDoubleMap<V> |
UnmodifiableRichIterable.sumByFloat(Function<T,V> groupBy,
FloatFunction<? super T> function) |
<V> ObjectDoubleMap<V> |
SynchronizedRichIterable.sumByFloat(Function<T,V> groupBy,
FloatFunction<? super T> function) |
<V> ObjectLongMap<V> |
AbstractRichIterable.sumByInt(Function<T,V> groupBy,
IntFunction<? super T> function) |
<V> ObjectLongMap<V> |
UnmodifiableRichIterable.sumByInt(Function<T,V> groupBy,
IntFunction<? super T> function) |
<V> ObjectLongMap<V> |
SynchronizedRichIterable.sumByInt(Function<T,V> groupBy,
IntFunction<? super T> function) |
<V> ObjectLongMap<V> |
AbstractRichIterable.sumByLong(Function<T,V> groupBy,
LongFunction<? super T> function) |
<V> ObjectLongMap<V> |
UnmodifiableRichIterable.sumByLong(Function<T,V> groupBy,
LongFunction<? super T> function) |
<V> ObjectLongMap<V> |
SynchronizedRichIterable.sumByLong(Function<T,V> groupBy,
LongFunction<? super T> function) |
<K,V> MutableMap<K,V> |
AbstractRichIterable.toMap(Function<? super T,? extends K> keyFunction,
Function<? super T,? extends V> valueFunction) |
<K,V> MutableMap<K,V> |
AbstractRichIterable.toMap(Function<? super T,? extends K> keyFunction,
Function<? super T,? extends V> valueFunction) |
<NK,NV> MutableMap<NK,NV> |
UnmodifiableRichIterable.toMap(Function<? super T,? extends NK> keyFunction,
Function<? super T,? extends NV> valueFunction) |
<NK,NV> MutableMap<NK,NV> |
UnmodifiableRichIterable.toMap(Function<? super T,? extends NK> keyFunction,
Function<? super T,? extends NV> valueFunction) |
<NK,NV> MutableMap<NK,NV> |
SynchronizedRichIterable.toMap(Function<? super T,? extends NK> keyFunction,
Function<? super T,? extends NV> valueFunction) |
<NK,NV> MutableMap<NK,NV> |
SynchronizedRichIterable.toMap(Function<? super T,? extends NK> keyFunction,
Function<? super T,? extends NV> valueFunction) |
<V extends Comparable<? super V>> |
AbstractRichIterable.toSortedBagBy(Function<? super T,? extends V> function) |
<V extends Comparable<? super V>> |
UnmodifiableRichIterable.toSortedBagBy(Function<? super T,? extends V> function) |
<V extends Comparable<? super V>> |
SynchronizedRichIterable.toSortedBagBy(Function<? super T,? extends V> function) |
<V extends Comparable<? super V>> |
AbstractRichIterable.toSortedListBy(Function<? super T,? extends V> function) |
<V extends Comparable<? super V>> |
UnmodifiableRichIterable.toSortedListBy(Function<? super T,? extends V> function) |
<V extends Comparable<? super V>> |
SynchronizedRichIterable.toSortedListBy(Function<? super T,? extends V> function) |
<K,V> MutableSortedMap<K,V> |
AbstractRichIterable.toSortedMap(Comparator<? super K> comparator,
Function<? super T,? extends K> keyFunction,
Function<? super T,? extends V> valueFunction) |
<K,V> MutableSortedMap<K,V> |
AbstractRichIterable.toSortedMap(Comparator<? super K> comparator,
Function<? super T,? extends K> keyFunction,
Function<? super T,? extends V> valueFunction) |
<NK,NV> MutableSortedMap<NK,NV> |
UnmodifiableRichIterable.toSortedMap(Comparator<? super NK> comparator,
Function<? super T,? extends NK> keyFunction,
Function<? super T,? extends NV> valueFunction) |
<NK,NV> MutableSortedMap<NK,NV> |
UnmodifiableRichIterable.toSortedMap(Comparator<? super NK> comparator,
Function<? super T,? extends NK> keyFunction,
Function<? super T,? extends NV> valueFunction) |
<NK,NV> MutableSortedMap<NK,NV> |
SynchronizedRichIterable.toSortedMap(Comparator<? super NK> comparator,
Function<? super T,? extends NK> keyFunction,
Function<? super T,? extends NV> valueFunction) |
<NK,NV> MutableSortedMap<NK,NV> |
SynchronizedRichIterable.toSortedMap(Comparator<? super NK> comparator,
Function<? super T,? extends NK> keyFunction,
Function<? super T,? extends NV> valueFunction) |
<K,V> MutableSortedMap<K,V> |
AbstractRichIterable.toSortedMap(Function<? super T,? extends K> keyFunction,
Function<? super T,? extends V> valueFunction) |
<K,V> MutableSortedMap<K,V> |
AbstractRichIterable.toSortedMap(Function<? super T,? extends K> keyFunction,
Function<? super T,? extends V> valueFunction) |
<NK,NV> MutableSortedMap<NK,NV> |
UnmodifiableRichIterable.toSortedMap(Function<? super T,? extends NK> keyFunction,
Function<? super T,? extends NV> valueFunction) |
<NK,NV> MutableSortedMap<NK,NV> |
UnmodifiableRichIterable.toSortedMap(Function<? super T,? extends NK> keyFunction,
Function<? super T,? extends NV> valueFunction) |
<NK,NV> MutableSortedMap<NK,NV> |
SynchronizedRichIterable.toSortedMap(Function<? super T,? extends NK> keyFunction,
Function<? super T,? extends NV> valueFunction) |
<NK,NV> MutableSortedMap<NK,NV> |
SynchronizedRichIterable.toSortedMap(Function<? super T,? extends NK> keyFunction,
Function<? super T,? extends NV> valueFunction) |
<V extends Comparable<? super V>> |
AbstractRichIterable.toSortedSetBy(Function<? super T,? extends V> function) |
<V extends Comparable<? super V>> |
UnmodifiableRichIterable.toSortedSetBy(Function<? super T,? extends V> function) |
<V extends Comparable<? super V>> |
SynchronizedRichIterable.toSortedSetBy(Function<? super T,? extends V> function) |
Modifier and Type | Method and Description |
---|---|
<V,R extends Collection<V>> |
AbstractBag.collect(Function<? super T,? extends V> function,
R target) |
<V,R extends Collection<V>> |
AbstractBag.collectIf(Predicate<? super T> predicate,
Function<? super T,? extends V> function,
R target) |
<V,R extends Collection<V>> |
AbstractBag.flatCollect(Function<? super T,? extends Iterable<V>> function,
R target) |
<V,R extends MutableMultimap<V,T>> |
AbstractBag.groupBy(Function<? super T,? extends V> function,
R target) |
<V,R extends MutableMultimap<V,T>> |
AbstractBag.groupByEach(Function<? super T,? extends Iterable<V>> function,
R target) |
Modifier and Type | Method and Description |
---|---|
<K,V> ImmutableMap<K,V> |
AbstractImmutableBagIterable.aggregateBy(Function<? super T,? extends K> groupBy,
Function0<? extends V> zeroValueFactory,
Function2<? super V,? super T,? extends V> nonMutatingAggregator) |
<K,V> ImmutableMap<K,V> |
AbstractImmutableBagIterable.aggregateInPlaceBy(Function<? super T,? extends K> groupBy,
Function0<? extends V> zeroValueFactory,
Procedure2<? super V,? super T> mutatingAggregator) |
<V> ImmutableBag<V> |
ImmutableHashBag.collect(Function<? super T,? extends V> function) |
<V> ImmutableBag<V> |
ImmutableArrayBag.collect(Function<? super T,? extends V> function) |
<V,R extends Collection<V>> |
ImmutableHashBag.collect(Function<? super T,? extends V> function,
R target) |
<V> ImmutableBag<V> |
ImmutableHashBag.collectIf(Predicate<? super T> predicate,
Function<? super T,? extends V> function) |
<V> ImmutableBag<V> |
ImmutableArrayBag.collectIf(Predicate<? super T> predicate,
Function<? super T,? extends V> function) |
<V,R extends Collection<V>> |
ImmutableHashBag.collectIf(Predicate<? super T> predicate,
Function<? super T,? extends V> function,
R target) |
<V> ImmutableBag<V> |
ImmutableHashBag.flatCollect(Function<? super T,? extends Iterable<V>> function) |
<V> ImmutableBag<V> |
ImmutableArrayBag.flatCollect(Function<? super T,? extends Iterable<V>> function) |
<V,R extends Collection<V>> |
ImmutableHashBag.flatCollect(Function<? super T,? extends Iterable<V>> function,
R target) |
<V> ImmutableBagMultimap<V,T> |
ImmutableHashBag.groupBy(Function<? super T,? extends V> function) |
<V> ImmutableBagMultimap<V,T> |
ImmutableArrayBag.groupBy(Function<? super T,? extends V> function) |
<V,R extends MutableMultimap<V,T>> |
ImmutableHashBag.groupBy(Function<? super T,? extends V> function,
R target) |
<V> ImmutableBagMultimap<V,T> |
ImmutableHashBag.groupByEach(Function<? super T,? extends Iterable<V>> function) |
<V> ImmutableBagMultimap<V,T> |
ImmutableArrayBag.groupByEach(Function<? super T,? extends Iterable<V>> function) |
<V,R extends MutableMultimap<V,T>> |
ImmutableHashBag.groupByEach(Function<? super T,? extends Iterable<V>> function,
R target) |
<V> ImmutableMap<V,T> |
AbstractImmutableBag.groupByUniqueKey(Function<? super T,? extends V> function) |
<V> ImmutableMap<V,T> |
ImmutableHashBag.groupByUniqueKey(Function<? super T,? extends V> function) |
<V extends Comparable<? super V>> |
ImmutableHashBag.maxBy(Function<? super T,? extends V> function) |
<V extends Comparable<? super V>> |
ImmutableArrayBag.maxBy(Function<? super T,? extends V> function) |
<V extends Comparable<? super V>> |
ImmutableHashBag.minBy(Function<? super T,? extends V> function) |
<V extends Comparable<? super V>> |
ImmutableArrayBag.minBy(Function<? super T,? extends V> function) |
<K,V> MutableMap<K,V> |
ImmutableHashBag.toMap(Function<? super T,? extends K> keyFunction,
Function<? super T,? extends V> valueFunction) |
<K,V> MutableMap<K,V> |
ImmutableHashBag.toMap(Function<? super T,? extends K> keyFunction,
Function<? super T,? extends V> valueFunction) |
<V extends Comparable<? super V>> |
ImmutableHashBag.toSortedBagBy(Function<? super T,? extends V> function) |
<K,V> MutableSortedMap<K,V> |
ImmutableHashBag.toSortedMap(Comparator<? super K> comparator,
Function<? super T,? extends K> keyFunction,
Function<? super T,? extends V> valueFunction) |
<K,V> MutableSortedMap<K,V> |
ImmutableHashBag.toSortedMap(Comparator<? super K> comparator,
Function<? super T,? extends K> keyFunction,
Function<? super T,? extends V> valueFunction) |
<K,V> MutableSortedMap<K,V> |
ImmutableHashBag.toSortedMap(Function<? super T,? extends K> keyFunction,
Function<? super T,? extends V> valueFunction) |
<K,V> MutableSortedMap<K,V> |
ImmutableHashBag.toSortedMap(Function<? super T,? extends K> keyFunction,
Function<? super T,? extends V> valueFunction) |
Modifier and Type | Method and Description |
---|---|
<K,V> MutableMap<K,V> |
AbstractMutableBagIterable.aggregateBy(Function<? super T,? extends K> groupBy,
Function0<? extends V> zeroValueFactory,
Function2<? super V,? super T,? extends V> nonMutatingAggregator) |
<K,V> MutableMap<K,V> |
AbstractMutableBagIterable.aggregateInPlaceBy(Function<? super T,? extends K> groupBy,
Function0<? extends V> zeroValueFactory,
Procedure2<? super V,? super T> mutatingAggregator) |
<V> MutableBag<V> |
AbstractMutableBag.collect(Function<? super T,? extends V> function) |
<V> MutableBag<V> |
MultiReaderHashBag.collect(Function<? super T,? extends V> function) |
<V> MutableBag<V> |
SynchronizedBag.collect(Function<? super T,? extends V> function) |
<V> MutableBag<V> |
UnmodifiableBag.collect(Function<? super T,? extends V> function) |
<V> MutableBag<V> |
AbstractMutableBag.collectIf(Predicate<? super T> predicate,
Function<? super T,? extends V> function) |
<V> MutableBag<V> |
MultiReaderHashBag.collectIf(Predicate<? super T> predicate,
Function<? super T,? extends V> function) |
<V> MutableBag<V> |
SynchronizedBag.collectIf(Predicate<? super T> predicate,
Function<? super T,? extends V> function) |
<V> MutableBag<V> |
UnmodifiableBag.collectIf(Predicate<? super T> predicate,
Function<? super T,? extends V> function) |
<V> MutableBag<V> |
AbstractMutableBag.flatCollect(Function<? super T,? extends Iterable<V>> function) |
<V> MutableBag<V> |
MultiReaderHashBag.flatCollect(Function<? super T,? extends Iterable<V>> function) |
<V> MutableBag<V> |
SynchronizedBag.flatCollect(Function<? super T,? extends Iterable<V>> function) |
<V> MutableBag<V> |
UnmodifiableBag.flatCollect(Function<? super T,? extends Iterable<V>> function) |
<V> HashBagMultimap<V,T> |
AbstractHashBag.groupBy(Function<? super T,? extends V> function) |
<V> MutableBagMultimap<V,T> |
MultiReaderHashBag.groupBy(Function<? super T,? extends V> function) |
<V> MutableBagMultimap<V,T> |
SynchronizedBag.groupBy(Function<? super T,? extends V> function) |
<V> MutableBagMultimap<V,T> |
UnmodifiableBag.groupBy(Function<? super T,? extends V> function) |
<V> HashBagMultimap<V,T> |
AbstractHashBag.groupByEach(Function<? super T,? extends Iterable<V>> function) |
<V> MutableBagMultimap<V,T> |
MultiReaderHashBag.groupByEach(Function<? super T,? extends Iterable<V>> function) |
<V> MutableBagMultimap<V,T> |
SynchronizedBag.groupByEach(Function<? super T,? extends Iterable<V>> function) |
<V> MutableBagMultimap<V,T> |
UnmodifiableBag.groupByEach(Function<? super T,? extends Iterable<V>> function) |
<V> MutableMap<V,T> |
AbstractMutableBagIterable.groupByUniqueKey(Function<? super T,? extends V> function) |
<V> MutableMap<V,T> |
MultiReaderHashBag.groupByUniqueKey(Function<? super T,? extends V> function) |
<V extends Comparable<? super V>> |
AbstractMutableBagIterable.maxBy(Function<? super T,? extends V> function) |
<V extends Comparable<? super V>> |
AbstractMutableBagIterable.minBy(Function<? super T,? extends V> function) |
Modifier and Type | Method and Description |
---|---|
<V> MutableList<V> |
AbstractMutableSortedBag.collect(Function<? super T,? extends V> function) |
<V> MutableList<V> |
UnmodifiableSortedBag.collect(Function<? super T,? extends V> function) |
<V> MutableList<V> |
SynchronizedSortedBag.collect(Function<? super T,? extends V> function) |
<V> MutableList<V> |
AbstractMutableSortedBag.collectIf(Predicate<? super T> predicate,
Function<? super T,? extends V> function) |
<V> MutableList<V> |
UnmodifiableSortedBag.collectIf(Predicate<? super T> predicate,
Function<? super T,? extends V> function) |
<V> MutableList<V> |
SynchronizedSortedBag.collectIf(Predicate<? super T> predicate,
Function<? super T,? extends V> function) |
<V> MutableList<V> |
AbstractMutableSortedBag.flatCollect(Function<? super T,? extends Iterable<V>> function) |
<V> MutableList<V> |
UnmodifiableSortedBag.flatCollect(Function<? super T,? extends Iterable<V>> function) |
<V> MutableList<V> |
SynchronizedSortedBag.flatCollect(Function<? super T,? extends Iterable<V>> function) |
<V> TreeBagMultimap<V,T> |
TreeBag.groupBy(Function<? super T,? extends V> function) |
<V> MutableSortedBagMultimap<V,T> |
UnmodifiableSortedBag.groupBy(Function<? super T,? extends V> function) |
<V> MutableSortedBagMultimap<V,T> |
SynchronizedSortedBag.groupBy(Function<? super T,? extends V> function) |
<V> TreeBagMultimap<V,T> |
TreeBag.groupByEach(Function<? super T,? extends Iterable<V>> function) |
<V> MutableSortedBagMultimap<V,T> |
UnmodifiableSortedBag.groupByEach(Function<? super T,? extends Iterable<V>> function) |
<V> MutableSortedBagMultimap<V,T> |
SynchronizedSortedBag.groupByEach(Function<? super T,? extends Iterable<V>> function) |
Modifier and Type | Method and Description |
---|---|
<VV,R extends Collection<VV>> |
AbstractBiMap.collect(Function<? super V,? extends VV> function,
R target) |
<VV,R extends Collection<VV>> |
AbstractBiMap.collectIf(Predicate<? super V> predicate,
Function<? super V,? extends VV> function,
R target) |
<VV,R extends Collection<VV>> |
AbstractBiMap.flatCollect(Function<? super V,? extends Iterable<VV>> function,
R target) |
<P> V |
AbstractBiMap.getIfAbsentWith(K key,
Function<? super P,? extends V> function,
P parameter) |
<VV,R extends MutableMultimap<VV,V>> |
AbstractBiMap.groupBy(Function<? super V,? extends VV> function,
R target) |
<VV,R extends MutableMultimap<VV,V>> |
AbstractBiMap.groupByEach(Function<? super V,? extends Iterable<VV>> function,
R target) |
<VV,R extends MutableMap<VV,V>> |
AbstractBiMap.groupByUniqueKey(Function<? super V,? extends VV> function,
R target) |
<A> A |
AbstractBiMap.ifPresentApply(K key,
Function<? super V,? extends A> function) |
<VV extends Comparable<? super VV>> |
AbstractBiMap.maxBy(Function<? super V,? extends VV> function) |
<VV extends Comparable<? super VV>> |
AbstractBiMap.minBy(Function<? super V,? extends VV> function) |
<V1> ObjectDoubleMap<V1> |
AbstractBiMap.sumByDouble(Function<V,V1> groupBy,
DoubleFunction<? super V> function) |
<V1> ObjectDoubleMap<V1> |
AbstractBiMap.sumByFloat(Function<V,V1> groupBy,
FloatFunction<? super V> function) |
<V1> ObjectLongMap<V1> |
AbstractBiMap.sumByInt(Function<V,V1> groupBy,
IntFunction<? super V> function) |
<V1> ObjectLongMap<V1> |
AbstractBiMap.sumByLong(Function<V,V1> groupBy,
LongFunction<? super V> function) |
<NK,NV> MutableMap<NK,NV> |
AbstractBiMap.toMap(Function<? super V,? extends NK> keyFunction,
Function<? super V,? extends NV> valueFunction) |
<NK,NV> MutableMap<NK,NV> |
AbstractBiMap.toMap(Function<? super V,? extends NK> keyFunction,
Function<? super V,? extends NV> valueFunction) |
<VV extends Comparable<? super VV>> |
AbstractBiMap.toSortedBagBy(Function<? super V,? extends VV> function) |
<VV extends Comparable<? super VV>> |
AbstractBiMap.toSortedListBy(Function<? super V,? extends VV> function) |
<NK,NV> MutableSortedMap<NK,NV> |
AbstractBiMap.toSortedMap(Comparator<? super NK> comparator,
Function<? super V,? extends NK> keyFunction,
Function<? super V,? extends NV> valueFunction) |
<NK,NV> MutableSortedMap<NK,NV> |
AbstractBiMap.toSortedMap(Comparator<? super NK> comparator,
Function<? super V,? extends NK> keyFunction,
Function<? super V,? extends NV> valueFunction) |
<NK,NV> MutableSortedMap<NK,NV> |
AbstractBiMap.toSortedMap(Function<? super V,? extends NK> keyFunction,
Function<? super V,? extends NV> valueFunction) |
<NK,NV> MutableSortedMap<NK,NV> |
AbstractBiMap.toSortedMap(Function<? super V,? extends NK> keyFunction,
Function<? super V,? extends NV> valueFunction) |
<VV extends Comparable<? super VV>> |
AbstractBiMap.toSortedSetBy(Function<? super V,? extends VV> function) |
Modifier and Type | Method and Description |
---|---|
<K2,V2> ImmutableMap<K2,V2> |
AbstractImmutableBiMap.aggregateBy(Function<? super V,? extends K2> groupBy,
Function0<? extends V2> zeroValueFactory,
Function2<? super V2,? super V,? extends V2> nonMutatingAggregator) |
<K2,V2> ImmutableMap<K2,V2> |
AbstractImmutableBiMap.aggregateInPlaceBy(Function<? super V,? extends K2> groupBy,
Function0<? extends V2> zeroValueFactory,
Procedure2<? super V2,? super V> mutatingAggregator) |
<VV> ImmutableBag<VV> |
AbstractImmutableBiMap.collect(Function<? super V,? extends VV> function) |
<VV> ImmutableBag<VV> |
AbstractImmutableBiMap.collectIf(Predicate<? super V> predicate,
Function<? super V,? extends VV> function) |
<VV> ImmutableBag<VV> |
AbstractImmutableBiMap.flatCollect(Function<? super V,? extends Iterable<VV>> function) |
<VV> ImmutableSetMultimap<VV,V> |
AbstractImmutableBiMap.groupBy(Function<? super V,? extends VV> function) |
<VV> ImmutableSetMultimap<VV,V> |
AbstractImmutableBiMap.groupByEach(Function<? super V,? extends Iterable<VV>> function) |
<VV> ImmutableBiMap<VV,V> |
AbstractImmutableBiMap.groupByUniqueKey(Function<? super V,? extends VV> function) |
Constructor and Description |
---|
FunctionComparator(Function<? super T,? extends V> function,
Comparator<V> comparator) |
Modifier and Type | Class and Description |
---|---|
static class |
Functions.FunctionChain<T1,T2,T3> |
static class |
Functions.SizeFunction |
Modifier and Type | Method and Description |
---|---|
static Function<String,String> |
StringFunctions.append(String valueToAppend) |
static <T,P,R> Function<T,R> |
Functions.bind(Function2<? super T,? super P,? extends R> function,
P parameter)
Bind the parameter passed to a Function2 into a new Function.
|
static <T,V> Function<T,V> |
Functions.cast(Function<T,V> function)
Allows a Java 8 lambda and method reference to be used in a method taking a Function as a parameter
without any ambiguity.
|
static Function<String,Class<?>> |
Functions.classForName() |
static Function<String,Character> |
StringFunctions.firstLetter() |
static <T1,T2,I extends Iterable<T2>> |
Functions.firstNotEmptyCollectionValue(Function<T1,I>... functions) |
static <T> Function<T,String> |
Functions.firstNotEmptyStringValue(Function<T,String>... functions) |
static <T,V> Function<T,V> |
Functions.firstNotNullValue(Function<T,V>... functions) |
static <V1> Function<Pair<V1,?>,V1> |
Functions.firstOfPair() |
static <K,V> Function<K,RichIterable<V>> |
MultimapFunctions.get(Multimap<K,V> multimap) |
static Function<Double,Double> |
Functions.getDoublePassThru() |
static Function<Object,Boolean> |
Functions.getFalse() |
static <T,V> Function<T,V> |
Functions.getFixedValue(V value) |
static Function<Integer,Integer> |
Functions.getIntegerPassThru() |
static <K> Function<Map.Entry<K,?>,K> |
Functions.getKeyFunction() |
static Function<Long,Long> |
Functions.getLongPassThru() |
static Function<Number,Double> |
Functions.getMathSinFunction() |
static Function<Object,String> |
Functions.getNullSafeToString(String defaultValue) |
static Function<Number,Number> |
Functions.getNumberPassThru() |
static <T> Function<T,T> |
Functions.getPassThru()
Alias for identity().
|
static Function<Iterable<?>,Integer> |
Functions.getSizeOf() |
static Function<String,String> |
Functions.getStringPassThru() |
static Function<String,Integer> |
Functions.getStringToInteger() |
static Function<String,String> |
Functions.getStringTrim() |
static Function<Object,Class<?>> |
Functions.getToClass() |
static Function<Object,String> |
Functions.getToString() |
static Function<Object,Boolean> |
Functions.getTrue() |
static <V> Function<Map.Entry<?,V>,V> |
Functions.getValueFunction() |
static <T> Function<T,T> |
Functions.identity() |
static <T,V> Function<T,V> |
Functions.ifElse(Predicate<? super T> predicate,
Function<? super T,? extends V> trueFunction,
Function<? super T,? extends V> falseFunction) |
static <T,V> Function<T,V> |
Functions.ifTrue(Predicate<? super T> predicate,
Function<? super T,? extends V> function) |
static <T,V> Function<T,V> |
Functions.nullSafe(Function<? super T,? extends V> function) |
static <T,V> Function<T,V> |
Functions.nullSafe(Function<? super T,? extends V> function,
V nullValue) |
static <T,V1,V2> Function<T,Pair<V1,V2>> |
Functions.pair(Function<? super T,V1> function1,
Function<? super T,V2> function2) |
static Function<String,String> |
StringFunctions.prepend(String valueToPrepend) |
static <V2> Function<Pair<?,V2>,V2> |
Functions.secondOfPair() |
static Function<Integer,Integer> |
Functions.squaredInteger() |
static Function<String,String> |
StringFunctions.subString(int beginIndex,
int endIndex) |
static <S,T> Function<Pair<S,T>,Pair<T,S>> |
Functions.swappedPair()
Swap the input pair and return the swapped pair.
|
static <T,V> Function<T,V> |
Functions.synchronizedEach(Function<T,V> function) |
static <T,V> Function<T,V> |
Functions.throwing(ThrowingFunction<T,V> throwingFunction) |
static Function<String,Integer> |
StringFunctions.toInteger() |
static Function<String,String> |
StringFunctions.toLowerCase() |
static Function<String,String> |
StringFunctions.toUpperCase() |
static Function<String,String> |
StringFunctions.trim()
Returns a function that returns a copy of a
String , with leading and trailing whitespace
omitted. |
static <T,V> Function<T,V> |
Functions.withDefault(Function<? super T,? extends V> function,
V defaultValue) |
Modifier and Type | Method and Description |
---|---|
static <T,V> Predicates<T> |
Predicates.attributeAllSatisfy(Function<? super T,? extends Iterable<V>> function,
Predicate<? super V> predicate) |
static <T,V> Predicates<T> |
Predicates.attributeAnySatisfy(Function<? super T,? extends Iterable<V>> function,
Predicate<? super V> predicate) |
static <T,V extends Comparable<? super V>> |
Predicates.attributeBetweenExclusive(Function<? super T,? extends V> function,
V from,
V to) |
static <T,V extends Comparable<? super V>> |
Predicates.attributeBetweenInclusive(Function<? super T,? extends V> function,
V from,
V to) |
static <T,V extends Comparable<? super V>> |
Predicates.attributeBetweenInclusiveFrom(Function<? super T,? extends V> function,
V from,
V to) |
static <T,V extends Comparable<? super V>> |
Predicates.attributeBetweenInclusiveTo(Function<? super T,? extends V> function,
V from,
V to) |
static <T> Predicates<T> |
Predicates.attributeEqual(Function<? super T,?> function,
Object object) |
static <T> Predicates2<T,Object> |
Predicates2.attributeEqual(Function<T,?> function) |
static <T,V extends Comparable<? super V>> |
Predicates.attributeGreaterThan(Function<? super T,? extends V> function,
V object) |
static <T,P extends Comparable<? super P>> |
Predicates2.attributeGreaterThan(Function<T,P> function) |
static <T,V extends Comparable<? super V>> |
Predicates.attributeGreaterThanOrEqualTo(Function<? super T,? extends V> function,
V object) |
static <T,P extends Comparable<? super P>> |
Predicates2.attributeGreaterThanOrEqualTo(Function<T,P> function) |
static <T> Predicates<T> |
Predicates.attributeIn(Function<? super T,?> function,
Iterable<?> iterable)
Creates a predicate which returns true if an attribute selected from an object passed to accept method
is contained in the iterable.
|
static <T> Predicates2<T,Iterable<?>> |
Predicates2.attributeIn(Function<T,?> function) |
static <T> Predicates<T> |
IntegerPredicates.attributeIsEven(Function<T,Integer> function) |
static <T> Predicates<T> |
LongPredicates.attributeIsEven(Function<T,Long> function) |
static <T> Predicates<T> |
IntegerPredicates.attributeIsNegative(Function<T,Integer> function) |
static <T> Predicates<T> |
LongPredicates.attributeIsNegative(Function<T,Long> function) |
static <T> Predicates<T> |
Predicates.attributeIsNull(Function<? super T,?> function) |
static <T> Predicates<T> |
IntegerPredicates.attributeIsOdd(Function<T,Integer> function) |
static <T> Predicates<T> |
LongPredicates.attributeIsOdd(Function<T,Long> function) |
static <T> Predicates<T> |
IntegerPredicates.attributeIsPositive(Function<T,Integer> function) |
static <T> Predicates<T> |
LongPredicates.attributeIsPositive(Function<T,Long> function) |
static <T> Predicates<T> |
IntegerPredicates.attributeIsZero(Function<T,Integer> function) |
static <T> Predicates<T> |
LongPredicates.attributeIsZero(Function<T,Long> function) |
static <T,V extends Comparable<? super V>> |
Predicates.attributeLessThan(Function<? super T,? extends V> function,
V object) |
static <T,P extends Comparable<? super P>> |
Predicates2.attributeLessThan(Function<T,P> function) |
static <T,V extends Comparable<? super V>> |
Predicates.attributeLessThanOrEqualTo(Function<? super T,? extends V> function,
V object) |
static <T,P extends Comparable<? super P>> |
Predicates2.attributeLessThanOrEqualTo(Function<T,P> function) |
static <T,V> Predicates<T> |
Predicates.attributeNoneSatisfy(Function<? super T,? extends Iterable<V>> function,
Predicate<? super V> predicate) |
static <T> Predicates<T> |
Predicates.attributeNotEqual(Function<? super T,?> function,
Object object) |
static <T> Predicates2<T,Object> |
Predicates2.attributeNotEqual(Function<T,?> function) |
static <T> Predicates<T> |
Predicates.attributeNotIn(Function<? super T,?> function,
Iterable<?> iterable)
Creates a predicate which returns true if an attribute selected from an object passed to accept method
is not contained in the iterable.
|
static <T> Predicates2<T,Iterable<?>> |
Predicates2.attributeNotIn(Function<T,?> function) |
static <T> Predicates<T> |
Predicates.attributeNotNull(Function<? super T,?> function) |
static <T,V> Predicates<T> |
Predicates.attributePredicate(Function<? super T,? extends V> function,
Predicate<? super V> predicate) |
static <T1,T2> ObjectIntProcedure<T1> |
Functions.bind(ObjectIntProcedure<? super T2> delegate,
Function<? super T1,T2> function)
Bind the input of a ObjectIntProcedure to the result of an function, returning a new ObjectIntProcedure.
|
static <T1,T2> Procedure<T1> |
Functions.bind(Procedure<? super T2> delegate,
Function<? super T1,T2> function)
Bind the input of a Procedure to the result of an function, returning a new Procedure.
|
static <T1,T2,T3> Procedure2<T1,T3> |
Functions.bind(Procedure2<? super T2,T3> delegate,
Function<? super T1,T2> function)
Bind the input of the first argument of a Procedure2 to the result of an function, returning a new Procedure2.
|
static <T,V extends Comparable<? super V>> |
Comparators.byFunction(Function<? super T,? extends V> function) |
static <T,V> SerializableComparator<T> |
Comparators.byFunction(Function<? super T,? extends V> function,
Comparator<V> comparator) |
static <T extends Comparable<? super T>,V> |
Functions.caseDefault(Function<? super T,? extends V> defaultFunction) |
static <T extends Comparable<? super T>,V> |
Functions.caseDefault(Function<? super T,? extends V> defaultFunction,
Predicate<? super T> predicate,
Function<? super T,? extends V> function) |
static <T extends Comparable<? super T>,V> |
Functions.caseDefault(Function<? super T,? extends V> defaultFunction,
Predicate<? super T> predicate,
Function<? super T,? extends V> function) |
static <T,V> Function<T,V> |
Functions.cast(Function<T,V> function)
Allows a Java 8 lambda and method reference to be used in a method taking a Function as a parameter
without any ambiguity.
|
<T4> Functions.FunctionChain<T1,T3,T4> |
Functions.FunctionChain.chain(Function<? super T3,T4> function) |
static <T1,T2,T3> Functions.FunctionChain<T1,T2,T3> |
Functions.chain(Function<T1,T2> function1,
Function<? super T2,T3> function2) |
static <T1,T2,T3> Functions.FunctionChain<T1,T2,T3> |
Functions.chain(Function<T1,T2> function1,
Function<? super T2,T3> function2) |
static <T1,T2> Functions.BooleanFunctionChain<T1,T2> |
Functions.chainBoolean(Function<T1,T2> function1,
BooleanFunction<? super T2> function2) |
static <T1,T2> Functions.ByteFunctionChain<T1,T2> |
Functions.chainByte(Function<T1,T2> function1,
ByteFunction<? super T2> function2) |
static <T1,T2> Functions.CharFunctionChain<T1,T2> |
Functions.chainChar(Function<T1,T2> function1,
CharFunction<? super T2> function2) |
static <T1,T2> Functions.DoubleFunctionChain<T1,T2> |
Functions.chainDouble(Function<T1,T2> function1,
DoubleFunction<? super T2> function2) |
static <T1,T2> Functions.FloatFunctionChain<T1,T2> |
Functions.chainFloat(Function<T1,T2> function1,
FloatFunction<? super T2> function2) |
static <T1,T2> Functions.IntFunctionChain<T1,T2> |
Functions.chainInt(Function<T1,T2> function1,
IntFunction<? super T2> function2) |
static <T1,T2> Functions.LongFunctionChain<T1,T2> |
Functions.chainLong(Function<T1,T2> function1,
LongFunction<? super T2> function2) |
static <T1,T2> Functions.ShortFunctionChain<T1,T2> |
Functions.chainShort(Function<T1,T2> function1,
ShortFunction<? super T2> function2) |
static <T1,T2,I extends Iterable<T2>> |
Functions.firstNotEmptyCollectionValue(Function<T1,I>... functions) |
static <T> Function<T,String> |
Functions.firstNotEmptyStringValue(Function<T,String>... functions) |
static <T,V> Function<T,V> |
Functions.firstNotNullValue(Function<T,V>... functions) |
static <T,V> HashingStrategy<T> |
HashingStrategies.fromFunction(Function<? super T,? extends V> function) |
static <T,V,P> Function2<T,P,V> |
Functions2.fromFunction(Function<? super T,? extends V> function) |
static <T,V extends Comparable<? super V>> |
Comparators.fromFunctions(Function<? super T,? extends V> one) |
static <T,V1 extends Comparable<? super V1>,V2 extends Comparable<? super V2>> |
Comparators.fromFunctions(Function<? super T,? extends V1> one,
Function<? super T,? extends V2> two) |
static <T,V1 extends Comparable<? super V1>,V2 extends Comparable<? super V2>> |
Comparators.fromFunctions(Function<? super T,? extends V1> one,
Function<? super T,? extends V2> two) |
static <T,V1,V2> HashingStrategy<T> |
HashingStrategies.fromFunctions(Function<? super T,? extends V1> one,
Function<? super T,? extends V2> two) |
static <T,V1,V2> HashingStrategy<T> |
HashingStrategies.fromFunctions(Function<? super T,? extends V1> one,
Function<? super T,? extends V2> two) |
static <T,V1 extends Comparable<? super V1>,V2 extends Comparable<? super V2>,V3 extends Comparable<? super V3>> |
Comparators.fromFunctions(Function<? super T,? extends V1> one,
Function<? super T,? extends V2> two,
Function<? super T,? extends V3> three) |
static <T,V1 extends Comparable<? super V1>,V2 extends Comparable<? super V2>,V3 extends Comparable<? super V3>> |
Comparators.fromFunctions(Function<? super T,? extends V1> one,
Function<? super T,? extends V2> two,
Function<? super T,? extends V3> three) |
static <T,V1 extends Comparable<? super V1>,V2 extends Comparable<? super V2>,V3 extends Comparable<? super V3>> |
Comparators.fromFunctions(Function<? super T,? extends V1> one,
Function<? super T,? extends V2> two,
Function<? super T,? extends V3> three) |
static <T,V1,V2,V3> |
HashingStrategies.fromFunctions(Function<? super T,? extends V1> one,
Function<? super T,? extends V2> two,
Function<? super T,? extends V3> three) |
static <T,V1,V2,V3> |
HashingStrategies.fromFunctions(Function<? super T,? extends V1> one,
Function<? super T,? extends V2> two,
Function<? super T,? extends V3> three) |
static <T,V1,V2,V3> |
HashingStrategies.fromFunctions(Function<? super T,? extends V1> one,
Function<? super T,? extends V2> two,
Function<? super T,? extends V3> three) |
static <T,V> Function<T,V> |
Functions.ifElse(Predicate<? super T> predicate,
Function<? super T,? extends V> trueFunction,
Function<? super T,? extends V> falseFunction) |
static <T,V> Function<T,V> |
Functions.ifElse(Predicate<? super T> predicate,
Function<? super T,? extends V> trueFunction,
Function<? super T,? extends V> falseFunction) |
static <T> Predicates<T> |
Predicates.ifFalse(Function<? super T,Boolean> function) |
static <T> Predicates<T> |
Predicates.ifTrue(Function<? super T,Boolean> function) |
static <T,V> Function<T,V> |
Functions.ifTrue(Predicate<? super T> predicate,
Function<? super T,? extends V> function) |
static <T,V extends Comparable<? super V>> |
Functions2.maxBy(Function<? super T,? extends V> function) |
static <T,V extends Comparable<? super V>> |
Functions2.minBy(Function<? super T,? extends V> function) |
static <T,V> Function<T,V> |
Functions.nullSafe(Function<? super T,? extends V> function) |
static <T,V> Function<T,V> |
Functions.nullSafe(Function<? super T,? extends V> function,
V nullValue) |
static <T,V1,V2> Function<T,Pair<V1,V2>> |
Functions.pair(Function<? super T,V1> function1,
Function<? super T,V2> function2) |
static <T,V1,V2> Function<T,Pair<V1,V2>> |
Functions.pair(Function<? super T,V1> function1,
Function<? super T,V2> function2) |
static <T,V> Function2<ObjectDoubleHashMap<V>,T,ObjectDoubleHashMap<V>> |
PrimitiveFunctions.sumByDoubleFunction(Function<T,V> groupBy,
DoubleFunction<? super T> function) |
static <T,V> Function2<ObjectDoubleHashMap<V>,T,ObjectDoubleHashMap<V>> |
PrimitiveFunctions.sumByFloatFunction(Function<T,V> groupBy,
FloatFunction<? super T> function) |
static <T,V> Function2<ObjectLongHashMap<V>,T,ObjectLongHashMap<V>> |
PrimitiveFunctions.sumByIntFunction(Function<T,V> groupBy,
IntFunction<? super T> function) |
static <T,V> Function2<ObjectLongHashMap<V>,T,ObjectLongHashMap<V>> |
PrimitiveFunctions.sumByLongFunction(Function<T,V> groupBy,
LongFunction<? super T> function) |
static <T,V> Function<T,V> |
Functions.synchronizedEach(Function<T,V> function) |
static <T,V> Function<T,V> |
Functions.withDefault(Function<? super T,? extends V> function,
V defaultValue) |
Modifier and Type | Class and Description |
---|---|
class |
CaseFunction<T extends Comparable<? super T>,V> |
class |
IfFunction<T,V> |
Modifier and Type | Method and Description |
---|---|
CaseFunction<T,V> |
CaseFunction.addCase(Predicate<? super T> predicate,
Function<? super T,? extends V> function) |
CaseFunction<T,V> |
CaseFunction.setDefault(Function<? super T,? extends V> function) |
Constructor and Description |
---|
CaseFunction(Function<? super T,? extends V> newDefaultFunction) |
IfFunction(Predicate<? super T> newPredicate,
Function<? super T,? extends V> function) |
IfFunction(Predicate<? super T> predicate,
Function<? super T,? extends V> function,
Function<? super T,? extends V> elseFunction) |
IfFunction(Predicate<? super T> predicate,
Function<? super T,? extends V> function,
Function<? super T,? extends V> elseFunction) |
Modifier and Type | Class and Description |
---|---|
class |
CheckedFunction<T,V> |
Modifier and Type | Class and Description |
---|---|
class |
DoubleFunctionImpl<T>
DoubleFunctionImpl is an abstract implementation of the DoubleFunction interface which can be subclassed
explicitly or as an anonymous inner class, without needing to override the valueOf method defined in
Function.
|
class |
IntegerFunctionImpl<T>
IntegerFunctionImpl is an abstract implementation of the IntFunction interface which can be subclassed
explicitly or as an anonymous inner class, without needing to override the valueOf method defined in
Function.
|
class |
LongFunctionImpl<T>
LongFunctionImpl is an abstract implementation of the LongFunction interface which can be subclassed
explicitly or as an anonymous inner class, without needing to override the valueOf method defined in
Function.
|
Modifier and Type | Method and Description |
---|---|
static <K,V> MultimapEachPutProcedure<K,V> |
MultimapEachPutProcedure.on(MutableMultimap<K,V> multimap,
Function<? super V,? extends Iterable<K>> keyFunction) |
static <K,V> MultimapPutProcedure<K,V> |
MultimapPutProcedure.on(MutableMultimap<K,V> multimap,
Function<? super V,? extends K> keyFunction) |
Constructor and Description |
---|
CollectIfProcedure(Collection<V> targetCollection,
Function<? super T,? extends V> function,
Predicate<? super T> predicate) |
CollectIfProcedure(int taskSize,
Function<? super T,? extends V> function,
Predicate<? super T> predicate) |
CollectProcedure(Function<? super T,? extends V> function,
Collection<V> targetCollection) |
FastListCollectIfProcedure(FastList<V> targetCollection,
Function<? super T,? extends V> function,
Predicate<? super T> predicate) |
FastListCollectProcedure(Function<? super T,? extends V> function,
FastList<V> targetCollection) |
FlatCollectProcedure(Function<? super T,? extends Iterable<V>> function,
Collection<V> targetCollection) |
GroupByUniqueKeyProcedure(Map<K,T> newMap,
Function<? super T,? extends K> newKeyFunction) |
MapCollectProcedure(Map<K,V> newMap,
Function<? super T,? extends K> newKeyFunction) |
MapCollectProcedure(Map<K,V> newMap,
Function<? super T,? extends K> newKeyFunction,
Function<? super T,? extends V> newValueFunction) |
MapCollectProcedure(Map<K,V> newMap,
Function<? super T,? extends K> newKeyFunction,
Function<? super T,? extends V> newValueFunction) |
MaxByProcedure(Function<? super T,? extends V> function) |
MinByProcedure(Function<? super T,? extends V> function) |
MultimapEachPutProcedure(MutableMultimap<K,V> multimap,
Function<? super V,? extends Iterable<K>> keyFunction) |
MultimapKeyValuePutAllProcedure(MutableMultimap<K,V> mutableMultimap,
Function<? super T,? extends K> keyFunction,
Function<? super T,? extends Iterable<V>> valueFunction) |
MultimapKeyValuePutAllProcedure(MutableMultimap<K,V> mutableMultimap,
Function<? super T,? extends K> keyFunction,
Function<? super T,? extends Iterable<V>> valueFunction) |
MultimapKeyValuePutProcedure(MutableMultimap<K,V> mutableMultimap,
Function<? super T,? extends K> keyFunction,
Function<? super T,? extends V> valueFunction) |
MultimapKeyValuePutProcedure(MutableMultimap<K,V> mutableMultimap,
Function<? super T,? extends K> keyFunction,
Function<? super T,? extends V> valueFunction) |
MultimapPutProcedure(MutableMultimap<K,V> multimap,
Function<? super V,? extends K> keyFunction) |
MutatingAggregationProcedure(MutableMap<K,V> map,
Function<? super T,? extends K> groupBy,
Function0<? extends V> zeroValueFactory,
Procedure2<? super V,? super T> mutatingAggregator) |
NonMutatingAggregationProcedure(MutableMap<K,V> map,
Function<? super T,? extends K> groupBy,
Function0<? extends V> zeroValueFactory,
Function2<? super V,? super T,? extends V> nonMutatingAggregator) |
Modifier and Type | Method and Description |
---|---|
<V,R extends Collection<V>> |
AbstractSynchronizedRichIterable.collect(Function<? super T,? extends V> function,
R target) |
<V,R extends Collection<V>> |
AbstractSynchronizedRichIterable.collectIf(Predicate<? super T> predicate,
Function<? super T,? extends V> function,
R target) |
<V,R extends Collection<V>> |
AbstractSynchronizedRichIterable.flatCollect(Function<? super T,? extends Iterable<V>> function,
R target) |
<V,R extends MutableMultimap<V,T>> |
AbstractSynchronizedRichIterable.groupBy(Function<? super T,? extends V> function,
R target) |
<V,R extends MutableMultimap<V,T>> |
AbstractSynchronizedRichIterable.groupByEach(Function<? super T,? extends Iterable<V>> function,
R target) |
<V> MutableMap<V,T> |
AbstractSynchronizedRichIterable.groupByUniqueKey(Function<? super T,? extends V> function) |
<V,R extends MutableMap<V,T>> |
AbstractSynchronizedRichIterable.groupByUniqueKey(Function<? super T,? extends V> function,
R target) |
<V extends Comparable<? super V>> |
AbstractSynchronizedRichIterable.maxBy(Function<? super T,? extends V> function) |
<V extends Comparable<? super V>> |
AbstractSynchronizedRichIterable.minBy(Function<? super T,? extends V> function) |
<V> ObjectDoubleMap<V> |
AbstractSynchronizedRichIterable.sumByDouble(Function<T,V> groupBy,
DoubleFunction<? super T> function) |
<V> ObjectDoubleMap<V> |
AbstractSynchronizedRichIterable.sumByFloat(Function<T,V> groupBy,
FloatFunction<? super T> function) |
<V> ObjectLongMap<V> |
AbstractSynchronizedRichIterable.sumByInt(Function<T,V> groupBy,
IntFunction<? super T> function) |
<V> ObjectLongMap<V> |
AbstractSynchronizedRichIterable.sumByLong(Function<T,V> groupBy,
LongFunction<? super T> function) |
<NK,NV> MutableMap<NK,NV> |
AbstractSynchronizedRichIterable.toMap(Function<? super T,? extends NK> keyFunction,
Function<? super T,? extends NV> valueFunction) |
<NK,NV> MutableMap<NK,NV> |
AbstractSynchronizedRichIterable.toMap(Function<? super T,? extends NK> keyFunction,
Function<? super T,? extends NV> valueFunction) |
<V extends Comparable<? super V>> |
AbstractSynchronizedRichIterable.toSortedBagBy(Function<? super T,? extends V> function) |
<V extends Comparable<? super V>> |
AbstractSynchronizedRichIterable.toSortedListBy(Function<? super T,? extends V> function) |
<NK,NV> MutableSortedMap<NK,NV> |
AbstractSynchronizedRichIterable.toSortedMap(Comparator<? super NK> comparator,
Function<? super T,? extends NK> keyFunction,
Function<? super T,? extends NV> valueFunction) |
<NK,NV> MutableSortedMap<NK,NV> |
AbstractSynchronizedRichIterable.toSortedMap(Comparator<? super NK> comparator,
Function<? super T,? extends NK> keyFunction,
Function<? super T,? extends NV> valueFunction) |
<NK,NV> MutableSortedMap<NK,NV> |
AbstractSynchronizedRichIterable.toSortedMap(Function<? super T,? extends NK> keyFunction,
Function<? super T,? extends NV> valueFunction) |
<NK,NV> MutableSortedMap<NK,NV> |
AbstractSynchronizedRichIterable.toSortedMap(Function<? super T,? extends NK> keyFunction,
Function<? super T,? extends NV> valueFunction) |
<V extends Comparable<? super V>> |
AbstractSynchronizedRichIterable.toSortedSetBy(Function<? super T,? extends V> function) |
Modifier and Type | Method and Description |
---|---|
<K,V> ImmutableMap<K,V> |
AbstractImmutableCollection.aggregateBy(Function<? super T,? extends K> groupBy,
Function0<? extends V> zeroValueFactory,
Function2<? super V,? super T,? extends V> nonMutatingAggregator) |
<K,V> ImmutableMap<K,V> |
AbstractImmutableCollection.aggregateInPlaceBy(Function<? super T,? extends K> groupBy,
Function0<? extends V> zeroValueFactory,
Procedure2<? super V,? super T> mutatingAggregator) |
<V> ImmutableMap<V,T> |
AbstractImmutableCollection.groupByUniqueKey(Function<? super T,? extends V> function) |
Modifier and Type | Method and Description |
---|---|
<K,V> MutableMap<K,V> |
AbstractCollectionAdapter.aggregateBy(Function<? super T,? extends K> groupBy,
Function0<? extends V> zeroValueFactory,
Function2<? super V,? super T,? extends V> nonMutatingAggregator) |
<K,V> MutableMap<K,V> |
AbstractMultiReaderMutableCollection.aggregateBy(Function<? super T,? extends K> groupBy,
Function0<? extends V> zeroValueFactory,
Function2<? super V,? super T,? extends V> nonMutatingAggregator) |
<K,V> MutableMap<K,V> |
AbstractSynchronizedMutableCollection.aggregateBy(Function<? super T,? extends K> groupBy,
Function0<? extends V> zeroValueFactory,
Function2<? super V,? super T,? extends V> nonMutatingAggregator) |
<K,V> MutableMap<K,V> |
AbstractUnmodifiableMutableCollection.aggregateBy(Function<? super T,? extends K> groupBy,
Function0<? extends V> zeroValueFactory,
Function2<? super V,? super T,? extends V> nonMutatingAggregator) |
<K,V> MutableMap<K,V> |
AbstractMutableCollection.aggregateBy(Function<? super T,? extends K> groupBy,
Function0<? extends V> zeroValueFactory,
Function2<? super V,? super T,? extends V> nonMutatingAggregator) |
<K,V> MutableMap<K,V> |
AbstractCollectionAdapter.aggregateInPlaceBy(Function<? super T,? extends K> groupBy,
Function0<? extends V> zeroValueFactory,
Procedure2<? super V,? super T> mutatingAggregator) |
<K,V> MutableMap<K,V> |
AbstractMultiReaderMutableCollection.aggregateInPlaceBy(Function<? super T,? extends K> groupBy,
Function0<? extends V> zeroValueFactory,
Procedure2<? super V,? super T> mutatingAggregator) |
<K,V> MutableMap<K,V> |
AbstractSynchronizedMutableCollection.aggregateInPlaceBy(Function<? super T,? extends K> groupBy,
Function0<? extends V> zeroValueFactory,
Procedure2<? super V,? super T> mutatingAggregator) |
<K,V> MutableMap<K,V> |
AbstractUnmodifiableMutableCollection.aggregateInPlaceBy(Function<? super T,? extends K> groupBy,
Function0<? extends V> zeroValueFactory,
Procedure2<? super V,? super T> mutatingAggregator) |
<K,V> MutableMap<K,V> |
AbstractMutableCollection.aggregateInPlaceBy(Function<? super T,? extends K> groupBy,
Function0<? extends V> zeroValueFactory,
Procedure2<? super V,? super T> mutatingAggregator) |
<V> MutableCollection<V> |
AbstractCollectionAdapter.collect(Function<? super T,? extends V> function) |
<V> MutableCollection<V> |
AbstractUnmodifiableMutableCollection.collect(Function<? super T,? extends V> function) |
<V> MutableCollection<V> |
SynchronizedMutableCollection.collect(Function<? super T,? extends V> function) |
<V,R extends Collection<V>> |
AbstractCollectionAdapter.collect(Function<? super T,? extends V> function,
R target) |
<V,R extends Collection<V>> |
AbstractMultiReaderMutableCollection.collect(Function<? super T,? extends V> function,
R target) |
<V,R extends Collection<V>> |
AbstractUnmodifiableMutableCollection.collect(Function<? super T,? extends V> function,
R target) |
<V> MutableCollection<V> |
AbstractCollectionAdapter.collectIf(Predicate<? super T> predicate,
Function<? super T,? extends V> function) |
<V> MutableCollection<V> |
AbstractUnmodifiableMutableCollection.collectIf(Predicate<? super T> predicate,
Function<? super T,? extends V> function) |
<V> MutableCollection<V> |
SynchronizedMutableCollection.collectIf(Predicate<? super T> predicate,
Function<? super T,? extends V> function) |
<V,R extends Collection<V>> |
AbstractCollectionAdapter.collectIf(Predicate<? super T> predicate,
Function<? super T,? extends V> function,
R target) |
<V,R extends Collection<V>> |
AbstractMultiReaderMutableCollection.collectIf(Predicate<? super T> predicate,
Function<? super T,? extends V> function,
R target) |
<V,R extends Collection<V>> |
AbstractUnmodifiableMutableCollection.collectIf(Predicate<? super T> predicate,
Function<? super T,? extends V> function,
R target) |
<V> MutableCollection<V> |
AbstractCollectionAdapter.flatCollect(Function<? super T,? extends Iterable<V>> function) |
<V> MutableCollection<V> |
AbstractUnmodifiableMutableCollection.flatCollect(Function<? super T,? extends Iterable<V>> function) |
<V> MutableCollection<V> |
SynchronizedMutableCollection.flatCollect(Function<? super T,? extends Iterable<V>> function) |
<V,R extends Collection<V>> |
AbstractCollectionAdapter.flatCollect(Function<? super T,? extends Iterable<V>> function,
R target) |
<V,R extends Collection<V>> |
AbstractMultiReaderMutableCollection.flatCollect(Function<? super T,? extends Iterable<V>> function,
R target) |
<V,R extends Collection<V>> |
AbstractUnmodifiableMutableCollection.flatCollect(Function<? super T,? extends Iterable<V>> function,
R target) |
<V> MutableMultimap<V,T> |
AbstractCollectionAdapter.groupBy(Function<? super T,? extends V> function) |
<V> MutableMultimap<V,T> |
AbstractUnmodifiableMutableCollection.groupBy(Function<? super T,? extends V> function) |
<V> MutableMultimap<V,T> |
SynchronizedMutableCollection.groupBy(Function<? super T,? extends V> function) |
<V,R extends MutableMultimap<V,T>> |
AbstractCollectionAdapter.groupBy(Function<? super T,? extends V> function,
R target) |
<V,R extends MutableMultimap<V,T>> |
AbstractMultiReaderMutableCollection.groupBy(Function<? super T,? extends V> function,
R target) |
<V,R extends MutableMultimap<V,T>> |
AbstractUnmodifiableMutableCollection.groupBy(Function<? super T,? extends V> function,
R target) |
<V> MutableMultimap<V,T> |
AbstractCollectionAdapter.groupByEach(Function<? super T,? extends Iterable<V>> function) |
<V> MutableMultimap<V,T> |
AbstractUnmodifiableMutableCollection.groupByEach(Function<? super T,? extends Iterable<V>> function) |
<V> MutableMultimap<V,T> |
SynchronizedMutableCollection.groupByEach(Function<? super T,? extends Iterable<V>> function) |
<V,R extends MutableMultimap<V,T>> |
AbstractCollectionAdapter.groupByEach(Function<? super T,? extends Iterable<V>> function,
R target) |
<V,R extends MutableMultimap<V,T>> |
AbstractMultiReaderMutableCollection.groupByEach(Function<? super T,? extends Iterable<V>> function,
R target) |
<V,R extends MutableMultimap<V,T>> |
AbstractUnmodifiableMutableCollection.groupByEach(Function<? super T,? extends Iterable<V>> function,
R target) |
<V> MutableMap<V,T> |
AbstractCollectionAdapter.groupByUniqueKey(Function<? super T,? extends V> function) |
<V> MutableMap<V,T> |
AbstractUnmodifiableMutableCollection.groupByUniqueKey(Function<? super T,? extends V> function) |
<V> MutableMap<V,T> |
AbstractMutableCollection.groupByUniqueKey(Function<? super T,? extends V> function) |
<V,R extends MutableMap<V,T>> |
AbstractCollectionAdapter.groupByUniqueKey(Function<? super T,? extends V> function,
R target) |
<V,R extends MutableMap<V,T>> |
AbstractMultiReaderMutableCollection.groupByUniqueKey(Function<? super T,? extends V> function,
R target) |
<V,R extends MutableMap<V,T>> |
AbstractUnmodifiableMutableCollection.groupByUniqueKey(Function<? super T,? extends V> function,
R target) |
<V extends Comparable<? super V>> |
AbstractCollectionAdapter.maxBy(Function<? super T,? extends V> function) |
<V extends Comparable<? super V>> |
AbstractMultiReaderMutableCollection.maxBy(Function<? super T,? extends V> function) |
<V extends Comparable<? super V>> |
AbstractUnmodifiableMutableCollection.maxBy(Function<? super T,? extends V> function) |
<V extends Comparable<? super V>> |
AbstractCollectionAdapter.minBy(Function<? super T,? extends V> function) |
<V extends Comparable<? super V>> |
AbstractMultiReaderMutableCollection.minBy(Function<? super T,? extends V> function) |
<V extends Comparable<? super V>> |
AbstractUnmodifiableMutableCollection.minBy(Function<? super T,? extends V> function) |
<V> ObjectDoubleMap<V> |
AbstractCollectionAdapter.sumByDouble(Function<T,V> groupBy,
DoubleFunction<? super T> function) |
<V> ObjectDoubleMap<V> |
AbstractMultiReaderMutableCollection.sumByDouble(Function<T,V> groupBy,
DoubleFunction<? super T> function) |
<V> ObjectDoubleMap<V> |
AbstractUnmodifiableMutableCollection.sumByDouble(Function<T,V> groupBy,
DoubleFunction<? super T> function) |
<V> ObjectDoubleMap<V> |
AbstractCollectionAdapter.sumByFloat(Function<T,V> groupBy,
FloatFunction<? super T> function) |
<V> ObjectDoubleMap<V> |
AbstractMultiReaderMutableCollection.sumByFloat(Function<T,V> groupBy,
FloatFunction<? super T> function) |
<V> ObjectDoubleMap<V> |
AbstractUnmodifiableMutableCollection.sumByFloat(Function<T,V> groupBy,
FloatFunction<? super T> function) |
<V> ObjectLongMap<V> |
AbstractCollectionAdapter.sumByInt(Function<T,V> groupBy,
IntFunction<? super T> function) |
<V> ObjectLongMap<V> |
AbstractMultiReaderMutableCollection.sumByInt(Function<T,V> groupBy,
IntFunction<? super T> function) |
<V> ObjectLongMap<V> |
AbstractUnmodifiableMutableCollection.sumByInt(Function<T,V> groupBy,
IntFunction<? super T> function) |
<V> ObjectLongMap<V> |
AbstractCollectionAdapter.sumByLong(Function<T,V> groupBy,
LongFunction<? super T> function) |
<V> ObjectLongMap<V> |
AbstractMultiReaderMutableCollection.sumByLong(Function<T,V> groupBy,
LongFunction<? super T> function) |
<V> ObjectLongMap<V> |
AbstractUnmodifiableMutableCollection.sumByLong(Function<T,V> groupBy,
LongFunction<? super T> function) |
<K,V> MutableMap<K,V> |
AbstractCollectionAdapter.toMap(Function<? super T,? extends K> keyFunction,
Function<? super T,? extends V> valueFunction) |
<K,V> MutableMap<K,V> |
AbstractCollectionAdapter.toMap(Function<? super T,? extends K> keyFunction,
Function<? super T,? extends V> valueFunction) |
<NK,NV> MutableMap<NK,NV> |
AbstractMultiReaderMutableCollection.toMap(Function<? super T,? extends NK> keyFunction,
Function<? super T,? extends NV> valueFunction) |
<NK,NV> MutableMap<NK,NV> |
AbstractMultiReaderMutableCollection.toMap(Function<? super T,? extends NK> keyFunction,
Function<? super T,? extends NV> valueFunction) |
<NK,NV> MutableMap<NK,NV> |
AbstractUnmodifiableMutableCollection.toMap(Function<? super T,? extends NK> keyFunction,
Function<? super T,? extends NV> valueFunction) |
<NK,NV> MutableMap<NK,NV> |
AbstractUnmodifiableMutableCollection.toMap(Function<? super T,? extends NK> keyFunction,
Function<? super T,? extends NV> valueFunction) |
<V extends Comparable<? super V>> |
AbstractCollectionAdapter.toSortedBagBy(Function<? super T,? extends V> function) |
<V extends Comparable<? super V>> |
AbstractMultiReaderMutableCollection.toSortedBagBy(Function<? super T,? extends V> function) |
<V extends Comparable<? super V>> |
AbstractUnmodifiableMutableCollection.
|