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 ofMaporg.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 theMutableListinterface.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 theMutableSortedMapinterface.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 MutableBooleanListBooleanIterable. 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 MutableBooleanListMutableSortedBag. 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 MutableBooleanListMutableBooleanListFactory. empty()MutableBooleanListMutableBooleanListFactory. of()Same asMutableBooleanListFactory.empty().MutableBooleanListMutableBooleanListFactory. of(boolean... items)MutableBooleanListMutableBooleanListFactory. ofAll(java.lang.Iterable<java.lang.Boolean> iterable)MutableBooleanListMutableBooleanListFactory. ofAll(BooleanIterable items)MutableBooleanListMutableBooleanListFactory. with()Same asMutableBooleanListFactory.empty().MutableBooleanListMutableBooleanListFactory. with(boolean... items)Creates a new list using the passeditemsargument as the backing store.MutableBooleanListMutableBooleanListFactory. withAll(java.lang.Iterable<java.lang.Boolean> iterable)MutableBooleanListMutableBooleanListFactory. withAll(BooleanIterable items)default MutableBooleanListMutableBooleanListFactory. withInitialCapacity(int capacity)Same asMutableBooleanListFactory.empty().default MutableBooleanListMutableBooleanListFactory. 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 MutableBooleanListMutableList. 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 MutableBooleanListMutableBooleanList. asSynchronized()MutableBooleanListMutableBooleanList. asUnmodifiable()MutableBooleanListMutableBooleanList. distinct()default MutableBooleanListMutableBooleanList. newEmpty()Creates a new empty mutable version of the same List type.MutableBooleanListMutableBooleanList. reject(BooleanPredicate predicate)default MutableBooleanListMutableBooleanList. rejectWithIndex(BooleanIntPredicate predicate)Returns a new MutableBooleanList excluding all elements with corresponding indexes matching the specified predicate.MutableBooleanListMutableBooleanList. reverseThis()MutableBooleanListMutableBooleanList. select(BooleanPredicate predicate)default MutableBooleanListMutableBooleanList. selectWithIndex(BooleanIntPredicate predicate)Returns a new MutableBooleanList including all elements with corresponding indexes matching the specified predicate.MutableBooleanListMutableBooleanList. subList(int fromIndex, int toIndex)default MutableBooleanListMutableBooleanList. tap(BooleanProcedure procedure)MutableBooleanListMutableBooleanList. toReversed()MutableBooleanListMutableBooleanList. with(boolean element)MutableBooleanListMutableBooleanList. withAll(BooleanIterable elements)MutableBooleanListMutableBooleanList. without(boolean element)MutableBooleanListMutableBooleanList. 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 MutableBooleanListMutableOrderedMap. 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 MutableBooleanListMutableSortedMap. 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 MutableBooleanListMutableSortedSet. 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 MutableBooleanListImmutableBooleanEmptyBag. toList()MutableBooleanListImmutableBooleanHashBag. toList()MutableBooleanListImmutableBooleanSingletonBag. 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 MutableBooleanListBooleanHashBag. 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 MutableBooleanListAbstractMutableSortedBag. collectBoolean(BooleanFunction<? super T> booleanFunction)MutableBooleanListSynchronizedSortedBag. collectBoolean(BooleanFunction<? super T> booleanFunction)MutableBooleanListUnmodifiableSortedBag. 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 MutableBooleanListAbstractSynchronizedBooleanCollection. toList()MutableBooleanListAbstractUnmodifiableBooleanCollection. 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 MutableBooleanListAbstractLazyBooleanIterable. toList()MutableBooleanListCollectBooleanIterable. toList()MutableBooleanListLazyBooleanIterableAdapter. toList()MutableBooleanListReverseBooleanIterable. toList()MutableBooleanListSelectBooleanIterable. 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 MutableBooleanListImmutableBooleanArrayList. toList()MutableBooleanListImmutableBooleanEmptyList. toList()MutableBooleanListImmutableBooleanSingletonList. 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 MutableBooleanListMultiReaderFastList. collectBoolean(BooleanFunction<? super T> booleanFunction)MutableBooleanListMultiReaderFastList.UntouchableMutableList. collectBoolean(BooleanFunction<? super T> booleanFunction)MutableBooleanListSynchronizedMutableList. collectBoolean(BooleanFunction<? super T> booleanFunction)MutableBooleanListUnmodifiableMutableList. 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 classBooleanArrayListBooleanArrayList is similar toFastList, and is memory-optimized for boolean primitives.classSynchronizedBooleanListA synchronized view of aMutableBooleanList.classUnmodifiableBooleanListThis file was automatically generated from template file unmodifiablePrimitiveList.stg.Fields in org.eclipse.collections.impl.list.mutable.primitive declared as MutableBooleanList Modifier and Type Field Description private MutableBooleanListBoxedMutableBooleanList. delegateMethods in org.eclipse.collections.impl.list.mutable.primitive that return MutableBooleanList Modifier and Type Method Description MutableBooleanListBooleanArrayList. asSynchronized()MutableBooleanListSynchronizedBooleanList. asSynchronized()MutableBooleanListUnmodifiableBooleanList. asSynchronized()MutableBooleanListBooleanArrayList. asUnmodifiable()MutableBooleanListSynchronizedBooleanList. asUnmodifiable()MutableBooleanListUnmodifiableBooleanList. asUnmodifiable()MutableBooleanListBooleanArrayList. distinct()MutableBooleanListSynchronizedBooleanList. distinct()MutableBooleanListUnmodifiableBooleanList. distinct()MutableBooleanListMutableBooleanListFactoryImpl. empty()private MutableBooleanListSynchronizedBooleanList. getMutableBooleanList()private MutableBooleanListUnmodifiableBooleanList. getMutableBooleanList()MutableBooleanListSynchronizedBooleanList. newEmpty()MutableBooleanListUnmodifiableBooleanList. newEmpty()MutableBooleanListMutableBooleanListFactoryImpl. of()MutableBooleanListMutableBooleanListFactoryImpl. of(boolean... items)MutableBooleanListMutableBooleanListFactoryImpl. ofAll(java.lang.Iterable<java.lang.Boolean> iterable)MutableBooleanListMutableBooleanListFactoryImpl. ofAll(BooleanIterable items)MutableBooleanListSynchronizedBooleanList. reject(BooleanPredicate predicate)MutableBooleanListUnmodifiableBooleanList. reject(BooleanPredicate predicate)MutableBooleanListSynchronizedBooleanList. rejectWithIndex(BooleanIntPredicate predicate)Returns a new MutableBooleanList excluding all elements with corresponding indexes matching the specified predicate.MutableBooleanListUnmodifiableBooleanList. rejectWithIndex(BooleanIntPredicate predicate)Returns a new MutableBooleanList excluding all elements with corresponding indexes matching the specified predicate.MutableBooleanListSynchronizedBooleanList. reverseThis()MutableBooleanListUnmodifiableBooleanList. reverseThis()MutableBooleanListSynchronizedBooleanList. select(BooleanPredicate predicate)MutableBooleanListUnmodifiableBooleanList. select(BooleanPredicate predicate)MutableBooleanListSynchronizedBooleanList. selectWithIndex(BooleanIntPredicate predicate)Returns a new MutableBooleanList including all elements with corresponding indexes matching the specified predicate.MutableBooleanListUnmodifiableBooleanList. selectWithIndex(BooleanIntPredicate predicate)Returns a new MutableBooleanList including all elements with corresponding indexes matching the specified predicate.MutableBooleanListBooleanArrayList. subList(int fromIndex, int toIndex)MutableBooleanListSynchronizedBooleanList. subList(int fromIndex, int toIndex)MutableBooleanListUnmodifiableBooleanList. subList(int fromIndex, int toIndex)MutableBooleanListBooleanArrayList. toList()MutableBooleanListSynchronizedBooleanList. toReversed()MutableBooleanListUnmodifiableBooleanList. toReversed()MutableBooleanListMutableBooleanListFactoryImpl. with()MutableBooleanListMutableBooleanListFactoryImpl. with(boolean... items)Creates a new list using the passeditemsargument as the backing store.MutableBooleanListMutableBooleanListFactoryImpl. withAll(java.lang.Iterable<java.lang.Boolean> iterable)MutableBooleanListMutableBooleanListFactoryImpl. withAll(BooleanIterable items)MutableBooleanListMutableBooleanListFactoryImpl. withInitialCapacity(int capacity)Constructors in org.eclipse.collections.impl.list.mutable.primitive with parameters of type MutableBooleanList Constructor Description BoxedMutableBooleanList(MutableBooleanList delegate)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 MutableBooleanListImmutableByteBooleanEmptyMap. toList()MutableBooleanListImmutableByteBooleanHashMap. toList()MutableBooleanListImmutableByteBooleanSingletonMap. toList()MutableBooleanListImmutableCharBooleanEmptyMap. toList()MutableBooleanListImmutableCharBooleanHashMap. toList()MutableBooleanListImmutableCharBooleanSingletonMap. toList()MutableBooleanListImmutableDoubleBooleanEmptyMap. toList()MutableBooleanListImmutableDoubleBooleanHashMap. toList()MutableBooleanListImmutableDoubleBooleanSingletonMap. toList()MutableBooleanListImmutableFloatBooleanEmptyMap. toList()MutableBooleanListImmutableFloatBooleanHashMap. toList()MutableBooleanListImmutableFloatBooleanSingletonMap. toList()MutableBooleanListImmutableIntBooleanEmptyMap. toList()MutableBooleanListImmutableIntBooleanHashMap. toList()MutableBooleanListImmutableIntBooleanSingletonMap. toList()MutableBooleanListImmutableLongBooleanEmptyMap. toList()MutableBooleanListImmutableLongBooleanHashMap. toList()MutableBooleanListImmutableLongBooleanSingletonMap. toList()MutableBooleanListImmutableObjectBooleanEmptyMap. toList()MutableBooleanListImmutableObjectBooleanHashMap. toList()MutableBooleanListImmutableObjectBooleanSingletonMap. toList()MutableBooleanListImmutableShortBooleanEmptyMap. toList()MutableBooleanListImmutableShortBooleanHashMap. toList()MutableBooleanListImmutableShortBooleanSingletonMap. 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 MutableBooleanListAbstractMutableBooleanValuesMap.AbstractBooleanValuesCollection. toList()MutableBooleanListObjectBooleanHashMap. toList()MutableBooleanListObjectBooleanHashMap.ValuesCollection. toList()MutableBooleanListObjectBooleanHashMapWithHashingStrategy. toList()MutableBooleanListObjectBooleanHashMapWithHashingStrategy.ValuesCollection. toList()MutableBooleanListSynchronizedByteBooleanMap. toList()MutableBooleanListSynchronizedCharBooleanMap. toList()MutableBooleanListSynchronizedDoubleBooleanMap. toList()MutableBooleanListSynchronizedFloatBooleanMap. toList()MutableBooleanListSynchronizedIntBooleanMap. toList()MutableBooleanListSynchronizedLongBooleanMap. toList()MutableBooleanListSynchronizedObjectBooleanMap. toList()MutableBooleanListSynchronizedShortBooleanMap. toList()MutableBooleanListUnmodifiableByteBooleanMap. toList()MutableBooleanListUnmodifiableCharBooleanMap. toList()MutableBooleanListUnmodifiableDoubleBooleanMap. toList()MutableBooleanListUnmodifiableFloatBooleanMap. toList()MutableBooleanListUnmodifiableIntBooleanMap. toList()MutableBooleanListUnmodifiableLongBooleanMap. toList()MutableBooleanListUnmodifiableObjectBooleanMap. toList()MutableBooleanListUnmodifiableShortBooleanMap. 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 MutableBooleanListOrderedMapAdapter. collectBoolean(BooleanFunction<? super V> booleanFunction)MutableBooleanListUnmodifiableMutableOrderedMap. 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 MutableBooleanListAbstractMutableSortedMap. collectBoolean(BooleanFunction<? super V> booleanFunction)MutableBooleanListSynchronizedSortedMap. collectBoolean(BooleanFunction<? super V> booleanFunction)MutableBooleanListUnmodifiableTreeMap. 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 MutableBooleanListAbstractBooleanIterable. toList()MutableBooleanListSynchronizedBooleanIterable. 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 MutableBooleanListImmutableBooleanEmptySet. toList()MutableBooleanListImmutableFalseSet. toList()MutableBooleanListImmutableTrueFalseSet. toList()MutableBooleanListImmutableTrueSet. 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 MutableBooleanListBooleanHashSet. 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 MutableBooleanListSortedSetAdapter. collectBoolean(BooleanFunction<? super T> booleanFunction)MutableBooleanListSynchronizedSortedSet. collectBoolean(BooleanFunction<? super T> booleanFunction)MutableBooleanListTreeSortedSet. collectBoolean(BooleanFunction<? super T> booleanFunction)MutableBooleanListUnmodifiableSortedSet. 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 MutableBooleanListImmutableBooleanEmptyStack. toList()MutableBooleanListImmutableBooleanSingletonStack. 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 MutableBooleanListSynchronizedBooleanStack. toList()MutableBooleanListUnmodifiableBooleanStack. 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 MutableBooleanListAbstractBooleanStack. 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> MutableBooleanListArrayIterate. collectBoolean(T[] objectArray, BooleanFunction<? super T> booleanFunction)static <T> MutableBooleanListArrayListIterate. collectBoolean(java.util.ArrayList<T> list, BooleanFunction<? super T> booleanFunction)static <T> MutableBooleanListListIterate. 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> MutableBooleanListRandomAccessListIterate. collectBoolean(java.util.List<T> list, BooleanFunction<? super T> booleanFunction)
-