Uses of Interface
org.eclipse.collections.api.bag.primitive.ImmutableLongBag
-
Packages that use ImmutableLongBag Package Description org.eclipse.collections.api.bag This package contains interfaces for Bag API.org.eclipse.collections.api.bag.primitive This package contains API for Primitive Bags with Mutable and Immutable variants.org.eclipse.collections.api.factory.bag.primitive org.eclipse.collections.api.map This package contains interfaces for map API which enhance the performance and functionality ofMap
org.eclipse.collections.api.map.primitive This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.org.eclipse.collections.impl.bag.immutable This package contains implementations of theImmutableBag
interface.org.eclipse.collections.impl.bag.immutable.primitive This package contains implementations of the immutable primitive bag interfaces.org.eclipse.collections.impl.bag.mutable.primitive This package contains implementations of the mutable primitive bag interfaces.org.eclipse.collections.impl.bimap.immutable org.eclipse.collections.impl.map.immutable This package contains implementations of theImmutableMap
interface.org.eclipse.collections.impl.map.immutable.primitive This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.org.eclipse.collections.impl.stream -
-
Uses of ImmutableLongBag in org.eclipse.collections.api.bag
Methods in org.eclipse.collections.api.bag that return ImmutableLongBag Modifier and Type Method Description ImmutableLongBag
ImmutableBag. collectLong(LongFunction<? super T> longFunction)
-
Uses of ImmutableLongBag in org.eclipse.collections.api.bag.primitive
Methods in org.eclipse.collections.api.bag.primitive that return ImmutableLongBag Modifier and Type Method Description ImmutableLongBag
ImmutableLongBag. newWith(long element)
ImmutableLongBag
ImmutableLongBag. newWithAll(LongIterable elements)
ImmutableLongBag
ImmutableLongBag. newWithout(long element)
ImmutableLongBag
ImmutableLongBag. newWithoutAll(LongIterable elements)
ImmutableLongBag
ImmutableLongBag. reject(LongPredicate predicate)
ImmutableLongBag
ImmutableLongBag. select(LongPredicate predicate)
ImmutableLongBag
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)
ImmutableLongBag
LongBag. toImmutable()
Returns an immutable copy of this bag.ImmutableLongBag
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 ImmutableLongBag Modifier and Type Method Description ImmutableLongBag
ImmutableLongBagFactory. empty()
ImmutableLongBag
ImmutableLongBagFactory. of()
Same asImmutableLongBagFactory.empty()
.ImmutableLongBag
ImmutableLongBagFactory. of(long one)
Same asImmutableLongBagFactory.with(long)
.ImmutableLongBag
ImmutableLongBagFactory. of(long... items)
Same asImmutableLongBagFactory.with(long[])
.ImmutableLongBag
ImmutableLongBagFactory. ofAll(java.lang.Iterable<java.lang.Long> iterable)
ImmutableLongBag
ImmutableLongBagFactory. ofAll(java.util.stream.LongStream items)
ImmutableLongBag
ImmutableLongBagFactory. ofAll(LongIterable items)
ImmutableLongBag
ImmutableLongBagFactory. with()
Same asImmutableLongBagFactory.empty()
.ImmutableLongBag
ImmutableLongBagFactory. with(long one)
ImmutableLongBag
ImmutableLongBagFactory. with(long... items)
ImmutableLongBag
ImmutableLongBagFactory. withAll(java.lang.Iterable<java.lang.Long> iterable)
ImmutableLongBag
ImmutableLongBagFactory. withAll(java.util.stream.LongStream items)
ImmutableLongBag
ImmutableLongBagFactory. withAll(LongIterable items)
-
Uses of ImmutableLongBag in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map that return ImmutableLongBag Modifier and Type Method Description ImmutableLongBag
ImmutableMap. collectLong(LongFunction<? super V> longFunction)
-
Uses of ImmutableLongBag in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return ImmutableLongBag Modifier and Type Method Description ImmutableLongBag
ImmutablePrimitiveObjectMap. collectLong(LongFunction<? super V> longFunction)
ImmutableLongBag
ImmutableByteLongMap. reject(LongPredicate predicate)
ImmutableLongBag
ImmutableCharLongMap. reject(LongPredicate predicate)
ImmutableLongBag
ImmutableDoubleLongMap. reject(LongPredicate predicate)
ImmutableLongBag
ImmutableFloatLongMap. reject(LongPredicate predicate)
ImmutableLongBag
ImmutableIntLongMap. reject(LongPredicate predicate)
ImmutableLongBag
ImmutableLongLongMap. reject(LongPredicate predicate)
ImmutableLongBag
ImmutableShortLongMap. reject(LongPredicate predicate)
ImmutableLongBag
ImmutableByteLongMap. select(LongPredicate predicate)
ImmutableLongBag
ImmutableCharLongMap. select(LongPredicate predicate)
ImmutableLongBag
ImmutableDoubleLongMap. select(LongPredicate predicate)
ImmutableLongBag
ImmutableFloatLongMap. select(LongPredicate predicate)
ImmutableLongBag
ImmutableIntLongMap. select(LongPredicate predicate)
ImmutableLongBag
ImmutableLongLongMap. select(LongPredicate predicate)
ImmutableLongBag
ImmutableShortLongMap. select(LongPredicate predicate)
-
Uses of ImmutableLongBag in org.eclipse.collections.impl.bag.immutable
Methods in org.eclipse.collections.impl.bag.immutable that return ImmutableLongBag Modifier and Type Method Description ImmutableLongBag
AbstractImmutableBag. collectLong(LongFunction<? super T> longFunction)
ImmutableLongBag
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 ImmutableLongBag Modifier and Type Class Description (package private) class
ImmutableLongEmptyBag
ImmutableLongEmptyBag is an optimization forImmutableLongBag
of size 0.(package private) class
ImmutableLongHashBag
ImmutableLongHashBag is the non-modifiable equivalent ofLongHashBag
.(package private) class
ImmutableLongSingletonBag
ImmutableLongSingletonBag is an optimization forImmutableLongBag
of size 1.Fields in org.eclipse.collections.impl.bag.immutable.primitive declared as ImmutableLongBag Modifier and Type Field Description (package private) static ImmutableLongBag
ImmutableLongEmptyBag. INSTANCE
Methods in org.eclipse.collections.impl.bag.immutable.primitive that return ImmutableLongBag Modifier and Type Method Description ImmutableLongBag
ImmutableLongBagFactoryImpl. empty()
ImmutableLongBag
ImmutableLongEmptyBag. newWith(long element)
ImmutableLongBag
ImmutableLongHashBag. newWith(long element)
ImmutableLongBag
ImmutableLongSingletonBag. newWith(long element)
ImmutableLongBag
ImmutableLongEmptyBag. newWithAll(LongIterable elements)
ImmutableLongBag
ImmutableLongHashBag. newWithAll(LongIterable elements)
ImmutableLongBag
ImmutableLongSingletonBag. newWithAll(LongIterable elements)
ImmutableLongBag
ImmutableLongEmptyBag. newWithout(long element)
ImmutableLongBag
ImmutableLongHashBag. newWithout(long element)
ImmutableLongBag
ImmutableLongSingletonBag. newWithout(long element)
ImmutableLongBag
ImmutableLongEmptyBag. newWithoutAll(LongIterable elements)
ImmutableLongBag
ImmutableLongHashBag. newWithoutAll(LongIterable elements)
ImmutableLongBag
ImmutableLongSingletonBag. newWithoutAll(LongIterable elements)
ImmutableLongBag
ImmutableLongBagFactoryImpl. of()
ImmutableLongBag
ImmutableLongBagFactoryImpl. of(long one)
ImmutableLongBag
ImmutableLongBagFactoryImpl. of(long... items)
ImmutableLongBag
ImmutableLongBagFactoryImpl. ofAll(java.lang.Iterable<java.lang.Long> iterable)
ImmutableLongBag
ImmutableLongBagFactoryImpl. ofAll(java.util.stream.LongStream items)
ImmutableLongBag
ImmutableLongBagFactoryImpl. ofAll(LongIterable items)
ImmutableLongBag
ImmutableLongEmptyBag. reject(LongPredicate predicate)
ImmutableLongBag
ImmutableLongHashBag. reject(LongPredicate predicate)
ImmutableLongBag
ImmutableLongSingletonBag. reject(LongPredicate predicate)
ImmutableLongBag
ImmutableLongEmptyBag. select(LongPredicate predicate)
ImmutableLongBag
ImmutableLongHashBag. select(LongPredicate predicate)
ImmutableLongBag
ImmutableLongSingletonBag. select(LongPredicate predicate)
ImmutableLongBag
ImmutableLongEmptyBag. selectByOccurrences(IntPredicate predicate)
ImmutableLongBag
ImmutableLongHashBag. selectByOccurrences(IntPredicate predicate)
ImmutableLongBag
ImmutableLongSingletonBag. selectByOccurrences(IntPredicate predicate)
ImmutableLongBag
ImmutableLongEmptyBag. toImmutable()
ImmutableLongBag
ImmutableLongHashBag. toImmutable()
ImmutableLongBag
ImmutableLongSingletonBag. toImmutable()
ImmutableLongBag
ImmutableLongBagFactoryImpl. with()
ImmutableLongBag
ImmutableLongBagFactoryImpl. with(long one)
ImmutableLongBag
ImmutableLongBagFactoryImpl. with(long... items)
ImmutableLongBag
ImmutableLongBagFactoryImpl. withAll(java.lang.Iterable<java.lang.Long> iterable)
ImmutableLongBag
ImmutableLongBagFactoryImpl. withAll(java.util.stream.LongStream items)
ImmutableLongBag
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 ImmutableLongBag Modifier and Type Method Description ImmutableLongBag
LongHashBag. toImmutable()
ImmutableLongBag
SynchronizedLongBag. toImmutable()
ImmutableLongBag
UnmodifiableLongBag. toImmutable()
-
Uses of ImmutableLongBag in org.eclipse.collections.impl.bimap.immutable
Methods in org.eclipse.collections.impl.bimap.immutable that return ImmutableLongBag Modifier and Type Method Description ImmutableLongBag
AbstractImmutableBiMap. 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 ImmutableLongBag Modifier and Type Method Description ImmutableLongBag
AbstractImmutableMap. 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 ImmutableLongBag Modifier and Type Method Description ImmutableLongBag
ImmutableByteObjectEmptyMap. collectLong(LongFunction<? super V> longFunction)
ImmutableLongBag
ImmutableByteObjectHashMap. collectLong(LongFunction<? super V> longFunction)
ImmutableLongBag
ImmutableByteObjectSingletonMap. collectLong(LongFunction<? super V> longFunction)
ImmutableLongBag
ImmutableCharObjectEmptyMap. collectLong(LongFunction<? super V> longFunction)
ImmutableLongBag
ImmutableCharObjectHashMap. collectLong(LongFunction<? super V> longFunction)
ImmutableLongBag
ImmutableCharObjectSingletonMap. collectLong(LongFunction<? super V> longFunction)
ImmutableLongBag
ImmutableDoubleObjectEmptyMap. collectLong(LongFunction<? super V> longFunction)
ImmutableLongBag
ImmutableDoubleObjectHashMap. collectLong(LongFunction<? super V> longFunction)
ImmutableLongBag
ImmutableDoubleObjectSingletonMap. collectLong(LongFunction<? super V> longFunction)
ImmutableLongBag
ImmutableFloatObjectEmptyMap. collectLong(LongFunction<? super V> longFunction)
ImmutableLongBag
ImmutableFloatObjectHashMap. collectLong(LongFunction<? super V> longFunction)
ImmutableLongBag
ImmutableFloatObjectSingletonMap. collectLong(LongFunction<? super V> longFunction)
ImmutableLongBag
ImmutableIntObjectEmptyMap. collectLong(LongFunction<? super V> longFunction)
ImmutableLongBag
ImmutableIntObjectHashMap. collectLong(LongFunction<? super V> longFunction)
ImmutableLongBag
ImmutableIntObjectSingletonMap. collectLong(LongFunction<? super V> longFunction)
ImmutableLongBag
ImmutableLongObjectEmptyMap. collectLong(LongFunction<? super V> longFunction)
ImmutableLongBag
ImmutableLongObjectHashMap. collectLong(LongFunction<? super V> longFunction)
ImmutableLongBag
ImmutableLongObjectSingletonMap. collectLong(LongFunction<? super V> longFunction)
ImmutableLongBag
ImmutableShortObjectEmptyMap. collectLong(LongFunction<? super V> longFunction)
ImmutableLongBag
ImmutableShortObjectHashMap. collectLong(LongFunction<? super V> longFunction)
ImmutableLongBag
ImmutableShortObjectSingletonMap. collectLong(LongFunction<? super V> longFunction)
ImmutableLongBag
ImmutableByteLongEmptyMap. reject(LongPredicate predicate)
ImmutableLongBag
ImmutableByteLongHashMap. reject(LongPredicate predicate)
ImmutableLongBag
ImmutableByteLongSingletonMap. reject(LongPredicate predicate)
ImmutableLongBag
ImmutableCharLongEmptyMap. reject(LongPredicate predicate)
ImmutableLongBag
ImmutableCharLongHashMap. reject(LongPredicate predicate)
ImmutableLongBag
ImmutableCharLongSingletonMap. reject(LongPredicate predicate)
ImmutableLongBag
ImmutableDoubleLongEmptyMap. reject(LongPredicate predicate)
ImmutableLongBag
ImmutableDoubleLongHashMap. reject(LongPredicate predicate)
ImmutableLongBag
ImmutableDoubleLongSingletonMap. reject(LongPredicate predicate)
ImmutableLongBag
ImmutableFloatLongEmptyMap. reject(LongPredicate predicate)
ImmutableLongBag
ImmutableFloatLongHashMap. reject(LongPredicate predicate)
ImmutableLongBag
ImmutableFloatLongSingletonMap. reject(LongPredicate predicate)
ImmutableLongBag
ImmutableIntLongEmptyMap. reject(LongPredicate predicate)
ImmutableLongBag
ImmutableIntLongHashMap. reject(LongPredicate predicate)
ImmutableLongBag
ImmutableIntLongSingletonMap. reject(LongPredicate predicate)
ImmutableLongBag
ImmutableLongLongEmptyMap. reject(LongPredicate predicate)
ImmutableLongBag
ImmutableLongLongHashMap. reject(LongPredicate predicate)
ImmutableLongBag
ImmutableLongLongSingletonMap. reject(LongPredicate predicate)
ImmutableLongBag
ImmutableShortLongEmptyMap. reject(LongPredicate predicate)
ImmutableLongBag
ImmutableShortLongHashMap. reject(LongPredicate predicate)
ImmutableLongBag
ImmutableShortLongSingletonMap. reject(LongPredicate predicate)
ImmutableLongBag
ImmutableByteLongEmptyMap. select(LongPredicate predicate)
ImmutableLongBag
ImmutableByteLongHashMap. select(LongPredicate predicate)
ImmutableLongBag
ImmutableByteLongSingletonMap. select(LongPredicate predicate)
ImmutableLongBag
ImmutableCharLongEmptyMap. select(LongPredicate predicate)
ImmutableLongBag
ImmutableCharLongHashMap. select(LongPredicate predicate)
ImmutableLongBag
ImmutableCharLongSingletonMap. select(LongPredicate predicate)
ImmutableLongBag
ImmutableDoubleLongEmptyMap. select(LongPredicate predicate)
ImmutableLongBag
ImmutableDoubleLongHashMap. select(LongPredicate predicate)
ImmutableLongBag
ImmutableDoubleLongSingletonMap. select(LongPredicate predicate)
ImmutableLongBag
ImmutableFloatLongEmptyMap. select(LongPredicate predicate)
ImmutableLongBag
ImmutableFloatLongHashMap. select(LongPredicate predicate)
ImmutableLongBag
ImmutableFloatLongSingletonMap. select(LongPredicate predicate)
ImmutableLongBag
ImmutableIntLongEmptyMap. select(LongPredicate predicate)
ImmutableLongBag
ImmutableIntLongHashMap. select(LongPredicate predicate)
ImmutableLongBag
ImmutableIntLongSingletonMap. select(LongPredicate predicate)
ImmutableLongBag
ImmutableLongLongEmptyMap. select(LongPredicate predicate)
ImmutableLongBag
ImmutableLongLongHashMap. select(LongPredicate predicate)
ImmutableLongBag
ImmutableLongLongSingletonMap. select(LongPredicate predicate)
ImmutableLongBag
ImmutableShortLongEmptyMap. select(LongPredicate predicate)
ImmutableLongBag
ImmutableShortLongHashMap. select(LongPredicate predicate)
ImmutableLongBag
ImmutableShortLongSingletonMap. select(LongPredicate predicate)
-
Uses of ImmutableLongBag in org.eclipse.collections.impl.stream
Methods in org.eclipse.collections.impl.stream that return ImmutableLongBag Modifier and Type Method Description static ImmutableLongBag
PrimitiveStreams. iLongBag(java.util.stream.LongStream stream)
-