Package | Description |
---|---|
org.eclipse.collections.api |
This package contains interfaces for Eclipse Collections API.
|
org.eclipse.collections.api.bag.sorted |
This package contains interfaces for SortedBag API.
|
org.eclipse.collections.api.factory.list.primitive |
This package contains factory API for creating immutable primitive list instances.
|
org.eclipse.collections.api.list |
This package contains interfaces for list API which enhance the performance and functionality of
List . |
org.eclipse.collections.api.list.primitive |
This package contains mutable and immutable primitive list API.
|
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.sorted |
This package contains mutable and immutable sorted map interfaces.
|
org.eclipse.collections.api.set.sorted |
This package contains interfaces for sorted set API.
|
org.eclipse.collections.impl.bag.sorted.mutable |
This package contains implementations of
MutableSortedBag . |
org.eclipse.collections.impl.collection.mutable.primitive |
This package contains implementations of the mutable primitive collection interfaces.
|
org.eclipse.collections.impl.lazy.primitive |
This package contains implementations of the lazy primitive iterator interfaces.
|
org.eclipse.collections.impl.list.mutable |
This package contains implementations of the
MutableList interface. |
org.eclipse.collections.impl.list.mutable.primitive |
This package contains implementations of the mutable primitive list interfaces.
|
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.mutable |
This package contains implementations of the
MutableSortedMap interface. |
org.eclipse.collections.impl.primitive | |
org.eclipse.collections.impl.set.sorted.mutable |
This package contains implementations of
MutableSortedSet . |
org.eclipse.collections.impl.stack.mutable.primitive |
This package contains implementations of the mutable primitive stack interfaces.
|
org.eclipse.collections.impl.string.immutable | |
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 and Description |
---|---|
MutableCharList |
CharIterable.toList() |
MutableCharList |
CharIterable.toSortedList() |
Modifier and Type | Method and Description |
---|---|
MutableCharList |
MutableSortedBag.collectChar(CharFunction<? super T> charFunction) |
Modifier and Type | Method and Description |
---|---|
MutableCharList |
MutableCharListFactory.empty() |
MutableCharList |
MutableCharListFactory.of()
Same as
MutableCharListFactory.empty() . |
MutableCharList |
MutableCharListFactory.of(char... items)
Same as
MutableCharListFactory.with(char[]) . |
MutableCharList |
MutableCharListFactory.ofAll(CharIterable items)
|
MutableCharList |
MutableCharListFactory.with()
Same as
MutableCharListFactory.empty() . |
MutableCharList |
MutableCharListFactory.with(char... items) |
MutableCharList |
MutableCharListFactory.withAll(CharIterable items) |
Modifier and Type | Method and Description |
---|---|
MutableCharList |
MutableList.collectChar(CharFunction<? super T> charFunction) |
Modifier and Type | Method and Description |
---|---|
MutableCharList |
MutableCharList.asSynchronized() |
MutableCharList |
MutableCharList.asUnmodifiable() |
MutableCharList |
MutableCharList.distinct() |
MutableCharList |
MutableCharList.reject(CharPredicate predicate) |
MutableCharList |
MutableCharList.reverseThis() |
MutableCharList |
MutableCharList.select(CharPredicate predicate) |
MutableCharList |
MutableCharList.sortThis()
Sorts this list mutating its contents and returns the same mutable list (this).
|
MutableCharList |
MutableCharList.subList(int fromIndex,
int toIndex) |
MutableCharList |
MutableCharList.toReversed() |
MutableCharList |
MutableCharList.with(char element) |
MutableCharList |
MutableCharList.withAll(CharIterable elements) |
MutableCharList |
MutableCharList.without(char element) |
MutableCharList |
MutableCharList.withoutAll(CharIterable elements) |
Modifier and Type | Method and Description |
---|---|
MutableCharList |
MutableOrderedMap.collectChar(CharFunction<? super V> charFunction) |
Modifier and Type | Method and Description |
---|---|
MutableCharList |
MutableSortedMap.collectChar(CharFunction<? super V> charFunction) |
Modifier and Type | Method and Description |
---|---|
MutableCharList |
MutableSortedSet.collectChar(CharFunction<? super T> charFunction) |
Modifier and Type | Method and Description |
---|---|
MutableCharList |
AbstractMutableSortedBag.collectChar(CharFunction<? super T> charFunction) |
MutableCharList |
UnmodifiableSortedBag.collectChar(CharFunction<? super T> charFunction) |
MutableCharList |
SynchronizedSortedBag.collectChar(CharFunction<? super T> charFunction) |
Modifier and Type | Method and Description |
---|---|
MutableCharList |
AbstractSynchronizedCharCollection.toList() |
MutableCharList |
AbstractUnmodifiableCharCollection.toList() |
MutableCharList |
AbstractSynchronizedCharCollection.toSortedList() |
MutableCharList |
AbstractUnmodifiableCharCollection.toSortedList() |
Modifier and Type | Method and Description |
---|---|
MutableCharList |
LazyCharIterableAdapter.toList() |
MutableCharList |
ReverseCharIterable.toList() |
MutableCharList |
CollectCharIterable.toList() |
MutableCharList |
SelectCharIterable.toList() |
MutableCharList |
AbstractLazyCharIterable.toList() |
MutableCharList |
LazyCharIterableAdapter.toSortedList() |
MutableCharList |
AbstractLazyCharIterable.toSortedList() |
Modifier and Type | Method and Description |
---|---|
MutableCharList |
AbstractListAdapter.collectChar(CharFunction<? super T> charFunction) |
MutableCharList |
FastList.collectChar(CharFunction<? super T> charFunction) |
MutableCharList |
UnmodifiableMutableList.collectChar(CharFunction<? super T> charFunction) |
MutableCharList |
RandomAccessListAdapter.collectChar(CharFunction<? super T> charFunction) |
MutableCharList |
MultiReaderFastList.collectChar(CharFunction<? super T> charFunction) |
MutableCharList |
ArrayListAdapter.collectChar(CharFunction<? super T> charFunction) |
MutableCharList |
AbstractMutableList.collectChar(CharFunction<? super T> charFunction) |
MutableCharList |
SynchronizedMutableList.collectChar(CharFunction<? super T> charFunction) |
Modifier and Type | Class and Description |
---|---|
class |
CharArrayList
CharArrayList is similar to
FastList , and is memory-optimized for char primitives. |
class |
SynchronizedCharList
A synchronized view of a
MutableCharList . |
class |
UnmodifiableCharList
This file was automatically generated from template file unmodifiablePrimitiveList.stg.
|
Modifier and Type | Method and Description |
---|---|
MutableCharList |
UnmodifiableCharList.asSynchronized() |
MutableCharList |
CharArrayList.asSynchronized() |
MutableCharList |
SynchronizedCharList.asSynchronized() |
MutableCharList |
UnmodifiableCharList.asUnmodifiable() |
MutableCharList |
CharArrayList.asUnmodifiable() |
MutableCharList |
SynchronizedCharList.asUnmodifiable() |
MutableCharList |
UnmodifiableCharList.distinct() |
MutableCharList |
CharArrayList.distinct() |
MutableCharList |
SynchronizedCharList.distinct() |
MutableCharList |
MutableCharListFactoryImpl.empty() |
MutableCharList |
MutableCharListFactoryImpl.of() |
MutableCharList |
MutableCharListFactoryImpl.of(char... items) |
MutableCharList |
MutableCharListFactoryImpl.ofAll(CharIterable items) |
MutableCharList |
UnmodifiableCharList.reject(CharPredicate predicate) |
MutableCharList |
SynchronizedCharList.reject(CharPredicate predicate) |
MutableCharList |
UnmodifiableCharList.reverseThis() |
MutableCharList |
SynchronizedCharList.reverseThis() |
MutableCharList |
UnmodifiableCharList.select(CharPredicate predicate) |
MutableCharList |
SynchronizedCharList.select(CharPredicate predicate) |
MutableCharList |
UnmodifiableCharList.sortThis() |
MutableCharList |
SynchronizedCharList.sortThis() |
MutableCharList |
UnmodifiableCharList.subList(int fromIndex,
int toIndex) |
MutableCharList |
CharArrayList.subList(int fromIndex,
int toIndex) |
MutableCharList |
SynchronizedCharList.subList(int fromIndex,
int toIndex) |
MutableCharList |
UnmodifiableCharList.toReversed() |
MutableCharList |
SynchronizedCharList.toReversed() |
MutableCharList |
MutableCharListFactoryImpl.with() |
MutableCharList |
MutableCharListFactoryImpl.with(char... items) |
MutableCharList |
MutableCharListFactoryImpl.withAll(CharIterable items) |
Modifier and Type | Method and Description |
---|---|
MutableCharList |
SynchronizedObjectCharMap.toList() |
MutableCharList |
SynchronizedIntCharMap.toList() |
MutableCharList |
AbstractMutableCharKeySet.toList() |
MutableCharList |
UnmodifiableLongCharMap.toList() |
MutableCharList |
UnmodifiableDoubleCharMap.toList() |
MutableCharList |
SynchronizedDoubleCharMap.toList() |
MutableCharList |
UnmodifiableByteCharMap.toList() |
MutableCharList |
SynchronizedLongCharMap.toList() |
MutableCharList |
SynchronizedShortCharMap.toList() |
MutableCharList |
SynchronizedByteCharMap.toList() |
MutableCharList |
UnmodifiableFloatCharMap.toList() |
MutableCharList |
UnmodifiableIntCharMap.toList() |
MutableCharList |
UnmodifiableCharCharMap.toList() |
MutableCharList |
UnmodifiableObjectCharMap.toList() |
MutableCharList |
ObjectCharHashMap.toList() |
MutableCharList |
SynchronizedFloatCharMap.toList() |
MutableCharList |
UnmodifiableShortCharMap.toList() |
MutableCharList |
ObjectCharHashMapWithHashingStrategy.toList() |
MutableCharList |
SynchronizedCharCharMap.toList() |
MutableCharList |
SynchronizedObjectCharMap.toSortedList() |
MutableCharList |
SynchronizedIntCharMap.toSortedList() |
MutableCharList |
AbstractMutableCharKeySet.toSortedList() |
MutableCharList |
UnmodifiableLongCharMap.toSortedList() |
MutableCharList |
UnmodifiableDoubleCharMap.toSortedList() |
MutableCharList |
SynchronizedDoubleCharMap.toSortedList() |
MutableCharList |
UnmodifiableByteCharMap.toSortedList() |
MutableCharList |
SynchronizedLongCharMap.toSortedList() |
MutableCharList |
SynchronizedShortCharMap.toSortedList() |
MutableCharList |
SynchronizedByteCharMap.toSortedList() |
MutableCharList |
UnmodifiableFloatCharMap.toSortedList() |
MutableCharList |
UnmodifiableIntCharMap.toSortedList() |
MutableCharList |
UnmodifiableCharCharMap.toSortedList() |
MutableCharList |
UnmodifiableObjectCharMap.toSortedList() |
MutableCharList |
ObjectCharHashMap.toSortedList() |
MutableCharList |
SynchronizedFloatCharMap.toSortedList() |
MutableCharList |
UnmodifiableShortCharMap.toSortedList() |
MutableCharList |
ObjectCharHashMapWithHashingStrategy.toSortedList() |
MutableCharList |
SynchronizedCharCharMap.toSortedList() |
Modifier and Type | Method and Description |
---|---|
MutableCharList |
SynchronizedSortedMap.collectChar(CharFunction<? super V> charFunction) |
MutableCharList |
AbstractMutableSortedMap.collectChar(CharFunction<? super V> charFunction) |
MutableCharList |
UnmodifiableTreeMap.collectChar(CharFunction<? super V> charFunction) |
Modifier and Type | Method and Description |
---|---|
MutableCharList |
AbstractCharIterable.toList() |
MutableCharList |
SynchronizedCharIterable.toList() |
MutableCharList |
AbstractCharIterable.toSortedList() |
MutableCharList |
SynchronizedCharIterable.toSortedList() |
Modifier and Type | Method and Description |
---|---|
MutableCharList |
SortedSetAdapter.collectChar(CharFunction<? super T> charFunction) |
MutableCharList |
UnmodifiableSortedSet.collectChar(CharFunction<? super T> charFunction) |
MutableCharList |
TreeSortedSet.collectChar(CharFunction<? super T> charFunction) |
MutableCharList |
SynchronizedSortedSet.collectChar(CharFunction<? super T> charFunction) |
Modifier and Type | Method and Description |
---|---|
MutableCharList |
CharArrayStack.toList() |
MutableCharList |
UnmodifiableCharStack.toList() |
MutableCharList |
SynchronizedCharStack.toList() |
MutableCharList |
CharArrayStack.toSortedList() |
MutableCharList |
UnmodifiableCharStack.toSortedList() |
MutableCharList |
SynchronizedCharStack.toSortedList() |
Modifier and Type | Method and Description |
---|---|
MutableCharList |
CharAdapter.toList() |
Modifier and Type | Method and Description |
---|---|
static <T> MutableCharList |
ArrayListIterate.collectChar(ArrayList<T> list,
CharFunction<? super T> charFunction) |
static <T> MutableCharList |
ListIterate.collectChar(List<T> list,
CharFunction<? super T> charFunction) |
static <T> MutableCharList |
ArrayIterate.collectChar(T[] objectArray,
CharFunction<? super T> charFunction) |
Modifier and Type | Method and Description |
---|---|
static <T> MutableCharList |
RandomAccessListIterate.collectChar(List<T> list,
CharFunction<? super T> charFunction) |
Copyright © 2004–2016. All rights reserved.