Package | Description |
---|---|
com.gs.collections.api |
This package contains interfaces for GS Collections API.
|
com.gs.collections.api.partition |
This package contains interfaces for
PartitionIterable . |
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.ordered | |
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.api.partition.stack |
This package contains interfaces for
PartitionStack . |
com.gs.collections.impl |
This package contains implementations for GS Collections API.
|
com.gs.collections.impl.map.sorted.immutable |
This package contains implementations of the
MutableSortedMap interface. |
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.partition.stack |
This package contains implementations of the
PartitionStack interface. |
com.gs.collections.impl.utility |
This package contains static utilities that provide iteration pattern implementations which work with JCF collections.
|
Modifier and Type | Method and Description |
---|---|
PartitionIterable<T> |
RichIterable.partition(Predicate<? super T> predicate)
Filters a collection into a PartitionedIterable based on the evaluation of the predicate.
|
<P> PartitionIterable<T> |
RichIterable.partitionWith(Predicate2<? super T,? super P> predicate,
P parameter)
Filters a collection into a PartitionIterable based on the evaluation of the predicate.
|
Modifier and Type | Interface and Description |
---|---|
interface |
PartitionImmutableCollection<T>
A PartitionImmutableCollection is the result of splitting an immutable collection into two immutable collections based
on a Predicate.
|
interface |
PartitionMutableCollection<T>
A PartitionMutableCollection is the result of splitting a mutable collection into two mutable collections based on a Predicate.
|
Modifier and Type | Interface and Description |
---|---|
interface |
PartitionBag<T>
A PartitionBag is the result of splitting a bag into two Bags based on a Predicate.
|
interface |
PartitionImmutableBag<T>
A PartitionImmutableBag is the result of splitting an immutable bag into two immutable bags based on a Predicate.
|
interface |
PartitionMutableBag<T>
A PartitionMutableBag is the result of splitting a mutable bag into two mutable bags based on a Predicate.
|
interface |
PartitionUnsortedBag<T> |
Modifier and Type | Interface and Description |
---|---|
interface |
PartitionImmutableSortedBag<T>
A PartitionImmutableSortedBag is the result of splitting an immutable sorted bag into two immutable sorted bags based
on a Predicate.
|
interface |
PartitionMutableSortedBag<T> |
interface |
PartitionSortedBag<T> |
Modifier and Type | Interface and Description |
---|---|
interface |
PartitionImmutableList<T>
A PartitionImmutableList is the result of splitting an immutable list into two immutable lists based on a Predicate.
|
interface |
PartitionList<T>
A PartitionList is the result of splitting a ListIterable into two ListIterables based on a Predicate.
|
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 |
PartitionReversibleIterable<T>
A PartitionReversibleIterable is the result of splitting a ReversibleIterable into two ReversibleIterables based on a Predicate.
|
interface |
PartitionSortedIterable<T>
A PartitionSortedIterable is the result of splitting a SortedIterable into two SortedIterables based on a Predicate.
|
Modifier and Type | Interface and Description |
---|---|
interface |
PartitionImmutableSet<T>
A PartitionImmutableSet is the result of splitting an immutable set into two immutable sets based on a Predicate.
|
interface |
PartitionMutableSet<T>
A PartitionMutableSet is the result of splitting a mutable set into two mutable sets based on a Predicate.
|
interface |
PartitionSet<T>
A PartitionSet is the result of splitting a SetIterable into two SetIterables based on a Predicate.
|
interface |
PartitionUnsortedSet<T>
A PartitionUnsortedSet is the result of splitting two UnsortedSetIterable on a Predicate.
|
Modifier and Type | Interface and Description |
---|---|
interface |
PartitionImmutableSortedSet<T>
A PartitionImmutableSortedSet is the result of splitting an immutable sorted set into two immutable sorted sets based
on a Predicate.
|
interface |
PartitionMutableSortedSet<T>
A PartitionMutableSortedSet is the result of splitting a mutable sorted set into two mutable sorted sets based on a Predicate.
|
interface |
PartitionSortedSet<T>
A PartitionSortedSet is the result of splitting a SortedSetIterable into two SortedSetIterables based on a Predicate.
|
Modifier and Type | Interface and Description |
---|---|
interface |
PartitionImmutableStack<T>
A PartitionImmutableStack is the result of splitting an immutable stack into two immutable stacks based on a Predicate.
|
interface |
PartitionMutableStack<T>
A PartitionMutableStack is the result of splitting a mutable stack into two mutable stacks on a Predicate.
|
interface |
PartitionStack<T>
A PartitionStack is the result of splitting a StackIterable into two StackIterables based on a Predicate.
|
Modifier and Type | Method and Description |
---|---|
PartitionIterable<T> |
SynchronizedRichIterable.partition(Predicate<? super T> predicate) |
PartitionIterable<T> |
UnmodifiableRichIterable.partition(Predicate<? super T> predicate) |
<P> PartitionIterable<T> |
SynchronizedRichIterable.partitionWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> PartitionIterable<T> |
UnmodifiableRichIterable.partitionWith(Predicate2<? super T,? super P> predicate,
P parameter) |
Modifier and Type | Method and Description |
---|---|
<P> PartitionIterable<V> |
AbstractImmutableSortedMap.partitionWith(Predicate2<? super V,? super P> predicate,
P parameter) |
Modifier and Type | Class and Description |
---|---|
class |
PartitionHashBag<T> |
class |
PartitionImmutableBagImpl<T> |
Modifier and Type | Class and Description |
---|---|
class |
PartitionImmutableSortedBagImpl<T> |
class |
PartitionTreeBag<T> |
Modifier and Type | Class and Description |
---|---|
class |
PartitionFastList<T> |
class |
PartitionImmutableListImpl<T> |
Modifier and Type | Class and Description |
---|---|
class |
PartitionImmutableSetImpl<T> |
class |
PartitionUnifiedSet<T> |
Modifier and Type | Class and Description |
---|---|
class |
PartitionImmutableSortedSetImpl<T> |
class |
PartitionTreeSortedSet<T> |
Modifier and Type | Class and Description |
---|---|
class |
PartitionUnifiedSetWithHashingStrategy<T> |
Modifier and Type | Class and Description |
---|---|
class |
PartitionArrayStack<T> |
class |
PartitionImmutableStackImpl<T> |
Modifier and Type | Method and Description |
---|---|
static <T> PartitionIterable<T> |
Iterate.partition(Iterable<T> iterable,
Predicate<? super T> predicate)
Filters a collection into a PartitionIterable based on a predicate.
|
static <T,P> PartitionIterable<T> |
Iterate.partitionWith(Iterable<T> iterable,
Predicate2<? super T,? super P> predicate,
P parameter)
Filters a collection into a PartitionIterable based on a predicate.
|
Copyright © 2004–2018. All rights reserved.