Uses of Interface
org.eclipse.collections.api.bag.primitive.ImmutableShortBag
-
Packages that use ImmutableShortBag 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. -
-
Uses of ImmutableShortBag in org.eclipse.collections.api.bag
Methods in org.eclipse.collections.api.bag that return ImmutableShortBag Modifier and Type Method Description ImmutableShortBag
ImmutableBag. collectShort(ShortFunction<? super T> shortFunction)
-
Uses of ImmutableShortBag in org.eclipse.collections.api.bag.primitive
Methods in org.eclipse.collections.api.bag.primitive that return ImmutableShortBag Modifier and Type Method Description ImmutableShortBag
ImmutableShortBag. newWith(short element)
ImmutableShortBag
ImmutableShortBag. newWithAll(ShortIterable elements)
ImmutableShortBag
ImmutableShortBag. newWithout(short element)
ImmutableShortBag
ImmutableShortBag. newWithoutAll(ShortIterable elements)
ImmutableShortBag
ImmutableShortBag. reject(ShortPredicate predicate)
ImmutableShortBag
ImmutableShortBag. select(ShortPredicate predicate)
ImmutableShortBag
ImmutableShortBag. selectByOccurrences(IntPredicate predicate)
Returns all elements of the bag that have a number of occurrences that satisfy the predicate.default ImmutableShortBag
ImmutableShortBag. selectDuplicates()
Returns all elements of the bag that have more than one occurrence.default ImmutableShortBag
ImmutableShortBag. tap(ShortProcedure procedure)
ImmutableShortBag
MutableShortBag. toImmutable()
Returns an immutable copy of this bag.ImmutableShortBag
ShortBag. toImmutable()
Returns an immutable copy of this bag. -
Uses of ImmutableShortBag in org.eclipse.collections.api.factory.bag.primitive
Methods in org.eclipse.collections.api.factory.bag.primitive that return ImmutableShortBag Modifier and Type Method Description ImmutableShortBag
ImmutableShortBagFactory. empty()
ImmutableShortBag
ImmutableShortBagFactory. of()
Same asImmutableShortBagFactory.empty()
.ImmutableShortBag
ImmutableShortBagFactory. of(short one)
Same asImmutableShortBagFactory.with(short)
.ImmutableShortBag
ImmutableShortBagFactory. of(short... items)
ImmutableShortBag
ImmutableShortBagFactory. ofAll(java.lang.Iterable<java.lang.Short> iterable)
ImmutableShortBag
ImmutableShortBagFactory. ofAll(ShortIterable items)
ImmutableShortBag
ImmutableShortBagFactory. with()
Same asImmutableShortBagFactory.empty()
.ImmutableShortBag
ImmutableShortBagFactory. with(short one)
ImmutableShortBag
ImmutableShortBagFactory. with(short... items)
ImmutableShortBag
ImmutableShortBagFactory. withAll(java.lang.Iterable<java.lang.Short> iterable)
ImmutableShortBag
ImmutableShortBagFactory. withAll(ShortIterable items)
-
Uses of ImmutableShortBag in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map that return ImmutableShortBag Modifier and Type Method Description ImmutableShortBag
ImmutableMap. collectShort(ShortFunction<? super V> shortFunction)
-
Uses of ImmutableShortBag in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return ImmutableShortBag Modifier and Type Method Description ImmutableShortBag
ImmutablePrimitiveObjectMap. collectShort(ShortFunction<? super V> shortFunction)
ImmutableShortBag
ImmutableByteShortMap. reject(ShortPredicate predicate)
ImmutableShortBag
ImmutableCharShortMap. reject(ShortPredicate predicate)
ImmutableShortBag
ImmutableDoubleShortMap. reject(ShortPredicate predicate)
ImmutableShortBag
ImmutableFloatShortMap. reject(ShortPredicate predicate)
ImmutableShortBag
ImmutableIntShortMap. reject(ShortPredicate predicate)
ImmutableShortBag
ImmutableLongShortMap. reject(ShortPredicate predicate)
ImmutableShortBag
ImmutableShortShortMap. reject(ShortPredicate predicate)
ImmutableShortBag
ImmutableByteShortMap. select(ShortPredicate predicate)
ImmutableShortBag
ImmutableCharShortMap. select(ShortPredicate predicate)
ImmutableShortBag
ImmutableDoubleShortMap. select(ShortPredicate predicate)
ImmutableShortBag
ImmutableFloatShortMap. select(ShortPredicate predicate)
ImmutableShortBag
ImmutableIntShortMap. select(ShortPredicate predicate)
ImmutableShortBag
ImmutableLongShortMap. select(ShortPredicate predicate)
ImmutableShortBag
ImmutableShortShortMap. select(ShortPredicate predicate)
-
Uses of ImmutableShortBag in org.eclipse.collections.impl.bag.immutable
Methods in org.eclipse.collections.impl.bag.immutable that return ImmutableShortBag Modifier and Type Method Description ImmutableShortBag
AbstractImmutableBag. collectShort(ShortFunction<? super T> shortFunction)
ImmutableShortBag
ImmutableEmptyBag. collectShort(ShortFunction<? super T> shortFunction)
-
Uses of ImmutableShortBag in org.eclipse.collections.impl.bag.immutable.primitive
Classes in org.eclipse.collections.impl.bag.immutable.primitive that implement ImmutableShortBag Modifier and Type Class Description (package private) class
ImmutableShortEmptyBag
ImmutableShortEmptyBag is an optimization forImmutableShortBag
of size 0.(package private) class
ImmutableShortHashBag
ImmutableShortHashBag is the non-modifiable equivalent ofShortHashBag
.(package private) class
ImmutableShortSingletonBag
ImmutableShortSingletonBag is an optimization forImmutableShortBag
of size 1.Fields in org.eclipse.collections.impl.bag.immutable.primitive declared as ImmutableShortBag Modifier and Type Field Description (package private) static ImmutableShortBag
ImmutableShortEmptyBag. INSTANCE
Methods in org.eclipse.collections.impl.bag.immutable.primitive that return ImmutableShortBag Modifier and Type Method Description ImmutableShortBag
ImmutableShortBagFactoryImpl. empty()
ImmutableShortBag
ImmutableShortEmptyBag. newWith(short element)
ImmutableShortBag
ImmutableShortHashBag. newWith(short element)
ImmutableShortBag
ImmutableShortSingletonBag. newWith(short element)
ImmutableShortBag
ImmutableShortEmptyBag. newWithAll(ShortIterable elements)
ImmutableShortBag
ImmutableShortHashBag. newWithAll(ShortIterable elements)
ImmutableShortBag
ImmutableShortSingletonBag. newWithAll(ShortIterable elements)
ImmutableShortBag
ImmutableShortEmptyBag. newWithout(short element)
ImmutableShortBag
ImmutableShortHashBag. newWithout(short element)
ImmutableShortBag
ImmutableShortSingletonBag. newWithout(short element)
ImmutableShortBag
ImmutableShortEmptyBag. newWithoutAll(ShortIterable elements)
ImmutableShortBag
ImmutableShortHashBag. newWithoutAll(ShortIterable elements)
ImmutableShortBag
ImmutableShortSingletonBag. newWithoutAll(ShortIterable elements)
ImmutableShortBag
ImmutableShortBagFactoryImpl. of()
ImmutableShortBag
ImmutableShortBagFactoryImpl. of(short one)
ImmutableShortBag
ImmutableShortBagFactoryImpl. of(short... items)
ImmutableShortBag
ImmutableShortBagFactoryImpl. ofAll(java.lang.Iterable<java.lang.Short> iterable)
ImmutableShortBag
ImmutableShortBagFactoryImpl. ofAll(ShortIterable items)
ImmutableShortBag
ImmutableShortEmptyBag. reject(ShortPredicate predicate)
ImmutableShortBag
ImmutableShortHashBag. reject(ShortPredicate predicate)
ImmutableShortBag
ImmutableShortSingletonBag. reject(ShortPredicate predicate)
ImmutableShortBag
ImmutableShortEmptyBag. select(ShortPredicate predicate)
ImmutableShortBag
ImmutableShortHashBag. select(ShortPredicate predicate)
ImmutableShortBag
ImmutableShortSingletonBag. select(ShortPredicate predicate)
ImmutableShortBag
ImmutableShortEmptyBag. selectByOccurrences(IntPredicate predicate)
ImmutableShortBag
ImmutableShortHashBag. selectByOccurrences(IntPredicate predicate)
ImmutableShortBag
ImmutableShortSingletonBag. selectByOccurrences(IntPredicate predicate)
ImmutableShortBag
ImmutableShortEmptyBag. toImmutable()
ImmutableShortBag
ImmutableShortHashBag. toImmutable()
ImmutableShortBag
ImmutableShortSingletonBag. toImmutable()
ImmutableShortBag
ImmutableShortBagFactoryImpl. with()
ImmutableShortBag
ImmutableShortBagFactoryImpl. with(short one)
ImmutableShortBag
ImmutableShortBagFactoryImpl. with(short... items)
ImmutableShortBag
ImmutableShortBagFactoryImpl. withAll(java.lang.Iterable<java.lang.Short> iterable)
ImmutableShortBag
ImmutableShortBagFactoryImpl. withAll(ShortIterable items)
-
Uses of ImmutableShortBag in org.eclipse.collections.impl.bag.mutable.primitive
Methods in org.eclipse.collections.impl.bag.mutable.primitive that return ImmutableShortBag Modifier and Type Method Description ImmutableShortBag
ShortHashBag. toImmutable()
ImmutableShortBag
SynchronizedShortBag. toImmutable()
ImmutableShortBag
UnmodifiableShortBag. toImmutable()
-
Uses of ImmutableShortBag in org.eclipse.collections.impl.bimap.immutable
Methods in org.eclipse.collections.impl.bimap.immutable that return ImmutableShortBag Modifier and Type Method Description ImmutableShortBag
AbstractImmutableBiMap. collectShort(ShortFunction<? super V> shortFunction)
-
Uses of ImmutableShortBag in org.eclipse.collections.impl.map.immutable
Methods in org.eclipse.collections.impl.map.immutable that return ImmutableShortBag Modifier and Type Method Description ImmutableShortBag
AbstractImmutableMap. collectShort(ShortFunction<? super V> shortFunction)
-
Uses of ImmutableShortBag in org.eclipse.collections.impl.map.immutable.primitive
Methods in org.eclipse.collections.impl.map.immutable.primitive that return ImmutableShortBag Modifier and Type Method Description ImmutableShortBag
ImmutableByteObjectEmptyMap. collectShort(ShortFunction<? super V> shortFunction)
ImmutableShortBag
ImmutableByteObjectHashMap. collectShort(ShortFunction<? super V> shortFunction)
ImmutableShortBag
ImmutableByteObjectSingletonMap. collectShort(ShortFunction<? super V> shortFunction)
ImmutableShortBag
ImmutableCharObjectEmptyMap. collectShort(ShortFunction<? super V> shortFunction)
ImmutableShortBag
ImmutableCharObjectHashMap. collectShort(ShortFunction<? super V> shortFunction)
ImmutableShortBag
ImmutableCharObjectSingletonMap. collectShort(ShortFunction<? super V> shortFunction)
ImmutableShortBag
ImmutableDoubleObjectEmptyMap. collectShort(ShortFunction<? super V> shortFunction)
ImmutableShortBag
ImmutableDoubleObjectHashMap. collectShort(ShortFunction<? super V> shortFunction)
ImmutableShortBag
ImmutableDoubleObjectSingletonMap. collectShort(ShortFunction<? super V> shortFunction)
ImmutableShortBag
ImmutableFloatObjectEmptyMap. collectShort(ShortFunction<? super V> shortFunction)
ImmutableShortBag
ImmutableFloatObjectHashMap. collectShort(ShortFunction<? super V> shortFunction)
ImmutableShortBag
ImmutableFloatObjectSingletonMap. collectShort(ShortFunction<? super V> shortFunction)
ImmutableShortBag
ImmutableIntObjectEmptyMap. collectShort(ShortFunction<? super V> shortFunction)
ImmutableShortBag
ImmutableIntObjectHashMap. collectShort(ShortFunction<? super V> shortFunction)
ImmutableShortBag
ImmutableIntObjectSingletonMap. collectShort(ShortFunction<? super V> shortFunction)
ImmutableShortBag
ImmutableLongObjectEmptyMap. collectShort(ShortFunction<? super V> shortFunction)
ImmutableShortBag
ImmutableLongObjectHashMap. collectShort(ShortFunction<? super V> shortFunction)
ImmutableShortBag
ImmutableLongObjectSingletonMap. collectShort(ShortFunction<? super V> shortFunction)
ImmutableShortBag
ImmutableShortObjectEmptyMap. collectShort(ShortFunction<? super V> shortFunction)
ImmutableShortBag
ImmutableShortObjectHashMap. collectShort(ShortFunction<? super V> shortFunction)
ImmutableShortBag
ImmutableShortObjectSingletonMap. collectShort(ShortFunction<? super V> shortFunction)
ImmutableShortBag
ImmutableByteShortEmptyMap. reject(ShortPredicate predicate)
ImmutableShortBag
ImmutableByteShortHashMap. reject(ShortPredicate predicate)
ImmutableShortBag
ImmutableByteShortSingletonMap. reject(ShortPredicate predicate)
ImmutableShortBag
ImmutableCharShortEmptyMap. reject(ShortPredicate predicate)
ImmutableShortBag
ImmutableCharShortHashMap. reject(ShortPredicate predicate)
ImmutableShortBag
ImmutableCharShortSingletonMap. reject(ShortPredicate predicate)
ImmutableShortBag
ImmutableDoubleShortEmptyMap. reject(ShortPredicate predicate)
ImmutableShortBag
ImmutableDoubleShortHashMap. reject(ShortPredicate predicate)
ImmutableShortBag
ImmutableDoubleShortSingletonMap. reject(ShortPredicate predicate)
ImmutableShortBag
ImmutableFloatShortEmptyMap. reject(ShortPredicate predicate)
ImmutableShortBag
ImmutableFloatShortHashMap. reject(ShortPredicate predicate)
ImmutableShortBag
ImmutableFloatShortSingletonMap. reject(ShortPredicate predicate)
ImmutableShortBag
ImmutableIntShortEmptyMap. reject(ShortPredicate predicate)
ImmutableShortBag
ImmutableIntShortHashMap. reject(ShortPredicate predicate)
ImmutableShortBag
ImmutableIntShortSingletonMap. reject(ShortPredicate predicate)
ImmutableShortBag
ImmutableLongShortEmptyMap. reject(ShortPredicate predicate)
ImmutableShortBag
ImmutableLongShortHashMap. reject(ShortPredicate predicate)
ImmutableShortBag
ImmutableLongShortSingletonMap. reject(ShortPredicate predicate)
ImmutableShortBag
ImmutableShortShortEmptyMap. reject(ShortPredicate predicate)
ImmutableShortBag
ImmutableShortShortHashMap. reject(ShortPredicate predicate)
ImmutableShortBag
ImmutableShortShortSingletonMap. reject(ShortPredicate predicate)
ImmutableShortBag
ImmutableByteShortEmptyMap. select(ShortPredicate predicate)
ImmutableShortBag
ImmutableByteShortHashMap. select(ShortPredicate predicate)
ImmutableShortBag
ImmutableByteShortSingletonMap. select(ShortPredicate predicate)
ImmutableShortBag
ImmutableCharShortEmptyMap. select(ShortPredicate predicate)
ImmutableShortBag
ImmutableCharShortHashMap. select(ShortPredicate predicate)
ImmutableShortBag
ImmutableCharShortSingletonMap. select(ShortPredicate predicate)
ImmutableShortBag
ImmutableDoubleShortEmptyMap. select(ShortPredicate predicate)
ImmutableShortBag
ImmutableDoubleShortHashMap. select(ShortPredicate predicate)
ImmutableShortBag
ImmutableDoubleShortSingletonMap. select(ShortPredicate predicate)
ImmutableShortBag
ImmutableFloatShortEmptyMap. select(ShortPredicate predicate)
ImmutableShortBag
ImmutableFloatShortHashMap. select(ShortPredicate predicate)
ImmutableShortBag
ImmutableFloatShortSingletonMap. select(ShortPredicate predicate)
ImmutableShortBag
ImmutableIntShortEmptyMap. select(ShortPredicate predicate)
ImmutableShortBag
ImmutableIntShortHashMap. select(ShortPredicate predicate)
ImmutableShortBag
ImmutableIntShortSingletonMap. select(ShortPredicate predicate)
ImmutableShortBag
ImmutableLongShortEmptyMap. select(ShortPredicate predicate)
ImmutableShortBag
ImmutableLongShortHashMap. select(ShortPredicate predicate)
ImmutableShortBag
ImmutableLongShortSingletonMap. select(ShortPredicate predicate)
ImmutableShortBag
ImmutableShortShortEmptyMap. select(ShortPredicate predicate)
ImmutableShortBag
ImmutableShortShortHashMap. select(ShortPredicate predicate)
ImmutableShortBag
ImmutableShortShortSingletonMap. select(ShortPredicate predicate)
-