Package | Description |
---|---|
com.gs.collections.api |
This package contains interfaces for GS Collections 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.list.primitive |
This package contains mutable and immutable primitive list API.
|
com.gs.collections.api.map.sorted |
This package contains mutable and immutable sorted map interfaces.
|
com.gs.collections.api.set.sorted |
This package contains interfaces for sorted set API.
|
com.gs.collections.impl.bag.mutable.primitive |
This package contains implementations of the mutable primitive bag interfaces.
|
com.gs.collections.impl.bag.sorted.mutable |
This package contains implementations of
MutableSortedBag . |
com.gs.collections.impl.collection.mutable.primitive |
This package contains implementations of the mutable primitive collection interfaces.
|
com.gs.collections.impl.lazy.primitive |
This package contains implementations of the lazy primitive iterator interfaces.
|
com.gs.collections.impl.list.mutable |
This package contains implementations of the
MutableList interface. |
com.gs.collections.impl.list.mutable.primitive |
This package contains implementations of the mutable primitive list interfaces.
|
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.map.sorted.mutable |
This package contains implementations of the
MutableSortedMap interface. |
com.gs.collections.impl.primitive | |
com.gs.collections.impl.set.mutable.primitive |
This package contains implementations of the mutable primitive set interfaces.
|
com.gs.collections.impl.set.sorted.mutable |
This package contains implementations of
MutableSortedSet . |
com.gs.collections.impl.stack.mutable.primitive |
This package contains implementations of the mutable primitive stack interfaces.
|
com.gs.collections.impl.utility |
This package contains static utilities that provide iteration pattern implementations which work with JCF collections.
|
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 |
---|---|
MutableLongList |
LongIterable.toList() |
MutableLongList |
LongIterable.toSortedList() |
Modifier and Type | Method and Description |
---|---|
MutableLongList |
MutableSortedBag.collectLong(LongFunction<? super T> longFunction) |
Modifier and Type | Method and Description |
---|---|
MutableLongList |
MutableList.collectLong(LongFunction<? super T> longFunction) |
Modifier and Type | Method and Description |
---|---|
MutableLongList |
MutableLongList.asSynchronized() |
MutableLongList |
MutableLongList.asUnmodifiable() |
MutableLongList |
MutableLongList.reject(LongPredicate predicate) |
MutableLongList |
MutableLongList.reverseThis() |
MutableLongList |
MutableLongList.select(LongPredicate predicate) |
MutableLongList |
MutableLongList.sortThis()
Sorts this list mutating its contents and returns the same mutable list (this).
|
MutableLongList |
MutableLongList.subList(int fromIndex,
int toIndex) |
MutableLongList |
MutableLongList.toReversed() |
MutableLongList |
MutableLongList.with(long element) |
MutableLongList |
MutableLongList.withAll(LongIterable elements) |
MutableLongList |
MutableLongList.without(long element) |
MutableLongList |
MutableLongList.withoutAll(LongIterable elements) |
Modifier and Type | Method and Description |
---|---|
MutableLongList |
MutableSortedMap.collectLong(LongFunction<? super V> longFunction) |
Modifier and Type | Method and Description |
---|---|
MutableLongList |
MutableSortedSet.collectLong(LongFunction<? super T> longFunction) |
Modifier and Type | Method and Description |
---|---|
MutableLongList |
LongHashBag.toList() |
MutableLongList |
LongHashBag.toSortedList() |
Modifier and Type | Method and Description |
---|---|
MutableLongList |
UnmodifiableSortedBag.collectLong(LongFunction<? super T> longFunction) |
MutableLongList |
TreeBag.collectLong(LongFunction<? super T> longFunction) |
Modifier and Type | Method and Description |
---|---|
MutableLongList |
AbstractUnmodifiableLongCollection.toList() |
MutableLongList |
AbstractSynchronizedLongCollection.toList() |
MutableLongList |
AbstractUnmodifiableLongCollection.toSortedList() |
MutableLongList |
AbstractSynchronizedLongCollection.toSortedList() |
Modifier and Type | Method and Description |
---|---|
MutableLongList |
ReverseLongIterable.toList() |
MutableLongList |
SelectLongIterable.toList() |
MutableLongList |
AbstractLazyLongIterable.toList() |
MutableLongList |
LazyLongIterableAdapter.toList() |
MutableLongList |
CollectLongIterable.toList() |
MutableLongList |
ReverseLongIterable.toSortedList() |
MutableLongList |
SelectLongIterable.toSortedList() |
MutableLongList |
AbstractLazyLongIterable.toSortedList() |
MutableLongList |
LazyLongIterableAdapter.toSortedList() |
MutableLongList |
CollectLongIterable.toSortedList() |
Modifier and Type | Method and Description |
---|---|
MutableLongList |
SynchronizedMutableList.collectLong(LongFunction<? super T> longFunction) |
MutableLongList |
RandomAccessListAdapter.collectLong(LongFunction<? super T> longFunction) |
MutableLongList |
AbstractMutableList.collectLong(LongFunction<? super T> longFunction) |
MutableLongList |
MultiReaderFastList.collectLong(LongFunction<? super T> longFunction) |
MutableLongList |
AbstractListAdapter.collectLong(LongFunction<? super T> longFunction) |
MutableLongList |
UnmodifiableMutableList.collectLong(LongFunction<? super T> longFunction) |
MutableLongList |
ArrayListAdapter.collectLong(LongFunction<? super T> longFunction) |
MutableLongList |
FastList.collectLong(LongFunction<? super T> longFunction) |
Modifier and Type | Class and Description |
---|---|
class |
LongArrayList
LongArrayList is similar to
FastList , and is memory-optimized for long primitives. |
class |
SynchronizedLongList
A synchronized view of a
MutableLongList . |
class |
UnmodifiableLongList
This file was automatically generated from template file unmodifiablePrimitiveList.stg.
|
Modifier and Type | Method and Description |
---|---|
MutableLongList |
SynchronizedLongList.asSynchronized() |
MutableLongList |
LongArrayList.asSynchronized() |
MutableLongList |
UnmodifiableLongList.asSynchronized() |
MutableLongList |
SynchronizedLongList.asUnmodifiable() |
MutableLongList |
LongArrayList.asUnmodifiable() |
MutableLongList |
UnmodifiableLongList.asUnmodifiable() |
MutableLongList |
SynchronizedLongList.reject(LongPredicate predicate) |
MutableLongList |
UnmodifiableLongList.reject(LongPredicate predicate) |
MutableLongList |
SynchronizedLongList.reverseThis() |
MutableLongList |
UnmodifiableLongList.reverseThis() |
MutableLongList |
SynchronizedLongList.select(LongPredicate predicate) |
MutableLongList |
UnmodifiableLongList.select(LongPredicate predicate) |
MutableLongList |
SynchronizedLongList.sortThis() |
MutableLongList |
UnmodifiableLongList.sortThis() |
MutableLongList |
SynchronizedLongList.subList(int fromIndex,
int toIndex) |
MutableLongList |
LongArrayList.subList(int fromIndex,
int toIndex) |
MutableLongList |
UnmodifiableLongList.subList(int fromIndex,
int toIndex) |
MutableLongList |
LongArrayList.toList() |
MutableLongList |
SynchronizedLongList.toReversed() |
MutableLongList |
UnmodifiableLongList.toReversed() |
MutableLongList |
LongArrayList.toSortedList() |
Modifier and Type | Method and Description |
---|---|
MutableLongList |
AbstractMutableMap.collectLong(LongFunction<? super V> longFunction) |
Modifier and Type | Method and Description |
---|---|
MutableLongList |
CharLongHashMap.toList() |
MutableLongList |
UnmodifiableShortLongMap.toList() |
MutableLongList |
SynchronizedShortLongMap.toList() |
MutableLongList |
ByteLongHashMap.toList() |
MutableLongList |
UnmodifiableIntLongMap.toList() |
MutableLongList |
SynchronizedCharLongMap.toList() |
MutableLongList |
SynchronizedByteLongMap.toList() |
MutableLongList |
UnmodifiableDoubleLongMap.toList() |
MutableLongList |
LongLongHashMap.toList() |
MutableLongList |
SynchronizedIntLongMap.toList() |
MutableLongList |
SynchronizedFloatLongMap.toList() |
MutableLongList |
UnmodifiableObjectLongMap.toList() |
MutableLongList |
UnmodifiableLongLongMap.toList() |
MutableLongList |
IntLongHashMap.toList() |
MutableLongList |
SynchronizedObjectLongMap.toList() |
MutableLongList |
ShortLongHashMap.toList() |
MutableLongList |
DoubleLongHashMap.toList() |
MutableLongList |
FloatLongHashMap.toList() |
MutableLongList |
SynchronizedDoubleLongMap.toList() |
MutableLongList |
UnmodifiableCharLongMap.toList() |
MutableLongList |
UnmodifiableFloatLongMap.toList() |
MutableLongList |
ObjectLongHashMap.toList() |
MutableLongList |
UnmodifiableByteLongMap.toList() |
MutableLongList |
SynchronizedLongLongMap.toList() |
MutableLongList |
CharLongHashMap.toSortedList() |
MutableLongList |
UnmodifiableShortLongMap.toSortedList() |
MutableLongList |
SynchronizedShortLongMap.toSortedList() |
MutableLongList |
ByteLongHashMap.toSortedList() |
MutableLongList |
UnmodifiableIntLongMap.toSortedList() |
MutableLongList |
SynchronizedCharLongMap.toSortedList() |
MutableLongList |
SynchronizedByteLongMap.toSortedList() |
MutableLongList |
UnmodifiableDoubleLongMap.toSortedList() |
MutableLongList |
LongLongHashMap.toSortedList() |
MutableLongList |
SynchronizedIntLongMap.toSortedList() |
MutableLongList |
SynchronizedFloatLongMap.toSortedList() |
MutableLongList |
UnmodifiableObjectLongMap.toSortedList() |
MutableLongList |
UnmodifiableLongLongMap.toSortedList() |
MutableLongList |
IntLongHashMap.toSortedList() |
MutableLongList |
SynchronizedObjectLongMap.toSortedList() |
MutableLongList |
ShortLongHashMap.toSortedList() |
MutableLongList |
DoubleLongHashMap.toSortedList() |
MutableLongList |
FloatLongHashMap.toSortedList() |
MutableLongList |
SynchronizedDoubleLongMap.toSortedList() |
MutableLongList |
UnmodifiableCharLongMap.toSortedList() |
MutableLongList |
UnmodifiableFloatLongMap.toSortedList() |
MutableLongList |
ObjectLongHashMap.toSortedList() |
MutableLongList |
UnmodifiableByteLongMap.toSortedList() |
MutableLongList |
SynchronizedLongLongMap.toSortedList() |
Modifier and Type | Method and Description |
---|---|
MutableLongList |
SynchronizedSortedMap.collectLong(LongFunction<? super V> longFunction) |
MutableLongList |
AbstractMutableSortedMap.collectLong(LongFunction<? super V> longFunction) |
MutableLongList |
UnmodifiableTreeMap.collectLong(LongFunction<? super V> longFunction) |
Modifier and Type | Method and Description |
---|---|
MutableLongList |
SynchronizedLongIterable.toList() |
MutableLongList |
SynchronizedLongIterable.toSortedList() |
Modifier and Type | Method and Description |
---|---|
MutableLongList |
LongHashSet.toList() |
MutableLongList |
LongHashSet.toSortedList() |
Modifier and Type | Method and Description |
---|---|
MutableLongList |
SynchronizedSortedSet.collectLong(LongFunction<? super T> longFunction) |
MutableLongList |
SortedSetAdapter.collectLong(LongFunction<? super T> longFunction) |
MutableLongList |
UnmodifiableSortedSet.collectLong(LongFunction<? super T> longFunction) |
MutableLongList |
TreeSortedSet.collectLong(LongFunction<? super T> longFunction) |
Modifier and Type | Method and Description |
---|---|
MutableLongList |
LongArrayStack.toList() |
MutableLongList |
UnmodifiableLongStack.toList() |
MutableLongList |
SynchronizedLongStack.toList() |
MutableLongList |
LongArrayStack.toSortedList() |
MutableLongList |
UnmodifiableLongStack.toSortedList() |
MutableLongList |
SynchronizedLongStack.toSortedList() |
Modifier and Type | Method and Description |
---|---|
static <T> MutableLongList |
ArrayListIterate.collectLong(ArrayList<T> list,
LongFunction<? super T> longFunction) |
static <T> MutableLongList |
ListIterate.collectLong(List<T> list,
LongFunction<? super T> longFunction) |
static <T> MutableLongList |
ArrayIterate.collectLong(T[] objectArray,
LongFunction<? super T> longFunction) |
Modifier and Type | Method and Description |
---|---|
static <T> MutableLongList |
RandomAccessListIterate.collectLong(List<T> list,
LongFunction<? super T> longFunction) |
Copyright © 2004–2017. All rights reserved.