Uses of Interface
org.eclipse.collections.api.list.primitive.ImmutableLongList
Packages that use ImmutableLongList
Package
Description
This package contains interfaces for SortedBag API.
This package contains factory API for creating immutable primitive list instances.
This package contains interfaces for list API which enhance the performance and functionality of
List
.This package contains mutable and immutable primitive list API.
This package contains interfaces for map API which enhance the performance and functionality of
Map
This package contains mutable and immutable sorted map interfaces.
This package contains interfaces for sorted set API.
This package contains implementations of the
ImmutableList
interface.This package contains implementations of immutable primitive list interfaces and immutable primitive list factory interfaces.
This package contains implementations of the mutable primitive list interfaces.
This package contains implementations of the primitive list interfaces.
This package contains implementations of the
MutableSortedMap
interface.This package contains implementations of
ImmutableSortedSet
.-
Uses of ImmutableLongList in org.eclipse.collections.api.bag.sorted
Methods in org.eclipse.collections.api.bag.sorted that return ImmutableLongListModifier and TypeMethodDescriptionImmutableSortedBag.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 ImmutableLongListModifier and TypeMethodDescriptionImmutableLongListFactory.empty()
ImmutableLongListFactory.of()
Same asImmutableLongListFactory.empty()
.ImmutableLongListFactory.of
(long one) Same asImmutableLongListFactory.with(long)
.ImmutableLongListFactory.of
(long... items) ImmutableLongListFactory.ofAll
(LongStream items) ImmutableLongListFactory.ofAll
(LongIterable items) ImmutableLongListFactory.with()
Same asImmutableLongListFactory.empty()
.ImmutableLongListFactory.with
(long one) ImmutableLongListFactory.with
(long... items) ImmutableLongListFactory.withAll
(LongStream items) ImmutableLongListFactory.withAll
(LongIterable items) -
Uses of ImmutableLongList in org.eclipse.collections.api.list
Methods in org.eclipse.collections.api.list that return ImmutableLongListModifier and TypeMethodDescriptionImmutableList.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 ImmutableLongListModifier and TypeMethodDescriptionImmutableLongList.distinct()
ImmutableLongList.newWith
(long element) ImmutableLongList.newWithAll
(LongIterable elements) ImmutableLongList.newWithout
(long element) ImmutableLongList.newWithoutAll
(LongIterable elements) 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.select
(LongPredicate predicate) default ImmutableLongList
ImmutableLongList.selectWithIndex
(LongIntPredicate predicate) Returns a new ImmutableLongList including all elements with corresponding indexes matching the specified predicate.ImmutableLongList.subList
(int fromIndex, int toIndex) default ImmutableLongList
ImmutableLongList.tap
(LongProcedure procedure) LongList.toImmutable()
Returns an immutable copy of this list.MutableLongList.toImmutable()
Returns an immutable copy of this list.ImmutableLongList.toReversed()
-
Uses of ImmutableLongList in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map that return ImmutableLongListModifier and TypeMethodDescriptionImmutableOrderedMap.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 ImmutableLongListModifier and TypeMethodDescriptionImmutableSortedMap.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 ImmutableLongListModifier and TypeMethodDescriptionImmutableSortedSet.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 ImmutableLongListModifier and TypeMethodDescriptionAbstractImmutableSortedBag.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 ImmutableLongListModifier and TypeMethodDescriptionAbstractImmutableList.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 ImmutableLongListModifier and TypeClassDescription(package private) final class
ImmutableLongArrayList is the non-modifiable equivalent ofLongArrayList
.(package private) final class
ImmutableLongEmptyList is an optimization forImmutableLongList
of size 0.(package private) final class
ImmutableLongSingletonList is an optimization forImmutableLongList
of size 1.Fields in org.eclipse.collections.impl.list.immutable.primitive declared as ImmutableLongListModifier and TypeFieldDescription(package private) static final ImmutableLongList
ImmutableLongEmptyList.INSTANCE
Methods in org.eclipse.collections.impl.list.immutable.primitive that return ImmutableLongListModifier and TypeMethodDescriptionImmutableLongArrayList.distinct()
ImmutableLongEmptyList.distinct()
ImmutableLongSingletonList.distinct()
ImmutableLongListFactoryImpl.empty()
ImmutableLongArrayList.newWith
(long element) ImmutableLongEmptyList.newWith
(long element) ImmutableLongSingletonList.newWith
(long element) ImmutableLongArrayList.newWithAll
(LongIterable elements) ImmutableLongEmptyList.newWithAll
(LongIterable elements) ImmutableLongSingletonList.newWithAll
(LongIterable elements) ImmutableLongArrayList.newWithout
(long element) ImmutableLongEmptyList.newWithout
(long element) ImmutableLongSingletonList.newWithout
(long element) ImmutableLongArrayList.newWithoutAll
(LongIterable elements) ImmutableLongEmptyList.newWithoutAll
(LongIterable elements) ImmutableLongSingletonList.newWithoutAll
(LongIterable elements) ImmutableLongListFactoryImpl.of()
ImmutableLongListFactoryImpl.of
(long one) ImmutableLongListFactoryImpl.of
(long... items) ImmutableLongListFactoryImpl.ofAll
(LongStream items) ImmutableLongListFactoryImpl.ofAll
(LongIterable items) ImmutableLongArrayList.reject
(LongPredicate predicate) ImmutableLongEmptyList.reject
(LongPredicate predicate) ImmutableLongSingletonList.reject
(LongPredicate predicate) ImmutableLongArrayList.select
(LongPredicate predicate) ImmutableLongEmptyList.select
(LongPredicate predicate) ImmutableLongSingletonList.select
(LongPredicate predicate) ImmutableLongArrayList.subList
(int fromIndex, int toIndex) ImmutableLongEmptyList.subList
(int fromIndex, int toIndex) ImmutableLongSingletonList.subList
(int fromIndex, int toIndex) ImmutableLongArrayList.toImmutable()
ImmutableLongEmptyList.toImmutable()
ImmutableLongSingletonList.toImmutable()
ImmutableLongListFactoryImpl.with()
ImmutableLongListFactoryImpl.with
(long one) ImmutableLongListFactoryImpl.with
(long... items) ImmutableLongListFactoryImpl.withAll
(LongStream items) 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 ImmutableLongListModifier and TypeMethodDescriptionLongArrayList.toImmutable()
SynchronizedLongList.toImmutable()
UnmodifiableLongList.toImmutable()
-
Uses of ImmutableLongList in org.eclipse.collections.impl.list.primitive
Classes in org.eclipse.collections.impl.list.primitive that implement ImmutableLongListModifier and TypeClassDescriptionfinal class
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 ImmutableLongListModifier and TypeMethodDescriptionLongInterval.distinct()
LongInterval.newWith
(long element) LongInterval.newWithAll
(LongIterable elements) LongInterval.newWithout
(long element) LongInterval.newWithoutAll
(LongIterable elements) LongInterval.reject
(LongPredicate predicate) LongInterval.select
(LongPredicate predicate) LongInterval.subList
(int fromIndex, int toIndex) LongInterval.toImmutable()
-
Uses of ImmutableLongList in org.eclipse.collections.impl.map.sorted.immutable
Methods in org.eclipse.collections.impl.map.sorted.immutable that return ImmutableLongListModifier and TypeMethodDescriptionAbstractImmutableSortedMap.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 ImmutableLongListModifier and TypeMethodDescriptionAbstractImmutableSortedSet.collectLong
(LongFunction<? super T> longFunction) -
Uses of ImmutableLongList in org.eclipse.collections.impl.stream
Methods in org.eclipse.collections.impl.stream that return ImmutableLongListModifier and TypeMethodDescriptionstatic ImmutableLongList
PrimitiveStreams.iLongList
(LongStream stream)