Uses of Interface
org.eclipse.collections.api.list.primitive.ImmutableLongList
-
Packages that use ImmutableLongList 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 -
-
Uses of ImmutableLongList in org.eclipse.collections.api.bag.sorted
Methods in org.eclipse.collections.api.bag.sorted that return ImmutableLongList Modifier and Type Method Description ImmutableLongList
ImmutableSortedBag. collectLong(LongFunction<? super T> longFunction)
-
Uses of ImmutableLongList in org.eclipse.collections.api.factory.list.primitive
Methods in org.eclipse.collections.api.factory.list.primitive that return ImmutableLongList Modifier and Type Method Description ImmutableLongList
ImmutableLongListFactory. empty()
ImmutableLongList
ImmutableLongListFactory. of()
Same asImmutableLongListFactory.empty()
.ImmutableLongList
ImmutableLongListFactory. of(long one)
Same asImmutableLongListFactory.with(long)
.ImmutableLongList
ImmutableLongListFactory. of(long... items)
ImmutableLongList
ImmutableLongListFactory. ofAll(java.lang.Iterable<java.lang.Long> iterable)
ImmutableLongList
ImmutableLongListFactory. ofAll(java.util.stream.LongStream items)
ImmutableLongList
ImmutableLongListFactory. ofAll(LongIterable items)
ImmutableLongList
ImmutableLongListFactory. with()
Same asImmutableLongListFactory.empty()
.ImmutableLongList
ImmutableLongListFactory. with(long one)
ImmutableLongList
ImmutableLongListFactory. with(long... items)
ImmutableLongList
ImmutableLongListFactory. withAll(java.lang.Iterable<java.lang.Long> iterable)
ImmutableLongList
ImmutableLongListFactory. withAll(java.util.stream.LongStream items)
ImmutableLongList
ImmutableLongListFactory. withAll(LongIterable items)
-
Uses of ImmutableLongList in org.eclipse.collections.api.list
Methods in org.eclipse.collections.api.list that return ImmutableLongList Modifier and Type Method Description ImmutableLongList
ImmutableList. collectLong(LongFunction<? super T> longFunction)
-
Uses of ImmutableLongList in org.eclipse.collections.api.list.primitive
Methods in org.eclipse.collections.api.list.primitive that return ImmutableLongList Modifier and Type Method Description ImmutableLongList
ImmutableLongList. distinct()
ImmutableLongList
ImmutableLongList. newWith(long element)
ImmutableLongList
ImmutableLongList. newWithAll(LongIterable elements)
ImmutableLongList
ImmutableLongList. newWithout(long element)
ImmutableLongList
ImmutableLongList. newWithoutAll(LongIterable elements)
ImmutableLongList
ImmutableLongList. reject(LongPredicate predicate)
default ImmutableLongList
ImmutableLongList. rejectWithIndex(LongIntPredicate predicate)
Returns a new ImmutableLongList excluding all elements with corresponding indexes matching the specified predicate.ImmutableLongList
ImmutableLongList. select(LongPredicate predicate)
default ImmutableLongList
ImmutableLongList. selectWithIndex(LongIntPredicate predicate)
Returns a new ImmutableLongList including all elements with corresponding indexes matching the specified predicate.ImmutableLongList
ImmutableLongList. subList(int fromIndex, int toIndex)
default ImmutableLongList
ImmutableLongList. tap(LongProcedure procedure)
ImmutableLongList
LongList. toImmutable()
Returns an immutable copy of this list.ImmutableLongList
MutableLongList. toImmutable()
Returns an immutable copy of this list.ImmutableLongList
ImmutableLongList. toReversed()
-
Uses of ImmutableLongList in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map that return ImmutableLongList Modifier and Type Method Description ImmutableLongList
ImmutableOrderedMap. collectLong(LongFunction<? super V> longFunction)
-
Uses of ImmutableLongList in org.eclipse.collections.api.map.sorted
Methods in org.eclipse.collections.api.map.sorted that return ImmutableLongList Modifier and Type Method Description ImmutableLongList
ImmutableSortedMap. collectLong(LongFunction<? super V> longFunction)
-
Uses of ImmutableLongList in org.eclipse.collections.api.set.sorted
Methods in org.eclipse.collections.api.set.sorted that return ImmutableLongList Modifier and Type Method Description ImmutableLongList
ImmutableSortedSet. collectLong(LongFunction<? super T> longFunction)
-
Uses of ImmutableLongList in org.eclipse.collections.impl.bag.sorted.immutable
Methods in org.eclipse.collections.impl.bag.sorted.immutable that return ImmutableLongList Modifier and Type Method Description ImmutableLongList
AbstractImmutableSortedBag. collectLong(LongFunction<? super T> longFunction)
-
Uses of ImmutableLongList in org.eclipse.collections.impl.list.immutable
Methods in org.eclipse.collections.impl.list.immutable that return ImmutableLongList Modifier and Type Method Description ImmutableLongList
AbstractImmutableList. collectLong(LongFunction<? super T> longFunction)
-
Uses of ImmutableLongList in org.eclipse.collections.impl.list.immutable.primitive
Classes in org.eclipse.collections.impl.list.immutable.primitive that implement ImmutableLongList Modifier and Type Class Description (package private) class
ImmutableLongArrayList
ImmutableLongArrayList is the non-modifiable equivalent ofLongArrayList
.(package private) class
ImmutableLongEmptyList
ImmutableLongEmptyList is an optimization forImmutableLongList
of size 0.(package private) class
ImmutableLongSingletonList
ImmutableLongSingletonList is an optimization forImmutableLongList
of size 1.Fields in org.eclipse.collections.impl.list.immutable.primitive declared as ImmutableLongList Modifier and Type Field Description (package private) static ImmutableLongList
ImmutableLongEmptyList. INSTANCE
Methods in org.eclipse.collections.impl.list.immutable.primitive that return ImmutableLongList Modifier and Type Method Description ImmutableLongList
ImmutableLongArrayList. distinct()
ImmutableLongList
ImmutableLongEmptyList. distinct()
ImmutableLongList
ImmutableLongSingletonList. distinct()
ImmutableLongList
ImmutableLongListFactoryImpl. empty()
ImmutableLongList
ImmutableLongArrayList. newWith(long element)
ImmutableLongList
ImmutableLongEmptyList. newWith(long element)
ImmutableLongList
ImmutableLongSingletonList. newWith(long element)
ImmutableLongList
ImmutableLongArrayList. newWithAll(LongIterable elements)
ImmutableLongList
ImmutableLongEmptyList. newWithAll(LongIterable elements)
ImmutableLongList
ImmutableLongSingletonList. newWithAll(LongIterable elements)
ImmutableLongList
ImmutableLongArrayList. newWithout(long element)
ImmutableLongList
ImmutableLongEmptyList. newWithout(long element)
ImmutableLongList
ImmutableLongSingletonList. newWithout(long element)
ImmutableLongList
ImmutableLongArrayList. newWithoutAll(LongIterable elements)
ImmutableLongList
ImmutableLongEmptyList. newWithoutAll(LongIterable elements)
ImmutableLongList
ImmutableLongSingletonList. newWithoutAll(LongIterable elements)
ImmutableLongList
ImmutableLongListFactoryImpl. of()
ImmutableLongList
ImmutableLongListFactoryImpl. of(long one)
ImmutableLongList
ImmutableLongListFactoryImpl. of(long... items)
ImmutableLongList
ImmutableLongListFactoryImpl. ofAll(java.lang.Iterable<java.lang.Long> iterable)
ImmutableLongList
ImmutableLongListFactoryImpl. ofAll(java.util.stream.LongStream items)
ImmutableLongList
ImmutableLongListFactoryImpl. ofAll(LongIterable items)
ImmutableLongList
ImmutableLongArrayList. reject(LongPredicate predicate)
ImmutableLongList
ImmutableLongEmptyList. reject(LongPredicate predicate)
ImmutableLongList
ImmutableLongSingletonList. reject(LongPredicate predicate)
ImmutableLongList
ImmutableLongArrayList. select(LongPredicate predicate)
ImmutableLongList
ImmutableLongEmptyList. select(LongPredicate predicate)
ImmutableLongList
ImmutableLongSingletonList. select(LongPredicate predicate)
ImmutableLongList
ImmutableLongArrayList. subList(int fromIndex, int toIndex)
ImmutableLongList
ImmutableLongEmptyList. subList(int fromIndex, int toIndex)
ImmutableLongList
ImmutableLongSingletonList. subList(int fromIndex, int toIndex)
ImmutableLongList
ImmutableLongArrayList. toImmutable()
ImmutableLongList
ImmutableLongEmptyList. toImmutable()
ImmutableLongList
ImmutableLongSingletonList. toImmutable()
ImmutableLongList
ImmutableLongListFactoryImpl. with()
ImmutableLongList
ImmutableLongListFactoryImpl. with(long one)
ImmutableLongList
ImmutableLongListFactoryImpl. with(long... items)
ImmutableLongList
ImmutableLongListFactoryImpl. withAll(java.lang.Iterable<java.lang.Long> iterable)
ImmutableLongList
ImmutableLongListFactoryImpl. withAll(java.util.stream.LongStream items)
ImmutableLongList
ImmutableLongListFactoryImpl. withAll(LongIterable items)
-
Uses of ImmutableLongList in org.eclipse.collections.impl.list.mutable.primitive
Methods in org.eclipse.collections.impl.list.mutable.primitive that return ImmutableLongList Modifier and Type Method Description ImmutableLongList
LongArrayList. toImmutable()
ImmutableLongList
SynchronizedLongList. toImmutable()
ImmutableLongList
UnmodifiableLongList. toImmutable()
-
Uses of ImmutableLongList in org.eclipse.collections.impl.list.primitive
Classes in org.eclipse.collections.impl.list.primitive that implement ImmutableLongList Modifier and Type Class Description class
LongInterval
An LongInterval is a range of longs that may be iterated over using a step value.Methods in org.eclipse.collections.impl.list.primitive that return ImmutableLongList Modifier and Type Method Description ImmutableLongList
LongInterval. distinct()
ImmutableLongList
LongInterval. newWith(long element)
ImmutableLongList
LongInterval. newWithAll(LongIterable elements)
ImmutableLongList
LongInterval. newWithout(long element)
ImmutableLongList
LongInterval. newWithoutAll(LongIterable elements)
ImmutableLongList
LongInterval. reject(LongPredicate predicate)
ImmutableLongList
LongInterval. select(LongPredicate predicate)
ImmutableLongList
LongInterval. subList(int fromIndex, int toIndex)
ImmutableLongList
LongInterval. toImmutable()
-
Uses of ImmutableLongList in org.eclipse.collections.impl.map.sorted.immutable
Methods in org.eclipse.collections.impl.map.sorted.immutable that return ImmutableLongList Modifier and Type Method Description ImmutableLongList
AbstractImmutableSortedMap. collectLong(LongFunction<? super V> longFunction)
-
Uses of ImmutableLongList in org.eclipse.collections.impl.set.sorted.immutable
Methods in org.eclipse.collections.impl.set.sorted.immutable that return ImmutableLongList Modifier and Type Method Description ImmutableLongList
AbstractImmutableSortedSet. collectLong(LongFunction<? super T> longFunction)
-
Uses of ImmutableLongList in org.eclipse.collections.impl.stream
Methods in org.eclipse.collections.impl.stream that return ImmutableLongList Modifier and Type Method Description static ImmutableLongList
PrimitiveStreams. iLongList(java.util.stream.LongStream stream)
-