Package | Description |
---|---|
com.gs.collections.api |
This package contains interfaces for GS Collections API.
|
com.gs.collections.api.bag |
This package contains interfaces for Bag API.
|
com.gs.collections.api.bag.sorted |
This package contains interfaces for SortedBag API.
|
com.gs.collections.api.list |
This package contains interfaces for list API which enhance the performance and functionality of
List . |
com.gs.collections.api.set |
This package contains interfaces for set API which enhance the performance and functionality of
Set . |
com.gs.collections.api.set.sorted |
This package contains interfaces for sorted set API.
|
com.gs.collections.impl.bag.mutable |
This package contains implementations of the
MutableBag interface. |
com.gs.collections.impl.bag.sorted.mutable |
This package contains implementations of
MutableSortedBag . |
com.gs.collections.impl.lazy.parallel | |
com.gs.collections.impl.lazy.parallel.bag | |
com.gs.collections.impl.lazy.parallel.list | |
com.gs.collections.impl.lazy.parallel.set | |
com.gs.collections.impl.list.mutable |
This package contains implementations of the
MutableList interface. |
com.gs.collections.impl.set.mutable |
This package package contains implementations of
MutableSet . |
com.gs.collections.impl.set.sorted.mutable |
This package contains implementations of
MutableSortedSet . |
Modifier and Type | Interface and Description |
---|---|
interface |
ParallelIterable<T>
A ParallelIterable is RichIterable which will defer evaluation for certain methods like select, reject, collect, etc.
|
Modifier and Type | Interface and Description |
---|---|
interface |
ParallelBag<T> |
interface |
ParallelUnsortedBag<T> |
Modifier and Type | Interface and Description |
---|---|
interface |
ParallelSortedBag<T> |
Modifier and Type | Interface and Description |
---|---|
interface |
ParallelListIterable<T>
A ParallelIterable is RichIterable which will defer evaluation for certain methods like select, reject, collect, etc.
|
Modifier and Type | Interface and Description |
---|---|
interface |
ParallelSetIterable<T> |
interface |
ParallelUnsortedSetIterable<T>
A ParallelIterable is RichIterable which will defer evaluation for certain methods like select, reject, collect, etc.
|
Modifier and Type | Interface and Description |
---|---|
interface |
ParallelSortedSetIterable<T> |
Modifier and Type | Method and Description |
---|---|
ParallelUnsortedBag<T> |
HashBag.asParallel(ExecutorService executorService,
int batchSize) |
Modifier and Type | Method and Description |
---|---|
ParallelSortedBag<T> |
TreeBag.asParallel(ExecutorService executorService,
int batchSize) |
Modifier and Type | Class and Description |
---|---|
class |
AbstractParallelIterable<T,B extends Batch<T>> |
class |
AbstractParallelIterableImpl<T,B extends Batch<T>> |
interface |
Batch<T> |
class |
ParallelDistinctIterable<T> |
class |
ParallelSelectIterable<T> |
interface |
RootBatch<T>
A
Batch that must be at the root of the chain,
not wrapped in other Batches. |
Modifier and Type | Class and Description |
---|---|
class |
AbstractParallelUnsortedBag<T,B extends UnsortedBagBatch<T>> |
class |
CollectUnsortedBagBatch<T,V> |
interface |
RootUnsortedBagBatch<T> |
class |
SelectUnsortedBagBatch<T> |
interface |
UnsortedBagBatch<T> |
Modifier and Type | Class and Description |
---|---|
class |
AbstractParallelListIterable<T,B extends ListBatch<T>> |
class |
CollectListBatch<T,V> |
class |
DistinctBatch<T> |
interface |
ListBatch<T> |
interface |
RootListBatch<T> |
class |
SelectListBatch<T> |
Modifier and Type | Class and Description |
---|---|
class |
AbstractParallelUnsortedSetIterable<T,B extends UnsortedSetBatch<T>> |
class |
CollectUnsortedSetBatch<T,V> |
class |
ParallelCollectIterable<T,V> |
interface |
RootUnsortedSetBatch<T> |
class |
SelectUnsortedSetBatch<T> |
interface |
UnsortedSetBatch<T> |
Modifier and Type | Method and Description |
---|---|
ParallelListIterable<T> |
FastList.asParallel(ExecutorService executorService,
int batchSize) |
Modifier and Type | Method and Description |
---|---|
ParallelUnsortedSetIterable<T> |
UnifiedSet.asParallel(ExecutorService executorService,
int batchSize) |
Modifier and Type | Method and Description |
---|---|
ParallelSortedSetIterable<T> |
TreeSortedSet.asParallel(ExecutorService executorService,
int batchSize) |
Copyright © 2004–2019. All rights reserved.