Uses of Interface
org.eclipse.collections.api.bag.primitive.ImmutableBooleanBag
-
Packages that use ImmutableBooleanBag 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 ImmutableBooleanBag in org.eclipse.collections.api.bag
Methods in org.eclipse.collections.api.bag that return ImmutableBooleanBag Modifier and Type Method Description ImmutableBooleanBag
ImmutableBag. collectBoolean(BooleanFunction<? super T> booleanFunction)
-
Uses of ImmutableBooleanBag in org.eclipse.collections.api.bag.primitive
Methods in org.eclipse.collections.api.bag.primitive that return ImmutableBooleanBag Modifier and Type Method Description ImmutableBooleanBag
ImmutableBooleanBag. newWith(boolean element)
ImmutableBooleanBag
ImmutableBooleanBag. newWithAll(BooleanIterable elements)
ImmutableBooleanBag
ImmutableBooleanBag. newWithout(boolean element)
ImmutableBooleanBag
ImmutableBooleanBag. newWithoutAll(BooleanIterable elements)
ImmutableBooleanBag
ImmutableBooleanBag. reject(BooleanPredicate predicate)
ImmutableBooleanBag
ImmutableBooleanBag. select(BooleanPredicate predicate)
ImmutableBooleanBag
ImmutableBooleanBag. selectByOccurrences(IntPredicate predicate)
Returns all elements of the bag that have a number of occurrences that satisfy the predicate.default ImmutableBooleanBag
ImmutableBooleanBag. selectDuplicates()
Returns all elements of the bag that have more than one occurrence.default ImmutableBooleanBag
ImmutableBooleanBag. tap(BooleanProcedure procedure)
ImmutableBooleanBag
BooleanBag. toImmutable()
Returns an immutable copy of this bag.ImmutableBooleanBag
MutableBooleanBag. toImmutable()
Returns an immutable copy of this bag. -
Uses of ImmutableBooleanBag in org.eclipse.collections.api.factory.bag.primitive
Methods in org.eclipse.collections.api.factory.bag.primitive that return ImmutableBooleanBag Modifier and Type Method Description ImmutableBooleanBag
ImmutableBooleanBagFactory. empty()
ImmutableBooleanBag
ImmutableBooleanBagFactory. of()
Same asImmutableBooleanBagFactory.empty()
.ImmutableBooleanBag
ImmutableBooleanBagFactory. of(boolean one)
ImmutableBooleanBag
ImmutableBooleanBagFactory. of(boolean... items)
ImmutableBooleanBag
ImmutableBooleanBagFactory. ofAll(java.lang.Iterable<java.lang.Boolean> iterable)
ImmutableBooleanBag
ImmutableBooleanBagFactory. ofAll(BooleanIterable items)
ImmutableBooleanBag
ImmutableBooleanBagFactory. with()
Same asImmutableBooleanBagFactory.empty()
.ImmutableBooleanBag
ImmutableBooleanBagFactory. with(boolean one)
ImmutableBooleanBag
ImmutableBooleanBagFactory. with(boolean... items)
ImmutableBooleanBag
ImmutableBooleanBagFactory. withAll(java.lang.Iterable<java.lang.Boolean> iterable)
ImmutableBooleanBag
ImmutableBooleanBagFactory. withAll(BooleanIterable items)
-
Uses of ImmutableBooleanBag in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map that return ImmutableBooleanBag Modifier and Type Method Description ImmutableBooleanBag
ImmutableMap. collectBoolean(BooleanFunction<? super V> booleanFunction)
-
Uses of ImmutableBooleanBag in org.eclipse.collections.api.map.primitive
-
Uses of ImmutableBooleanBag in org.eclipse.collections.impl.bag.immutable
Methods in org.eclipse.collections.impl.bag.immutable that return ImmutableBooleanBag Modifier and Type Method Description ImmutableBooleanBag
AbstractImmutableBag. collectBoolean(BooleanFunction<? super T> booleanFunction)
ImmutableBooleanBag
ImmutableEmptyBag. collectBoolean(BooleanFunction<? super T> booleanFunction)
-
Uses of ImmutableBooleanBag in org.eclipse.collections.impl.bag.immutable.primitive
Classes in org.eclipse.collections.impl.bag.immutable.primitive that implement ImmutableBooleanBag Modifier and Type Class Description (package private) class
ImmutableBooleanEmptyBag
ImmutableBooleanEmptyBag is an optimization forImmutableBooleanBag
of size 0.(package private) class
ImmutableBooleanHashBag
ImmutableBooleanHashBag is the non-modifiable equivalent ofBooleanHashBag
.(package private) class
ImmutableBooleanSingletonBag
ImmutableBooleanSingletonBag is an optimization forImmutableBooleanBag
of size 1.Fields in org.eclipse.collections.impl.bag.immutable.primitive declared as ImmutableBooleanBag Modifier and Type Field Description (package private) static ImmutableBooleanBag
ImmutableBooleanEmptyBag. INSTANCE
Methods in org.eclipse.collections.impl.bag.immutable.primitive that return ImmutableBooleanBag Modifier and Type Method Description ImmutableBooleanBag
ImmutableBooleanBagFactoryImpl. empty()
ImmutableBooleanBag
ImmutableBooleanEmptyBag. newWith(boolean element)
ImmutableBooleanBag
ImmutableBooleanHashBag. newWith(boolean element)
ImmutableBooleanBag
ImmutableBooleanSingletonBag. newWith(boolean element)
ImmutableBooleanBag
ImmutableBooleanEmptyBag. newWithAll(BooleanIterable elements)
ImmutableBooleanBag
ImmutableBooleanHashBag. newWithAll(BooleanIterable elements)
ImmutableBooleanBag
ImmutableBooleanSingletonBag. newWithAll(BooleanIterable elements)
ImmutableBooleanBag
ImmutableBooleanEmptyBag. newWithout(boolean element)
ImmutableBooleanBag
ImmutableBooleanHashBag. newWithout(boolean element)
ImmutableBooleanBag
ImmutableBooleanSingletonBag. newWithout(boolean element)
ImmutableBooleanBag
ImmutableBooleanEmptyBag. newWithoutAll(BooleanIterable elements)
ImmutableBooleanBag
ImmutableBooleanHashBag. newWithoutAll(BooleanIterable elements)
ImmutableBooleanBag
ImmutableBooleanSingletonBag. newWithoutAll(BooleanIterable elements)
ImmutableBooleanBag
ImmutableBooleanBagFactoryImpl. of()
ImmutableBooleanBag
ImmutableBooleanBagFactoryImpl. of(boolean one)
ImmutableBooleanBag
ImmutableBooleanBagFactoryImpl. of(boolean... items)
ImmutableBooleanBag
ImmutableBooleanBagFactoryImpl. ofAll(java.lang.Iterable<java.lang.Boolean> iterable)
ImmutableBooleanBag
ImmutableBooleanBagFactoryImpl. ofAll(BooleanIterable items)
ImmutableBooleanBag
ImmutableBooleanEmptyBag. reject(BooleanPredicate predicate)
ImmutableBooleanBag
ImmutableBooleanHashBag. reject(BooleanPredicate predicate)
ImmutableBooleanBag
ImmutableBooleanSingletonBag. reject(BooleanPredicate predicate)
ImmutableBooleanBag
ImmutableBooleanEmptyBag. select(BooleanPredicate predicate)
ImmutableBooleanBag
ImmutableBooleanHashBag. select(BooleanPredicate predicate)
ImmutableBooleanBag
ImmutableBooleanSingletonBag. select(BooleanPredicate predicate)
ImmutableBooleanBag
ImmutableBooleanEmptyBag. selectByOccurrences(IntPredicate predicate)
ImmutableBooleanBag
ImmutableBooleanHashBag. selectByOccurrences(IntPredicate predicate)
ImmutableBooleanBag
ImmutableBooleanSingletonBag. selectByOccurrences(IntPredicate predicate)
ImmutableBooleanBag
ImmutableBooleanEmptyBag. toImmutable()
ImmutableBooleanBag
ImmutableBooleanHashBag. toImmutable()
ImmutableBooleanBag
ImmutableBooleanSingletonBag. toImmutable()
ImmutableBooleanBag
ImmutableBooleanBagFactoryImpl. with()
ImmutableBooleanBag
ImmutableBooleanBagFactoryImpl. with(boolean one)
ImmutableBooleanBag
ImmutableBooleanBagFactoryImpl. with(boolean... items)
ImmutableBooleanBag
ImmutableBooleanBagFactoryImpl. withAll(java.lang.Iterable<java.lang.Boolean> iterable)
ImmutableBooleanBag
ImmutableBooleanBagFactoryImpl. withAll(BooleanIterable items)
-
Uses of ImmutableBooleanBag in org.eclipse.collections.impl.bag.mutable.primitive
Methods in org.eclipse.collections.impl.bag.mutable.primitive that return ImmutableBooleanBag Modifier and Type Method Description ImmutableBooleanBag
BooleanHashBag. toImmutable()
ImmutableBooleanBag
SynchronizedBooleanBag. toImmutable()
ImmutableBooleanBag
UnmodifiableBooleanBag. toImmutable()
-
Uses of ImmutableBooleanBag in org.eclipse.collections.impl.bimap.immutable
Methods in org.eclipse.collections.impl.bimap.immutable that return ImmutableBooleanBag Modifier and Type Method Description ImmutableBooleanBag
AbstractImmutableBiMap. collectBoolean(BooleanFunction<? super V> booleanFunction)
-
Uses of ImmutableBooleanBag in org.eclipse.collections.impl.map.immutable
Methods in org.eclipse.collections.impl.map.immutable that return ImmutableBooleanBag Modifier and Type Method Description ImmutableBooleanBag
AbstractImmutableMap. collectBoolean(BooleanFunction<? super V> booleanFunction)
-
Uses of ImmutableBooleanBag in org.eclipse.collections.impl.map.immutable.primitive
Methods in org.eclipse.collections.impl.map.immutable.primitive that return ImmutableBooleanBag Modifier and Type Method Description ImmutableBooleanBag
ImmutableByteObjectEmptyMap. collectBoolean(BooleanFunction<? super V> booleanFunction)
ImmutableBooleanBag
ImmutableByteObjectHashMap. collectBoolean(BooleanFunction<? super V> booleanFunction)
ImmutableBooleanBag
ImmutableByteObjectSingletonMap. collectBoolean(BooleanFunction<? super V> booleanFunction)
ImmutableBooleanBag
ImmutableCharObjectEmptyMap. collectBoolean(BooleanFunction<? super V> booleanFunction)
ImmutableBooleanBag
ImmutableCharObjectHashMap. collectBoolean(BooleanFunction<? super V> booleanFunction)
ImmutableBooleanBag
ImmutableCharObjectSingletonMap. collectBoolean(BooleanFunction<? super V> booleanFunction)
ImmutableBooleanBag
ImmutableDoubleObjectEmptyMap. collectBoolean(BooleanFunction<? super V> booleanFunction)
ImmutableBooleanBag
ImmutableDoubleObjectHashMap. collectBoolean(BooleanFunction<? super V> booleanFunction)
ImmutableBooleanBag
ImmutableDoubleObjectSingletonMap. collectBoolean(BooleanFunction<? super V> booleanFunction)
ImmutableBooleanBag
ImmutableFloatObjectEmptyMap. collectBoolean(BooleanFunction<? super V> booleanFunction)
ImmutableBooleanBag
ImmutableFloatObjectHashMap. collectBoolean(BooleanFunction<? super V> booleanFunction)
ImmutableBooleanBag
ImmutableFloatObjectSingletonMap. collectBoolean(BooleanFunction<? super V> booleanFunction)
ImmutableBooleanBag
ImmutableIntObjectEmptyMap. collectBoolean(BooleanFunction<? super V> booleanFunction)
ImmutableBooleanBag
ImmutableIntObjectHashMap. collectBoolean(BooleanFunction<? super V> booleanFunction)
ImmutableBooleanBag
ImmutableIntObjectSingletonMap. collectBoolean(BooleanFunction<? super V> booleanFunction)
ImmutableBooleanBag
ImmutableLongObjectEmptyMap. collectBoolean(BooleanFunction<? super V> booleanFunction)
ImmutableBooleanBag
ImmutableLongObjectHashMap. collectBoolean(BooleanFunction<? super V> booleanFunction)
ImmutableBooleanBag
ImmutableLongObjectSingletonMap. collectBoolean(BooleanFunction<? super V> booleanFunction)
ImmutableBooleanBag
ImmutableShortObjectEmptyMap. collectBoolean(BooleanFunction<? super V> booleanFunction)
ImmutableBooleanBag
ImmutableShortObjectHashMap. collectBoolean(BooleanFunction<? super V> booleanFunction)
ImmutableBooleanBag
ImmutableShortObjectSingletonMap. collectBoolean(BooleanFunction<? super V> booleanFunction)
ImmutableBooleanBag
ImmutableByteBooleanEmptyMap. reject(BooleanPredicate predicate)
ImmutableBooleanBag
ImmutableByteBooleanHashMap. reject(BooleanPredicate predicate)
ImmutableBooleanBag
ImmutableByteBooleanSingletonMap. reject(BooleanPredicate predicate)
ImmutableBooleanBag
ImmutableCharBooleanEmptyMap. reject(BooleanPredicate predicate)
ImmutableBooleanBag
ImmutableCharBooleanHashMap. reject(BooleanPredicate predicate)
ImmutableBooleanBag
ImmutableCharBooleanSingletonMap. reject(BooleanPredicate predicate)
ImmutableBooleanBag
ImmutableDoubleBooleanEmptyMap. reject(BooleanPredicate predicate)
ImmutableBooleanBag
ImmutableDoubleBooleanHashMap. reject(BooleanPredicate predicate)
ImmutableBooleanBag
ImmutableDoubleBooleanSingletonMap. reject(BooleanPredicate predicate)
ImmutableBooleanBag
ImmutableFloatBooleanEmptyMap. reject(BooleanPredicate predicate)
ImmutableBooleanBag
ImmutableFloatBooleanHashMap. reject(BooleanPredicate predicate)
ImmutableBooleanBag
ImmutableFloatBooleanSingletonMap. reject(BooleanPredicate predicate)
ImmutableBooleanBag
ImmutableIntBooleanEmptyMap. reject(BooleanPredicate predicate)
ImmutableBooleanBag
ImmutableIntBooleanHashMap. reject(BooleanPredicate predicate)
ImmutableBooleanBag
ImmutableIntBooleanSingletonMap. reject(BooleanPredicate predicate)
ImmutableBooleanBag
ImmutableLongBooleanEmptyMap. reject(BooleanPredicate predicate)
ImmutableBooleanBag
ImmutableLongBooleanHashMap. reject(BooleanPredicate predicate)
ImmutableBooleanBag
ImmutableLongBooleanSingletonMap. reject(BooleanPredicate predicate)
ImmutableBooleanBag
ImmutableShortBooleanEmptyMap. reject(BooleanPredicate predicate)
ImmutableBooleanBag
ImmutableShortBooleanHashMap. reject(BooleanPredicate predicate)
ImmutableBooleanBag
ImmutableShortBooleanSingletonMap. reject(BooleanPredicate predicate)
ImmutableBooleanBag
ImmutableByteBooleanEmptyMap. select(BooleanPredicate predicate)
ImmutableBooleanBag
ImmutableByteBooleanHashMap. select(BooleanPredicate predicate)
ImmutableBooleanBag
ImmutableByteBooleanSingletonMap. select(BooleanPredicate predicate)
ImmutableBooleanBag
ImmutableCharBooleanEmptyMap. select(BooleanPredicate predicate)
ImmutableBooleanBag
ImmutableCharBooleanHashMap. select(BooleanPredicate predicate)
ImmutableBooleanBag
ImmutableCharBooleanSingletonMap. select(BooleanPredicate predicate)
ImmutableBooleanBag
ImmutableDoubleBooleanEmptyMap. select(BooleanPredicate predicate)
ImmutableBooleanBag
ImmutableDoubleBooleanHashMap. select(BooleanPredicate predicate)
ImmutableBooleanBag
ImmutableDoubleBooleanSingletonMap. select(BooleanPredicate predicate)
ImmutableBooleanBag
ImmutableFloatBooleanEmptyMap. select(BooleanPredicate predicate)
ImmutableBooleanBag
ImmutableFloatBooleanHashMap. select(BooleanPredicate predicate)
ImmutableBooleanBag
ImmutableFloatBooleanSingletonMap. select(BooleanPredicate predicate)
ImmutableBooleanBag
ImmutableIntBooleanEmptyMap. select(BooleanPredicate predicate)
ImmutableBooleanBag
ImmutableIntBooleanHashMap. select(BooleanPredicate predicate)
ImmutableBooleanBag
ImmutableIntBooleanSingletonMap. select(BooleanPredicate predicate)
ImmutableBooleanBag
ImmutableLongBooleanEmptyMap. select(BooleanPredicate predicate)
ImmutableBooleanBag
ImmutableLongBooleanHashMap. select(BooleanPredicate predicate)
ImmutableBooleanBag
ImmutableLongBooleanSingletonMap. select(BooleanPredicate predicate)
ImmutableBooleanBag
ImmutableShortBooleanEmptyMap. select(BooleanPredicate predicate)
ImmutableBooleanBag
ImmutableShortBooleanHashMap. select(BooleanPredicate predicate)
ImmutableBooleanBag
ImmutableShortBooleanSingletonMap. select(BooleanPredicate predicate)
-