Uses of Interface
org.eclipse.collections.api.list.primitive.MutableBooleanList
-
Packages that use MutableBooleanList Package Description org.eclipse.collections.api This package contains interfaces for Eclipse Collections API.org.eclipse.collections.api.bag.sorted This package contains interfaces for SortedBag API.org.eclipse.collections.api.factory.list.primitive This package contains factory API for creating immutable primitive list instances.org.eclipse.collections.api.list This package contains interfaces for list API which enhance the performance and functionality ofList
.org.eclipse.collections.api.list.primitive This package contains mutable and immutable primitive list API.org.eclipse.collections.api.map This package contains interfaces for map API which enhance the performance and functionality ofMap
org.eclipse.collections.api.map.sorted This package contains mutable and immutable sorted map interfaces.org.eclipse.collections.api.set.sorted This package contains interfaces for sorted set API.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.bag.sorted.mutable This package contains implementations ofMutableSortedBag
.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.list.immutable.primitive This package contains implementations of immutable primitive list interfaces and immutable primitive list factory interfaces.org.eclipse.collections.impl.list.mutable This package contains implementations of theMutableList
interface.org.eclipse.collections.impl.list.mutable.primitive This package contains implementations of the mutable primitive list interfaces.org.eclipse.collections.impl.map.immutable.primitive This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.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.map.ordered.mutable org.eclipse.collections.impl.map.sorted.mutable This package contains implementations of theMutableSortedMap
interface.org.eclipse.collections.impl.primitive 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.org.eclipse.collections.impl.set.sorted.mutable This package contains implementations ofMutableSortedSet
.org.eclipse.collections.impl.stack.immutable.primitive This package contains implementations of the immutable primitive stack interfaces.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.utility This package contains static utilities that provide iteration pattern implementations which work with JCF collections.org.eclipse.collections.impl.utility.internal This package contains static utilities that provide internal iteration pattern implementations which work with JCF collections. -
-
Uses of MutableBooleanList in org.eclipse.collections.api
Methods in org.eclipse.collections.api that return MutableBooleanList Modifier and Type Method Description MutableBooleanList
BooleanIterable. toList()
Converts the BooleanIterable to a new MutableBooleanList. -
Uses of MutableBooleanList in org.eclipse.collections.api.bag.sorted
Methods in org.eclipse.collections.api.bag.sorted that return MutableBooleanList Modifier and Type Method Description MutableBooleanList
MutableSortedBag. collectBoolean(BooleanFunction<? super T> booleanFunction)
-
Uses of MutableBooleanList in org.eclipse.collections.api.factory.list.primitive
Methods in org.eclipse.collections.api.factory.list.primitive that return MutableBooleanList Modifier and Type Method Description MutableBooleanList
MutableBooleanListFactory. empty()
MutableBooleanList
MutableBooleanListFactory. of()
Same asMutableBooleanListFactory.empty()
.MutableBooleanList
MutableBooleanListFactory. of(boolean... items)
MutableBooleanList
MutableBooleanListFactory. ofAll(java.lang.Iterable<java.lang.Boolean> iterable)
MutableBooleanList
MutableBooleanListFactory. ofAll(BooleanIterable items)
MutableBooleanList
MutableBooleanListFactory. with()
Same asMutableBooleanListFactory.empty()
.MutableBooleanList
MutableBooleanListFactory. with(boolean... items)
Creates a new list using the passeditems
argument as the backing store.MutableBooleanList
MutableBooleanListFactory. withAll(java.lang.Iterable<java.lang.Boolean> iterable)
MutableBooleanList
MutableBooleanListFactory. withAll(BooleanIterable items)
default MutableBooleanList
MutableBooleanListFactory. withInitialCapacity(int capacity)
Same asMutableBooleanListFactory.empty()
.default MutableBooleanList
MutableBooleanListFactory. wrapCopy(boolean... array)
Creates a new list by first copying the array passed in. -
Uses of MutableBooleanList in org.eclipse.collections.api.list
Methods in org.eclipse.collections.api.list that return MutableBooleanList Modifier and Type Method Description default MutableBooleanList
MutableList. collectBoolean(BooleanFunction<? super T> booleanFunction)
-
Uses of MutableBooleanList in org.eclipse.collections.api.list.primitive
Methods in org.eclipse.collections.api.list.primitive that return MutableBooleanList Modifier and Type Method Description MutableBooleanList
MutableBooleanList. asSynchronized()
MutableBooleanList
MutableBooleanList. asUnmodifiable()
MutableBooleanList
MutableBooleanList. distinct()
default MutableBooleanList
MutableBooleanList. newEmpty()
Creates a new empty mutable version of the same List type.MutableBooleanList
MutableBooleanList. reject(BooleanPredicate predicate)
default MutableBooleanList
MutableBooleanList. rejectWithIndex(BooleanIntPredicate predicate)
Returns a new MutableBooleanList excluding all elements with corresponding indexes matching the specified predicate.MutableBooleanList
MutableBooleanList. reverseThis()
MutableBooleanList
MutableBooleanList. select(BooleanPredicate predicate)
default MutableBooleanList
MutableBooleanList. selectWithIndex(BooleanIntPredicate predicate)
Returns a new MutableBooleanList including all elements with corresponding indexes matching the specified predicate.MutableBooleanList
MutableBooleanList. subList(int fromIndex, int toIndex)
default MutableBooleanList
MutableBooleanList. tap(BooleanProcedure procedure)
MutableBooleanList
MutableBooleanList. toReversed()
MutableBooleanList
MutableBooleanList. with(boolean element)
MutableBooleanList
MutableBooleanList. withAll(BooleanIterable elements)
MutableBooleanList
MutableBooleanList. without(boolean element)
MutableBooleanList
MutableBooleanList. withoutAll(BooleanIterable elements)
-
Uses of MutableBooleanList in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map that return MutableBooleanList Modifier and Type Method Description MutableBooleanList
MutableOrderedMap. collectBoolean(BooleanFunction<? super V> booleanFunction)
-
Uses of MutableBooleanList in org.eclipse.collections.api.map.sorted
Methods in org.eclipse.collections.api.map.sorted that return MutableBooleanList Modifier and Type Method Description MutableBooleanList
MutableSortedMap. collectBoolean(BooleanFunction<? super V> booleanFunction)
-
Uses of MutableBooleanList in org.eclipse.collections.api.set.sorted
Methods in org.eclipse.collections.api.set.sorted that return MutableBooleanList Modifier and Type Method Description MutableBooleanList
MutableSortedSet. collectBoolean(BooleanFunction<? super T> booleanFunction)
-
Uses of MutableBooleanList in org.eclipse.collections.impl.bag.immutable.primitive
Methods in org.eclipse.collections.impl.bag.immutable.primitive that return MutableBooleanList Modifier and Type Method Description MutableBooleanList
ImmutableBooleanEmptyBag. toList()
MutableBooleanList
ImmutableBooleanHashBag. toList()
MutableBooleanList
ImmutableBooleanSingletonBag. toList()
-
Uses of MutableBooleanList in org.eclipse.collections.impl.bag.mutable.primitive
Methods in org.eclipse.collections.impl.bag.mutable.primitive that return MutableBooleanList Modifier and Type Method Description MutableBooleanList
BooleanHashBag. toList()
-
Uses of MutableBooleanList in org.eclipse.collections.impl.bag.sorted.mutable
Methods in org.eclipse.collections.impl.bag.sorted.mutable that return MutableBooleanList Modifier and Type Method Description MutableBooleanList
AbstractMutableSortedBag. collectBoolean(BooleanFunction<? super T> booleanFunction)
MutableBooleanList
SynchronizedSortedBag. collectBoolean(BooleanFunction<? super T> booleanFunction)
MutableBooleanList
UnmodifiableSortedBag. collectBoolean(BooleanFunction<? super T> booleanFunction)
-
Uses of MutableBooleanList in org.eclipse.collections.impl.collection.mutable.primitive
Methods in org.eclipse.collections.impl.collection.mutable.primitive that return MutableBooleanList Modifier and Type Method Description MutableBooleanList
AbstractSynchronizedBooleanCollection. toList()
MutableBooleanList
AbstractUnmodifiableBooleanCollection. toList()
-
Uses of MutableBooleanList in org.eclipse.collections.impl.lazy.primitive
Methods in org.eclipse.collections.impl.lazy.primitive that return MutableBooleanList Modifier and Type Method Description MutableBooleanList
AbstractLazyBooleanIterable. toList()
MutableBooleanList
CollectBooleanIterable. toList()
MutableBooleanList
LazyBooleanIterableAdapter. toList()
MutableBooleanList
ReverseBooleanIterable. toList()
MutableBooleanList
SelectBooleanIterable. toList()
-
Uses of MutableBooleanList in org.eclipse.collections.impl.list.immutable.primitive
Methods in org.eclipse.collections.impl.list.immutable.primitive that return MutableBooleanList Modifier and Type Method Description MutableBooleanList
ImmutableBooleanArrayList. toList()
MutableBooleanList
ImmutableBooleanEmptyList. toList()
MutableBooleanList
ImmutableBooleanSingletonList. toList()
-
Uses of MutableBooleanList in org.eclipse.collections.impl.list.mutable
Methods in org.eclipse.collections.impl.list.mutable that return MutableBooleanList Modifier and Type Method Description MutableBooleanList
MultiReaderFastList. collectBoolean(BooleanFunction<? super T> booleanFunction)
MutableBooleanList
MultiReaderFastList.UntouchableMutableList. collectBoolean(BooleanFunction<? super T> booleanFunction)
MutableBooleanList
SynchronizedMutableList. collectBoolean(BooleanFunction<? super T> booleanFunction)
MutableBooleanList
UnmodifiableMutableList. collectBoolean(BooleanFunction<? super T> booleanFunction)
-
Uses of MutableBooleanList in org.eclipse.collections.impl.list.mutable.primitive
Classes in org.eclipse.collections.impl.list.mutable.primitive that implement MutableBooleanList Modifier and Type Class Description class
BooleanArrayList
BooleanArrayList is similar toFastList
, and is memory-optimized for boolean primitives.class
SynchronizedBooleanList
A synchronized view of aMutableBooleanList
.class
UnmodifiableBooleanList
This file was automatically generated from template file unmodifiablePrimitiveList.stg.Methods in org.eclipse.collections.impl.list.mutable.primitive that return MutableBooleanList Modifier and Type Method Description MutableBooleanList
BooleanArrayList. asSynchronized()
MutableBooleanList
SynchronizedBooleanList. asSynchronized()
MutableBooleanList
UnmodifiableBooleanList. asSynchronized()
MutableBooleanList
BooleanArrayList. asUnmodifiable()
MutableBooleanList
SynchronizedBooleanList. asUnmodifiable()
MutableBooleanList
UnmodifiableBooleanList. asUnmodifiable()
MutableBooleanList
BooleanArrayList. distinct()
MutableBooleanList
SynchronizedBooleanList. distinct()
MutableBooleanList
UnmodifiableBooleanList. distinct()
MutableBooleanList
MutableBooleanListFactoryImpl. empty()
private MutableBooleanList
SynchronizedBooleanList. getMutableBooleanList()
private MutableBooleanList
UnmodifiableBooleanList. getMutableBooleanList()
MutableBooleanList
SynchronizedBooleanList. newEmpty()
MutableBooleanList
UnmodifiableBooleanList. newEmpty()
MutableBooleanList
MutableBooleanListFactoryImpl. of()
MutableBooleanList
MutableBooleanListFactoryImpl. of(boolean... items)
MutableBooleanList
MutableBooleanListFactoryImpl. ofAll(java.lang.Iterable<java.lang.Boolean> iterable)
MutableBooleanList
MutableBooleanListFactoryImpl. ofAll(BooleanIterable items)
MutableBooleanList
SynchronizedBooleanList. reject(BooleanPredicate predicate)
MutableBooleanList
UnmodifiableBooleanList. reject(BooleanPredicate predicate)
MutableBooleanList
SynchronizedBooleanList. rejectWithIndex(BooleanIntPredicate predicate)
Returns a new MutableBooleanList excluding all elements with corresponding indexes matching the specified predicate.MutableBooleanList
UnmodifiableBooleanList. rejectWithIndex(BooleanIntPredicate predicate)
Returns a new MutableBooleanList excluding all elements with corresponding indexes matching the specified predicate.MutableBooleanList
SynchronizedBooleanList. reverseThis()
MutableBooleanList
UnmodifiableBooleanList. reverseThis()
MutableBooleanList
SynchronizedBooleanList. select(BooleanPredicate predicate)
MutableBooleanList
UnmodifiableBooleanList. select(BooleanPredicate predicate)
MutableBooleanList
SynchronizedBooleanList. selectWithIndex(BooleanIntPredicate predicate)
Returns a new MutableBooleanList including all elements with corresponding indexes matching the specified predicate.MutableBooleanList
UnmodifiableBooleanList. selectWithIndex(BooleanIntPredicate predicate)
Returns a new MutableBooleanList including all elements with corresponding indexes matching the specified predicate.MutableBooleanList
BooleanArrayList. subList(int fromIndex, int toIndex)
MutableBooleanList
SynchronizedBooleanList. subList(int fromIndex, int toIndex)
MutableBooleanList
UnmodifiableBooleanList. subList(int fromIndex, int toIndex)
MutableBooleanList
BooleanArrayList. toList()
MutableBooleanList
SynchronizedBooleanList. toReversed()
MutableBooleanList
UnmodifiableBooleanList. toReversed()
MutableBooleanList
MutableBooleanListFactoryImpl. with()
MutableBooleanList
MutableBooleanListFactoryImpl. with(boolean... items)
Creates a new list using the passeditems
argument as the backing store.MutableBooleanList
MutableBooleanListFactoryImpl. withAll(java.lang.Iterable<java.lang.Boolean> iterable)
MutableBooleanList
MutableBooleanListFactoryImpl. withAll(BooleanIterable items)
MutableBooleanList
MutableBooleanListFactoryImpl. withInitialCapacity(int capacity)
Constructors in org.eclipse.collections.impl.list.mutable.primitive with parameters of type MutableBooleanList Constructor Description SynchronizedBooleanList(MutableBooleanList list)
SynchronizedBooleanList(MutableBooleanList list, java.lang.Object newLock)
UnmodifiableBooleanList(MutableBooleanList list)
-
Uses of MutableBooleanList in org.eclipse.collections.impl.map.immutable.primitive
Methods in org.eclipse.collections.impl.map.immutable.primitive that return MutableBooleanList Modifier and Type Method Description MutableBooleanList
ImmutableByteBooleanEmptyMap. toList()
MutableBooleanList
ImmutableByteBooleanHashMap. toList()
MutableBooleanList
ImmutableByteBooleanSingletonMap. toList()
MutableBooleanList
ImmutableCharBooleanEmptyMap. toList()
MutableBooleanList
ImmutableCharBooleanHashMap. toList()
MutableBooleanList
ImmutableCharBooleanSingletonMap. toList()
MutableBooleanList
ImmutableDoubleBooleanEmptyMap. toList()
MutableBooleanList
ImmutableDoubleBooleanHashMap. toList()
MutableBooleanList
ImmutableDoubleBooleanSingletonMap. toList()
MutableBooleanList
ImmutableFloatBooleanEmptyMap. toList()
MutableBooleanList
ImmutableFloatBooleanHashMap. toList()
MutableBooleanList
ImmutableFloatBooleanSingletonMap. toList()
MutableBooleanList
ImmutableIntBooleanEmptyMap. toList()
MutableBooleanList
ImmutableIntBooleanHashMap. toList()
MutableBooleanList
ImmutableIntBooleanSingletonMap. toList()
MutableBooleanList
ImmutableLongBooleanEmptyMap. toList()
MutableBooleanList
ImmutableLongBooleanHashMap. toList()
MutableBooleanList
ImmutableLongBooleanSingletonMap. toList()
MutableBooleanList
ImmutableObjectBooleanEmptyMap. toList()
MutableBooleanList
ImmutableObjectBooleanHashMap. toList()
MutableBooleanList
ImmutableObjectBooleanSingletonMap. toList()
MutableBooleanList
ImmutableShortBooleanEmptyMap. toList()
MutableBooleanList
ImmutableShortBooleanHashMap. toList()
MutableBooleanList
ImmutableShortBooleanSingletonMap. toList()
-
Uses of MutableBooleanList in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive that return MutableBooleanList Modifier and Type Method Description MutableBooleanList
AbstractMutableBooleanValuesMap.AbstractBooleanValuesCollection. toList()
MutableBooleanList
ObjectBooleanHashMap. toList()
MutableBooleanList
ObjectBooleanHashMap.ValuesCollection. toList()
MutableBooleanList
ObjectBooleanHashMapWithHashingStrategy. toList()
MutableBooleanList
ObjectBooleanHashMapWithHashingStrategy.ValuesCollection. toList()
MutableBooleanList
SynchronizedByteBooleanMap. toList()
MutableBooleanList
SynchronizedCharBooleanMap. toList()
MutableBooleanList
SynchronizedDoubleBooleanMap. toList()
MutableBooleanList
SynchronizedFloatBooleanMap. toList()
MutableBooleanList
SynchronizedIntBooleanMap. toList()
MutableBooleanList
SynchronizedLongBooleanMap. toList()
MutableBooleanList
SynchronizedObjectBooleanMap. toList()
MutableBooleanList
SynchronizedShortBooleanMap. toList()
MutableBooleanList
UnmodifiableByteBooleanMap. toList()
MutableBooleanList
UnmodifiableCharBooleanMap. toList()
MutableBooleanList
UnmodifiableDoubleBooleanMap. toList()
MutableBooleanList
UnmodifiableFloatBooleanMap. toList()
MutableBooleanList
UnmodifiableIntBooleanMap. toList()
MutableBooleanList
UnmodifiableLongBooleanMap. toList()
MutableBooleanList
UnmodifiableObjectBooleanMap. toList()
MutableBooleanList
UnmodifiableShortBooleanMap. toList()
-
Uses of MutableBooleanList in org.eclipse.collections.impl.map.ordered.mutable
Methods in org.eclipse.collections.impl.map.ordered.mutable that return MutableBooleanList Modifier and Type Method Description MutableBooleanList
OrderedMapAdapter. collectBoolean(BooleanFunction<? super V> booleanFunction)
MutableBooleanList
UnmodifiableMutableOrderedMap. collectBoolean(BooleanFunction<? super V> booleanFunction)
-
Uses of MutableBooleanList in org.eclipse.collections.impl.map.sorted.mutable
Methods in org.eclipse.collections.impl.map.sorted.mutable that return MutableBooleanList Modifier and Type Method Description MutableBooleanList
AbstractMutableSortedMap. collectBoolean(BooleanFunction<? super V> booleanFunction)
MutableBooleanList
SynchronizedSortedMap. collectBoolean(BooleanFunction<? super V> booleanFunction)
MutableBooleanList
UnmodifiableTreeMap. collectBoolean(BooleanFunction<? super V> booleanFunction)
-
Uses of MutableBooleanList in org.eclipse.collections.impl.primitive
Methods in org.eclipse.collections.impl.primitive that return MutableBooleanList Modifier and Type Method Description MutableBooleanList
AbstractBooleanIterable. toList()
MutableBooleanList
SynchronizedBooleanIterable. toList()
-
Uses of MutableBooleanList in org.eclipse.collections.impl.set.immutable.primitive
Methods in org.eclipse.collections.impl.set.immutable.primitive that return MutableBooleanList Modifier and Type Method Description MutableBooleanList
ImmutableBooleanEmptySet. toList()
MutableBooleanList
ImmutableFalseSet. toList()
MutableBooleanList
ImmutableTrueFalseSet. toList()
MutableBooleanList
ImmutableTrueSet. toList()
-
Uses of MutableBooleanList in org.eclipse.collections.impl.set.mutable.primitive
Methods in org.eclipse.collections.impl.set.mutable.primitive that return MutableBooleanList Modifier and Type Method Description MutableBooleanList
BooleanHashSet. toList()
-
Uses of MutableBooleanList in org.eclipse.collections.impl.set.sorted.mutable
Methods in org.eclipse.collections.impl.set.sorted.mutable that return MutableBooleanList Modifier and Type Method Description MutableBooleanList
SortedSetAdapter. collectBoolean(BooleanFunction<? super T> booleanFunction)
MutableBooleanList
SynchronizedSortedSet. collectBoolean(BooleanFunction<? super T> booleanFunction)
MutableBooleanList
TreeSortedSet. collectBoolean(BooleanFunction<? super T> booleanFunction)
MutableBooleanList
UnmodifiableSortedSet. collectBoolean(BooleanFunction<? super T> booleanFunction)
-
Uses of MutableBooleanList in org.eclipse.collections.impl.stack.immutable.primitive
Methods in org.eclipse.collections.impl.stack.immutable.primitive that return MutableBooleanList Modifier and Type Method Description MutableBooleanList
ImmutableBooleanEmptyStack. toList()
MutableBooleanList
ImmutableBooleanSingletonStack. toList()
-
Uses of MutableBooleanList in org.eclipse.collections.impl.stack.mutable.primitive
Methods in org.eclipse.collections.impl.stack.mutable.primitive that return MutableBooleanList Modifier and Type Method Description MutableBooleanList
SynchronizedBooleanStack. toList()
MutableBooleanList
UnmodifiableBooleanStack. toList()
-
Uses of MutableBooleanList in org.eclipse.collections.impl.stack.primitive
Methods in org.eclipse.collections.impl.stack.primitive that return MutableBooleanList Modifier and Type Method Description MutableBooleanList
AbstractBooleanStack. toList()
-
Uses of MutableBooleanList in org.eclipse.collections.impl.utility
Methods in org.eclipse.collections.impl.utility that return MutableBooleanList Modifier and Type Method Description static <T> MutableBooleanList
ArrayIterate. collectBoolean(T[] objectArray, BooleanFunction<? super T> booleanFunction)
static <T> MutableBooleanList
ArrayListIterate. collectBoolean(java.util.ArrayList<T> list, BooleanFunction<? super T> booleanFunction)
static <T> MutableBooleanList
ListIterate. collectBoolean(java.util.List<T> list, BooleanFunction<? super T> booleanFunction)
-
Uses of MutableBooleanList in org.eclipse.collections.impl.utility.internal
Methods in org.eclipse.collections.impl.utility.internal that return MutableBooleanList Modifier and Type Method Description static <T> MutableBooleanList
RandomAccessListIterate. collectBoolean(java.util.List<T> list, BooleanFunction<? super T> booleanFunction)
-