Package | Description |
---|---|
com.gs.collections.api.collection | |
com.gs.collections.api.map |
This package contains interfaces for map API which enhance the performance and functionality of
Map |
com.gs.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.
|
com.gs.collections.api.partition.bag |
This package contains interfaces for
PartitionBag . |
com.gs.collections.api.partition.bag.sorted |
This package contains interfaces for
PartitionSortedBag . |
com.gs.collections.api.partition.list |
This package contains interfaces for
PartitionList . |
com.gs.collections.api.partition.set |
This package contains interfaces for
PartitionSet . |
com.gs.collections.api.partition.set.sorted |
This package contains interfaces for
PartitionSortedSet . |
com.gs.collections.impl.block.procedure |
This package contains implementations of
Procedure and Procedure2 . |
com.gs.collections.impl.collection.mutable |
This package contains implementations of the
MutableCollection interface. |
com.gs.collections.impl.map.mutable |
This package contains implementations of the
MutableMap interface. |
com.gs.collections.impl.map.mutable.primitive |
This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.
|
com.gs.collections.impl.partition.bag |
This package contains implementations of the
PartitionBag interface. |
com.gs.collections.impl.partition.bag.sorted |
This package contains implementations of the
PartitionSortedBag interface. |
com.gs.collections.impl.partition.list |
This package contains implementations of the
PartitionList interface. |
com.gs.collections.impl.partition.set |
This package contains implementations of the
PartitionSet interface. |
com.gs.collections.impl.partition.set.sorted |
This package contains implementations of the
PartitionSet interface. |
com.gs.collections.impl.partition.set.strategy |
This package contains implementations of the
PartitionMutableSet interface. |
com.gs.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 |
---|---|
PartitionMutableCollection<T> |
MutableCollection.partition(Predicate<? super T> predicate) |
<P> PartitionMutableCollection<T> |
MutableCollection.partitionWith(Predicate2<? super T,? super P> predicate,
P parameter) |
Modifier and Type | Method and Description |
---|---|
PartitionMutableCollection<V> |
MutableMap.partition(Predicate<? super V> predicate) |
<P> PartitionMutableCollection<V> |
MutableMap.partitionWith(Predicate2<? super V,? super P> predicate,
P parameter) |
Modifier and Type | Method and Description |
---|---|
PartitionMutableCollection<V> |
MutablePrimitiveObjectMap.partition(Predicate<? super V> predicate) |
<P> PartitionMutableCollection<V> |
MutablePrimitiveObjectMap.partitionWith(Predicate2<? super V,? super P> predicate,
P parameter) |
Modifier and Type | Interface and Description |
---|---|
interface |
PartitionMutableBag<T>
A PartitionMutableBag is the result of splitting a mutable bag into two mutable bags based on a Predicate.
|
Modifier and Type | Interface and Description |
---|---|
interface |
PartitionMutableSortedBag<T> |
Modifier and Type | Interface and Description |
---|---|
interface |
PartitionMutableList<T>
A PartitionMutableList is the result of splitting a mutable list into two mutable lists based on a Predicate.
|
Modifier and Type | Interface and Description |
---|---|
interface |
PartitionMutableSet<T>
A PartitionMutableSet is the result of splitting a mutable set into two mutable sets based on a Predicate.
|
Modifier and Type | Interface and Description |
---|---|
interface |
PartitionMutableSortedSet<T>
A PartitionMutableSortedSet is the result of splitting a mutable sorted set into two mutable sorted sets based on a Predicate.
|
Constructor and Description |
---|
PartitionPredicate2Procedure(Predicate2<? super T,? super P> predicate,
P parameter,
PartitionMutableCollection<T> partitionMutableCollection) |
PartitionProcedure(Predicate<? super T> predicate,
PartitionMutableCollection<T> partitionMutableCollection) |
Modifier and Type | Method and Description |
---|---|
PartitionMutableCollection<T> |
AbstractUnmodifiableMutableCollection.partition(Predicate<? super T> predicate) |
PartitionMutableCollection<T> |
AbstractCollectionAdapter.partition(Predicate<? super T> predicate) |
PartitionMutableCollection<T> |
AbstractSynchronizedMutableCollection.partition(Predicate<? super T> predicate) |
<P> PartitionMutableCollection<T> |
AbstractUnmodifiableMutableCollection.partitionWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> PartitionMutableCollection<T> |
AbstractCollectionAdapter.partitionWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> PartitionMutableCollection<T> |
AbstractSynchronizedMutableCollection.partitionWith(Predicate2<? super T,? super P> predicate,
P parameter) |
Modifier and Type | Method and Description |
---|---|
PartitionMutableCollection<V> |
UnmodifiableMutableMap.partition(Predicate<? super V> predicate) |
PartitionMutableCollection<V> |
SynchronizedMutableMap.partition(Predicate<? super V> predicate) |
<P> PartitionMutableCollection<V> |
UnmodifiableMutableMap.partitionWith(Predicate2<? super V,? super P> predicate,
P parameter) |
<P> PartitionMutableCollection<V> |
SynchronizedMutableMap.partitionWith(Predicate2<? super V,? super P> predicate,
P parameter) |
Modifier and Type | Method and Description |
---|---|
PartitionMutableCollection<V> |
SynchronizedLongObjectMap.partition(Predicate<? super V> predicate) |
PartitionMutableCollection<V> |
SynchronizedByteObjectMap.partition(Predicate<? super V> predicate) |
PartitionMutableCollection<V> |
SynchronizedIntObjectMap.partition(Predicate<? super V> predicate) |
PartitionMutableCollection<V> |
SynchronizedShortObjectMap.partition(Predicate<? super V> predicate) |
PartitionMutableCollection<V> |
SynchronizedDoubleObjectMap.partition(Predicate<? super V> predicate) |
PartitionMutableCollection<V> |
UnmodifiableShortObjectMap.partition(Predicate<? super V> predicate) |
PartitionMutableCollection<V> |
SynchronizedFloatObjectMap.partition(Predicate<? super V> predicate) |
PartitionMutableCollection<V> |
UnmodifiableByteObjectMap.partition(Predicate<? super V> predicate) |
PartitionMutableCollection<V> |
UnmodifiableFloatObjectMap.partition(Predicate<? super V> predicate) |
PartitionMutableCollection<V> |
UnmodifiableCharObjectMap.partition(Predicate<? super V> predicate) |
PartitionMutableCollection<V> |
UnmodifiableDoubleObjectMap.partition(Predicate<? super V> predicate) |
PartitionMutableCollection<V> |
UnmodifiableLongObjectMap.partition(Predicate<? super V> predicate) |
PartitionMutableCollection<V> |
UnmodifiableIntObjectMap.partition(Predicate<? super V> predicate) |
PartitionMutableCollection<V> |
SynchronizedCharObjectMap.partition(Predicate<? super V> predicate) |
<P> PartitionMutableCollection<V> |
SynchronizedLongObjectMap.partitionWith(Predicate2<? super V,? super P> predicate,
P parameter) |
<P> PartitionMutableCollection<V> |
SynchronizedByteObjectMap.partitionWith(Predicate2<? super V,? super P> predicate,
P parameter) |
<P> PartitionMutableCollection<V> |
SynchronizedIntObjectMap.partitionWith(Predicate2<? super V,? super P> predicate,
P parameter) |
<P> PartitionMutableCollection<V> |
SynchronizedShortObjectMap.partitionWith(Predicate2<? super V,? super P> predicate,
P parameter) |
<P> PartitionMutableCollection<V> |
SynchronizedDoubleObjectMap.partitionWith(Predicate2<? super V,? super P> predicate,
P parameter) |
<P> PartitionMutableCollection<V> |
UnmodifiableShortObjectMap.partitionWith(Predicate2<? super V,? super P> predicate,
P parameter) |
<P> PartitionMutableCollection<V> |
SynchronizedFloatObjectMap.partitionWith(Predicate2<? super V,? super P> predicate,
P parameter) |
<P> PartitionMutableCollection<V> |
UnmodifiableByteObjectMap.partitionWith(Predicate2<? super V,? super P> predicate,
P parameter) |
<P> PartitionMutableCollection<V> |
UnmodifiableFloatObjectMap.partitionWith(Predicate2<? super V,? super P> predicate,
P parameter) |
<P> PartitionMutableCollection<V> |
UnmodifiableCharObjectMap.partitionWith(Predicate2<? super V,? super P> predicate,
P parameter) |
<P> PartitionMutableCollection<V> |
UnmodifiableDoubleObjectMap.partitionWith(Predicate2<? super V,? super P> predicate,
P parameter) |
<P> PartitionMutableCollection<V> |
UnmodifiableLongObjectMap.partitionWith(Predicate2<? super V,? super P> predicate,
P parameter) |
<P> PartitionMutableCollection<V> |
UnmodifiableIntObjectMap.partitionWith(Predicate2<? super V,? super P> predicate,
P parameter) |
<P> PartitionMutableCollection<V> |
SynchronizedCharObjectMap.partitionWith(Predicate2<? super V,? super P> predicate,
P parameter) |
Modifier and Type | Class and Description |
---|---|
class |
PartitionHashBag<T> |
Modifier and Type | Class and Description |
---|---|
class |
PartitionTreeBag<T> |
Modifier and Type | Class and Description |
---|---|
class |
PartitionFastList<T> |
Modifier and Type | Class and Description |
---|---|
class |
PartitionUnifiedSet<T> |
Modifier and Type | Class and Description |
---|---|
class |
PartitionTreeSortedSet<T> |
Modifier and Type | Class and Description |
---|---|
class |
PartitionUnifiedSetWithHashingStrategy<T> |
Modifier and Type | Method and Description |
---|---|
static <T,R extends PartitionMutableCollection<T>> |
IterableIterate.partitionWhile(Iterable<T> iterable,
Predicate<? super T> predicate,
R target) |
static <T,R extends PartitionMutableCollection<T>> |
IteratorIterate.partitionWhile(Iterator<T> iterator,
Predicate<? super T> predicate,
R target) |
Copyright © 2004–2019. All rights reserved.