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.api.tuple | |
org.eclipse.collections.impl |
This package contains implementations for Eclipse Collections API.
|
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.bimap.mutable |
This package contains implementations of the
MutableBiMap interface. |
org.eclipse.collections.impl.block.factory |
This package contains factory implementations for
Function , Predicate , SerializableComparator and Procedure . |
org.eclipse.collections.impl.block.predicate |
This package contains implementations of
Predicate and Predicate2 . |
org.eclipse.collections.impl.block.procedure |
This package contains implementations of
Procedure and Procedure2 . |
org.eclipse.collections.impl.collection | |
org.eclipse.collections.impl.collection.mutable |
This package contains implementations of the
MutableCollection interface. |
org.eclipse.collections.impl.collector | |
org.eclipse.collections.impl.factory |
This package contains static utilities for creating mutable and immutable collection factories.
|
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.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.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.immutable |
This package contains immutable 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.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.multimap.set.strategy |
This package contains implementations of the
SetMultimap interface which use a set with user-defined HashingStrategy as their underlying store for the multiple values of a given key. |
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.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 | Description |
---|---|---|
<S,R extends java.util.Collection<Pair<T,S>>> |
RichIterable.zip(java.lang.Iterable<S> that,
R target) |
Deprecated.
in 6.0. Use
OrderedIterable.zip(Iterable, Collection) instead; |
<R extends java.util.Collection<Pair<T,java.lang.Integer>>> |
RichIterable.zipWithIndex(R target) |
Deprecated.
in 6.0. Use
OrderedIterable.zipWithIndex(Collection) instead. |
Modifier and Type | Method | Description |
---|---|---|
<S> LazyIterable<Pair<T,S>> |
LazyIterable.zip(java.lang.Iterable<S> that) |
Creates a deferred zip iterable.
|
<S> RichIterable<Pair<T,S>> |
RichIterable.zip(java.lang.Iterable<S> that) |
Deprecated.
in 6.0. Use
OrderedIterable.zip(Iterable) instead. |
LazyIterable<Pair<T,java.lang.Integer>> |
LazyIterable.zipWithIndex() |
Creates a deferred zipWithIndex iterable.
|
RichIterable<Pair<T,java.lang.Integer>> |
RichIterable.zipWithIndex() |
Deprecated.
in 6.0. Use
OrderedIterable.zipWithIndex() instead. |
Modifier and Type | Method | Description |
---|---|---|
<S> ImmutableBag<Pair<T,S>> |
ImmutableBag.zip(java.lang.Iterable<S> that) |
Deprecated.
in 6.0. Use
OrderedIterable.zip(Iterable) instead. |
<S> MutableBag<Pair<T,S>> |
MutableBag.zip(java.lang.Iterable<S> that) |
Deprecated.
in 6.0. Use
OrderedIterable.zip(Iterable) instead. |
<S> UnsortedBag<Pair<T,S>> |
UnsortedBag.zip(java.lang.Iterable<S> that) |
Deprecated.
in 6.0. Use
OrderedIterable.zip(Iterable) instead. |
SetIterable<Pair<T,java.lang.Integer>> |
Bag.zipWithIndex() |
|
ImmutableSet<Pair<T,java.lang.Integer>> |
ImmutableBag.zipWithIndex() |
Deprecated.
in 6.0. Use
OrderedIterable.zipWithIndex() instead. |
ImmutableSetIterable<Pair<T,java.lang.Integer>> |
ImmutableBagIterable.zipWithIndex() |
|
MutableSet<Pair<T,java.lang.Integer>> |
MutableBag.zipWithIndex() |
Deprecated.
in 6.0. Use
OrderedIterable.zipWithIndex() instead. |
MutableSetIterable<Pair<T,java.lang.Integer>> |
MutableBagIterable.zipWithIndex() |
|
UnsortedSetIterable<Pair<T,java.lang.Integer>> |
UnsortedBag.zipWithIndex() |
Deprecated.
in 6.0. Use
OrderedIterable.zipWithIndex() instead. |
Modifier and Type | Method | Description |
---|---|---|
<S> ImmutableList<Pair<T,S>> |
ImmutableSortedBag.zip(java.lang.Iterable<S> that) |
|
<S> MutableList<Pair<T,S>> |
MutableSortedBag.zip(java.lang.Iterable<S> that) |
|
ImmutableSortedSet<Pair<T,java.lang.Integer>> |
ImmutableSortedBag.zipWithIndex() |
|
MutableSortedSet<Pair<T,java.lang.Integer>> |
MutableSortedBag.zipWithIndex() |
|
SortedSetIterable<Pair<T,java.lang.Integer>> |
SortedBag.zipWithIndex() |
Modifier and Type | Method | Description |
---|---|---|
<S> SetIterable<Pair<V,S>> |
BiMap.zip(java.lang.Iterable<S> that) |
Deprecated.
in 8.0. Use
OrderedIterable.zip(Iterable) instead. |
<S> ImmutableSet<Pair<V,S>> |
ImmutableBiMap.zip(java.lang.Iterable<S> that) |
Deprecated.
in 8.0. Use
OrderedIterable.zip(Iterable) instead. |
<S> MutableSet<Pair<V,S>> |
MutableBiMap.zip(java.lang.Iterable<S> that) |
Deprecated.
in 8.0. Use
OrderedIterable.zip(Iterable) instead. |
SetIterable<Pair<V,java.lang.Integer>> |
BiMap.zipWithIndex() |
Deprecated.
in 8.0. Use
OrderedIterable.zipWithIndex() instead. |
ImmutableSet<Pair<V,java.lang.Integer>> |
ImmutableBiMap.zipWithIndex() |
Deprecated.
in 8.0. Use
OrderedIterable.zipWithIndex() instead. |
MutableSet<Pair<V,java.lang.Integer>> |
MutableBiMap.zipWithIndex() |
Deprecated.
in 8.0. Use
OrderedIterable.zipWithIndex() instead. |
Modifier and Type | Method | Description |
---|---|---|
ImmutableBiMap<K,V> |
ImmutableBiMap.newWithAllKeyValueArguments(Pair<? extends K,? extends V>... keyValuePairs) |
|
MutableBiMap<K,V> |
MutableBiMap.withAllKeyValueArguments(Pair<? extends K,? extends V>... keyValuePairs) |
Modifier and Type | Method | Description |
---|---|---|
<K2,V2> BiMap<K2,V2> |
BiMap.collect(Function2<? super K,? super V,Pair<K2,V2>> function) |
For each key and value of the map the function is evaluated.
|
<K2,V2> ImmutableBiMap<K2,V2> |
ImmutableBiMap.collect(Function2<? super K,? super V,Pair<K2,V2>> function) |
|
<K2,V2> MutableBiMap<K2,V2> |
MutableBiMap.collect(Function2<? super K,? super V,Pair<K2,V2>> function) |
|
ImmutableBiMap<K,V> |
ImmutableBiMap.newWithAllKeyValues(java.lang.Iterable<? extends Pair<? extends K,? extends V>> keyValues) |
|
MutableBiMap<K,V> |
MutableBiMap.withAllKeyValues(java.lang.Iterable<? extends Pair<? extends K,? extends V>> keyValues) |
Modifier and Type | Method | Description |
---|---|---|
<S> ImmutableCollection<Pair<T,S>> |
ImmutableCollection.zip(java.lang.Iterable<S> that) |
|
<S> MutableCollection<Pair<T,S>> |
MutableCollection.zip(java.lang.Iterable<S> that) |
Deprecated.
in 6.0. Use
OrderedIterable.zip(Iterable) instead. |
ImmutableCollection<Pair<T,java.lang.Integer>> |
ImmutableCollection.zipWithIndex() |
|
MutableCollection<Pair<T,java.lang.Integer>> |
MutableCollection.zipWithIndex() |
Deprecated.
in 6.0. Use
OrderedIterable.zipWithIndex() instead. |
Modifier and Type | Method | Description |
---|---|---|
<S> ImmutableList<Pair<T,S>> |
ImmutableList.zip(java.lang.Iterable<S> that) |
|
<S> ListIterable<Pair<T,S>> |
ListIterable.zip(java.lang.Iterable<S> that) |
|
<S> MutableList<Pair<T,S>> |
MutableList.zip(java.lang.Iterable<S> that) |
|
ImmutableList<Pair<T,java.lang.Integer>> |
ImmutableList.zipWithIndex() |
|
ListIterable<Pair<T,java.lang.Integer>> |
ListIterable.zipWithIndex() |
|
MutableList<Pair<T,java.lang.Integer>> |
MutableList.zipWithIndex() |
Modifier and Type | Method | Description |
---|---|---|
Pair<K,V> |
MapIterable.detect(Predicate2<? super K,? super V> predicate) |
Return the first key and value of the map for which the predicate evaluates to true when they are given
as arguments.
|
Modifier and Type | Method | Description |
---|---|---|
java.util.Optional<Pair<K,V>> |
MapIterable.detectOptional(Predicate2<? super K,? super V> predicate) |
Return the first key and value of the map as an Optional for which the predicate evaluates to true when
they are given as arguments.
|
RichIterable<Pair<K,V>> |
MapIterable.keyValuesView() |
Returns an unmodifiable lazy iterable of key/value pairs wrapped around the entrySet for the map.
|
<S> ImmutableBag<Pair<V,S>> |
ImmutableMap.zip(java.lang.Iterable<S> that) |
Deprecated.
in 6.0. Use
OrderedIterable.zip(Iterable) instead. |
<S> ImmutableCollection<Pair<V,S>> |
ImmutableMapIterable.zip(java.lang.Iterable<S> that) |
|
<S> ImmutableList<Pair<V,S>> |
ImmutableOrderedMap.zip(java.lang.Iterable<S> that) |
|
<S> MutableBag<Pair<V,S>> |
MutableMap.zip(java.lang.Iterable<S> that) |
Deprecated.
in 6.0. Use
OrderedIterable.zip(Iterable) instead. |
<S> MutableCollection<Pair<V,S>> |
MutableMapIterable.zip(java.lang.Iterable<S> that) |
|
<S> MutableList<Pair<V,S>> |
MutableOrderedMap.zip(java.lang.Iterable<S> that) |
|
<S> ListIterable<Pair<V,S>> |
OrderedMap.zip(java.lang.Iterable<S> that) |
|
<S> Bag<Pair<V,S>> |
UnsortedMapIterable.zip(java.lang.Iterable<S> that) |
Deprecated.
in 6.0. Use
OrderedIterable.zip(Iterable) instead. |
ImmutableSet<Pair<V,java.lang.Integer>> |
ImmutableMap.zipWithIndex() |
Deprecated.
in 6.0. Use
OrderedIterable.zipWithIndex() instead. |
ImmutableCollection<Pair<V,java.lang.Integer>> |
ImmutableMapIterable.zipWithIndex() |
|
ImmutableList<Pair<V,java.lang.Integer>> |
ImmutableOrderedMap.zipWithIndex() |
|
MutableSet<Pair<V,java.lang.Integer>> |
MutableMap.zipWithIndex() |
Deprecated.
in 6.0. Use
OrderedIterable.zipWithIndex() instead. |
MutableCollection<Pair<V,java.lang.Integer>> |
MutableMapIterable.zipWithIndex() |
|
MutableList<Pair<V,java.lang.Integer>> |
MutableOrderedMap.zipWithIndex() |
|
ListIterable<Pair<V,java.lang.Integer>> |
OrderedMap.zipWithIndex() |
|
UnsortedSetIterable<Pair<V,java.lang.Integer>> |
UnsortedMapIterable.zipWithIndex() |
Deprecated.
in 6.0. Use
OrderedIterable.zipWithIndex() instead. |
Modifier and Type | Method | Description |
---|---|---|
default V |
MutableMapIterable.add(Pair<K,V> keyValuePair) |
This method allows mutable map the ability to add an element in the form of Pair
|
ImmutableMap<K,V> |
ImmutableMap.newWithAllKeyValueArguments(Pair<? extends K,? extends V>... keyValuePairs) |
|
ImmutableMapIterable<K,V> |
ImmutableMapIterable.newWithAllKeyValueArguments(Pair<? extends K,? extends V>... keyValuePairs) |
|
default V |
MutableMapIterable.putPair(Pair<K,V> keyValuePair) |
This method allows mutable map the ability to add an element in the form of Pair
|
MutableMap<K,V> |
MutableMap.withAllKeyValueArguments(Pair<? extends K,? extends V>... keyValuePairs) |
|
MutableMapIterable<K,V> |
MutableMapIterable.withAllKeyValueArguments(Pair<? extends K,? extends V>... keyValuePairs) |
Convenience var-args version of withAllKeyValues
|
Modifier and Type | Method | Description |
---|---|---|
<K2,V2> ImmutableMap<K2,V2> |
ImmutableMap.collect(Function2<? super K,? super V,Pair<K2,V2>> function) |
|
<K2,V2> ImmutableMapIterable<K2,V2> |
ImmutableMapIterable.collect(Function2<? super K,? super V,Pair<K2,V2>> function) |
|
<K2,V2> ImmutableOrderedMap<K2,V2> |
ImmutableOrderedMap.collect(Function2<? super K,? super V,Pair<K2,V2>> function) |
|
<K2,V2> MapIterable<K2,V2> |
MapIterable.collect(Function2<? super K,? super V,Pair<K2,V2>> function) |
For each key and value of the map the function is evaluated.
|
<K2,V2> MutableMap<K2,V2> |
MutableMap.collect(Function2<? super K,? super V,Pair<K2,V2>> function) |
|
<K2,V2> MutableMapIterable<K2,V2> |
MutableMapIterable.collect(Function2<? super K,? super V,Pair<K2,V2>> function) |
|
<K2,V2> MutableOrderedMap<K2,V2> |
MutableOrderedMap.collect(Function2<? super K,? super V,Pair<K2,V2>> function) |
|
<K2,V2> OrderedMap<K2,V2> |
OrderedMap.collect(Function2<? super K,? super V,Pair<K2,V2>> function) |
|
<K2,V2> UnsortedMapIterable<K2,V2> |
UnsortedMapIterable.collect(Function2<? super K,? super V,Pair<K2,V2>> function) |
|
ImmutableMap<K,V> |
ImmutableMap.newWithAllKeyValues(java.lang.Iterable<? extends Pair<? extends K,? extends V>> keyValues) |
|
ImmutableMapIterable<K,V> |
ImmutableMapIterable.newWithAllKeyValues(java.lang.Iterable<? extends Pair<? extends K,? extends V>> keyValues) |
|
MutableMap<K,V> |
MutableMap.withAllKeyValues(java.lang.Iterable<? extends Pair<? extends K,? extends V>> keyValues) |
|
MutableMapIterable<K,V> |
MutableMapIterable.withAllKeyValues(java.lang.Iterable<? extends Pair<? extends K,? extends V>> keyValues) |
This method allows mutable, fixed size, and immutable maps the ability to add elements to their existing
elements.
|
Modifier and Type | Method | Description |
---|---|---|
<S> ImmutableBag<Pair<V,S>> |
ImmutablePrimitiveObjectMap.zip(java.lang.Iterable<S> that) |
Deprecated.
in 7.0. Use
OrderedIterable.zip(Iterable) instead. |
<S> MutableBag<Pair<V,S>> |
MutablePrimitiveObjectMap.zip(java.lang.Iterable<S> that) |
Deprecated.
in 7.0. Use
OrderedIterable.zip(Iterable) instead. |
<S> Bag<Pair<V,S>> |
PrimitiveObjectMap.zip(java.lang.Iterable<S> that) |
Deprecated.
in 6.0. Use
OrderedIterable.zip(Iterable) instead. |
ImmutableSet<Pair<V,java.lang.Integer>> |
ImmutablePrimitiveObjectMap.zipWithIndex() |
Deprecated.
in 7.0. Use
OrderedIterable.zipWithIndex() instead. |
MutableSet<Pair<V,java.lang.Integer>> |
MutablePrimitiveObjectMap.zipWithIndex() |
Deprecated.
in 7.0. Use
OrderedIterable.zipWithIndex() instead. |
UnsortedSetIterable<Pair<V,java.lang.Integer>> |
PrimitiveObjectMap.zipWithIndex() |
Deprecated.
in 6.0. Use
OrderedIterable.zipWithIndex() instead. |
Modifier and Type | Method | Description |
---|---|---|
<S> ImmutableList<Pair<V,S>> |
ImmutableSortedMap.zip(java.lang.Iterable<S> that) |
|
<S> MutableList<Pair<V,S>> |
MutableSortedMap.zip(java.lang.Iterable<S> that) |
|
<S> ListIterable<Pair<V,S>> |
SortedMapIterable.zip(java.lang.Iterable<S> that) |
|
ImmutableList<Pair<V,java.lang.Integer>> |
ImmutableSortedMap.zipWithIndex() |
|
MutableList<Pair<V,java.lang.Integer>> |
MutableSortedMap.zipWithIndex() |
|
ListIterable<Pair<V,java.lang.Integer>> |
SortedMapIterable.zipWithIndex() |
Modifier and Type | Method | Description |
---|---|---|
ImmutableSortedMap<K,V> |
ImmutableSortedMap.newWithAllKeyValueArguments(Pair<? extends K,? extends V>... keyValuePairs) |
|
default MutableSortedMap<K,V> |
MutableSortedMap.with(Pair<K,V>... pairs) |
Deprecated.
in 6.0 Use
MutableSortedMap.withAllKeyValueArguments(Pair[]) instead. Inlineable. |
MutableSortedMap<K,V> |
MutableSortedMap.withAllKeyValueArguments(Pair<? extends K,? extends V>... keyValuePairs) |
Modifier and Type | Method | Description |
---|---|---|
<K2,V2> ImmutableMap<K2,V2> |
ImmutableSortedMap.collect(Function2<? super K,? super V,Pair<K2,V2>> function) |
|
<K2,V2> MutableMap<K2,V2> |
MutableSortedMap.collect(Function2<? super K,? super V,Pair<K2,V2>> function) |
|
<K2,V2> UnsortedMapIterable<K2,V2> |
SortedMapIterable.collect(Function2<? super K,? super V,Pair<K2,V2>> function) |
|
ImmutableSortedMap<K,V> |
ImmutableSortedMap.newWithAllKeyValues(java.lang.Iterable<? extends Pair<? extends K,? extends V>> keyValues) |
|
MutableSortedMap<K,V> |
MutableSortedMap.withAllKeyValues(java.lang.Iterable<? extends Pair<? extends K,? extends V>> keyValues) |
Modifier and Type | Method | Description |
---|---|---|
RichIterable<Pair<K,RichIterable<V>>> |
Multimap.keyMultiValuePairsView() |
Returns a lazy view of the pair of a key and and a lazy view of the values mapped to that key.
|
RichIterable<Pair<K,V>> |
Multimap.keyValuePairsView() |
Returns a lazy view of all of the key/value pairs.
|
Modifier and Type | Method | Description |
---|---|---|
default boolean |
MutableMultimap.add(Pair<K,V> keyValuePair) |
Modification operation similar to put, however, takes the key-value pair as the input.
|
default boolean |
MutableMultimap.putAllPairs(Pair<K,V>... pairs) |
Modifier and Type | Method | Description |
---|---|---|
<K2,V2> ImmutableMultimap<K2,V2> |
ImmutableMultimap.collectKeysValues(Function2<? super K,? super V,Pair<K2,V2>> function) |
|
<K2,V2> Multimap<K2,V2> |
Multimap.collectKeysValues(Function2<? super K,? super V,Pair<K2,V2>> function) |
Returns a new multimap with the results of applying the specified function on each key and value of the source
multimap.
|
<K2,V2,R extends MutableMultimap<K2,V2>> |
Multimap.collectKeysValues(Function2<? super K,? super V,Pair<K2,V2>> function,
R target) |
Same as the collect method but uses the specified target multimap for the results.
|
<K2,V2> MutableMultimap<K2,V2> |
MutableMultimap.collectKeysValues(Function2<? super K,? super V,Pair<K2,V2>> function) |
|
default boolean |
MutableMultimap.putAllPairs(java.lang.Iterable<Pair<K,V>> pairs) |
Modifier and Type | Method | Description |
---|---|---|
<K2,V2> ImmutableBagIterableMultimap<K2,V2> |
ImmutableBagIterableMultimap.collectKeysValues(Function2<? super K,? super V,Pair<K2,V2>> function) |
|
<K2,V2> ImmutableBagMultimap<K2,V2> |
ImmutableBagMultimap.collectKeysValues(Function2<? super K,? super V,Pair<K2,V2>> function) |
|
<K2,V2> MutableBagIterableMultimap<K2,V2> |
MutableBagIterableMultimap.collectKeysValues(Function2<? super K,? super V,Pair<K2,V2>> function) |
|
<K2,V2> MutableBagMultimap<K2,V2> |
MutableBagMultimap.collectKeysValues(Function2<? super K,? super V,Pair<K2,V2>> function) |
|
<K2,V2> UnsortedBagMultimap<K2,V2> |
UnsortedBagMultimap.collectKeysValues(Function2<? super K,? super V,Pair<K2,V2>> function) |
Modifier and Type | Method | Description |
---|---|---|
<K2,V2> ImmutableBagMultimap<K2,V2> |
ImmutableListMultimap.collectKeysValues(Function2<? super K,? super V,Pair<K2,V2>> function) |
|
<K2,V2> BagMultimap<K2,V2> |
ListMultimap.collectKeysValues(Function2<? super K,? super V,Pair<K2,V2>> function) |
|
<K2,V2> MutableBagMultimap<K2,V2> |
MutableListMultimap.collectKeysValues(Function2<? super K,? super V,Pair<K2,V2>> function) |
Modifier and Type | Method | Description |
---|---|---|
<K2,V2> BagMultimap<K2,V2> |
OrderedIterableMultimap.collectKeysValues(Function2<? super K,? super V,Pair<K2,V2>> function) |
Modifier and Type | Method | Description |
---|---|---|
<K2,V2> ImmutableBagIterableMultimap<K2,V2> |
ImmutableSetIterableMultimap.collectKeysValues(Function2<? super K,? super V,Pair<K2,V2>> function) |
|
<K2,V2> ImmutableBagMultimap<K2,V2> |
ImmutableSetMultimap.collectKeysValues(Function2<? super K,? super V,Pair<K2,V2>> function) |
|
<K2,V2> MutableBagIterableMultimap<K2,V2> |
MutableSetIterableMultimap.collectKeysValues(Function2<? super K,? super V,Pair<K2,V2>> function) |
|
<K2,V2> MutableBagMultimap<K2,V2> |
MutableSetMultimap.collectKeysValues(Function2<? super K,? super V,Pair<K2,V2>> function) |
|
<K2,V2> UnsortedBagMultimap<K2,V2> |
UnsortedSetMultimap.collectKeysValues(Function2<? super K,? super V,Pair<K2,V2>> function) |
Modifier and Type | Method | Description |
---|---|---|
<K2,V2> ImmutableBagMultimap<K2,V2> |
ImmutableSortedBagMultimap.collectKeysValues(Function2<? super K,? super V,Pair<K2,V2>> function) |
|
<K2,V2> MutableBagMultimap<K2,V2> |
MutableSortedBagMultimap.collectKeysValues(Function2<? super K,? super V,Pair<K2,V2>> function) |
|
<K2,V2> BagMultimap<K2,V2> |
SortedBagMultimap.collectKeysValues(Function2<? super K,? super V,Pair<K2,V2>> function) |
Modifier and Type | Method | Description |
---|---|---|
<K2,V2> ImmutableBagMultimap<K2,V2> |
ImmutableSortedSetMultimap.collectKeysValues(Function2<? super K,? super V,Pair<K2,V2>> function) |
|
<K2,V2> MutableBagMultimap<K2,V2> |
MutableSortedSetMultimap.collectKeysValues(Function2<? super K,? super V,Pair<K2,V2>> function) |
|
<K2,V2> BagMultimap<K2,V2> |
SortedSetMultimap.collectKeysValues(Function2<? super K,? super V,Pair<K2,V2>> function) |
Modifier and Type | Method | Description |
---|---|---|
<S,R extends java.util.Collection<Pair<T,S>>> |
OrderedIterable.zip(java.lang.Iterable<S> that,
R target) |
Same as
OrderedIterable.zip(Iterable) but uses target for output. |
<R extends java.util.Collection<Pair<T,java.lang.Integer>>> |
OrderedIterable.zipWithIndex(R target) |
Same as
OrderedIterable.zipWithIndex() but uses target for output. |
Modifier and Type | Method | Description |
---|---|---|
<S> OrderedIterable<Pair<T,S>> |
OrderedIterable.zip(java.lang.Iterable<S> that) |
Returns a
OrderedIterable formed from this OrderedIterable and another Iterable by
combining corresponding elements in pairs. |
<S> ReversibleIterable<Pair<T,S>> |
ReversibleIterable.zip(java.lang.Iterable<S> that) |
|
<S> ListIterable<Pair<T,S>> |
SortedIterable.zip(java.lang.Iterable<S> that) |
|
OrderedIterable<Pair<T,java.lang.Integer>> |
OrderedIterable.zipWithIndex() |
|
ReversibleIterable<Pair<T,java.lang.Integer>> |
ReversibleIterable.zipWithIndex() |
|
SortedIterable<Pair<T,java.lang.Integer>> |
SortedIterable.zipWithIndex() |
Modifier and Type | Method | Description |
---|---|---|
<B> LazyIterable<Pair<T,B>> |
SetIterable.cartesianProduct(SetIterable<B> set) |
Returns the set whose members are all possible ordered pairs (a, b) where a is a member of
this and b is a
member of set . |
<S> ImmutableSet<Pair<T,S>> |
ImmutableSet.zip(java.lang.Iterable<S> that) |
Deprecated.
in 6.0. Use
OrderedIterable.zip(Iterable) instead. |
<S> MutableSet<Pair<T,S>> |
MutableSet.zip(java.lang.Iterable<S> that) |
Deprecated.
in 6.0. Use
OrderedIterable.zip(Iterable) instead. |
<S> MutableCollection<Pair<T,S>> |
MutableSetIterable.zip(java.lang.Iterable<S> that) |
Deprecated.
in 6.0. Use
OrderedIterable.zip(Iterable) instead. |
<S> UnsortedSetIterable<Pair<T,S>> |
UnsortedSetIterable.zip(java.lang.Iterable<S> that) |
Deprecated.
in 6.0. Use
OrderedIterable.zip(Iterable) instead. |
ImmutableSet<Pair<T,java.lang.Integer>> |
ImmutableSet.zipWithIndex() |
Deprecated.
in 6.0. Use
OrderedIterable.zipWithIndex() instead. |
ImmutableSetIterable<Pair<T,java.lang.Integer>> |
ImmutableSetIterable.zipWithIndex() |
Deprecated.
in 6.0. Use
OrderedIterable.zipWithIndex() instead. |
MutableSet<Pair<T,java.lang.Integer>> |
MutableSet.zipWithIndex() |
Deprecated.
in 6.0. Use
OrderedIterable.zipWithIndex() instead. |
MutableSetIterable<Pair<T,java.lang.Integer>> |
MutableSetIterable.zipWithIndex() |
Deprecated.
in 6.0. Use
OrderedIterable.zipWithIndex() instead. |
SetIterable<Pair<T,java.lang.Integer>> |
SetIterable.zipWithIndex() |
Deprecated.
in 6.0. Use
OrderedIterable.zipWithIndex() instead. |
UnsortedSetIterable<Pair<T,java.lang.Integer>> |
UnsortedSetIterable.zipWithIndex() |
Deprecated.
in 6.0. Use
OrderedIterable.zipWithIndex() instead. |
Modifier and Type | Method | Description |
---|---|---|
<S> ImmutableList<Pair<T,S>> |
ImmutableSortedSet.zip(java.lang.Iterable<S> that) |
|
<S> MutableList<Pair<T,S>> |
MutableSortedSet.zip(java.lang.Iterable<S> that) |
|
ImmutableSortedSet<Pair<T,java.lang.Integer>> |
ImmutableSortedSet.zipWithIndex() |
|
MutableSortedSet<Pair<T,java.lang.Integer>> |
MutableSortedSet.zipWithIndex() |
|
SortedSetIterable<Pair<T,java.lang.Integer>> |
SortedSetIterable.zipWithIndex() |
Modifier and Type | Method | Description |
---|---|---|
<S> ImmutableStack<Pair<T,S>> |
ImmutableStack.zip(java.lang.Iterable<S> that) |
|
<S> MutableStack<Pair<T,S>> |
MutableStack.zip(java.lang.Iterable<S> that) |
|
<S> StackIterable<Pair<T,S>> |
StackIterable.zip(java.lang.Iterable<S> that) |
|
ImmutableStack<Pair<T,java.lang.Integer>> |
ImmutableStack.zipWithIndex() |
|
MutableStack<Pair<T,java.lang.Integer>> |
MutableStack.zipWithIndex() |
|
StackIterable<Pair<T,java.lang.Integer>> |
StackIterable.zipWithIndex() |
Modifier and Type | Interface | Description |
---|---|---|
interface |
Twin<T> |
A Twin is a Pair where both elements have the same type.
|
Modifier and Type | Method | Description |
---|---|---|
Pair<T2,T1> |
Pair.swap() |
Method used to swap the elements of pair.
|
Modifier and Type | Method | Description |
---|---|---|
<S,R extends java.util.Collection<Pair<T,S>>> |
AbstractRichIterable.zip(java.lang.Iterable<S> that,
R target) |
|
<S,R extends java.util.Collection<Pair<T,S>>> |
UnmodifiableRichIterable.zip(java.lang.Iterable<S> that,
R target) |
|
<R extends java.util.Collection<Pair<T,java.lang.Integer>>> |
AbstractRichIterable.zipWithIndex(R target) |
|
<R extends java.util.Collection<Pair<T,java.lang.Integer>>> |
UnmodifiableRichIterable.zipWithIndex(R target) |
Modifier and Type | Method | Description |
---|---|---|
<S> RichIterable<Pair<T,S>> |
UnmodifiableRichIterable.zip(java.lang.Iterable<S> that) |
|
RichIterable<Pair<T,java.lang.Integer>> |
UnmodifiableRichIterable.zipWithIndex() |
Modifier and Type | Method | Description |
---|---|---|
<S,R extends java.util.Collection<Pair<T,S>>> |
ImmutableHashBag.zip(java.lang.Iterable<S> that,
R target) |
|
<R extends java.util.Collection<Pair<T,java.lang.Integer>>> |
ImmutableHashBag.zipWithIndex(R target) |
Modifier and Type | Method | Description |
---|---|---|
<S> ImmutableBag<Pair<T,S>> |
ImmutableArrayBag.zip(java.lang.Iterable<S> that) |
Deprecated.
in 6.0. Use
OrderedIterable.zip(Iterable) instead. |
<S> ImmutableBag<Pair<T,S>> |
ImmutableHashBag.zip(java.lang.Iterable<S> that) |
Deprecated.
in 6.0. Use
OrderedIterable.zip(Iterable) instead. |
ImmutableSet<Pair<T,java.lang.Integer>> |
ImmutableArrayBag.zipWithIndex() |
Deprecated.
in 6.0. Use
OrderedIterable.zipWithIndex() instead. |
ImmutableSet<Pair<T,java.lang.Integer>> |
ImmutableHashBag.zipWithIndex() |
Deprecated.
in 6.0. Use
OrderedIterable.zipWithIndex() instead. |
Modifier and Type | Method | Description |
---|---|---|
<S> MutableBag<Pair<T,S>> |
AbstractMutableBag.zip(java.lang.Iterable<S> that) |
Deprecated.
in 6.0. Use
OrderedIterable.zip(Iterable) instead. |
<S> MutableBag<Pair<T,S>> |
MultiReaderHashBag.zip(java.lang.Iterable<S> that) |
Deprecated.
in 6.0. Use
OrderedIterable.zip(Iterable) instead. |
<S> MutableBag<Pair<T,S>> |
SynchronizedBag.zip(java.lang.Iterable<S> that) |
Deprecated.
in 6.0. Use
OrderedIterable.zip(Iterable) instead. |
<S> MutableBag<Pair<T,S>> |
UnmodifiableBag.zip(java.lang.Iterable<S> that) |
Deprecated.
in 6.0. Use
OrderedIterable.zip(Iterable) instead. |
MutableSet<Pair<T,java.lang.Integer>> |
AbstractMutableBag.zipWithIndex() |
Deprecated.
in 6.0. Use
OrderedIterable.zipWithIndex() instead. |
MutableSet<Pair<T,java.lang.Integer>> |
MultiReaderHashBag.zipWithIndex() |
Deprecated.
in 6.0. Use
OrderedIterable.zipWithIndex() instead. |
MutableSet<Pair<T,java.lang.Integer>> |
SynchronizedBag.zipWithIndex() |
Deprecated.
in 6.0. Use
OrderedIterable.zipWithIndex() instead. |
MutableSet<Pair<T,java.lang.Integer>> |
UnmodifiableBag.zipWithIndex() |
Deprecated.
in 6.0. Use
OrderedIterable.zipWithIndex() instead. |
Modifier and Type | Method | Description |
---|---|---|
<S,R extends java.util.Collection<Pair<T,S>>> |
UnmodifiableSortedBag.zip(java.lang.Iterable<S> that,
R target) |
|
<R extends java.util.Collection<Pair<T,java.lang.Integer>>> |
UnmodifiableSortedBag.zipWithIndex(R target) |
Modifier and Type | Method | Description |
---|---|---|
<S> MutableList<Pair<T,S>> |
AbstractMutableSortedBag.zip(java.lang.Iterable<S> that) |
|
<S> MutableList<Pair<T,S>> |
SynchronizedSortedBag.zip(java.lang.Iterable<S> that) |
|
<S> MutableList<Pair<T,S>> |
UnmodifiableSortedBag.zip(java.lang.Iterable<S> that) |
|
MutableSortedSet<Pair<T,java.lang.Integer>> |
SynchronizedSortedBag.zipWithIndex() |
|
MutableSortedSet<Pair<T,java.lang.Integer>> |
TreeBag.zipWithIndex() |
|
MutableSortedSet<Pair<T,java.lang.Integer>> |
UnmodifiableSortedBag.zipWithIndex() |
Modifier and Type | Method | Description |
---|---|---|
<S,R extends java.util.Collection<Pair<V,S>>> |
AbstractBiMap.zip(java.lang.Iterable<S> that,
R target) |
Deprecated.
in 8.0. Use
OrderedIterable.zip(Iterable, Collection) instead. |
<R extends java.util.Collection<Pair<V,java.lang.Integer>>> |
AbstractBiMap.zipWithIndex(R target) |
Deprecated.
in 8.0. Use
OrderedIterable.zipWithIndex(Collection) instead. |
Modifier and Type | Method | Description |
---|---|---|
Pair<K,V> |
AbstractBiMap.detect(Predicate2<? super K,? super V> predicate) |
Modifier and Type | Method | Description |
---|---|---|
java.util.Optional<Pair<K,V>> |
AbstractBiMap.detectOptional(Predicate2<? super K,? super V> predicate) |
|
RichIterable<Pair<K,V>> |
AbstractBiMap.keyValuesView() |
Modifier and Type | Method | Description |
---|---|---|
<S> ImmutableSet<Pair<V,S>> |
AbstractImmutableBiMap.zip(java.lang.Iterable<S> that) |
Deprecated.
in 8.0. Use
OrderedIterable.zip(Iterable) instead. |
ImmutableSet<Pair<V,java.lang.Integer>> |
AbstractImmutableBiMap.zipWithIndex() |
Deprecated.
in 8.0. Use
OrderedIterable.zipWithIndex() instead. |
Modifier and Type | Method | Description |
---|---|---|
ImmutableBiMap<K,V> |
AbstractImmutableBiMap.newWithAllKeyValueArguments(Pair<? extends K,? extends V>... keyValuePairs) |
Modifier and Type | Method | Description |
---|---|---|
<K2,V2> ImmutableBiMap<K2,V2> |
AbstractImmutableBiMap.collect(Function2<? super K,? super V,Pair<K2,V2>> function) |
|
ImmutableBiMap<K,V> |
AbstractImmutableBiMap.newWithAllKeyValues(java.lang.Iterable<? extends Pair<? extends K,? extends V>> keyValues) |
Modifier and Type | Method | Description |
---|---|---|
<S,R extends java.util.Collection<Pair<V,S>>> |
UnmodifiableBiMap.zip(java.lang.Iterable<S> that,
R target) |
|
<R extends java.util.Collection<Pair<V,java.lang.Integer>>> |
UnmodifiableBiMap.zipWithIndex(R target) |
Modifier and Type | Method | Description |
---|---|---|
Pair<K,V> |
UnmodifiableBiMap.detect(Predicate2<? super K,? super V> predicate) |
Modifier and Type | Method | Description |
---|---|---|
java.util.Optional<Pair<K,V>> |
UnmodifiableBiMap.detectOptional(Predicate2<? super K,? super V> predicate) |
|
RichIterable<Pair<K,V>> |
UnmodifiableBiMap.keyValuesView() |
|
<S> MutableSet<Pair<V,S>> |
SynchronizedBiMap.zip(java.lang.Iterable<S> that) |
Deprecated.
in 8.0. Use
OrderedIterable.zip(Iterable) instead. |
<S> MutableSet<Pair<V,S>> |
UnmodifiableBiMap.zip(java.lang.Iterable<S> that) |
|
MutableSet<Pair<V,java.lang.Integer>> |
SynchronizedBiMap.zipWithIndex() |
Deprecated.
in 8.0. Use
OrderedIterable.zipWithIndex() instead. |
MutableSet<Pair<V,java.lang.Integer>> |
UnmodifiableBiMap.zipWithIndex() |
Modifier and Type | Method | Description |
---|---|---|
V |
UnmodifiableBiMap.add(Pair<K,V> keyValuePair) |
|
V |
UnmodifiableBiMap.putPair(Pair<K,V> keyValuePair) |
|
MutableBiMap<K,V> |
SynchronizedBiMap.withAllKeyValueArguments(Pair<? extends K,? extends V>... keyValuePairs) |
|
MutableBiMap<K,V> |
UnmodifiableBiMap.withAllKeyValueArguments(Pair<? extends K,? extends V>... keyValuePairs) |
Modifier and Type | Method | Description |
---|---|---|
<K2,V2> MutableBiMap<K2,V2> |
SynchronizedBiMap.collect(Function2<? super K,? super V,Pair<K2,V2>> function) |
|
<K2,V2> MutableBiMap<K2,V2> |
UnmodifiableBiMap.collect(Function2<? super K,? super V,Pair<K2,V2>> function) |
|
MutableBiMap<K,V> |
SynchronizedBiMap.withAllKeyValues(java.lang.Iterable<? extends Pair<? extends K,? extends V>> keyValues) |
|
MutableBiMap<K,V> |
UnmodifiableBiMap.withAllKeyValues(java.lang.Iterable<? extends Pair<? extends K,? extends V>> keyValues) |
Modifier and Type | Method | Description |
---|---|---|
static <T> SerializableComparator<Pair<T,?>> |
Comparators.byFirstOfPair(java.util.Comparator<? super T> comparator) |
Creates a comparator for pairs by using an existing comparator that only compares the first element of the pair
|
static <T> SerializableComparator<Pair<?,T>> |
Comparators.bySecondOfPair(java.util.Comparator<? super T> comparator) |
Creates a comparator for pairs by using an existing comparator that only compares the second element of the pair
|
static <V1> Function<Pair<V1,?>,V1> |
Functions.firstOfPair() |
|
static <T,V1,V2> Function<T,Pair<V1,V2>> |
Functions.pair(Function<? super T,V1> function1,
Function<? super T,V2> function2) |
|
static <V2> Function<Pair<?,V2>,V2> |
Functions.secondOfPair() |
|
static <S,T> Function<Pair<S,T>,Pair<T,S>> |
Functions.swappedPair() |
Swap the input pair and return the swapped pair.
|
static <S,T> Function<Pair<S,T>,Pair<T,S>> |
Functions.swappedPair() |
Swap the input pair and return the swapped pair.
|
Modifier and Type | Method | Description |
---|---|---|
boolean |
PairPredicate.accept(Pair<T1,T2> pair) |
Modifier and Type | Class | Description |
---|---|---|
class |
ZipWithIndexProcedure<T,R extends java.util.Collection<Pair<T,java.lang.Integer>>> |
Creates a PairImpl of objects and their indexes and adds the result to a target collection.
|
Modifier and Type | Method | Description |
---|---|---|
static <TT,RR extends java.util.Collection<Pair<TT,java.lang.Integer>>> |
ZipWithIndexProcedure.create(RR target) |
Modifier and Type | Method | Description |
---|---|---|
<S,R extends java.util.Collection<Pair<T,S>>> |
AbstractSynchronizedRichIterable.zip(java.lang.Iterable<S> that,
R target) |
|
<R extends java.util.Collection<Pair<T,java.lang.Integer>>> |
AbstractSynchronizedRichIterable.zipWithIndex(R target) |
Modifier and Type | Method | Description |
---|---|---|
<S> RichIterable<Pair<T,S>> |
AbstractSynchronizedRichIterable.zip(java.lang.Iterable<S> that) |
|
RichIterable<Pair<T,java.lang.Integer>> |
AbstractSynchronizedRichIterable.zipWithIndex() |
Modifier and Type | Method | Description |
---|---|---|
<S,R extends java.util.Collection<Pair<T,S>>> |
AbstractCollectionAdapter.zip(java.lang.Iterable<S> that,
R target) |
|
<S,R extends java.util.Collection<Pair<T,S>>> |
AbstractMultiReaderMutableCollection.zip(java.lang.Iterable<S> that,
R target) |
|
<S,R extends java.util.Collection<Pair<T,S>>> |
AbstractUnmodifiableMutableCollection.zip(java.lang.Iterable<S> that,
R target) |
|
<R extends java.util.Collection<Pair<T,java.lang.Integer>>> |
AbstractCollectionAdapter.zipWithIndex(R target) |
|
<R extends java.util.Collection<Pair<T,java.lang.Integer>>> |
AbstractMultiReaderMutableCollection.zipWithIndex(R target) |
|
<R extends java.util.Collection<Pair<T,java.lang.Integer>>> |
AbstractUnmodifiableMutableCollection.zipWithIndex(R target) |
Modifier and Type | Method | Description |
---|---|---|
<S> MutableCollection<Pair<T,S>> |
AbstractCollectionAdapter.zip(java.lang.Iterable<S> that) |
|
<S> MutableCollection<Pair<T,S>> |
AbstractSynchronizedMutableCollection.zip(java.lang.Iterable<S> that) |
|
<S> MutableCollection<Pair<T,S>> |
AbstractUnmodifiableMutableCollection.zip(java.lang.Iterable<S> that) |
|
MutableCollection<Pair<T,java.lang.Integer>> |
AbstractCollectionAdapter.zipWithIndex() |
|
MutableCollection<Pair<T,java.lang.Integer>> |
AbstractSynchronizedMutableCollection.zipWithIndex() |
|
MutableCollection<Pair<T,java.lang.Integer>> |
AbstractUnmodifiableMutableCollection.zipWithIndex() |
Modifier and Type | Method | Description |
---|---|---|
static <T,S> java.util.stream.Collector<T,?,MutableList<Pair<T,S>>> |
Collectors2.zip(java.lang.Iterable<S> other) |
Returns a
MutableList formed from this stream of elements and another Iterable by
combining corresponding elements in pairs. |
Modifier and Type | Method | Description |
---|---|---|
static <A,B> LazyIterable<Pair<A,B>> |
Sets.cartesianProduct(java.util.Set<A> set1,
java.util.Set<B> set2) |
Modifier and Type | Method | Description |
---|---|---|
java.util.Iterator<Pair<X,Y>> |
ZipIterable.iterator() |
|
java.util.Iterator<Pair<T,java.lang.Integer>> |
ZipWithIndexIterable.iterator() |
|
<S> LazyIterable<Pair<T,S>> |
AbstractLazyIterable.zip(java.lang.Iterable<S> that) |
|
LazyIterable<Pair<T,java.lang.Integer>> |
AbstractLazyIterable.zipWithIndex() |
Modifier and Type | Method | Description |
---|---|---|
void |
ZipIterable.each(Procedure<? super Pair<X,Y>> procedure) |
|
void |
ZipWithIndexIterable.each(Procedure<? super Pair<T,java.lang.Integer>> procedure) |
Modifier and Type | Method | Description |
---|---|---|
Pair<X,Y> |
ZipIterator.next() |
|
Pair<T,java.lang.Integer> |
ZipWithIndexIterator.next() |
Modifier and Type | Method | Description |
---|---|---|
<S,R extends java.util.Collection<Pair<T,S>>> |
AbstractMutableList.zip(java.lang.Iterable<S> that,
R target) |
|
<R extends java.util.Collection<Pair<T,java.lang.Integer>>> |
AbstractMutableList.zipWithIndex(R target) |
Modifier and Type | Method | Description |
---|---|---|
<S> MutableList<Pair<T,S>> |
AbstractListAdapter.zip(java.lang.Iterable<S> that) |
|
<S> MutableList<Pair<T,S>> |
AbstractMutableList.zip(java.lang.Iterable<S> that) |
|
<S> MutableList<Pair<T,S>> |
ArrayListAdapter.zip(java.lang.Iterable<S> that) |
|
<S> MutableList<Pair<T,S>> |
MultiReaderFastList.zip(java.lang.Iterable<S> that) |
|
<S> MutableList<Pair<T,S>> |
RandomAccessListAdapter.zip(java.lang.Iterable<S> that) |
|
<S> MutableList<Pair<T,S>> |
SynchronizedMutableList.zip(java.lang.Iterable<S> that) |
|
<S> MutableList<Pair<T,S>> |
UnmodifiableMutableList.zip(java.lang.Iterable<S> that) |
|
MutableList<Pair<T,java.lang.Integer>> |
AbstractListAdapter.zipWithIndex() |
|
MutableList<Pair<T,java.lang.Integer>> |
AbstractMutableList.zipWithIndex() |
|
MutableList<Pair<T,java.lang.Integer>> |
ArrayListAdapter.zipWithIndex() |
|
MutableList<Pair<T,java.lang.Integer>> |
MultiReaderFastList.zipWithIndex() |
|
MutableList<Pair<T,java.lang.Integer>> |
RandomAccessListAdapter.zipWithIndex() |
|
MutableList<Pair<T,java.lang.Integer>> |
SynchronizedMutableList.zipWithIndex() |
|
MutableList<Pair<T,java.lang.Integer>> |
UnmodifiableMutableList.zipWithIndex() |
Modifier and Type | Method | Description |
---|---|---|
Pair<K,V> |
AbstractSynchronizedMapIterable.detect(Predicate2<? super K,? super V> predicate) |
Modifier and Type | Method | Description |
---|---|---|
java.util.Optional<Pair<K,V>> |
AbstractSynchronizedMapIterable.detectOptional(Predicate2<? super K,? super V> predicate) |
|
RichIterable<Pair<K,V>> |
AbstractSynchronizedMapIterable.keyValuesView() |
|
<S> MutableCollection<Pair<V,S>> |
AbstractSynchronizedMapIterable.zip(java.lang.Iterable<S> that) |
|
MutableCollection<Pair<V,java.lang.Integer>> |
AbstractSynchronizedMapIterable.zipWithIndex() |
Modifier and Type | Method | Description |
---|---|---|
V |
AbstractSynchronizedMapIterable.add(Pair<K,V> keyValuePair) |
|
V |
AbstractSynchronizedMapIterable.putPair(Pair<K,V> keyValuePair) |
Modifier and Type | Method | Description |
---|---|---|
Pair<K,V> |
AbstractImmutableMap.detect(Predicate2<? super K,? super V> predicate) |
Modifier and Type | Method | Description |
---|---|---|
java.util.Optional<Pair<K,V>> |
AbstractImmutableMap.detectOptional(Predicate2<? super K,? super V> predicate) |
|
RichIterable<Pair<K,V>> |
ImmutableUnifiedMap.keyValuesView() |
|
<S> ImmutableBag<Pair<V,S>> |
AbstractImmutableMap.zip(java.lang.Iterable<S> that) |
Deprecated.
in 6.0. Use
OrderedIterable.zip(Iterable) instead. |
ImmutableSet<Pair<V,java.lang.Integer>> |
AbstractImmutableMap.zipWithIndex() |
Deprecated.
in 6.0. Use
OrderedIterable.zipWithIndex() instead. |
Modifier and Type | Method | Description |
---|---|---|
ImmutableMap<K,V> |
AbstractImmutableMap.newWithAllKeyValueArguments(Pair<? extends K,? extends V>... keyValuePairs) |
Modifier and Type | Method | Description |
---|---|---|
<K2,V2> ImmutableMap<K2,V2> |
AbstractImmutableMap.collect(Function2<? super K,? super V,Pair<K2,V2>> function) |
|
ImmutableMap<K,V> |
AbstractImmutableMap.newWithAllKeyValues(java.lang.Iterable<? extends Pair<? extends K,? extends V>> keyValues) |
Constructor | Description |
---|---|
ImmutableUnifiedMap(Pair<K,V>... pairs) |
Modifier and Type | Method | Description |
---|---|---|
<S,R extends java.util.Collection<Pair<V,S>>> |
UnmodifiableMutableMap.zip(java.lang.Iterable<S> that,
R target) |
|
<R extends java.util.Collection<Pair<V,java.lang.Integer>>> |
UnmodifiableMutableMap.zipWithIndex(R target) |
Modifier and Type | Method | Description |
---|---|---|
Pair<K,V> |
AbstractMutableMapIterable.detect(Predicate2<? super K,? super V> predicate) |
|
Pair<K,V> |
UnifiedMap.detect(Predicate2<? super K,? super V> predicate) |
|
Pair<K,V> |
UnmodifiableMutableMap.detect(Predicate2<? super K,? super V> predicate) |
Modifier and Type | Method | Description |
---|---|---|
java.util.Optional<Pair<K,V>> |
AbstractMutableMapIterable.detectOptional(Predicate2<? super K,? super V> predicate) |
|
java.util.Optional<Pair<K,V>> |
UnmodifiableMutableMap.detectOptional(Predicate2<? super K,? super V> predicate) |
|
RichIterable<Pair<K,V>> |
AbstractMutableMapIterable.keyValuesView() |
|
RichIterable<Pair<K,V>> |
UnmodifiableMutableMap.keyValuesView() |
|
<S> MutableBag<Pair<V,S>> |
AbstractMutableMap.zip(java.lang.Iterable<S> that) |
Deprecated.
in 6.0. Use
OrderedIterable.zip(Iterable) instead. |
<S> MutableBag<Pair<V,S>> |
SynchronizedMutableMap.zip(java.lang.Iterable<S> that) |
Deprecated.
in 6.0. Use
OrderedIterable.zip(Iterable) instead. |
<S> MutableBag<Pair<V,S>> |
UnmodifiableMutableMap.zip(java.lang.Iterable<S> that) |
Deprecated.
in 6.0. Use
OrderedIterable.zip(Iterable) instead. |
MutableSet<Pair<V,java.lang.Integer>> |
AbstractMutableMap.zipWithIndex() |
Deprecated.
in 6.0. Use
OrderedIterable.zipWithIndex() instead. |
MutableSet<Pair<V,java.lang.Integer>> |
SynchronizedMutableMap.zipWithIndex() |
Deprecated.
in 6.0. Use
OrderedIterable.zipWithIndex() instead. |
MutableSet<Pair<V,java.lang.Integer>> |
UnmodifiableMutableMap.zipWithIndex() |
Deprecated.
in 6.0. Use
OrderedIterable.zipWithIndex() instead. |
Modifier and Type | Method | Description |
---|---|---|
V |
UnmodifiableMutableMap.add(Pair<K,V> keyValuePair) |
|
static <K,V> UnifiedMap<K,V> |
UnifiedMap.newMapWith(Pair<K,V>... pairs) |
|
V |
UnmodifiableMutableMap.putPair(Pair<K,V> keyValuePair) |
|
MutableMap<K,V> |
AbstractMutableMap.withAllKeyValueArguments(Pair<? extends K,? extends V>... keyValues) |
|
ConcurrentHashMap<K,V> |
ConcurrentHashMap.withAllKeyValueArguments(Pair<? extends K,? extends V>... keyValues) |
|
ConcurrentHashMapUnsafe<K,V> |
ConcurrentHashMapUnsafe.withAllKeyValueArguments(Pair<? extends K,? extends V>... keyValues) |
|
ConcurrentMutableHashMap<K,V> |
ConcurrentMutableHashMap.withAllKeyValueArguments(Pair<? extends K,? extends V>... keyValues) |
Deprecated.
|
MutableMap<K,V> |
SynchronizedMutableMap.withAllKeyValueArguments(Pair<? extends K,? extends V>... keyValuePairs) |
|
MutableMap<K,V> |
UnmodifiableMutableMap.withAllKeyValueArguments(Pair<? extends K,? extends V>... keyValuePairs) |
Modifier and Type | Method | Description |
---|---|---|
<K2,V2> MutableMap<K2,V2> |
AbstractMutableMapIterable.collect(Function2<? super K,? super V,Pair<K2,V2>> function) |
|
<K2,V2> MutableMap<K2,V2> |
SynchronizedMutableMap.collect(Function2<? super K,? super V,Pair<K2,V2>> pairFunction) |
|
<K2,V2> MutableMap<K2,V2> |
UnmodifiableMutableMap.collect(Function2<? super K,? super V,Pair<K2,V2>> function) |
|
static <K,V> UnifiedMap<K,V> |
UnifiedMap.newMapWith(java.lang.Iterable<Pair<K,V>> inputIterable) |
|
MutableMap<K,V> |
AbstractMutableMap.withAllKeyValues(java.lang.Iterable<? extends Pair<? extends K,? extends V>> keyValues) |
|
ConcurrentHashMap<K,V> |
ConcurrentHashMap.withAllKeyValues(java.lang.Iterable<? extends Pair<? extends K,? extends V>> keyValues) |
|
ConcurrentHashMapUnsafe<K,V> |
ConcurrentHashMapUnsafe.withAllKeyValues(java.lang.Iterable<? extends Pair<? extends K,? extends V>> keyValues) |
|
ConcurrentMutableHashMap<K,V> |
ConcurrentMutableHashMap.withAllKeyValues(java.lang.Iterable<? extends Pair<? extends K,? extends V>> keyValues) |
Deprecated.
|
MutableMap<K,V> |
SynchronizedMutableMap.withAllKeyValues(java.lang.Iterable<? extends Pair<? extends K,? extends V>> keyValues) |
|
MutableMap<K,V> |
UnmodifiableMutableMap.withAllKeyValues(java.lang.Iterable<? extends Pair<? extends K,? extends V>> keyValues) |
Constructor | Description |
---|---|
UnifiedMap(Pair<K,V>... pairs) |
Modifier and Type | Method | Description |
---|---|---|
<S,R extends java.util.Collection<Pair<V,S>>> |
ByteObjectHashMap.zip(java.lang.Iterable<S> that,
R target) |
|
<S,R extends java.util.Collection<Pair<V,S>>> |
CharObjectHashMap.zip(java.lang.Iterable<S> that,
R target) |
|
<S,R extends java.util.Collection<Pair<V,S>>> |
DoubleObjectHashMap.zip(java.lang.Iterable<S> that,
R target) |
|
<S,R extends java.util.Collection<Pair<V,S>>> |
FloatObjectHashMap.zip(java.lang.Iterable<S> that,
R target) |
|
<S,R extends java.util.Collection<Pair<V,S>>> |
IntObjectHashMap.zip(java.lang.Iterable<S> that,
R target) |
|
<S,R extends java.util.Collection<Pair<V,S>>> |
LongObjectHashMap.zip(java.lang.Iterable<S> that,
R target) |
|
<S,R extends java.util.Collection<Pair<V,S>>> |
ShortObjectHashMap.zip(java.lang.Iterable<S> that,
R target) |
|
<S,R extends java.util.Collection<Pair<V,S>>> |
SynchronizedByteObjectMap.zip(java.lang.Iterable<S> that,
R target) |
|
<S,R extends java.util.Collection<Pair<V,S>>> |
SynchronizedCharObjectMap.zip(java.lang.Iterable<S> that,
R target) |
|
<S,R extends java.util.Collection<Pair<V,S>>> |
SynchronizedDoubleObjectMap.zip(java.lang.Iterable<S> that,
R target) |
|
<S,R extends java.util.Collection<Pair<V,S>>> |
SynchronizedFloatObjectMap.zip(java.lang.Iterable<S> that,
R target) |
|
<S,R extends java.util.Collection<Pair<V,S>>> |
SynchronizedIntObjectMap.zip(java.lang.Iterable<S> that,
R target) |
|
<S,R extends java.util.Collection<Pair<V,S>>> |
SynchronizedLongObjectMap.zip(java.lang.Iterable<S> that,
R target) |
|
<S,R extends java.util.Collection<Pair<V,S>>> |
SynchronizedShortObjectMap.zip(java.lang.Iterable<S> that,
R target) |
|
<S,R extends java.util.Collection<Pair<V,S>>> |
UnmodifiableByteObjectMap.zip(java.lang.Iterable<S> that,
R target) |
|
<S,R extends java.util.Collection<Pair<V,S>>> |
UnmodifiableCharObjectMap.zip(java.lang.Iterable<S> that,
R target) |
|
<S,R extends java.util.Collection<Pair<V,S>>> |
UnmodifiableDoubleObjectMap.zip(java.lang.Iterable<S> that,
R target) |
|
<S,R extends java.util.Collection<Pair<V,S>>> |
UnmodifiableFloatObjectMap.zip(java.lang.Iterable<S> that,
R target) |
|
<S,R extends java.util.Collection<Pair<V,S>>> |
UnmodifiableIntObjectMap.zip(java.lang.Iterable<S> that,
R target) |
|
<S,R extends java.util.Collection<Pair<V,S>>> |
UnmodifiableLongObjectMap.zip(java.lang.Iterable<S> that,
R target) |
|
<S,R extends java.util.Collection<Pair<V,S>>> |
UnmodifiableShortObjectMap.zip(java.lang.Iterable<S> that,
R target) |
|
<R extends java.util.Collection<Pair<V,java.lang.Integer>>> |
ByteObjectHashMap.zipWithIndex(R target) |
|
<R extends java.util.Collection<Pair<V,java.lang.Integer>>> |
CharObjectHashMap.zipWithIndex(R target) |
|
<R extends java.util.Collection<Pair<V,java.lang.Integer>>> |
DoubleObjectHashMap.zipWithIndex(R target) |
|
<R extends java.util.Collection<Pair<V,java.lang.Integer>>> |
FloatObjectHashMap.zipWithIndex(R target) |
|
<R extends java.util.Collection<Pair<V,java.lang.Integer>>> |
IntObjectHashMap.zipWithIndex(R target) |
|
<R extends java.util.Collection<Pair<V,java.lang.Integer>>> |
LongObjectHashMap.zipWithIndex(R target) |
|
<R extends java.util.Collection<Pair<V,java.lang.Integer>>> |
ShortObjectHashMap.zipWithIndex(R target) |
|
<R extends java.util.Collection<Pair<V,java.lang.Integer>>> |
SynchronizedByteObjectMap.zipWithIndex(R target) |
|
<R extends java.util.Collection<Pair<V,java.lang.Integer>>> |
SynchronizedCharObjectMap.zipWithIndex(R target) |
|
<R extends java.util.Collection<Pair<V,java.lang.Integer>>> |
SynchronizedDoubleObjectMap.zipWithIndex(R target) |
|
<R extends java.util.Collection<Pair<V,java.lang.Integer>>> |
SynchronizedFloatObjectMap.zipWithIndex(R target) |
|
<R extends java.util.Collection<Pair<V,java.lang.Integer>>> |
SynchronizedIntObjectMap.zipWithIndex(R target) |
|
<R extends java.util.Collection<Pair<V,java.lang.Integer>>> |
SynchronizedLongObjectMap.zipWithIndex(R target) |
|
<R extends java.util.Collection<Pair<V,java.lang.Integer>>> |
SynchronizedShortObjectMap.zipWithIndex(R target) |
|
<R extends java.util.Collection<Pair<V,java.lang.Integer>>> |
UnmodifiableByteObjectMap.zipWithIndex(R target) |
|
<R extends java.util.Collection<Pair<V,java.lang.Integer>>> |
UnmodifiableCharObjectMap.zipWithIndex(R target) |
|
<R extends java.util.Collection<Pair<V,java.lang.Integer>>> |
UnmodifiableDoubleObjectMap.zipWithIndex(R target) |
|
<R extends java.util.Collection<Pair<V,java.lang.Integer>>> |
UnmodifiableFloatObjectMap.zipWithIndex(R target) |
|
<R extends java.util.Collection<Pair<V,java.lang.Integer>>> |
UnmodifiableIntObjectMap.zipWithIndex(R target) |
|
<R extends java.util.Collection<Pair<V,java.lang.Integer>>> |
UnmodifiableLongObjectMap.zipWithIndex(R target) |
|
<R extends java.util.Collection<Pair<V,java.lang.Integer>>> |
UnmodifiableShortObjectMap.zipWithIndex(R target) |
Modifier and Type | Method | Description |
---|---|---|
<S> MutableBag<Pair<V,S>> |
ByteObjectHashMap.zip(java.lang.Iterable<S> that) |
Deprecated.
in 7.0. Use
OrderedIterable.zip(Iterable) instead. |
<S> MutableBag<Pair<V,S>> |
CharObjectHashMap.zip(java.lang.Iterable<S> that) |
Deprecated.
in 7.0. Use
OrderedIterable.zip(Iterable) instead. |
<S> MutableBag<Pair<V,S>> |
DoubleObjectHashMap.zip(java.lang.Iterable<S> that) |
Deprecated.
in 7.0. Use
OrderedIterable.zip(Iterable) instead. |
<S> MutableBag<Pair<V,S>> |
FloatObjectHashMap.zip(java.lang.Iterable<S> that) |
Deprecated.
in 7.0. Use
OrderedIterable.zip(Iterable) instead. |
<S> MutableBag<Pair<V,S>> |
IntObjectHashMap.zip(java.lang.Iterable<S> that) |
Deprecated.
in 7.0. Use
OrderedIterable.zip(Iterable) instead. |
<S> MutableBag<Pair<V,S>> |
LongObjectHashMap.zip(java.lang.Iterable<S> that) |
Deprecated.
in 7.0. Use
OrderedIterable.zip(Iterable) instead. |
<S> MutableBag<Pair<V,S>> |
ShortObjectHashMap.zip(java.lang.Iterable<S> that) |
Deprecated.
in 7.0. Use
OrderedIterable.zip(Iterable) instead. |
<S> MutableBag<Pair<V,S>> |
SynchronizedByteObjectMap.zip(java.lang.Iterable<S> that) |
Deprecated.
in 7.0. Use
OrderedIterable.zip(Iterable) instead. |
<S> MutableBag<Pair<V,S>> |
SynchronizedCharObjectMap.zip(java.lang.Iterable<S> that) |
Deprecated.
in 7.0. Use
OrderedIterable.zip(Iterable) instead. |
<S> MutableBag<Pair<V,S>> |
SynchronizedDoubleObjectMap.zip(java.lang.Iterable<S> that) |
Deprecated.
in 7.0. Use
OrderedIterable.zip(Iterable) instead. |
<S> MutableBag<Pair<V,S>> |
SynchronizedFloatObjectMap.zip(java.lang.Iterable<S> that) |
Deprecated.
in 7.0. Use
OrderedIterable.zip(Iterable) instead. |
<S> MutableBag<Pair<V,S>> |
SynchronizedIntObjectMap.zip(java.lang.Iterable<S> that) |
Deprecated.
in 7.0. Use
OrderedIterable.zip(Iterable) instead. |
<S> MutableBag<Pair<V,S>> |
SynchronizedLongObjectMap.zip(java.lang.Iterable<S> that) |
Deprecated.
in 7.0. Use
OrderedIterable.zip(Iterable) instead. |
<S> MutableBag<Pair<V,S>> |
SynchronizedShortObjectMap.zip(java.lang.Iterable<S> that) |
Deprecated.
in 7.0. Use
OrderedIterable.zip(Iterable) instead. |
<S> MutableBag<Pair<V,S>> |
UnmodifiableByteObjectMap.zip(java.lang.Iterable<S> that) |
Deprecated.
in 7.0. Use
OrderedIterable.zip(Iterable) instead. |
<S> MutableBag<Pair<V,S>> |
UnmodifiableCharObjectMap.zip(java.lang.Iterable<S> that) |
Deprecated.
in 7.0. Use
OrderedIterable.zip(Iterable) instead. |
<S> MutableBag<Pair<V,S>> |
UnmodifiableDoubleObjectMap.zip(java.lang.Iterable<S> that) |
Deprecated.
in 7.0. Use
OrderedIterable.zip(Iterable) instead. |
<S> MutableBag<Pair<V,S>> |
UnmodifiableFloatObjectMap.zip(java.lang.Iterable<S> that) |
Deprecated.
in 7.0. Use
OrderedIterable.zip(Iterable) instead. |
<S> MutableBag<Pair<V,S>> |
UnmodifiableIntObjectMap.zip(java.lang.Iterable<S> that) |
Deprecated.
in 7.0. Use
OrderedIterable.zip(Iterable) instead. |
<S> MutableBag<Pair<V,S>> |
UnmodifiableLongObjectMap.zip(java.lang.Iterable<S> that) |
Deprecated.
in 7.0. Use
OrderedIterable.zip(Iterable) instead. |
<S> MutableBag<Pair<V,S>> |
UnmodifiableShortObjectMap.zip(java.lang.Iterable<S> that) |
Deprecated.
in 7.0. Use
OrderedIterable.zip(Iterable) instead. |
MutableSet<Pair<V,java.lang.Integer>> |
ByteObjectHashMap.zipWithIndex() |
Deprecated.
in 7.0. Use
OrderedIterable.zipWithIndex() instead. |
MutableSet<Pair<V,java.lang.Integer>> |
CharObjectHashMap.zipWithIndex() |
Deprecated.
in 7.0. Use
OrderedIterable.zipWithIndex() instead. |
MutableSet<Pair<V,java.lang.Integer>> |
DoubleObjectHashMap.zipWithIndex() |
Deprecated.
in 7.0. Use
OrderedIterable.zipWithIndex() instead. |
MutableSet<Pair<V,java.lang.Integer>> |
FloatObjectHashMap.zipWithIndex() |
Deprecated.
in 7.0. Use
OrderedIterable.zipWithIndex() instead. |
MutableSet<Pair<V,java.lang.Integer>> |
IntObjectHashMap.zipWithIndex() |
Deprecated.
in 7.0. Use
OrderedIterable.zipWithIndex() instead. |
MutableSet<Pair<V,java.lang.Integer>> |
LongObjectHashMap.zipWithIndex() |
Deprecated.
in 7.0. Use
OrderedIterable.zipWithIndex() instead. |
MutableSet<Pair<V,java.lang.Integer>> |
ShortObjectHashMap.zipWithIndex() |
Deprecated.
in 7.0. Use
OrderedIterable.zipWithIndex() instead. |
MutableSet<Pair<V,java.lang.Integer>> |
SynchronizedByteObjectMap.zipWithIndex() |
Deprecated.
in 7.0. Use
OrderedIterable.zipWithIndex() instead. |
MutableSet<Pair<V,java.lang.Integer>> |
SynchronizedCharObjectMap.zipWithIndex() |
Deprecated.
in 7.0. Use
OrderedIterable.zipWithIndex() instead. |
MutableSet<Pair<V,java.lang.Integer>> |
SynchronizedDoubleObjectMap.zipWithIndex() |
Deprecated.
in 7.0. Use
OrderedIterable.zipWithIndex() instead. |
MutableSet<Pair<V,java.lang.Integer>> |
SynchronizedFloatObjectMap.zipWithIndex() |
Deprecated.
in 7.0. Use
OrderedIterable.zipWithIndex() instead. |
MutableSet<Pair<V,java.lang.Integer>> |
SynchronizedIntObjectMap.zipWithIndex() |
Deprecated.
in 7.0. Use
OrderedIterable.zipWithIndex() instead. |
MutableSet<Pair<V,java.lang.Integer>> |
SynchronizedLongObjectMap.zipWithIndex() |
Deprecated.
in 7.0. Use
OrderedIterable.zipWithIndex() instead. |
MutableSet<Pair<V,java.lang.Integer>> |
SynchronizedShortObjectMap.zipWithIndex() |
Deprecated.
in 7.0. Use
OrderedIterable.zipWithIndex() instead. |
MutableSet<Pair<V,java.lang.Integer>> |
UnmodifiableByteObjectMap.zipWithIndex() |
Deprecated.
in 7.0. Use
OrderedIterable.zipWithIndex() instead. |
MutableSet<Pair<V,java.lang.Integer>> |
UnmodifiableCharObjectMap.zipWithIndex() |
Deprecated.
in 7.0. Use
OrderedIterable.zipWithIndex() instead. |
MutableSet<Pair<V,java.lang.Integer>> |
UnmodifiableDoubleObjectMap.zipWithIndex() |
Deprecated.
in 7.0. Use
OrderedIterable.zipWithIndex() instead. |
MutableSet<Pair<V,java.lang.Integer>> |
UnmodifiableFloatObjectMap.zipWithIndex() |
Deprecated.
in 7.0. Use
OrderedIterable.zipWithIndex() instead. |
MutableSet<Pair<V,java.lang.Integer>> |
UnmodifiableIntObjectMap.zipWithIndex() |
Deprecated.
in 7.0. Use
OrderedIterable.zipWithIndex() instead. |
MutableSet<Pair<V,java.lang.Integer>> |
UnmodifiableLongObjectMap.zipWithIndex() |
Deprecated.
in 7.0. Use
OrderedIterable.zipWithIndex() instead. |
MutableSet<Pair<V,java.lang.Integer>> |
UnmodifiableShortObjectMap.zipWithIndex() |
Deprecated.
in 7.0. Use
OrderedIterable.zipWithIndex() instead. |
Modifier and Type | Method | Description |
---|---|---|
Pair<K,V> |
AbstractImmutableSortedMap.detect(Predicate2<? super K,? super V> predicate) |
Modifier and Type | Method | Description |
---|---|---|
java.util.Optional<Pair<K,V>> |
AbstractImmutableSortedMap.detectOptional(Predicate2<? super K,? super V> predicate) |
|
RichIterable<Pair<K,V>> |
ImmutableTreeMap.keyValuesView() |
|
<S> ImmutableList<Pair<V,S>> |
AbstractImmutableSortedMap.zip(java.lang.Iterable<S> that) |
|
ImmutableList<Pair<V,java.lang.Integer>> |
AbstractImmutableSortedMap.zipWithIndex() |
Modifier and Type | Method | Description |
---|---|---|
ImmutableSortedMap<K,V> |
AbstractImmutableSortedMap.newWithAllKeyValueArguments(Pair<? extends K,? extends V>... keyValuePairs) |
Modifier and Type | Method | Description |
---|---|---|
<K2,V2> ImmutableMap<K2,V2> |
AbstractImmutableSortedMap.collect(Function2<? super K,? super V,Pair<K2,V2>> function) |
|
ImmutableSortedMap<K,V> |
AbstractImmutableSortedMap.newWithAllKeyValues(java.lang.Iterable<? extends Pair<? extends K,? extends V>> keyValues) |
Modifier and Type | Method | Description |
---|---|---|
<S,R extends java.util.Collection<Pair<V,S>>> |
UnmodifiableTreeMap.zip(java.lang.Iterable<S> that,
R target) |
|
<R extends java.util.Collection<Pair<V,java.lang.Integer>>> |
UnmodifiableTreeMap.zipWithIndex(R target) |
Modifier and Type | Method | Description |
---|---|---|
Pair<K,V> |
UnmodifiableTreeMap.detect(Predicate2<? super K,? super V> predicate) |
Modifier and Type | Method | Description |
---|---|---|
java.util.Optional<Pair<K,V>> |
UnmodifiableTreeMap.detectOptional(Predicate2<? super K,? super V> predicate) |
|
RichIterable<Pair<K,V>> |
UnmodifiableTreeMap.keyValuesView() |
|
<S> MutableList<Pair<V,S>> |
AbstractMutableSortedMap.zip(java.lang.Iterable<S> that) |
|
<S> MutableList<Pair<V,S>> |
SynchronizedSortedMap.zip(java.lang.Iterable<S> that) |
|
<S> MutableList<Pair<V,S>> |
UnmodifiableTreeMap.zip(java.lang.Iterable<S> that) |
|
MutableList<Pair<V,java.lang.Integer>> |
AbstractMutableSortedMap.zipWithIndex() |
|
MutableList<Pair<V,java.lang.Integer>> |
SynchronizedSortedMap.zipWithIndex() |
|
MutableList<Pair<V,java.lang.Integer>> |
UnmodifiableTreeMap.zipWithIndex() |
Modifier and Type | Method | Description |
---|---|---|
V |
UnmodifiableTreeMap.add(Pair<K,V> keyValuePair) |
|
static <K,V> TreeSortedMap<K,V> |
TreeSortedMap.newMapWith(java.util.Comparator<? super K> comparator,
Pair<K,V>... pairs) |
|
static <K,V> TreeSortedMap<K,V> |
TreeSortedMap.newMapWith(Pair<K,V>... pairs) |
|
V |
UnmodifiableTreeMap.putPair(Pair<K,V> keyValuePair) |
|
MutableSortedMap<K,V> |
SortedMapAdapter.with(Pair<K,V>... pairs) |
|
MutableSortedMap<K,V> |
SynchronizedSortedMap.with(Pair<K,V>... pairs) |
Deprecated.
in 6.0 Use
SynchronizedSortedMap.withAllKeyValueArguments(Pair[]) instead. Inlineable. |
TreeSortedMap<K,V> |
TreeSortedMap.with(Pair<K,V>... pairs) |
|
MutableSortedMap<K,V> |
UnmodifiableTreeMap.with(Pair<K,V>... pairs) |
|
MutableSortedMap<K,V> |
AbstractMutableSortedMap.withAllKeyValueArguments(Pair<? extends K,? extends V>... keyValues) |
|
MutableSortedMap<K,V> |
SynchronizedSortedMap.withAllKeyValueArguments(Pair<? extends K,? extends V>... keyValuePairs) |
|
MutableSortedMap<K,V> |
UnmodifiableTreeMap.withAllKeyValueArguments(Pair<? extends K,? extends V>... keyValuePairs) |
Modifier and Type | Method | Description |
---|---|---|
<K2,V2> MutableMap<K2,V2> |
SynchronizedSortedMap.collect(Function2<? super K,? super V,Pair<K2,V2>> function) |
|
<K2,V2> MutableMap<K2,V2> |
UnmodifiableTreeMap.collect(Function2<? super K,? super V,Pair<K2,V2>> function) |
|
MutableSortedMap<K,V> |
AbstractMutableSortedMap.withAllKeyValues(java.lang.Iterable<? extends Pair<? extends K,? extends V>> keyValues) |
|
MutableSortedMap<K,V> |
SynchronizedSortedMap.withAllKeyValues(java.lang.Iterable<? extends Pair<? extends K,? extends V>> keyValues) |
|
MutableSortedMap<K,V> |
UnmodifiableTreeMap.withAllKeyValues(java.lang.Iterable<? extends Pair<? extends K,? extends V>> keyValues) |
Constructor | Description |
---|---|
TreeSortedMap(Pair<K,V>... pairs) |
Modifier and Type | Method | Description |
---|---|---|
RichIterable<Pair<K,V>> |
ImmutableUnifiedMapWithHashingStrategy.keyValuesView() |
Modifier and Type | Method | Description |
---|---|---|
ImmutableMap<K,V> |
ImmutableUnifiedMapWithHashingStrategy.newWithAllKeyValueArguments(Pair<? extends K,? extends V>... keyValuePairs) |
Modifier and Type | Method | Description |
---|---|---|
ImmutableMap<K,V> |
ImmutableUnifiedMapWithHashingStrategy.newWithAllKeyValues(java.lang.Iterable<? extends Pair<? extends K,? extends V>> keyValues) |
Constructor | Description |
---|---|
ImmutableUnifiedMapWithHashingStrategy(HashingStrategy<? super K> hashingStrategy,
Pair<K,V>... pairs) |
Modifier and Type | Method | Description |
---|---|---|
static <K,V> UnifiedMapWithHashingStrategy<K,V> |
UnifiedMapWithHashingStrategy.newMapWith(HashingStrategy<? super K> hashingStrategy,
Pair<K,V>... pairs) |
Modifier and Type | Method | Description |
---|---|---|
static <K,V> UnifiedMapWithHashingStrategy<K,V> |
UnifiedMapWithHashingStrategy.newMapWith(HashingStrategy<? super K> hashingStrategy,
java.lang.Iterable<Pair<K,V>> inputIterable) |
Constructor | Description |
---|---|
UnifiedMapWithHashingStrategy(HashingStrategy<? super K> hashingStrategy,
Pair<K,V>... pairs) |
Modifier and Type | Method | Description |
---|---|---|
RichIterable<Pair<K,RichIterable<V>>> |
AbstractMultimap.keyMultiValuePairsView() |
|
RichIterable<Pair<K,RichIterable<V>>> |
AbstractSynchronizedMultimap.keyMultiValuePairsView() |
|
RichIterable<Pair<K,V>> |
AbstractMultimap.keyValuePairsView() |
|
RichIterable<Pair<K,V>> |
AbstractSynchronizedMultimap.keyValuePairsView() |
Modifier and Type | Method | Description |
---|---|---|
boolean |
AbstractSynchronizedMultimap.add(Pair<K,V> keyValuePair) |
|
boolean |
AbstractSynchronizedMultimap.putAllPairs(Pair<K,V>... pairs) |
Modifier and Type | Method | Description |
---|---|---|
<K2,V2,R extends MutableMultimap<K2,V2>> |
AbstractMultimap.collectKeysValues(Function2<? super K,? super V,Pair<K2,V2>> function,
R target) |
|
<K2,V2,R extends MutableMultimap<K2,V2>> |
AbstractSynchronizedMultimap.collectKeysValues(Function2<? super K,? super V,Pair<K2,V2>> function,
R target) |
|
boolean |
AbstractSynchronizedMultimap.putAllPairs(java.lang.Iterable<Pair<K,V>> pairs) |
Modifier and Type | Method | Description |
---|---|---|
static <K,V> HashBagMultimap<K,V> |
HashBagMultimap.newMultimap(Pair<K,V>... pairs) |
|
static <K,V> MultiReaderHashBagMultimap<K,V> |
MultiReaderHashBagMultimap.newMultimap(Pair<K,V>... pairs) |
|
static <K,V> SynchronizedPutHashBagMultimap<K,V> |
SynchronizedPutHashBagMultimap.newMultimap(Pair<K,V>... pairs) |
|
static <K,V> TreeBagMultimap<K,V> |
TreeBagMultimap.newMultimap(Pair<K,V>... pairs) |
Deprecated.
|
Modifier and Type | Method | Description |
---|---|---|
<K2,V2> HashBagMultimap<K2,V2> |
AbstractMutableBagMultimap.collectKeysValues(Function2<? super K,? super V,Pair<K2,V2>> function) |
|
<K2,V2> ImmutableBagMultimap<K2,V2> |
ImmutableBagMultimapImpl.collectKeysValues(Function2<? super K,? super V,Pair<K2,V2>> function) |
|
<K2,V2> MutableBagMultimap<K2,V2> |
SynchronizedBagMultimap.collectKeysValues(Function2<? super K,? super V,Pair<K2,V2>> function) |
|
<K2,V2> HashBagMultimap<K2,V2> |
SynchronizedPutHashBagMultimap.collectKeysValues(Function2<? super K,? super V,Pair<K2,V2>> function) |
|
<K2,V2> HashBagMultimap<K2,V2> |
TreeBagMultimap.collectKeysValues(Function2<? super K,? super V,Pair<K2,V2>> function) |
Deprecated.
|
static <K,V> HashBagMultimap<K,V> |
HashBagMultimap.newMultimap(java.lang.Iterable<Pair<K,V>> inputIterable) |
|
static <K,V> MultiReaderHashBagMultimap<K,V> |
MultiReaderHashBagMultimap.newMultimap(java.lang.Iterable<Pair<K,V>> inputIterable) |
|
static <K,V> SynchronizedPutHashBagMultimap<K,V> |
SynchronizedPutHashBagMultimap.newMultimap(java.lang.Iterable<Pair<K,V>> inputIterable) |
Constructor | Description |
---|---|
HashBagMultimap(Pair<K,V>... pairs) |
|
MultiReaderHashBagMultimap(Pair<K,V>... pairs) |
|
SynchronizedPutHashBagMultimap(Pair<K,V>... pairs) |
|
TreeBagMultimap(Pair<K,V>... pairs) |
Deprecated.
|
Constructor | Description |
---|---|
HashBagMultimap(java.lang.Iterable<Pair<K,V>> inputIterable) |
|
MultiReaderHashBagMultimap(java.lang.Iterable<Pair<K,V>> inputIterable) |
|
SynchronizedPutHashBagMultimap(java.lang.Iterable<Pair<K,V>> inputIterable) |
Modifier and Type | Method | Description |
---|---|---|
static <K,V> TreeBagMultimap<K,V> |
TreeBagMultimap.newMultimap(Pair<K,V>... pairs) |
Deprecated.
|
Modifier and Type | Method | Description |
---|---|---|
<K2,V2> HashBagMultimap<K2,V2> |
TreeBagMultimap.collectKeysValues(Function2<? super K,? super V,Pair<K2,V2>> function) |
Deprecated.
|
static <K,V> TreeBagMultimap<K,V> |
TreeBagMultimap.newMultimap(java.lang.Iterable<Pair<K,V>> inputIterable) |
Deprecated.
|
Constructor | Description |
---|---|
TreeBagMultimap(Pair<K,V>... pairs) |
Deprecated.
|
Constructor | Description |
---|---|
TreeBagMultimap(java.lang.Iterable<Pair<K,V>> inputIterable) |
Deprecated.
|
Modifier and Type | Method | Description |
---|---|---|
<K2,V2> ImmutableBagMultimap<K2,V2> |
ImmutableSortedBagMultimapImpl.collectKeysValues(Function2<? super K,? super V,Pair<K2,V2>> function) |
Modifier and Type | Method | Description |
---|---|---|
static <K,V> TreeBagMultimap<K,V> |
TreeBagMultimap.newMultimap(Pair<K,V>... pairs) |
Modifier and Type | Method | Description |
---|---|---|
<K2,V2> MutableBagMultimap<K2,V2> |
SynchronizedSortedBagMultimap.collectKeysValues(Function2<? super K,? super V,Pair<K2,V2>> function) |
|
<K2,V2> HashBagMultimap<K2,V2> |
TreeBagMultimap.collectKeysValues(Function2<? super K,? super V,Pair<K2,V2>> function) |
|
static <K,V> TreeBagMultimap<K,V> |
TreeBagMultimap.newMultimap(java.lang.Iterable<Pair<K,V>> inputIterable) |
Constructor | Description |
---|---|
TreeBagMultimap(Pair<K,V>... pairs) |
Constructor | Description |
---|---|
TreeBagMultimap(java.lang.Iterable<Pair<K,V>> inputIterable) |
Modifier and Type | Method | Description |
---|---|---|
static <K,V> HashBagMultimapWithHashingStrategy<K,V> |
HashBagMultimapWithHashingStrategy.newMultimap(HashingStrategy<? super K> multimapHashingStrategy,
Pair<K,V>... pairs) |
Modifier and Type | Method | Description |
---|---|---|
static <K,V> HashBagMultimapWithHashingStrategy<K,V> |
HashBagMultimapWithHashingStrategy.newMultimap(HashingStrategy<? super K> multimapHashingStrategy,
java.lang.Iterable<Pair<K,V>> inputIterable) |
Constructor | Description |
---|---|
HashBagMultimapWithHashingStrategy(HashingStrategy<? super K> hashingStrategy,
Pair<K,V>... pairs) |
Constructor | Description |
---|---|
HashBagMultimapWithHashingStrategy(HashingStrategy<? super K> hashingStrategy,
java.lang.Iterable<Pair<K,V>> inputIterable) |
Modifier and Type | Method | Description |
---|---|---|
static <K,V> FastListMultimap<K,V> |
FastListMultimap.newMultimap(Pair<K,V>... pairs) |
|
static <K,V> MultiReaderFastListMultimap<K,V> |
MultiReaderFastListMultimap.newMultimap(Pair<K,V>... pairs) |
|
static <K,V> SynchronizedPutFastListMultimap<K,V> |
SynchronizedPutFastListMultimap.newMultimap(Pair<K,V>... pairs) |
Modifier and Type | Method | Description |
---|---|---|
<K2,V2> HashBagMultimap<K2,V2> |
AbstractMutableListMultimap.collectKeysValues(Function2<? super K,? super V,Pair<K2,V2>> function) |
|
<K2,V2> ImmutableBagMultimap<K2,V2> |
ImmutableListMultimapImpl.collectKeysValues(Function2<? super K,? super V,Pair<K2,V2>> function) |
|
<K2,V2> MutableBagMultimap<K2,V2> |
SynchronizedListMultimap.collectKeysValues(Function2<? super K,? super V,Pair<K2,V2>> function) |
|
<K2,V2> HashBagMultimap<K2,V2> |
SynchronizedPutFastListMultimap.collectKeysValues(Function2<? super K,? super V,Pair<K2,V2>> function) |
|
static <K,V> FastListMultimap<K,V> |
FastListMultimap.newMultimap(java.lang.Iterable<Pair<K,V>> inputIterable) |
|
static <K,V> MultiReaderFastListMultimap<K,V> |
MultiReaderFastListMultimap.newMultimap(java.lang.Iterable<Pair<K,V>> inputIterable) |
|
static <K,V> SynchronizedPutFastListMultimap<K,V> |
SynchronizedPutFastListMultimap.newMultimap(java.lang.Iterable<Pair<K,V>> inputIterable) |
Constructor | Description |
---|---|
FastListMultimap(Pair<K,V>... pairs) |
|
MultiReaderFastListMultimap(Pair<K,V>... pairs) |
|
SynchronizedPutFastListMultimap(Pair<K,V>... pairs) |
Constructor | Description |
---|---|
FastListMultimap(java.lang.Iterable<Pair<K,V>> inputIterable) |
|
MultiReaderFastListMultimap(java.lang.Iterable<Pair<K,V>> inputIterable) |
|
SynchronizedPutFastListMultimap(java.lang.Iterable<Pair<K,V>> inputIterable) |
Modifier and Type | Method | Description |
---|---|---|
static <K,V> MultiReaderUnifiedSetMultimap<K,V> |
MultiReaderUnifiedSetMultimap.newMultimap(Pair<K,V>... pairs) |
|
static <K,V> SynchronizedPutUnifiedSetMultimap<K,V> |
SynchronizedPutUnifiedSetMultimap.newMultimap(Pair<K,V>... pairs) |
|
static <K,V> UnifiedSetMultimap<K,V> |
UnifiedSetMultimap.newMultimap(Pair<K,V>... pairs) |
Modifier and Type | Method | Description |
---|---|---|
<K2,V2> MutableBagMultimap<K2,V2> |
AbstractMutableSetMultimap.collectKeysValues(Function2<? super K,? super V,Pair<K2,V2>> function) |
|
<K2,V2> ImmutableBagMultimap<K2,V2> |
ImmutableSetMultimapImpl.collectKeysValues(Function2<? super K,? super V,Pair<K2,V2>> function) |
|
<K2,V2> MutableBagMultimap<K2,V2> |
SynchronizedPutUnifiedSetMultimap.collectKeysValues(Function2<? super K,? super V,Pair<K2,V2>> function) |
|
<K2,V2> MutableBagMultimap<K2,V2> |
SynchronizedSetMultimap.collectKeysValues(Function2<? super K,? super V,Pair<K2,V2>> function) |
|
static <K,V> MultiReaderUnifiedSetMultimap<K,V> |
MultiReaderUnifiedSetMultimap.newMultimap(java.lang.Iterable<Pair<K,V>> inputIterable) |
|
static <K,V> SynchronizedPutUnifiedSetMultimap<K,V> |
SynchronizedPutUnifiedSetMultimap.newMultimap(java.lang.Iterable<Pair<K,V>> inputIterable) |
|
static <K,V> UnifiedSetMultimap<K,V> |
UnifiedSetMultimap.newMultimap(java.lang.Iterable<Pair<K,V>> inputIterable) |
Constructor | Description |
---|---|
MultiReaderUnifiedSetMultimap(Pair<K,V>... pairs) |
|
SynchronizedPutUnifiedSetMultimap(Pair<K,V>... pairs) |
|
UnifiedSetMultimap(Pair<K,V>... pairs) |
Constructor | Description |
---|---|
MultiReaderUnifiedSetMultimap(java.lang.Iterable<Pair<K,V>> inputIterable) |
|
SynchronizedPutUnifiedSetMultimap(java.lang.Iterable<Pair<K,V>> inputIterable) |
|
UnifiedSetMultimap(java.lang.Iterable<Pair<K,V>> inputIterable) |
Modifier and Type | Method | Description |
---|---|---|
static <K,V> SynchronizedPutTreeSortedSetMultimap<K,V> |
SynchronizedPutTreeSortedSetMultimap.newMultimap(Pair<K,V>... pairs) |
|
static <K,V> TreeSortedSetMultimap<K,V> |
TreeSortedSetMultimap.newMultimap(Pair<K,V>... pairs) |
Modifier and Type | Method | Description |
---|---|---|
<K2,V2> ImmutableBagMultimap<K2,V2> |
ImmutableSortedSetMultimapImpl.collectKeysValues(Function2<? super K,? super V,Pair<K2,V2>> function) |
|
<K2,V2> HashBagMultimap<K2,V2> |
SynchronizedPutTreeSortedSetMultimap.collectKeysValues(Function2<? super K,? super V,Pair<K2,V2>> function) |
|
<K2,V2> MutableBagMultimap<K2,V2> |
SynchronizedSortedSetMultimap.collectKeysValues(Function2<? super K,? super V,Pair<K2,V2>> function) |
|
<K2,V2> HashBagMultimap<K2,V2> |
TreeSortedSetMultimap.collectKeysValues(Function2<? super K,? super V,Pair<K2,V2>> function) |
|
static <K,V> SynchronizedPutTreeSortedSetMultimap<K,V> |
SynchronizedPutTreeSortedSetMultimap.newMultimap(java.lang.Iterable<Pair<K,V>> inputIterable) |
|
static <K,V> TreeSortedSetMultimap<K,V> |
TreeSortedSetMultimap.newMultimap(java.lang.Iterable<Pair<K,V>> inputIterable) |
Constructor | Description |
---|---|
SynchronizedPutTreeSortedSetMultimap(Pair<K,V>... pairs) |
|
TreeSortedSetMultimap(Pair<K,V>... pairs) |
Constructor | Description |
---|---|
SynchronizedPutTreeSortedSetMultimap(java.lang.Iterable<Pair<K,V>> inputIterable) |
|
TreeSortedSetMultimap(java.lang.Iterable<Pair<K,V>> inputIterable) |
Modifier and Type | Method | Description |
---|---|---|
static <K,V> UnifiedSetWithHashingStrategyMultimap<K,V> |
UnifiedSetWithHashingStrategyMultimap.newMultimap(HashingStrategy<? super V> hashingStrategy,
Pair<K,V>... pairs) |
Modifier and Type | Method | Description |
---|---|---|
static <K,V> UnifiedSetWithHashingStrategyMultimap<K,V> |
UnifiedSetWithHashingStrategyMultimap.newMultimap(HashingStrategy<? super V> hashingStrategy,
java.lang.Iterable<Pair<K,V>> inputIterable) |
Constructor | Description |
---|---|
UnifiedSetWithHashingStrategyMultimap(HashingStrategy<? super V> hashingStrategy,
Pair<K,V>... pairs) |
Constructor | Description |
---|---|
UnifiedSetWithHashingStrategyMultimap(HashingStrategy<? super V> hashingStrategy,
java.lang.Iterable<Pair<K,V>> inputIterable) |
Modifier and Type | Method | Description |
---|---|---|
<B> LazyIterable<Pair<T,B>> |
AbstractUnifiedSet.cartesianProduct(SetIterable<B> set) |
|
<S> MutableSet<Pair<T,S>> |
AbstractUnifiedSet.zip(java.lang.Iterable<S> that) |
Deprecated.
in 6.0. Use
OrderedIterable.zip(Iterable) instead. |
MutableSet<Pair<T,java.lang.Integer>> |
AbstractUnifiedSet.zipWithIndex() |
Deprecated.
in 6.0. Use
OrderedIterable.zipWithIndex() instead. |
Modifier and Type | Method | Description |
---|---|---|
<B> LazyIterable<Pair<T,B>> |
AbstractImmutableSet.cartesianProduct(SetIterable<B> set) |
|
<S> ImmutableSet<Pair<T,S>> |
AbstractImmutableSet.zip(java.lang.Iterable<S> that) |
Deprecated.
in 6.0. Use
OrderedIterable.zip(Iterable) instead. |
ImmutableSet<Pair<T,java.lang.Integer>> |
AbstractImmutableSet.zipWithIndex() |
Deprecated.
in 6.0. Use
OrderedIterable.zipWithIndex() instead. |
Modifier and Type | Method | Description |
---|---|---|
<S,R extends java.util.Collection<Pair<T,S>>> |
UnmodifiableMutableSet.zip(java.lang.Iterable<S> that,
R target) |
|
<R extends java.util.Collection<Pair<T,java.lang.Integer>>> |
UnmodifiableMutableSet.zipWithIndex(R target) |
Modifier and Type | Method | Description |
---|---|---|
<B> LazyIterable<Pair<T,B>> |
AbstractMutableSet.cartesianProduct(SetIterable<B> set) |
|
<B> LazyIterable<Pair<T,B>> |
MultiReaderUnifiedSet.cartesianProduct(SetIterable<B> set) |
|
<B> LazyIterable<Pair<T,B>> |
SetAdapter.cartesianProduct(SetIterable<B> set) |
|
<B> LazyIterable<Pair<T,B>> |
SynchronizedMutableSet.cartesianProduct(SetIterable<B> set) |
|
<B> LazyIterable<Pair<T,B>> |
UnmodifiableMutableSet.cartesianProduct(SetIterable<B> set) |
|
<S> MutableSet<Pair<T,S>> |
AbstractMutableSet.zip(java.lang.Iterable<S> that) |
Deprecated.
in 6.0. Use
OrderedIterable.zip(Iterable) instead. |
<S> MutableSet<Pair<T,S>> |
MultiReaderUnifiedSet.zip(java.lang.Iterable<S> that) |
Deprecated.
in 6.0. Use
OrderedIterable.zip(Iterable) instead. |
<S> MutableSet<Pair<T,S>> |
SetAdapter.zip(java.lang.Iterable<S> that) |
Deprecated.
in 6.0. Use
OrderedIterable.zip(Iterable) instead. |
<S> MutableSet<Pair<T,S>> |
SynchronizedMutableSet.zip(java.lang.Iterable<S> that) |
Deprecated.
in 6.0. Use
OrderedIterable.zip(Iterable) instead. |
<S> MutableSet<Pair<T,S>> |
UnmodifiableMutableSet.zip(java.lang.Iterable<S> that) |
Deprecated.
in 6.0. Use
OrderedIterable.zip(Iterable) instead. |
MutableSet<Pair<T,java.lang.Integer>> |
AbstractMutableSet.zipWithIndex() |
Deprecated.
in 6.0. Use
OrderedIterable.zipWithIndex() instead. |
MutableSet<Pair<T,java.lang.Integer>> |
MultiReaderUnifiedSet.zipWithIndex() |
Deprecated.
in 6.0. Use
OrderedIterable.zipWithIndex() instead. |
MutableSet<Pair<T,java.lang.Integer>> |
SetAdapter.zipWithIndex() |
Deprecated.
in 6.0. Use
OrderedIterable.zipWithIndex() instead. |
MutableSet<Pair<T,java.lang.Integer>> |
SynchronizedMutableSet.zipWithIndex() |
Deprecated.
in 6.0. Use
OrderedIterable.zipWithIndex() instead. |
MutableSet<Pair<T,java.lang.Integer>> |
UnmodifiableMutableSet.zipWithIndex() |
Deprecated.
in 6.0. Use
OrderedIterable.zipWithIndex() instead. |
Modifier and Type | Method | Description |
---|---|---|
<S,R extends java.util.Collection<Pair<T,S>>> |
UnmodifiableSortedSet.zip(java.lang.Iterable<S> that,
R target) |
|
<R extends java.util.Collection<Pair<T,java.lang.Integer>>> |
UnmodifiableSortedSet.zipWithIndex(R target) |
Modifier and Type | Method | Description |
---|---|---|
<B> LazyIterable<Pair<T,B>> |
SortedSetAdapter.cartesianProduct(SetIterable<B> set) |
|
<B> LazyIterable<Pair<T,B>> |
SynchronizedSortedSet.cartesianProduct(SetIterable<B> set) |
|
<B> LazyIterable<Pair<T,B>> |
TreeSortedSet.cartesianProduct(SetIterable<B> set) |
|
<B> LazyIterable<Pair<T,B>> |
UnmodifiableSortedSet.cartesianProduct(SetIterable<B> set) |
|
<S> MutableList<Pair<T,S>> |
SortedSetAdapter.zip(java.lang.Iterable<S> that) |
|
<S> MutableList<Pair<T,S>> |
SynchronizedSortedSet.zip(java.lang.Iterable<S> that) |
|
<S> MutableList<Pair<T,S>> |
TreeSortedSet.zip(java.lang.Iterable<S> that) |
|
<S> MutableList<Pair<T,S>> |
UnmodifiableSortedSet.zip(java.lang.Iterable<S> that) |
|
MutableSortedSet<Pair<T,java.lang.Integer>> |
SortedSetAdapter.zipWithIndex() |
|
MutableSortedSet<Pair<T,java.lang.Integer>> |
SynchronizedSortedSet.zipWithIndex() |
|
TreeSortedSet<Pair<T,java.lang.Integer>> |
TreeSortedSet.zipWithIndex() |
|
MutableSortedSet<Pair<T,java.lang.Integer>> |
UnmodifiableSortedSet.zipWithIndex() |
Modifier and Type | Method | Description |
---|---|---|
<S,R extends java.util.Collection<Pair<T,S>>> |
ArrayStack.zip(java.lang.Iterable<S> that,
R target) |
|
<S,R extends java.util.Collection<Pair<T,S>>> |
SynchronizedStack.zip(java.lang.Iterable<S> that,
R target) |
|
<S,R extends java.util.Collection<Pair<T,S>>> |
UnmodifiableStack.zip(java.lang.Iterable<S> that,
R target) |
|
<R extends java.util.Collection<Pair<T,java.lang.Integer>>> |
ArrayStack.zipWithIndex(R target) |
|
<R extends java.util.Collection<Pair<T,java.lang.Integer>>> |
SynchronizedStack.zipWithIndex(R target) |
|
<R extends java.util.Collection<Pair<T,java.lang.Integer>>> |
UnmodifiableStack.zipWithIndex(R target) |
Modifier and Type | Method | Description |
---|---|---|
<S> ArrayStack<Pair<T,S>> |
ArrayStack.zip(java.lang.Iterable<S> that) |
|
<S> MutableStack<Pair<T,S>> |
SynchronizedStack.zip(java.lang.Iterable<S> that) |
|
<S> MutableStack<Pair<T,S>> |
UnmodifiableStack.zip(java.lang.Iterable<S> that) |
|
ArrayStack<Pair<T,java.lang.Integer>> |
ArrayStack.zipWithIndex() |
|
MutableStack<Pair<T,java.lang.Integer>> |
SynchronizedStack.zipWithIndex() |
|
MutableStack<Pair<T,java.lang.Integer>> |
UnmodifiableStack.zipWithIndex() |
Modifier and Type | Method | Description |
---|---|---|
static <T1,T2> Pair<T1,T2> |
Tuples.pair(T1 one,
T2 two) |
|
static <K,V> Pair<K,V> |
Tuples.pairFrom(java.util.Map.Entry<K,V> entry) |
Modifier and Type | Method | Description |
---|---|---|
static <K,V> Function<java.util.Map.Entry<K,V>,Pair<K,V>> |
AbstractImmutableEntry.getPairFunction() |
Modifier and Type | Method | Description |
---|---|---|
static <X,Y,R extends java.util.Collection<Pair<X,Y>>> |
ArrayIterate.zip(X[] xs,
Y[] ys,
R targetCollection) |
|
static <X,Y,R extends java.util.Collection<Pair<X,Y>>> |
ArrayListIterate.zip(java.util.ArrayList<X> xs,
java.lang.Iterable<Y> ys,
R targetCollection) |
|
static <X,Y,R extends java.util.Collection<Pair<X,Y>>> |
Iterate.zip(java.lang.Iterable<X> xs,
java.lang.Iterable<Y> ys,
R targetCollection) |
|
static <X,Y,R extends java.util.Collection<Pair<X,Y>>> |
ListIterate.zip(java.util.List<X> list,
java.lang.Iterable<Y> iterable,
R target) |
|
static <T,R extends java.util.Collection<Pair<T,java.lang.Integer>>> |
ArrayIterate.zipWithIndex(T[] array,
R targetCollection) |
|
static <T,R extends java.util.Collection<Pair<T,java.lang.Integer>>> |
ArrayListIterate.zipWithIndex(java.util.ArrayList<T> list,
R targetCollection) |
|
static <T,R extends java.util.Collection<Pair<T,java.lang.Integer>>> |
Iterate.zipWithIndex(java.lang.Iterable<T> iterable,
R targetCollection) |
|
static <T,R extends java.util.Collection<Pair<T,java.lang.Integer>>> |
ListIterate.zipWithIndex(java.util.List<T> list,
R target) |
Modifier and Type | Method | Description |
---|---|---|
static <K,V> Pair<K,V> |
MapIterate.detect(java.util.Map<K,V> map,
Predicate2<? super K,? super V> predicate) |
Modifier and Type | Method | Description |
---|---|---|
static <K,V> java.util.Optional<Pair<K,V>> |
MapIterate.detectOptional(java.util.Map<K,V> map,
Predicate2<? super K,? super V> predicate) |
|
static <K,V> MutableList<Pair<K,V>> |
MapIterate.toListOfPairs(java.util.Map<K,V> map) |
Iterate over the specified map applying the specified Function to each value
and return the results as a List.
|
static <X,Y> MutableList<Pair<X,Y>> |
ArrayIterate.zip(X[] xs,
Y[] ys) |
|
static <X,Y> MutableList<Pair<X,Y>> |
ArrayListIterate.zip(java.util.ArrayList<X> xs,
java.lang.Iterable<Y> ys) |
|
static <X,Y> java.util.Collection<Pair<X,Y>> |
Iterate.zip(java.lang.Iterable<X> xs,
java.lang.Iterable<Y> ys) |
|
static <A,B> LazyIterable<Pair<A,B>> |
LazyIterate.zip(java.lang.Iterable<A> as,
java.lang.Iterable<B> bs) |
|
static <X,Y> MutableList<Pair<X,Y>> |
ListIterate.zip(java.util.List<X> list,
java.lang.Iterable<Y> iterable) |
|
static <T> MutableList<Pair<T,java.lang.Integer>> |
ArrayIterate.zipWithIndex(T... array) |
|
static <T> MutableList<Pair<T,java.lang.Integer>> |
ArrayListIterate.zipWithIndex(java.util.ArrayList<T> list) |
|
static <T> java.util.Collection<Pair<T,java.lang.Integer>> |
Iterate.zipWithIndex(java.lang.Iterable<T> iterable) |
|
static <T> LazyIterable<Pair<T,java.lang.Integer>> |
LazyIterate.zipWithIndex(java.lang.Iterable<T> iterable) |
|
static <T> MutableList<Pair<T,java.lang.Integer>> |
ListIterate.zipWithIndex(java.util.List<T> list) |
Modifier and Type | Method | Description |
---|---|---|
static <K,V,K2,V2> |
MapIterate.collect(java.util.Map<K,V> map,
Function2<? super K,? super V,Pair<K2,V2>> function) |
For each value of the map, the function is evaluated with the key and value as the parameter.
|
static <K1,V1,K2,V2,R extends java.util.Map<K2,V2>> |
MapIterate.collect(java.util.Map<K1,V1> map,
Function2<? super K1,? super V1,Pair<K2,V2>> function,
R target) |
For each value of the map, the function is evaluated with the key and value as the parameter.
|
static <K1,V1,K2,V2> |
MapIterate.collectIf(java.util.Map<K1,V1> map,
Function2<? super K1,? super V1,Pair<K2,V2>> function,
Predicate2<? super K1,? super V1> predicate) |
For each value of the map, the Predicate2 is evaluated with the key and value as the parameter,
and if true, then
function is applied. |
static <K1,V1,K2,V2> |
MapIterate.collectIf(java.util.Map<K1,V1> map,
Function2<? super K1,? super V1,Pair<K2,V2>> function,
Predicate2<? super K1,? super V1> predicate,
java.util.Map<K2,V2> target) |
For each value of the map, the Predicate2 is evaluated with the key and value as the parameter,
and if true, then
function is applied. |
Modifier and Type | Method | Description |
---|---|---|
static <X,Y,R extends java.util.Collection<Pair<X,Y>>> |
IterableIterate.zip(java.lang.Iterable<X> xs,
java.lang.Iterable<Y> ys,
R target) |
|
static <X,Y,R extends java.util.Collection<Pair<X,Y>>> |
IteratorIterate.zip(java.util.Iterator<X> xs,
java.util.Iterator<Y> ys,
R target) |
|
static <X,Y,R extends java.util.Collection<Pair<X,Y>>> |
RandomAccessListIterate.zip(java.util.List<X> list,
java.lang.Iterable<Y> iterable,
R target) |
|
static <T,R extends java.util.Collection<Pair<T,java.lang.Integer>>> |
IterableIterate.zipWithIndex(java.lang.Iterable<T> iterable,
R target) |
|
static <T,R extends java.util.Collection<Pair<T,java.lang.Integer>>> |
IteratorIterate.zipWithIndex(java.util.Iterator<T> iterator,
R target) |
|
static <T,R extends java.util.Collection<Pair<T,java.lang.Integer>>> |
RandomAccessListIterate.zipWithIndex(java.util.List<T> list,
R target) |
Modifier and Type | Method | Description |
---|---|---|
static <A,B> LazyIterable<Pair<A,B>> |
SetIterables.cartesianProduct(SetIterable<A> set1,
SetIterable<B> set2) |
|
static <X,Y> MutableList<Pair<X,Y>> |
IterableIterate.zip(java.lang.Iterable<X> xs,
java.lang.Iterable<Y> ys) |
|
static <X,Y> MutableList<Pair<X,Y>> |
RandomAccessListIterate.zip(java.util.List<X> list,
java.lang.Iterable<Y> iterable) |
|
static <T> MutableList<Pair<T,java.lang.Integer>> |
IterableIterate.zipWithIndex(java.lang.Iterable<T> iterable) |
|
static <T> MutableList<Pair<T,java.lang.Integer>> |
RandomAccessListIterate.zipWithIndex(java.util.List<T> list) |
Copyright © 2004–2018. All rights reserved.