Uses of Interface
org.eclipse.collections.api.bag.primitive.ImmutableLongBag
Packages that use ImmutableLongBag
Package
Description
This package contains interfaces for Bag API.
This package contains API for Primitive Bags with Mutable and Immutable variants.
This package contains interfaces for map API which enhance the performance and functionality of
Map
This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.
This package contains implementations of the
ImmutableBag
interface.This package contains implementations of the immutable primitive bag interfaces.
This package contains implementations of the mutable primitive bag interfaces.
This package contains implementations of the
ImmutableMap
interface.This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.
-
Uses of ImmutableLongBag in org.eclipse.collections.api.bag
Methods in org.eclipse.collections.api.bag that return ImmutableLongBag -
Uses of ImmutableLongBag in org.eclipse.collections.api.bag.primitive
Methods in org.eclipse.collections.api.bag.primitive that return ImmutableLongBagModifier and TypeMethodDescriptionImmutableLongBag.newWith
(long element) ImmutableLongBag.newWithAll
(LongIterable elements) ImmutableLongBag.newWithout
(long element) ImmutableLongBag.newWithoutAll
(LongIterable elements) ImmutableLongBag.reject
(LongPredicate predicate) ImmutableLongBag.select
(LongPredicate predicate) ImmutableLongBag.selectByOccurrences
(IntPredicate predicate) Returns all elements of the bag that have a number of occurrences that satisfy the predicate.default ImmutableLongBag
ImmutableLongBag.selectDuplicates()
Returns all elements of the bag that have more than one occurrence.default ImmutableLongBag
ImmutableLongBag.tap
(LongProcedure procedure) LongBag.toImmutable()
Returns an immutable copy of this bag.MutableLongBag.toImmutable()
Returns an immutable copy of this bag. -
Uses of ImmutableLongBag in org.eclipse.collections.api.factory.bag.primitive
Methods in org.eclipse.collections.api.factory.bag.primitive that return ImmutableLongBagModifier and TypeMethodDescriptionImmutableLongBagFactory.empty()
ImmutableLongBagFactory.of()
Same asImmutableLongBagFactory.empty()
.ImmutableLongBagFactory.of
(long one) Same asImmutableLongBagFactory.with(long)
.ImmutableLongBagFactory.of
(long... items) Same asImmutableLongBagFactory.with(long[])
.ImmutableLongBagFactory.ofAll
(LongStream items) ImmutableLongBagFactory.ofAll
(LongIterable items) ImmutableLongBagFactory.with()
Same asImmutableLongBagFactory.empty()
.ImmutableLongBagFactory.with
(long one) ImmutableLongBagFactory.with
(long... items) ImmutableLongBagFactory.withAll
(LongStream items) ImmutableLongBagFactory.withAll
(LongIterable items) -
Uses of ImmutableLongBag in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map that return ImmutableLongBag -
Uses of ImmutableLongBag in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return ImmutableLongBagModifier and TypeMethodDescriptionImmutablePrimitiveObjectMap.collectLong
(LongFunction<? super V> longFunction) ImmutableByteLongMap.reject
(LongPredicate predicate) ImmutableCharLongMap.reject
(LongPredicate predicate) ImmutableDoubleLongMap.reject
(LongPredicate predicate) ImmutableFloatLongMap.reject
(LongPredicate predicate) ImmutableIntLongMap.reject
(LongPredicate predicate) ImmutableLongLongMap.reject
(LongPredicate predicate) ImmutableShortLongMap.reject
(LongPredicate predicate) ImmutableByteLongMap.select
(LongPredicate predicate) ImmutableCharLongMap.select
(LongPredicate predicate) ImmutableDoubleLongMap.select
(LongPredicate predicate) ImmutableFloatLongMap.select
(LongPredicate predicate) ImmutableIntLongMap.select
(LongPredicate predicate) ImmutableLongLongMap.select
(LongPredicate predicate) ImmutableShortLongMap.select
(LongPredicate predicate) -
Uses of ImmutableLongBag in org.eclipse.collections.impl.bag.immutable
Methods in org.eclipse.collections.impl.bag.immutable that return ImmutableLongBagModifier and TypeMethodDescriptionAbstractImmutableBag.collectLong
(LongFunction<? super T> longFunction) ImmutableEmptyBag.collectLong
(LongFunction<? super T> longFunction) -
Uses of ImmutableLongBag in org.eclipse.collections.impl.bag.immutable.primitive
Classes in org.eclipse.collections.impl.bag.immutable.primitive that implement ImmutableLongBagModifier and TypeClassDescription(package private) final class
ImmutableLongEmptyBag is an optimization forImmutableLongBag
of size 0.(package private) final class
ImmutableLongHashBag is the non-modifiable equivalent ofLongHashBag
.(package private) final class
ImmutableLongSingletonBag is an optimization forImmutableLongBag
of size 1.Fields in org.eclipse.collections.impl.bag.immutable.primitive declared as ImmutableLongBagModifier and TypeFieldDescription(package private) static final ImmutableLongBag
ImmutableLongEmptyBag.INSTANCE
Methods in org.eclipse.collections.impl.bag.immutable.primitive that return ImmutableLongBagModifier and TypeMethodDescriptionImmutableLongBagFactoryImpl.empty()
ImmutableLongEmptyBag.newWith
(long element) ImmutableLongHashBag.newWith
(long element) ImmutableLongSingletonBag.newWith
(long element) ImmutableLongEmptyBag.newWithAll
(LongIterable elements) ImmutableLongHashBag.newWithAll
(LongIterable elements) ImmutableLongSingletonBag.newWithAll
(LongIterable elements) ImmutableLongEmptyBag.newWithout
(long element) ImmutableLongHashBag.newWithout
(long element) ImmutableLongSingletonBag.newWithout
(long element) ImmutableLongEmptyBag.newWithoutAll
(LongIterable elements) ImmutableLongHashBag.newWithoutAll
(LongIterable elements) ImmutableLongSingletonBag.newWithoutAll
(LongIterable elements) ImmutableLongBagFactoryImpl.of()
ImmutableLongBagFactoryImpl.of
(long one) ImmutableLongBagFactoryImpl.of
(long... items) ImmutableLongBagFactoryImpl.ofAll
(LongStream items) ImmutableLongBagFactoryImpl.ofAll
(LongIterable items) ImmutableLongEmptyBag.reject
(LongPredicate predicate) ImmutableLongHashBag.reject
(LongPredicate predicate) ImmutableLongSingletonBag.reject
(LongPredicate predicate) ImmutableLongEmptyBag.select
(LongPredicate predicate) ImmutableLongHashBag.select
(LongPredicate predicate) ImmutableLongSingletonBag.select
(LongPredicate predicate) ImmutableLongEmptyBag.selectByOccurrences
(IntPredicate predicate) ImmutableLongHashBag.selectByOccurrences
(IntPredicate predicate) ImmutableLongSingletonBag.selectByOccurrences
(IntPredicate predicate) ImmutableLongEmptyBag.toImmutable()
ImmutableLongHashBag.toImmutable()
ImmutableLongSingletonBag.toImmutable()
ImmutableLongBagFactoryImpl.with()
ImmutableLongBagFactoryImpl.with
(long one) ImmutableLongBagFactoryImpl.with
(long... items) ImmutableLongBagFactoryImpl.withAll
(LongStream items) ImmutableLongBagFactoryImpl.withAll
(LongIterable items) -
Uses of ImmutableLongBag in org.eclipse.collections.impl.bag.mutable.primitive
Methods in org.eclipse.collections.impl.bag.mutable.primitive that return ImmutableLongBagModifier and TypeMethodDescriptionLongHashBag.toImmutable()
SynchronizedLongBag.toImmutable()
UnmodifiableLongBag.toImmutable()
-
Uses of ImmutableLongBag in org.eclipse.collections.impl.bimap.immutable
Methods in org.eclipse.collections.impl.bimap.immutable that return ImmutableLongBagModifier and TypeMethodDescriptionAbstractImmutableBiMap.collectLong
(LongFunction<? super V> longFunction) -
Uses of ImmutableLongBag in org.eclipse.collections.impl.map.immutable
Methods in org.eclipse.collections.impl.map.immutable that return ImmutableLongBagModifier and TypeMethodDescriptionAbstractImmutableMap.collectLong
(LongFunction<? super V> longFunction) -
Uses of ImmutableLongBag in org.eclipse.collections.impl.map.immutable.primitive
Methods in org.eclipse.collections.impl.map.immutable.primitive that return ImmutableLongBagModifier and TypeMethodDescriptionImmutableByteObjectEmptyMap.collectLong
(LongFunction<? super V> longFunction) ImmutableByteObjectHashMap.collectLong
(LongFunction<? super V> longFunction) ImmutableByteObjectSingletonMap.collectLong
(LongFunction<? super V> longFunction) ImmutableCharObjectEmptyMap.collectLong
(LongFunction<? super V> longFunction) ImmutableCharObjectHashMap.collectLong
(LongFunction<? super V> longFunction) ImmutableCharObjectSingletonMap.collectLong
(LongFunction<? super V> longFunction) ImmutableDoubleObjectEmptyMap.collectLong
(LongFunction<? super V> longFunction) ImmutableDoubleObjectHashMap.collectLong
(LongFunction<? super V> longFunction) ImmutableDoubleObjectSingletonMap.collectLong
(LongFunction<? super V> longFunction) ImmutableFloatObjectEmptyMap.collectLong
(LongFunction<? super V> longFunction) ImmutableFloatObjectHashMap.collectLong
(LongFunction<? super V> longFunction) ImmutableFloatObjectSingletonMap.collectLong
(LongFunction<? super V> longFunction) ImmutableIntObjectEmptyMap.collectLong
(LongFunction<? super V> longFunction) ImmutableIntObjectHashMap.collectLong
(LongFunction<? super V> longFunction) ImmutableIntObjectSingletonMap.collectLong
(LongFunction<? super V> longFunction) ImmutableLongObjectEmptyMap.collectLong
(LongFunction<? super V> longFunction) ImmutableLongObjectHashMap.collectLong
(LongFunction<? super V> longFunction) ImmutableLongObjectSingletonMap.collectLong
(LongFunction<? super V> longFunction) ImmutableShortObjectEmptyMap.collectLong
(LongFunction<? super V> longFunction) ImmutableShortObjectHashMap.collectLong
(LongFunction<? super V> longFunction) ImmutableShortObjectSingletonMap.collectLong
(LongFunction<? super V> longFunction) ImmutableByteLongEmptyMap.reject
(LongPredicate predicate) ImmutableByteLongHashMap.reject
(LongPredicate predicate) ImmutableByteLongSingletonMap.reject
(LongPredicate predicate) ImmutableCharLongEmptyMap.reject
(LongPredicate predicate) ImmutableCharLongHashMap.reject
(LongPredicate predicate) ImmutableCharLongSingletonMap.reject
(LongPredicate predicate) ImmutableDoubleLongEmptyMap.reject
(LongPredicate predicate) ImmutableDoubleLongHashMap.reject
(LongPredicate predicate) ImmutableDoubleLongSingletonMap.reject
(LongPredicate predicate) ImmutableFloatLongEmptyMap.reject
(LongPredicate predicate) ImmutableFloatLongHashMap.reject
(LongPredicate predicate) ImmutableFloatLongSingletonMap.reject
(LongPredicate predicate) ImmutableIntLongEmptyMap.reject
(LongPredicate predicate) ImmutableIntLongHashMap.reject
(LongPredicate predicate) ImmutableIntLongSingletonMap.reject
(LongPredicate predicate) ImmutableLongLongEmptyMap.reject
(LongPredicate predicate) ImmutableLongLongHashMap.reject
(LongPredicate predicate) ImmutableLongLongSingletonMap.reject
(LongPredicate predicate) ImmutableShortLongEmptyMap.reject
(LongPredicate predicate) ImmutableShortLongHashMap.reject
(LongPredicate predicate) ImmutableShortLongSingletonMap.reject
(LongPredicate predicate) ImmutableByteLongEmptyMap.select
(LongPredicate predicate) ImmutableByteLongHashMap.select
(LongPredicate predicate) ImmutableByteLongSingletonMap.select
(LongPredicate predicate) ImmutableCharLongEmptyMap.select
(LongPredicate predicate) ImmutableCharLongHashMap.select
(LongPredicate predicate) ImmutableCharLongSingletonMap.select
(LongPredicate predicate) ImmutableDoubleLongEmptyMap.select
(LongPredicate predicate) ImmutableDoubleLongHashMap.select
(LongPredicate predicate) ImmutableDoubleLongSingletonMap.select
(LongPredicate predicate) ImmutableFloatLongEmptyMap.select
(LongPredicate predicate) ImmutableFloatLongHashMap.select
(LongPredicate predicate) ImmutableFloatLongSingletonMap.select
(LongPredicate predicate) ImmutableIntLongEmptyMap.select
(LongPredicate predicate) ImmutableIntLongHashMap.select
(LongPredicate predicate) ImmutableIntLongSingletonMap.select
(LongPredicate predicate) ImmutableLongLongEmptyMap.select
(LongPredicate predicate) ImmutableLongLongHashMap.select
(LongPredicate predicate) ImmutableLongLongSingletonMap.select
(LongPredicate predicate) ImmutableShortLongEmptyMap.select
(LongPredicate predicate) ImmutableShortLongHashMap.select
(LongPredicate predicate) ImmutableShortLongSingletonMap.select
(LongPredicate predicate) -
Uses of ImmutableLongBag in org.eclipse.collections.impl.stream
Methods in org.eclipse.collections.impl.stream that return ImmutableLongBagModifier and TypeMethodDescriptionstatic ImmutableLongBag
PrimitiveStreams.iLongBag
(LongStream stream)