Package | Description |
---|---|
org.eclipse.collections.api |
This package contains interfaces for Eclipse Collections API.
|
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 of
Map |
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.mutable |
This package contains implementations of the
MutableBag interface. |
org.eclipse.collections.impl.bag.mutable.primitive |
This package contains implementations of the mutable primitive bag interfaces.
|
org.eclipse.collections.impl.collection.mutable.primitive |
This package contains implementations of the mutable primitive collection interfaces.
|
org.eclipse.collections.impl.lazy.primitive |
This package contains implementations of the lazy primitive iterator interfaces.
|
org.eclipse.collections.impl.map.mutable |
This package contains implementations of the
MutableMap interface. |
org.eclipse.collections.impl.map.mutable.primitive |
This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.
|
org.eclipse.collections.impl.primitive | |
org.eclipse.collections.impl.stack.mutable.primitive |
This package contains implementations of the mutable primitive stack interfaces.
|
org.eclipse.collections.impl.stack.primitive | |
org.eclipse.collections.impl.stream |
Modifier and Type | Method | Description |
---|---|---|
MutableLongBag |
LongIterable.toBag() |
Converts the LongIterable to a new MutableLongBag.
|
Modifier and Type | Method | Description |
---|---|---|
MutableLongBag |
MutableBag.collectLong(LongFunction<? super T> longFunction) |
Modifier and Type | Method | Description |
---|---|---|
MutableLongBag |
MutableLongBag.asSynchronized() |
|
MutableLongBag |
MutableLongBag.asUnmodifiable() |
|
default MutableLongBag |
MutableLongBag.newEmpty() |
Creates a new empty mutable version of the same Bag type.
|
MutableLongBag |
MutableLongBag.reject(LongPredicate predicate) |
|
MutableLongBag |
MutableLongBag.select(LongPredicate predicate) |
|
MutableLongBag |
MutableLongBag.selectByOccurrences(IntPredicate predicate) |
Returns all elements of the bag that have a number of occurrences that satisfy the predicate.
|
default MutableLongBag |
MutableLongBag.selectDuplicates() |
Returns all elements of the bag that have more than one occurrence.
|
default MutableLongBag |
MutableLongBag.tap(LongProcedure procedure) |
|
MutableLongBag |
MutableLongBag.with(long element) |
|
MutableLongBag |
MutableLongBag.withAll(LongIterable elements) |
|
MutableLongBag |
MutableLongBag.without(long element) |
|
MutableLongBag |
MutableLongBag.withoutAll(LongIterable elements) |
Modifier and Type | Method | Description |
---|---|---|
MutableLongBag |
MutableLongBagFactory.empty() |
|
MutableLongBag |
MutableLongBagFactory.of() |
Same as
MutableLongBagFactory.empty() . |
MutableLongBag |
MutableLongBagFactory.of(long... items) |
Same as
MutableLongBagFactory.with(long[]) . |
MutableLongBag |
MutableLongBagFactory.ofAll(Iterable<Long> iterable) |
Same as
#withAll(IterableLong) . |
MutableLongBag |
MutableLongBagFactory.ofAll(LongStream items) |
|
MutableLongBag |
MutableLongBagFactory.ofAll(LongIterable items) |
|
MutableLongBag |
MutableLongBagFactory.with() |
Same as
MutableLongBagFactory.empty() . |
MutableLongBag |
MutableLongBagFactory.with(long... items) |
|
MutableLongBag |
MutableLongBagFactory.withAll(Iterable<Long> iterable) |
|
MutableLongBag |
MutableLongBagFactory.withAll(LongStream items) |
|
MutableLongBag |
MutableLongBagFactory.withAll(LongIterable items) |
Modifier and Type | Method | Description |
---|---|---|
MutableLongBag |
MutableMap.collectLong(LongFunction<? super V> longFunction) |
Modifier and Type | Method | Description |
---|---|---|
MutableLongBag |
MutablePrimitiveObjectMap.collectLong(LongFunction<? super V> longFunction) |
|
MutableLongBag |
MutableLongValuesMap.reject(LongPredicate predicate) |
|
MutableLongBag |
MutableLongValuesMap.select(LongPredicate predicate) |
Modifier and Type | Method | Description |
---|---|---|
MutableLongBag |
AbstractMutableBag.collectLong(LongFunction<? super T> longFunction) |
|
MutableLongBag |
MultiReaderHashBag.collectLong(LongFunction<? super T> longFunction) |
|
MutableLongBag |
SynchronizedBag.collectLong(LongFunction<? super T> longFunction) |
|
MutableLongBag |
UnmodifiableBag.collectLong(LongFunction<? super T> longFunction) |
Modifier and Type | Class | Description |
---|---|---|
class |
LongHashBag |
LongHashBag is similar to
HashBag , and is memory-optimized for long primitives. |
class |
SynchronizedLongBag |
A synchronized view of a
MutableLongBag . |
class |
UnmodifiableLongBag |
This file was automatically generated from template file unmodifiablePrimitiveBag.stg.
|
Modifier and Type | Method | Description |
---|---|---|
MutableLongBag |
LongHashBag.asSynchronized() |
|
MutableLongBag |
SynchronizedLongBag.asSynchronized() |
|
MutableLongBag |
UnmodifiableLongBag.asSynchronized() |
|
MutableLongBag |
LongHashBag.asUnmodifiable() |
|
MutableLongBag |
SynchronizedLongBag.asUnmodifiable() |
|
MutableLongBag |
UnmodifiableLongBag.asUnmodifiable() |
|
MutableLongBag |
MutableLongBagFactoryImpl.empty() |
|
MutableLongBag |
SynchronizedLongBag.newEmpty() |
|
MutableLongBag |
UnmodifiableLongBag.newEmpty() |
|
MutableLongBag |
MutableLongBagFactoryImpl.of() |
|
MutableLongBag |
MutableLongBagFactoryImpl.of(long... items) |
|
MutableLongBag |
MutableLongBagFactoryImpl.ofAll(Iterable<Long> iterable) |
|
MutableLongBag |
MutableLongBagFactoryImpl.ofAll(LongStream items) |
|
MutableLongBag |
MutableLongBagFactoryImpl.ofAll(LongIterable items) |
|
MutableLongBag |
SynchronizedLongBag.reject(LongPredicate predicate) |
|
MutableLongBag |
UnmodifiableLongBag.reject(LongPredicate predicate) |
|
MutableLongBag |
SynchronizedLongBag.select(LongPredicate predicate) |
|
MutableLongBag |
UnmodifiableLongBag.select(LongPredicate predicate) |
|
MutableLongBag |
SynchronizedLongBag.selectByOccurrences(IntPredicate predicate) |
|
MutableLongBag |
UnmodifiableLongBag.selectByOccurrences(IntPredicate predicate) |
|
MutableLongBag |
MutableLongBagFactoryImpl.with() |
|
MutableLongBag |
MutableLongBagFactoryImpl.with(long... items) |
|
MutableLongBag |
MutableLongBagFactoryImpl.withAll(Iterable<Long> iterable) |
|
MutableLongBag |
MutableLongBagFactoryImpl.withAll(LongStream items) |
|
MutableLongBag |
MutableLongBagFactoryImpl.withAll(LongIterable items) |
Constructor | Description |
---|---|
SynchronizedLongBag(MutableLongBag bag) |
|
SynchronizedLongBag(MutableLongBag bag,
Object newLock) |
|
UnmodifiableLongBag(MutableLongBag bag) |
Modifier and Type | Method | Description |
---|---|---|
MutableLongBag |
AbstractSynchronizedLongCollection.toBag() |
|
MutableLongBag |
AbstractUnmodifiableLongCollection.toBag() |
Modifier and Type | Method | Description |
---|---|---|
MutableLongBag |
AbstractLazyLongIterable.toBag() |
|
MutableLongBag |
CollectLongIterable.toBag() |
|
MutableLongBag |
LazyLongIterableAdapter.toBag() |
|
MutableLongBag |
ReverseLongIterable.toBag() |
|
MutableLongBag |
SelectLongIterable.toBag() |
Modifier and Type | Method | Description |
---|---|---|
MutableLongBag |
AbstractMutableMap.collectLong(LongFunction<? super V> longFunction) |
|
MutableLongBag |
SynchronizedMutableMap.collectLong(LongFunction<? super V> longFunction) |
|
MutableLongBag |
UnmodifiableMutableMap.collectLong(LongFunction<? super V> longFunction) |
Modifier and Type | Method | Description |
---|---|---|
MutableLongBag |
ByteObjectHashMap.collectLong(LongFunction<? super V> longFunction) |
|
MutableLongBag |
CharObjectHashMap.collectLong(LongFunction<? super V> longFunction) |
|
MutableLongBag |
DoubleObjectHashMap.collectLong(LongFunction<? super V> longFunction) |
|
MutableLongBag |
FloatObjectHashMap.collectLong(LongFunction<? super V> longFunction) |
|
MutableLongBag |
IntObjectHashMap.collectLong(LongFunction<? super V> longFunction) |
|
MutableLongBag |
LongObjectHashMap.collectLong(LongFunction<? super V> longFunction) |
|
MutableLongBag |
ShortObjectHashMap.collectLong(LongFunction<? super V> longFunction) |
|
MutableLongBag |
SynchronizedByteObjectMap.collectLong(LongFunction<? super V> longFunction) |
|
MutableLongBag |
SynchronizedCharObjectMap.collectLong(LongFunction<? super V> longFunction) |
|
MutableLongBag |
SynchronizedDoubleObjectMap.collectLong(LongFunction<? super V> longFunction) |
|
MutableLongBag |
SynchronizedFloatObjectMap.collectLong(LongFunction<? super V> longFunction) |
|
MutableLongBag |
SynchronizedIntObjectMap.collectLong(LongFunction<? super V> longFunction) |
|
MutableLongBag |
SynchronizedLongObjectMap.collectLong(LongFunction<? super V> longFunction) |
|
MutableLongBag |
SynchronizedShortObjectMap.collectLong(LongFunction<? super V> longFunction) |
|
MutableLongBag |
UnmodifiableByteObjectMap.collectLong(LongFunction<? super V> longFunction) |
|
MutableLongBag |
UnmodifiableCharObjectMap.collectLong(LongFunction<? super V> longFunction) |
|
MutableLongBag |
UnmodifiableDoubleObjectMap.collectLong(LongFunction<? super V> longFunction) |
|
MutableLongBag |
UnmodifiableFloatObjectMap.collectLong(LongFunction<? super V> longFunction) |
|
MutableLongBag |
UnmodifiableIntObjectMap.collectLong(LongFunction<? super V> longFunction) |
|
MutableLongBag |
UnmodifiableLongObjectMap.collectLong(LongFunction<? super V> longFunction) |
|
MutableLongBag |
UnmodifiableShortObjectMap.collectLong(LongFunction<? super V> longFunction) |
|
MutableLongBag |
AbstractMutableLongValuesMap.reject(LongPredicate predicate) |
|
MutableLongBag |
SynchronizedByteLongMap.reject(LongPredicate predicate) |
|
MutableLongBag |
SynchronizedCharLongMap.reject(LongPredicate predicate) |
|
MutableLongBag |
SynchronizedDoubleLongMap.reject(LongPredicate predicate) |
|
MutableLongBag |
SynchronizedFloatLongMap.reject(LongPredicate predicate) |
|
MutableLongBag |
SynchronizedIntLongMap.reject(LongPredicate predicate) |
|
MutableLongBag |
SynchronizedLongLongMap.reject(LongPredicate predicate) |
|
MutableLongBag |
SynchronizedShortLongMap.reject(LongPredicate predicate) |
|
MutableLongBag |
UnmodifiableByteLongMap.reject(LongPredicate predicate) |
|
MutableLongBag |
UnmodifiableCharLongMap.reject(LongPredicate predicate) |
|
MutableLongBag |
UnmodifiableDoubleLongMap.reject(LongPredicate predicate) |
|
MutableLongBag |
UnmodifiableFloatLongMap.reject(LongPredicate predicate) |
|
MutableLongBag |
UnmodifiableIntLongMap.reject(LongPredicate predicate) |
|
MutableLongBag |
UnmodifiableLongLongMap.reject(LongPredicate predicate) |
|
MutableLongBag |
UnmodifiableShortLongMap.reject(LongPredicate predicate) |
|
MutableLongBag |
AbstractMutableLongValuesMap.select(LongPredicate predicate) |
|
MutableLongBag |
SynchronizedByteLongMap.select(LongPredicate predicate) |
|
MutableLongBag |
SynchronizedCharLongMap.select(LongPredicate predicate) |
|
MutableLongBag |
SynchronizedDoubleLongMap.select(LongPredicate predicate) |
|
MutableLongBag |
SynchronizedFloatLongMap.select(LongPredicate predicate) |
|
MutableLongBag |
SynchronizedIntLongMap.select(LongPredicate predicate) |
|
MutableLongBag |
SynchronizedLongLongMap.select(LongPredicate predicate) |
|
MutableLongBag |
SynchronizedShortLongMap.select(LongPredicate predicate) |
|
MutableLongBag |
UnmodifiableByteLongMap.select(LongPredicate predicate) |
|
MutableLongBag |
UnmodifiableCharLongMap.select(LongPredicate predicate) |
|
MutableLongBag |
UnmodifiableDoubleLongMap.select(LongPredicate predicate) |
|
MutableLongBag |
UnmodifiableFloatLongMap.select(LongPredicate predicate) |
|
MutableLongBag |
UnmodifiableIntLongMap.select(LongPredicate predicate) |
|
MutableLongBag |
UnmodifiableLongLongMap.select(LongPredicate predicate) |
|
MutableLongBag |
UnmodifiableShortLongMap.select(LongPredicate predicate) |
|
MutableLongBag |
AbstractMutableLongKeySet.toBag() |
|
MutableLongBag |
ObjectLongHashMap.toBag() |
|
MutableLongBag |
ObjectLongHashMapWithHashingStrategy.toBag() |
|
MutableLongBag |
SynchronizedByteLongMap.toBag() |
|
MutableLongBag |
SynchronizedCharLongMap.toBag() |
|
MutableLongBag |
SynchronizedDoubleLongMap.toBag() |
|
MutableLongBag |
SynchronizedFloatLongMap.toBag() |
|
MutableLongBag |
SynchronizedIntLongMap.toBag() |
|
MutableLongBag |
SynchronizedLongLongMap.toBag() |
|
MutableLongBag |
SynchronizedObjectLongMap.toBag() |
|
MutableLongBag |
SynchronizedShortLongMap.toBag() |
|
MutableLongBag |
UnmodifiableByteLongMap.toBag() |
|
MutableLongBag |
UnmodifiableCharLongMap.toBag() |
|
MutableLongBag |
UnmodifiableDoubleLongMap.toBag() |
|
MutableLongBag |
UnmodifiableFloatLongMap.toBag() |
|
MutableLongBag |
UnmodifiableIntLongMap.toBag() |
|
MutableLongBag |
UnmodifiableLongLongMap.toBag() |
|
MutableLongBag |
UnmodifiableObjectLongMap.toBag() |
|
MutableLongBag |
UnmodifiableShortLongMap.toBag() |
Modifier and Type | Method | Description |
---|---|---|
MutableLongBag |
AbstractLongIterable.toBag() |
|
MutableLongBag |
SynchronizedLongIterable.toBag() |
Modifier and Type | Method | Description |
---|---|---|
MutableLongBag |
SynchronizedLongStack.toBag() |
|
MutableLongBag |
UnmodifiableLongStack.toBag() |
Modifier and Type | Method | Description |
---|---|---|
MutableLongBag |
AbstractLongStack.toBag() |
Modifier and Type | Method | Description |
---|---|---|
static MutableLongBag |
PrimitiveStreams.mLongBag(LongStream stream) |
Copyright © 2004–2019. All rights reserved.