Uses of Interface
org.eclipse.collections.api.list.primitive.ImmutableIntList
-
Packages that use ImmutableIntList 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.list.primitive This package contains implementations of the 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.stream org.eclipse.collections.impl.string.immutable -
-
Uses of ImmutableIntList in org.eclipse.collections.api.bag.sorted
Methods in org.eclipse.collections.api.bag.sorted that return ImmutableIntList Modifier and Type Method Description ImmutableIntList
ImmutableSortedBag. collectInt(IntFunction<? super T> intFunction)
-
Uses of ImmutableIntList in org.eclipse.collections.api.factory.list.primitive
Methods in org.eclipse.collections.api.factory.list.primitive that return ImmutableIntList Modifier and Type Method Description ImmutableIntList
ImmutableIntListFactory. empty()
ImmutableIntList
ImmutableIntListFactory. of()
Same asImmutableIntListFactory.empty()
.ImmutableIntList
ImmutableIntListFactory. of(int one)
Same asImmutableIntListFactory.with(int)
.ImmutableIntList
ImmutableIntListFactory. of(int... items)
Same asImmutableIntListFactory.with(int[])
.ImmutableIntList
ImmutableIntListFactory. ofAll(java.lang.Iterable<java.lang.Integer> iterable)
ImmutableIntList
ImmutableIntListFactory. ofAll(java.util.stream.IntStream items)
ImmutableIntList
ImmutableIntListFactory. ofAll(IntIterable items)
ImmutableIntList
ImmutableIntListFactory. with()
Same asImmutableIntListFactory.empty()
.ImmutableIntList
ImmutableIntListFactory. with(int one)
ImmutableIntList
ImmutableIntListFactory. with(int... items)
ImmutableIntList
ImmutableIntListFactory. withAll(java.lang.Iterable<java.lang.Integer> iterable)
ImmutableIntList
ImmutableIntListFactory. withAll(java.util.stream.IntStream items)
ImmutableIntList
ImmutableIntListFactory. withAll(IntIterable items)
-
Uses of ImmutableIntList in org.eclipse.collections.api.list
Methods in org.eclipse.collections.api.list that return ImmutableIntList Modifier and Type Method Description ImmutableIntList
ImmutableList. collectInt(IntFunction<? super T> intFunction)
-
Uses of ImmutableIntList in org.eclipse.collections.api.list.primitive
Methods in org.eclipse.collections.api.list.primitive that return ImmutableIntList Modifier and Type Method Description ImmutableIntList
ImmutableIntList. distinct()
ImmutableIntList
ImmutableIntList. newWith(int element)
ImmutableIntList
ImmutableIntList. newWithAll(IntIterable elements)
ImmutableIntList
ImmutableIntList. newWithout(int element)
ImmutableIntList
ImmutableIntList. newWithoutAll(IntIterable elements)
ImmutableIntList
ImmutableIntList. reject(IntPredicate predicate)
default ImmutableIntList
ImmutableIntList. rejectWithIndex(IntIntPredicate predicate)
Returns a new ImmutableIntList excluding all elements with corresponding indexes matching the specified predicate.ImmutableIntList
ImmutableIntList. select(IntPredicate predicate)
default ImmutableIntList
ImmutableIntList. selectWithIndex(IntIntPredicate predicate)
Returns a new ImmutableIntList including all elements with corresponding indexes matching the specified predicate.ImmutableIntList
ImmutableIntList. subList(int fromIndex, int toIndex)
default ImmutableIntList
ImmutableIntList. tap(IntProcedure procedure)
ImmutableIntList
IntList. toImmutable()
Returns an immutable copy of this list.ImmutableIntList
MutableIntList. toImmutable()
Returns an immutable copy of this list.ImmutableIntList
ImmutableIntList. toReversed()
-
Uses of ImmutableIntList in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map that return ImmutableIntList Modifier and Type Method Description ImmutableIntList
ImmutableOrderedMap. collectInt(IntFunction<? super V> intFunction)
-
Uses of ImmutableIntList in org.eclipse.collections.api.map.sorted
Methods in org.eclipse.collections.api.map.sorted that return ImmutableIntList Modifier and Type Method Description ImmutableIntList
ImmutableSortedMap. collectInt(IntFunction<? super V> intFunction)
-
Uses of ImmutableIntList in org.eclipse.collections.api.set.sorted
Methods in org.eclipse.collections.api.set.sorted that return ImmutableIntList Modifier and Type Method Description ImmutableIntList
ImmutableSortedSet. collectInt(IntFunction<? super T> intFunction)
-
Uses of ImmutableIntList in org.eclipse.collections.impl.bag.sorted.immutable
Methods in org.eclipse.collections.impl.bag.sorted.immutable that return ImmutableIntList Modifier and Type Method Description ImmutableIntList
AbstractImmutableSortedBag. collectInt(IntFunction<? super T> intFunction)
-
Uses of ImmutableIntList in org.eclipse.collections.impl.list.immutable
Methods in org.eclipse.collections.impl.list.immutable that return ImmutableIntList Modifier and Type Method Description ImmutableIntList
AbstractImmutableList. collectInt(IntFunction<? super T> intFunction)
-
Uses of ImmutableIntList in org.eclipse.collections.impl.list.immutable.primitive
Classes in org.eclipse.collections.impl.list.immutable.primitive that implement ImmutableIntList Modifier and Type Class Description (package private) class
ImmutableIntArrayList
ImmutableIntArrayList is the non-modifiable equivalent ofIntArrayList
.(package private) class
ImmutableIntEmptyList
ImmutableIntEmptyList is an optimization forImmutableIntList
of size 0.(package private) class
ImmutableIntSingletonList
ImmutableIntSingletonList is an optimization forImmutableIntList
of size 1.Fields in org.eclipse.collections.impl.list.immutable.primitive declared as ImmutableIntList Modifier and Type Field Description (package private) static ImmutableIntList
ImmutableIntEmptyList. INSTANCE
Methods in org.eclipse.collections.impl.list.immutable.primitive that return ImmutableIntList Modifier and Type Method Description ImmutableIntList
ImmutableIntArrayList. distinct()
ImmutableIntList
ImmutableIntEmptyList. distinct()
ImmutableIntList
ImmutableIntSingletonList. distinct()
ImmutableIntList
ImmutableIntListFactoryImpl. empty()
ImmutableIntList
ImmutableIntArrayList. newWith(int element)
ImmutableIntList
ImmutableIntEmptyList. newWith(int element)
ImmutableIntList
ImmutableIntSingletonList. newWith(int element)
ImmutableIntList
ImmutableIntArrayList. newWithAll(IntIterable elements)
ImmutableIntList
ImmutableIntEmptyList. newWithAll(IntIterable elements)
ImmutableIntList
ImmutableIntSingletonList. newWithAll(IntIterable elements)
ImmutableIntList
ImmutableIntArrayList. newWithout(int element)
ImmutableIntList
ImmutableIntEmptyList. newWithout(int element)
ImmutableIntList
ImmutableIntSingletonList. newWithout(int element)
ImmutableIntList
ImmutableIntArrayList. newWithoutAll(IntIterable elements)
ImmutableIntList
ImmutableIntEmptyList. newWithoutAll(IntIterable elements)
ImmutableIntList
ImmutableIntSingletonList. newWithoutAll(IntIterable elements)
ImmutableIntList
ImmutableIntListFactoryImpl. of()
ImmutableIntList
ImmutableIntListFactoryImpl. of(int one)
ImmutableIntList
ImmutableIntListFactoryImpl. of(int... items)
ImmutableIntList
ImmutableIntListFactoryImpl. ofAll(java.lang.Iterable<java.lang.Integer> iterable)
ImmutableIntList
ImmutableIntListFactoryImpl. ofAll(java.util.stream.IntStream items)
ImmutableIntList
ImmutableIntListFactoryImpl. ofAll(IntIterable items)
ImmutableIntList
ImmutableIntArrayList. reject(IntPredicate predicate)
ImmutableIntList
ImmutableIntEmptyList. reject(IntPredicate predicate)
ImmutableIntList
ImmutableIntSingletonList. reject(IntPredicate predicate)
ImmutableIntList
ImmutableIntArrayList. select(IntPredicate predicate)
ImmutableIntList
ImmutableIntEmptyList. select(IntPredicate predicate)
ImmutableIntList
ImmutableIntSingletonList. select(IntPredicate predicate)
ImmutableIntList
ImmutableIntArrayList. subList(int fromIndex, int toIndex)
ImmutableIntList
ImmutableIntEmptyList. subList(int fromIndex, int toIndex)
ImmutableIntList
ImmutableIntSingletonList. subList(int fromIndex, int toIndex)
ImmutableIntList
ImmutableIntArrayList. toImmutable()
ImmutableIntList
ImmutableIntEmptyList. toImmutable()
ImmutableIntList
ImmutableIntSingletonList. toImmutable()
ImmutableIntList
ImmutableIntListFactoryImpl. with()
ImmutableIntList
ImmutableIntListFactoryImpl. with(int one)
ImmutableIntList
ImmutableIntListFactoryImpl. with(int... items)
ImmutableIntList
ImmutableIntListFactoryImpl. withAll(java.lang.Iterable<java.lang.Integer> iterable)
ImmutableIntList
ImmutableIntListFactoryImpl. withAll(java.util.stream.IntStream items)
ImmutableIntList
ImmutableIntListFactoryImpl. withAll(IntIterable items)
-
Uses of ImmutableIntList in org.eclipse.collections.impl.list.mutable.primitive
Methods in org.eclipse.collections.impl.list.mutable.primitive that return ImmutableIntList Modifier and Type Method Description ImmutableIntList
IntArrayList. toImmutable()
ImmutableIntList
SynchronizedIntList. toImmutable()
ImmutableIntList
UnmodifiableIntList. toImmutable()
-
Uses of ImmutableIntList in org.eclipse.collections.impl.list.primitive
Classes in org.eclipse.collections.impl.list.primitive that implement ImmutableIntList Modifier and Type Class Description class
IntInterval
An IntInterval is a range of ints that may be iterated over using a step value.Methods in org.eclipse.collections.impl.list.primitive that return ImmutableIntList Modifier and Type Method Description ImmutableIntList
IntInterval. distinct()
ImmutableIntList
IntInterval. newWith(int element)
ImmutableIntList
IntInterval. newWithAll(IntIterable elements)
ImmutableIntList
IntInterval. newWithout(int element)
ImmutableIntList
IntInterval. newWithoutAll(IntIterable elements)
ImmutableIntList
IntInterval. reject(IntPredicate predicate)
ImmutableIntList
IntInterval. select(IntPredicate predicate)
ImmutableIntList
IntInterval. subList(int fromIndex, int toIndex)
ImmutableIntList
IntInterval. toImmutable()
-
Uses of ImmutableIntList in org.eclipse.collections.impl.map.sorted.immutable
Methods in org.eclipse.collections.impl.map.sorted.immutable that return ImmutableIntList Modifier and Type Method Description ImmutableIntList
AbstractImmutableSortedMap. collectInt(IntFunction<? super V> intFunction)
-
Uses of ImmutableIntList in org.eclipse.collections.impl.set.sorted.immutable
Methods in org.eclipse.collections.impl.set.sorted.immutable that return ImmutableIntList Modifier and Type Method Description ImmutableIntList
AbstractImmutableSortedSet. collectInt(IntFunction<? super T> intFunction)
-
Uses of ImmutableIntList in org.eclipse.collections.impl.stream
Methods in org.eclipse.collections.impl.stream that return ImmutableIntList Modifier and Type Method Description static ImmutableIntList
PrimitiveStreams. iIntList(java.util.stream.IntStream stream)
-
Uses of ImmutableIntList in org.eclipse.collections.impl.string.immutable
Classes in org.eclipse.collections.impl.string.immutable that implement ImmutableIntList Modifier and Type Class Description class
CodePointAdapter
Calculates and provides the code points stored in a String as an ImmutableIntList.class
CodePointList
Calculates and provides the code points stored in a String as an ImmutableIntList.Fields in org.eclipse.collections.impl.string.immutable declared as ImmutableIntList Modifier and Type Field Description private ImmutableIntList
CodePointList. codePoints
Methods in org.eclipse.collections.impl.string.immutable that return ImmutableIntList Modifier and Type Method Description ImmutableIntList
CodePointAdapter. subList(int fromIndex, int toIndex)
ImmutableIntList
CodePointList. subList(int fromIndex, int toIndex)
ImmutableIntList
CodePointAdapter. toImmutable()
ImmutableIntList
CodePointList. toImmutable()
Constructors in org.eclipse.collections.impl.string.immutable with parameters of type ImmutableIntList Constructor Description CodePointList(ImmutableIntList points)
-