Uses of Interface
org.eclipse.collections.api.list.primitive.ImmutableCharList
-
Packages that use ImmutableCharList Package Description 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 ofList
.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 ofMap
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.immutable org.eclipse.collections.impl.list.immutable This package contains implementations of theImmutableList
interface.org.eclipse.collections.impl.list.immutable.primitive This package contains implementations of immutable primitive list interfaces and immutable primitive list factory interfaces.org.eclipse.collections.impl.list.mutable.primitive This package contains implementations of the mutable primitive list interfaces.org.eclipse.collections.impl.map.sorted.immutable This package contains implementations of theMutableSortedMap
interface.org.eclipse.collections.impl.set.sorted.immutable This package contains implementations ofImmutableSortedSet
.org.eclipse.collections.impl.string.immutable -
-
Uses of ImmutableCharList in org.eclipse.collections.api.bag.sorted
Methods in org.eclipse.collections.api.bag.sorted that return ImmutableCharList Modifier and Type Method Description ImmutableCharList
ImmutableSortedBag. collectChar(CharFunction<? super T> charFunction)
-
Uses of ImmutableCharList in org.eclipse.collections.api.factory.list.primitive
Methods in org.eclipse.collections.api.factory.list.primitive that return ImmutableCharList Modifier and Type Method Description ImmutableCharList
ImmutableCharListFactory. empty()
ImmutableCharList
ImmutableCharListFactory. of()
Same asImmutableCharListFactory.empty()
.ImmutableCharList
ImmutableCharListFactory. of(char one)
Same asImmutableCharListFactory.with(char)
.ImmutableCharList
ImmutableCharListFactory. of(char... items)
ImmutableCharList
ImmutableCharListFactory. ofAll(java.lang.Iterable<java.lang.Character> iterable)
ImmutableCharList
ImmutableCharListFactory. ofAll(CharIterable items)
ImmutableCharList
ImmutableCharListFactory. with()
Same asImmutableCharListFactory.empty()
.ImmutableCharList
ImmutableCharListFactory. with(char one)
ImmutableCharList
ImmutableCharListFactory. with(char... items)
ImmutableCharList
ImmutableCharListFactory. withAll(java.lang.Iterable<java.lang.Character> iterable)
ImmutableCharList
ImmutableCharListFactory. withAll(CharIterable items)
-
Uses of ImmutableCharList in org.eclipse.collections.api.list
Methods in org.eclipse.collections.api.list that return ImmutableCharList Modifier and Type Method Description ImmutableCharList
ImmutableList. collectChar(CharFunction<? super T> charFunction)
-
Uses of ImmutableCharList in org.eclipse.collections.api.list.primitive
Methods in org.eclipse.collections.api.list.primitive that return ImmutableCharList Modifier and Type Method Description ImmutableCharList
ImmutableCharList. distinct()
ImmutableCharList
ImmutableCharList. newWith(char element)
ImmutableCharList
ImmutableCharList. newWithAll(CharIterable elements)
ImmutableCharList
ImmutableCharList. newWithout(char element)
ImmutableCharList
ImmutableCharList. newWithoutAll(CharIterable elements)
ImmutableCharList
ImmutableCharList. reject(CharPredicate predicate)
default ImmutableCharList
ImmutableCharList. rejectWithIndex(CharIntPredicate predicate)
Returns a new ImmutableCharList excluding all elements with corresponding indexes matching the specified predicate.ImmutableCharList
ImmutableCharList. select(CharPredicate predicate)
default ImmutableCharList
ImmutableCharList. selectWithIndex(CharIntPredicate predicate)
Returns a new ImmutableCharList including all elements with corresponding indexes matching the specified predicate.ImmutableCharList
ImmutableCharList. subList(int fromIndex, int toIndex)
default ImmutableCharList
ImmutableCharList. tap(CharProcedure procedure)
ImmutableCharList
CharList. toImmutable()
Returns an immutable copy of this list.ImmutableCharList
MutableCharList. toImmutable()
Returns an immutable copy of this list.ImmutableCharList
ImmutableCharList. toReversed()
-
Uses of ImmutableCharList in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map that return ImmutableCharList Modifier and Type Method Description ImmutableCharList
ImmutableOrderedMap. collectChar(CharFunction<? super V> charFunction)
-
Uses of ImmutableCharList in org.eclipse.collections.api.map.sorted
Methods in org.eclipse.collections.api.map.sorted that return ImmutableCharList Modifier and Type Method Description ImmutableCharList
ImmutableSortedMap. collectChar(CharFunction<? super V> charFunction)
-
Uses of ImmutableCharList in org.eclipse.collections.api.set.sorted
Methods in org.eclipse.collections.api.set.sorted that return ImmutableCharList Modifier and Type Method Description ImmutableCharList
ImmutableSortedSet. collectChar(CharFunction<? super T> charFunction)
-
Uses of ImmutableCharList in org.eclipse.collections.impl.bag.sorted.immutable
Methods in org.eclipse.collections.impl.bag.sorted.immutable that return ImmutableCharList Modifier and Type Method Description ImmutableCharList
AbstractImmutableSortedBag. collectChar(CharFunction<? super T> charFunction)
-
Uses of ImmutableCharList in org.eclipse.collections.impl.list.immutable
Methods in org.eclipse.collections.impl.list.immutable that return ImmutableCharList Modifier and Type Method Description ImmutableCharList
AbstractImmutableList. collectChar(CharFunction<? super T> charFunction)
-
Uses of ImmutableCharList in org.eclipse.collections.impl.list.immutable.primitive
Classes in org.eclipse.collections.impl.list.immutable.primitive that implement ImmutableCharList Modifier and Type Class Description (package private) class
ImmutableCharArrayList
ImmutableCharArrayList is the non-modifiable equivalent ofCharArrayList
.(package private) class
ImmutableCharEmptyList
ImmutableCharEmptyList is an optimization forImmutableCharList
of size 0.(package private) class
ImmutableCharSingletonList
ImmutableCharSingletonList is an optimization forImmutableCharList
of size 1.Fields in org.eclipse.collections.impl.list.immutable.primitive declared as ImmutableCharList Modifier and Type Field Description (package private) static ImmutableCharList
ImmutableCharEmptyList. INSTANCE
Methods in org.eclipse.collections.impl.list.immutable.primitive that return ImmutableCharList Modifier and Type Method Description ImmutableCharList
ImmutableCharArrayList. distinct()
ImmutableCharList
ImmutableCharEmptyList. distinct()
ImmutableCharList
ImmutableCharSingletonList. distinct()
ImmutableCharList
ImmutableCharListFactoryImpl. empty()
ImmutableCharList
ImmutableCharArrayList. newWith(char element)
ImmutableCharList
ImmutableCharEmptyList. newWith(char element)
ImmutableCharList
ImmutableCharSingletonList. newWith(char element)
ImmutableCharList
ImmutableCharArrayList. newWithAll(CharIterable elements)
ImmutableCharList
ImmutableCharEmptyList. newWithAll(CharIterable elements)
ImmutableCharList
ImmutableCharSingletonList. newWithAll(CharIterable elements)
ImmutableCharList
ImmutableCharArrayList. newWithout(char element)
ImmutableCharList
ImmutableCharEmptyList. newWithout(char element)
ImmutableCharList
ImmutableCharSingletonList. newWithout(char element)
ImmutableCharList
ImmutableCharArrayList. newWithoutAll(CharIterable elements)
ImmutableCharList
ImmutableCharEmptyList. newWithoutAll(CharIterable elements)
ImmutableCharList
ImmutableCharSingletonList. newWithoutAll(CharIterable elements)
ImmutableCharList
ImmutableCharListFactoryImpl. of()
ImmutableCharList
ImmutableCharListFactoryImpl. of(char one)
ImmutableCharList
ImmutableCharListFactoryImpl. of(char... items)
ImmutableCharList
ImmutableCharListFactoryImpl. ofAll(java.lang.Iterable<java.lang.Character> iterable)
ImmutableCharList
ImmutableCharListFactoryImpl. ofAll(CharIterable items)
ImmutableCharList
ImmutableCharArrayList. reject(CharPredicate predicate)
ImmutableCharList
ImmutableCharEmptyList. reject(CharPredicate predicate)
ImmutableCharList
ImmutableCharSingletonList. reject(CharPredicate predicate)
ImmutableCharList
ImmutableCharArrayList. select(CharPredicate predicate)
ImmutableCharList
ImmutableCharEmptyList. select(CharPredicate predicate)
ImmutableCharList
ImmutableCharSingletonList. select(CharPredicate predicate)
ImmutableCharList
ImmutableCharArrayList. subList(int fromIndex, int toIndex)
ImmutableCharList
ImmutableCharEmptyList. subList(int fromIndex, int toIndex)
ImmutableCharList
ImmutableCharSingletonList. subList(int fromIndex, int toIndex)
ImmutableCharList
ImmutableCharArrayList. toImmutable()
ImmutableCharList
ImmutableCharEmptyList. toImmutable()
ImmutableCharList
ImmutableCharSingletonList. toImmutable()
ImmutableCharList
ImmutableCharListFactoryImpl. with()
ImmutableCharList
ImmutableCharListFactoryImpl. with(char one)
ImmutableCharList
ImmutableCharListFactoryImpl. with(char... items)
ImmutableCharList
ImmutableCharListFactoryImpl. withAll(java.lang.Iterable<java.lang.Character> iterable)
ImmutableCharList
ImmutableCharListFactoryImpl. withAll(CharIterable items)
-
Uses of ImmutableCharList in org.eclipse.collections.impl.list.mutable.primitive
Methods in org.eclipse.collections.impl.list.mutable.primitive that return ImmutableCharList Modifier and Type Method Description ImmutableCharList
CharArrayList. toImmutable()
ImmutableCharList
SynchronizedCharList. toImmutable()
ImmutableCharList
UnmodifiableCharList. toImmutable()
-
Uses of ImmutableCharList in org.eclipse.collections.impl.map.sorted.immutable
Methods in org.eclipse.collections.impl.map.sorted.immutable that return ImmutableCharList Modifier and Type Method Description ImmutableCharList
AbstractImmutableSortedMap. collectChar(CharFunction<? super V> charFunction)
-
Uses of ImmutableCharList in org.eclipse.collections.impl.set.sorted.immutable
Methods in org.eclipse.collections.impl.set.sorted.immutable that return ImmutableCharList Modifier and Type Method Description ImmutableCharList
AbstractImmutableSortedSet. collectChar(CharFunction<? super T> charFunction)
-
Uses of ImmutableCharList in org.eclipse.collections.impl.string.immutable
Classes in org.eclipse.collections.impl.string.immutable that implement ImmutableCharList Modifier and Type Class Description class
CharAdapter
Provides a view into the char[] stored in a String as an ImmutableCharList.Methods in org.eclipse.collections.impl.string.immutable that return ImmutableCharList Modifier and Type Method Description ImmutableCharList
CharAdapter. subList(int fromIndex, int toIndex)
ImmutableCharList
CharAdapter. toImmutable()
-