Uses of Interface
org.eclipse.collections.api.set.primitive.ImmutableBooleanSet
-
Packages that use ImmutableBooleanSet Package Description org.eclipse.collections.api.bag.primitive This package contains API for Primitive Bags with Mutable and Immutable variants.org.eclipse.collections.api.factory.set.primitive This package contains factory API for creating primitive set instances.org.eclipse.collections.api.set This package contains interfaces for set API which enhance the performance and functionality ofSet
.org.eclipse.collections.api.set.primitive This package contains API for mutable and immutable primitive sets.org.eclipse.collections.impl.bag.immutable.primitive This package contains implementations of the immutable primitive bag interfaces.org.eclipse.collections.impl.set.immutable This package contains the implementations ofImmutableSet
.org.eclipse.collections.impl.set.immutable.primitive This package contains implementations of the immutable primitive set interfaces.org.eclipse.collections.impl.set.mutable.primitive This package contains implementations of the mutable primitive set interfaces. -
-
Uses of ImmutableBooleanSet in org.eclipse.collections.api.bag.primitive
Methods in org.eclipse.collections.api.bag.primitive that return ImmutableBooleanSet Modifier and Type Method Description ImmutableBooleanSet
ImmutableBooleanBag. selectUnique()
Returns all elements of the bag that have exactly one occurrence. -
Uses of ImmutableBooleanSet in org.eclipse.collections.api.factory.set.primitive
Methods in org.eclipse.collections.api.factory.set.primitive that return ImmutableBooleanSet Modifier and Type Method Description ImmutableBooleanSet
ImmutableBooleanSetFactory. empty()
ImmutableBooleanSet
ImmutableBooleanSetFactory. of()
Same asImmutableBooleanSetFactory.empty()
.ImmutableBooleanSet
ImmutableBooleanSetFactory. of(boolean one)
ImmutableBooleanSet
ImmutableBooleanSetFactory. of(boolean... items)
ImmutableBooleanSet
ImmutableBooleanSetFactory. ofAll(java.lang.Iterable<java.lang.Boolean> iterable)
ImmutableBooleanSet
ImmutableBooleanSetFactory. ofAll(BooleanIterable items)
ImmutableBooleanSet
ImmutableBooleanSetFactory. with()
Same asImmutableBooleanSetFactory.empty()
.ImmutableBooleanSet
ImmutableBooleanSetFactory. with(boolean one)
ImmutableBooleanSet
ImmutableBooleanSetFactory. with(boolean... items)
ImmutableBooleanSet
ImmutableBooleanSetFactory. withAll(java.lang.Iterable<java.lang.Boolean> iterable)
ImmutableBooleanSet
ImmutableBooleanSetFactory. withAll(BooleanIterable items)
-
Uses of ImmutableBooleanSet in org.eclipse.collections.api.set
Methods in org.eclipse.collections.api.set that return ImmutableBooleanSet Modifier and Type Method Description ImmutableBooleanSet
ImmutableSet. collectBoolean(BooleanFunction<? super T> booleanFunction)
-
Uses of ImmutableBooleanSet in org.eclipse.collections.api.set.primitive
Methods in org.eclipse.collections.api.set.primitive that return ImmutableBooleanSet Modifier and Type Method Description default ImmutableBooleanSet
ImmutableBooleanSet. difference(BooleanSet set)
Returns the set of all members ofthis
that are not members ofset
.default ImmutableBooleanSet
ImmutableBooleanSet. intersect(BooleanSet set)
Returns the set of all objects that are members of boththis
andset
.ImmutableBooleanSet
ImmutableBooleanSet. newWith(boolean element)
ImmutableBooleanSet
ImmutableBooleanSet. newWithAll(BooleanIterable elements)
ImmutableBooleanSet
ImmutableBooleanSet. newWithout(boolean element)
ImmutableBooleanSet
ImmutableBooleanSet. newWithoutAll(BooleanIterable elements)
ImmutableBooleanSet
ImmutableBooleanSet. reject(BooleanPredicate predicate)
ImmutableBooleanSet
ImmutableBooleanSet. select(BooleanPredicate predicate)
default ImmutableBooleanSet
ImmutableBooleanSet. symmetricDifference(BooleanSet set)
Returns the set of all objects that are a member of exactly one ofthis
andset
(elements which are in one of the sets, but not in both).default ImmutableBooleanSet
ImmutableBooleanSet. tap(BooleanProcedure procedure)
ImmutableBooleanSet
BooleanSet. toImmutable()
Returns an immutable copy of this set.ImmutableBooleanSet
MutableBooleanSet. toImmutable()
Returns an immutable copy of this set.default ImmutableBooleanSet
ImmutableBooleanSet. union(BooleanSet set)
-
Uses of ImmutableBooleanSet in org.eclipse.collections.impl.bag.immutable.primitive
Methods in org.eclipse.collections.impl.bag.immutable.primitive that return ImmutableBooleanSet Modifier and Type Method Description ImmutableBooleanSet
ImmutableBooleanEmptyBag. selectUnique()
ImmutableBooleanSet
ImmutableBooleanHashBag. selectUnique()
ImmutableBooleanSet
ImmutableBooleanSingletonBag. selectUnique()
-
Uses of ImmutableBooleanSet in org.eclipse.collections.impl.set.immutable
Methods in org.eclipse.collections.impl.set.immutable that return ImmutableBooleanSet Modifier and Type Method Description ImmutableBooleanSet
AbstractImmutableSet. collectBoolean(BooleanFunction<? super T> booleanFunction)
-
Uses of ImmutableBooleanSet in org.eclipse.collections.impl.set.immutable.primitive
Classes in org.eclipse.collections.impl.set.immutable.primitive that implement ImmutableBooleanSet Modifier and Type Class Description (package private) class
ImmutableBooleanEmptySet
(package private) class
ImmutableFalseSet
(package private) class
ImmutableTrueFalseSet
(package private) class
ImmutableTrueSet
Fields in org.eclipse.collections.impl.set.immutable.primitive declared as ImmutableBooleanSet Modifier and Type Field Description (package private) static ImmutableBooleanSet
ImmutableBooleanEmptySet. INSTANCE
(package private) static ImmutableBooleanSet
ImmutableFalseSet. INSTANCE
(package private) static ImmutableBooleanSet
ImmutableTrueFalseSet. INSTANCE
(package private) static ImmutableBooleanSet
ImmutableTrueSet. INSTANCE
Methods in org.eclipse.collections.impl.set.immutable.primitive that return ImmutableBooleanSet Modifier and Type Method Description ImmutableBooleanSet
ImmutableBooleanSetFactoryImpl. empty()
ImmutableBooleanSet
ImmutableBooleanEmptySet. newWith(boolean element)
ImmutableBooleanSet
ImmutableFalseSet. newWith(boolean element)
ImmutableBooleanSet
ImmutableTrueFalseSet. newWith(boolean element)
ImmutableBooleanSet
ImmutableTrueSet. newWith(boolean element)
ImmutableBooleanSet
ImmutableBooleanEmptySet. newWithAll(BooleanIterable elements)
ImmutableBooleanSet
ImmutableFalseSet. newWithAll(BooleanIterable elements)
ImmutableBooleanSet
ImmutableTrueFalseSet. newWithAll(BooleanIterable elements)
ImmutableBooleanSet
ImmutableTrueSet. newWithAll(BooleanIterable elements)
ImmutableBooleanSet
ImmutableBooleanEmptySet. newWithout(boolean element)
ImmutableBooleanSet
ImmutableFalseSet. newWithout(boolean element)
ImmutableBooleanSet
ImmutableTrueFalseSet. newWithout(boolean element)
ImmutableBooleanSet
ImmutableTrueSet. newWithout(boolean element)
ImmutableBooleanSet
ImmutableBooleanEmptySet. newWithoutAll(BooleanIterable elements)
ImmutableBooleanSet
ImmutableFalseSet. newWithoutAll(BooleanIterable elements)
ImmutableBooleanSet
ImmutableTrueFalseSet. newWithoutAll(BooleanIterable elements)
ImmutableBooleanSet
ImmutableTrueSet. newWithoutAll(BooleanIterable elements)
ImmutableBooleanSet
ImmutableBooleanSetFactoryImpl. of()
ImmutableBooleanSet
ImmutableBooleanSetFactoryImpl. of(boolean one)
ImmutableBooleanSet
ImmutableBooleanSetFactoryImpl. of(boolean... items)
ImmutableBooleanSet
ImmutableBooleanSetFactoryImpl. ofAll(java.lang.Iterable<java.lang.Boolean> iterable)
ImmutableBooleanSet
ImmutableBooleanSetFactoryImpl. ofAll(BooleanIterable items)
ImmutableBooleanSet
ImmutableBooleanEmptySet. reject(BooleanPredicate predicate)
ImmutableBooleanSet
ImmutableFalseSet. reject(BooleanPredicate predicate)
ImmutableBooleanSet
ImmutableTrueFalseSet. reject(BooleanPredicate predicate)
ImmutableBooleanSet
ImmutableTrueSet. reject(BooleanPredicate predicate)
ImmutableBooleanSet
ImmutableBooleanEmptySet. select(BooleanPredicate predicate)
ImmutableBooleanSet
ImmutableFalseSet. select(BooleanPredicate predicate)
ImmutableBooleanSet
ImmutableTrueFalseSet. select(BooleanPredicate predicate)
ImmutableBooleanSet
ImmutableTrueSet. select(BooleanPredicate predicate)
ImmutableBooleanSet
ImmutableBooleanEmptySet. toImmutable()
ImmutableBooleanSet
ImmutableFalseSet. toImmutable()
ImmutableBooleanSet
ImmutableTrueFalseSet. toImmutable()
ImmutableBooleanSet
ImmutableTrueSet. toImmutable()
ImmutableBooleanSet
ImmutableBooleanSetFactoryImpl. with()
ImmutableBooleanSet
ImmutableBooleanSetFactoryImpl. with(boolean one)
ImmutableBooleanSet
ImmutableBooleanSetFactoryImpl. with(boolean... items)
ImmutableBooleanSet
ImmutableBooleanSetFactoryImpl. withAll(java.lang.Iterable<java.lang.Boolean> iterable)
ImmutableBooleanSet
ImmutableBooleanSetFactoryImpl. withAll(BooleanIterable items)
-
Uses of ImmutableBooleanSet in org.eclipse.collections.impl.set.mutable.primitive
Methods in org.eclipse.collections.impl.set.mutable.primitive that return ImmutableBooleanSet Modifier and Type Method Description ImmutableBooleanSet
BooleanHashSet. toImmutable()
ImmutableBooleanSet
SynchronizedBooleanSet. toImmutable()
ImmutableBooleanSet
UnmodifiableBooleanSet. toImmutable()
-