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 ofMaporg.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 theImmutableListinterface.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.ordered.immutable org.eclipse.collections.impl.map.sorted.immutable This package contains implementations of theMutableSortedMapinterface.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 ImmutableLongListImmutableSortedBag. 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 ImmutableLongListImmutableLongListFactory. empty()ImmutableLongListImmutableLongListFactory. of()Same asImmutableLongListFactory.empty().ImmutableLongListImmutableLongListFactory. of(long one)Same asImmutableLongListFactory.with(long).ImmutableLongListImmutableLongListFactory. of(long... items)ImmutableLongListImmutableLongListFactory. ofAll(java.lang.Iterable<java.lang.Long> iterable)ImmutableLongListImmutableLongListFactory. ofAll(java.util.stream.LongStream items)ImmutableLongListImmutableLongListFactory. ofAll(LongIterable items)ImmutableLongListImmutableLongListFactory. with()Same asImmutableLongListFactory.empty().ImmutableLongListImmutableLongListFactory. with(long one)ImmutableLongListImmutableLongListFactory. with(long... items)ImmutableLongListImmutableLongListFactory. withAll(java.lang.Iterable<java.lang.Long> iterable)ImmutableLongListImmutableLongListFactory. withAll(java.util.stream.LongStream items)ImmutableLongListImmutableLongListFactory. 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 ImmutableLongListImmutableList. 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 ImmutableLongListImmutableLongList. distinct()ImmutableLongListImmutableLongList. newWith(long element)ImmutableLongListImmutableLongList. newWithAll(LongIterable elements)ImmutableLongListImmutableLongList. newWithout(long element)ImmutableLongListImmutableLongList. newWithoutAll(LongIterable elements)ImmutableLongListImmutableLongList. reject(LongPredicate predicate)default ImmutableLongListImmutableLongList. rejectWithIndex(LongIntPredicate predicate)Returns a new ImmutableLongList excluding all elements with corresponding indexes matching the specified predicate.ImmutableLongListImmutableLongList. select(LongPredicate predicate)default ImmutableLongListImmutableLongList. selectWithIndex(LongIntPredicate predicate)Returns a new ImmutableLongList including all elements with corresponding indexes matching the specified predicate.ImmutableLongListImmutableLongList. subList(int fromIndex, int toIndex)default ImmutableLongListImmutableLongList. tap(LongProcedure procedure)ImmutableLongListLongList. toImmutable()Returns an immutable copy of this list.ImmutableLongListMutableLongList. toImmutable()Returns an immutable copy of this list.ImmutableLongListImmutableLongList. 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 ImmutableLongListImmutableOrderedMap. 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 ImmutableLongListImmutableSortedMap. 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 ImmutableLongListImmutableSortedSet. 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 ImmutableLongListAbstractImmutableSortedBag. 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 ImmutableLongListAbstractImmutableList. 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) classImmutableLongArrayListImmutableLongArrayList is the non-modifiable equivalent ofLongArrayList.(package private) classImmutableLongEmptyListImmutableLongEmptyList is an optimization forImmutableLongListof size 0.(package private) classImmutableLongSingletonListImmutableLongSingletonList is an optimization forImmutableLongListof size 1.Fields in org.eclipse.collections.impl.list.immutable.primitive declared as ImmutableLongList Modifier and Type Field Description (package private) static ImmutableLongListImmutableLongEmptyList. INSTANCEMethods in org.eclipse.collections.impl.list.immutable.primitive that return ImmutableLongList Modifier and Type Method Description ImmutableLongListImmutableLongArrayList. distinct()ImmutableLongListImmutableLongEmptyList. distinct()ImmutableLongListImmutableLongSingletonList. distinct()ImmutableLongListImmutableLongListFactoryImpl. empty()ImmutableLongListImmutableLongArrayList. newWith(long element)ImmutableLongListImmutableLongEmptyList. newWith(long element)ImmutableLongListImmutableLongSingletonList. newWith(long element)ImmutableLongListImmutableLongArrayList. newWithAll(LongIterable elements)ImmutableLongListImmutableLongEmptyList. newWithAll(LongIterable elements)ImmutableLongListImmutableLongSingletonList. newWithAll(LongIterable elements)ImmutableLongListImmutableLongArrayList. newWithout(long element)ImmutableLongListImmutableLongEmptyList. newWithout(long element)ImmutableLongListImmutableLongSingletonList. newWithout(long element)ImmutableLongListImmutableLongArrayList. newWithoutAll(LongIterable elements)ImmutableLongListImmutableLongEmptyList. newWithoutAll(LongIterable elements)ImmutableLongListImmutableLongSingletonList. newWithoutAll(LongIterable elements)ImmutableLongListImmutableLongListFactoryImpl. of()ImmutableLongListImmutableLongListFactoryImpl. of(long one)ImmutableLongListImmutableLongListFactoryImpl. of(long... items)ImmutableLongListImmutableLongListFactoryImpl. ofAll(java.lang.Iterable<java.lang.Long> iterable)ImmutableLongListImmutableLongListFactoryImpl. ofAll(java.util.stream.LongStream items)ImmutableLongListImmutableLongListFactoryImpl. ofAll(LongIterable items)ImmutableLongListImmutableLongArrayList. reject(LongPredicate predicate)ImmutableLongListImmutableLongEmptyList. reject(LongPredicate predicate)ImmutableLongListImmutableLongSingletonList. reject(LongPredicate predicate)ImmutableLongListImmutableLongArrayList. select(LongPredicate predicate)ImmutableLongListImmutableLongEmptyList. select(LongPredicate predicate)ImmutableLongListImmutableLongSingletonList. select(LongPredicate predicate)ImmutableLongListImmutableLongArrayList. subList(int fromIndex, int toIndex)ImmutableLongListImmutableLongEmptyList. subList(int fromIndex, int toIndex)ImmutableLongListImmutableLongSingletonList. subList(int fromIndex, int toIndex)ImmutableLongListImmutableLongArrayList. toImmutable()ImmutableLongListImmutableLongEmptyList. toImmutable()ImmutableLongListImmutableLongSingletonList. toImmutable()ImmutableLongListImmutableLongListFactoryImpl. with()ImmutableLongListImmutableLongListFactoryImpl. with(long one)ImmutableLongListImmutableLongListFactoryImpl. with(long... items)ImmutableLongListImmutableLongListFactoryImpl. withAll(java.lang.Iterable<java.lang.Long> iterable)ImmutableLongListImmutableLongListFactoryImpl. withAll(java.util.stream.LongStream items)ImmutableLongListImmutableLongListFactoryImpl. 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 ImmutableLongListLongArrayList. toImmutable()ImmutableLongListSynchronizedLongList. toImmutable()ImmutableLongListUnmodifiableLongList. 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 classLongIntervalAn 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 ImmutableLongListLongInterval. distinct()ImmutableLongListLongInterval. newWith(long element)ImmutableLongListLongInterval. newWithAll(LongIterable elements)ImmutableLongListLongInterval. newWithout(long element)ImmutableLongListLongInterval. newWithoutAll(LongIterable elements)ImmutableLongListLongInterval. reject(LongPredicate predicate)ImmutableLongListLongInterval. select(LongPredicate predicate)ImmutableLongListLongInterval. subList(int fromIndex, int toIndex)ImmutableLongListLongInterval. toImmutable() -
Uses of ImmutableLongList in org.eclipse.collections.impl.map.ordered.immutable
Methods in org.eclipse.collections.impl.map.ordered.immutable that return ImmutableLongList Modifier and Type Method Description ImmutableLongListImmutableOrderedMapAdapter. collectLong(LongFunction<? super V> longFunction) -
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 ImmutableLongListAbstractImmutableSortedMap. 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 ImmutableLongListAbstractImmutableSortedSet. 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 ImmutableLongListPrimitiveStreams. iLongList(java.util.stream.LongStream stream)
-