Uses of Interface
org.eclipse.collections.api.list.primitive.ImmutableBooleanList
Packages that use ImmutableBooleanList
Package
Description
This package contains interfaces for SortedBag API.
This package contains factory API for creating immutable primitive list instances.
This package contains interfaces for list API which enhance the performance and functionality of
List
.This package contains mutable and immutable primitive list API.
This package contains interfaces for map API which enhance the performance and functionality of
Map
This package contains mutable and immutable sorted map interfaces.
This package contains interfaces for sorted set API.
This package contains implementations of the
ImmutableList
interface.This package contains implementations of immutable primitive list interfaces and immutable primitive list factory interfaces.
This package contains implementations of the mutable primitive list interfaces.
This package contains implementations of the
MutableSortedMap
interface.This package contains implementations of
ImmutableSortedSet
.-
Uses of ImmutableBooleanList in org.eclipse.collections.api.bag.sorted
Methods in org.eclipse.collections.api.bag.sorted that return ImmutableBooleanListModifier and TypeMethodDescriptionImmutableSortedBag.collectBoolean
(BooleanFunction<? super T> booleanFunction) -
Uses of ImmutableBooleanList in org.eclipse.collections.api.factory.list.primitive
Methods in org.eclipse.collections.api.factory.list.primitive that return ImmutableBooleanListModifier and TypeMethodDescriptionImmutableBooleanListFactory.empty()
ImmutableBooleanListFactory.of()
Same asImmutableBooleanListFactory.empty()
.ImmutableBooleanListFactory.of
(boolean one) ImmutableBooleanListFactory.of
(boolean... items) ImmutableBooleanListFactory.ofAll
(BooleanIterable items) ImmutableBooleanListFactory.with()
Same asImmutableBooleanListFactory.empty()
.ImmutableBooleanListFactory.with
(boolean one) ImmutableBooleanListFactory.with
(boolean... items) ImmutableBooleanListFactory.withAll
(BooleanIterable items) -
Uses of ImmutableBooleanList in org.eclipse.collections.api.list
Methods in org.eclipse.collections.api.list that return ImmutableBooleanListModifier and TypeMethodDescriptionImmutableList.collectBoolean
(BooleanFunction<? super T> booleanFunction) -
Uses of ImmutableBooleanList in org.eclipse.collections.api.list.primitive
Methods in org.eclipse.collections.api.list.primitive that return ImmutableBooleanListModifier and TypeMethodDescriptionImmutableBooleanList.distinct()
ImmutableBooleanList.newWith
(boolean element) ImmutableBooleanList.newWithAll
(BooleanIterable elements) ImmutableBooleanList.newWithout
(boolean element) ImmutableBooleanList.newWithoutAll
(BooleanIterable elements) ImmutableBooleanList.reject
(BooleanPredicate predicate) default ImmutableBooleanList
ImmutableBooleanList.rejectWithIndex
(BooleanIntPredicate predicate) Returns a new ImmutableBooleanList excluding all elements with corresponding indexes matching the specified predicate.ImmutableBooleanList.select
(BooleanPredicate predicate) default ImmutableBooleanList
ImmutableBooleanList.selectWithIndex
(BooleanIntPredicate predicate) Returns a new ImmutableBooleanList including all elements with corresponding indexes matching the specified predicate.ImmutableBooleanList.subList
(int fromIndex, int toIndex) default ImmutableBooleanList
ImmutableBooleanList.tap
(BooleanProcedure procedure) BooleanList.toImmutable()
Returns an immutable copy of this list.MutableBooleanList.toImmutable()
Returns an immutable copy of this list.ImmutableBooleanList.toReversed()
-
Uses of ImmutableBooleanList in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map that return ImmutableBooleanListModifier and TypeMethodDescriptionImmutableOrderedMap.collectBoolean
(BooleanFunction<? super V> booleanFunction) -
Uses of ImmutableBooleanList in org.eclipse.collections.api.map.sorted
Methods in org.eclipse.collections.api.map.sorted that return ImmutableBooleanListModifier and TypeMethodDescriptionImmutableSortedMap.collectBoolean
(BooleanFunction<? super V> booleanFunction) -
Uses of ImmutableBooleanList in org.eclipse.collections.api.set.sorted
Methods in org.eclipse.collections.api.set.sorted that return ImmutableBooleanListModifier and TypeMethodDescriptionImmutableSortedSet.collectBoolean
(BooleanFunction<? super T> booleanFunction) -
Uses of ImmutableBooleanList in org.eclipse.collections.impl.bag.sorted.immutable
Methods in org.eclipse.collections.impl.bag.sorted.immutable that return ImmutableBooleanListModifier and TypeMethodDescriptionAbstractImmutableSortedBag.collectBoolean
(BooleanFunction<? super T> booleanFunction) -
Uses of ImmutableBooleanList in org.eclipse.collections.impl.list.immutable
Methods in org.eclipse.collections.impl.list.immutable that return ImmutableBooleanListModifier and TypeMethodDescriptionAbstractImmutableList.collectBoolean
(BooleanFunction<? super T> booleanFunction) -
Uses of ImmutableBooleanList in org.eclipse.collections.impl.list.immutable.primitive
Classes in org.eclipse.collections.impl.list.immutable.primitive that implement ImmutableBooleanListModifier and TypeClassDescription(package private) final class
ImmutableBooleanArrayList is the non-modifiable equivalent ofBooleanArrayList
.(package private) final class
ImmutableBooleanEmptyList is an optimization forImmutableBooleanList
of size 0.(package private) final class
ImmutableBooleanSingletonList is an optimization forImmutableBooleanList
of size 1.Fields in org.eclipse.collections.impl.list.immutable.primitive declared as ImmutableBooleanListModifier and TypeFieldDescription(package private) static final ImmutableBooleanList
ImmutableBooleanEmptyList.INSTANCE
private ImmutableBooleanList
ImmutableBooleanArrayList.ImmutableBooleanListSerializationProxy.list
Methods in org.eclipse.collections.impl.list.immutable.primitive that return ImmutableBooleanListModifier and TypeMethodDescriptionImmutableBooleanArrayList.distinct()
ImmutableBooleanEmptyList.distinct()
ImmutableBooleanSingletonList.distinct()
ImmutableBooleanListFactoryImpl.empty()
ImmutableBooleanArrayList.newWith
(boolean element) ImmutableBooleanEmptyList.newWith
(boolean element) ImmutableBooleanSingletonList.newWith
(boolean element) ImmutableBooleanArrayList.newWithAll
(BooleanIterable elements) ImmutableBooleanEmptyList.newWithAll
(BooleanIterable elements) ImmutableBooleanSingletonList.newWithAll
(BooleanIterable elements) ImmutableBooleanArrayList.newWithout
(boolean element) ImmutableBooleanEmptyList.newWithout
(boolean element) ImmutableBooleanSingletonList.newWithout
(boolean element) ImmutableBooleanArrayList.newWithoutAll
(BooleanIterable elements) ImmutableBooleanEmptyList.newWithoutAll
(BooleanIterable elements) ImmutableBooleanSingletonList.newWithoutAll
(BooleanIterable elements) ImmutableBooleanListFactoryImpl.of()
ImmutableBooleanListFactoryImpl.of
(boolean one) ImmutableBooleanListFactoryImpl.of
(boolean... items) ImmutableBooleanListFactoryImpl.ofAll
(BooleanIterable items) ImmutableBooleanArrayList.reject
(BooleanPredicate predicate) ImmutableBooleanEmptyList.reject
(BooleanPredicate predicate) ImmutableBooleanSingletonList.reject
(BooleanPredicate predicate) ImmutableBooleanArrayList.select
(BooleanPredicate predicate) ImmutableBooleanEmptyList.select
(BooleanPredicate predicate) ImmutableBooleanSingletonList.select
(BooleanPredicate predicate) ImmutableBooleanArrayList.subList
(int fromIndex, int toIndex) ImmutableBooleanEmptyList.subList
(int fromIndex, int toIndex) ImmutableBooleanSingletonList.subList
(int fromIndex, int toIndex) ImmutableBooleanArrayList.toImmutable()
ImmutableBooleanEmptyList.toImmutable()
ImmutableBooleanSingletonList.toImmutable()
ImmutableBooleanListFactoryImpl.with()
ImmutableBooleanListFactoryImpl.with
(boolean one) ImmutableBooleanListFactoryImpl.with
(boolean... items) ImmutableBooleanListFactoryImpl.withAll
(BooleanIterable items) Constructors in org.eclipse.collections.impl.list.immutable.primitive with parameters of type ImmutableBooleanListModifierConstructorDescriptionprivate
-
Uses of ImmutableBooleanList in org.eclipse.collections.impl.list.mutable.primitive
Methods in org.eclipse.collections.impl.list.mutable.primitive that return ImmutableBooleanListModifier and TypeMethodDescriptionBooleanArrayList.toImmutable()
SynchronizedBooleanList.toImmutable()
UnmodifiableBooleanList.toImmutable()
-
Uses of ImmutableBooleanList in org.eclipse.collections.impl.map.sorted.immutable
Methods in org.eclipse.collections.impl.map.sorted.immutable that return ImmutableBooleanListModifier and TypeMethodDescriptionAbstractImmutableSortedMap.collectBoolean
(BooleanFunction<? super V> booleanFunction) -
Uses of ImmutableBooleanList in org.eclipse.collections.impl.set.sorted.immutable
Methods in org.eclipse.collections.impl.set.sorted.immutable that return ImmutableBooleanListModifier and TypeMethodDescriptionAbstractImmutableSortedSet.collectBoolean
(BooleanFunction<? super T> booleanFunction)