Uses of Interface
org.eclipse.collections.api.bag.primitive.MutableCharBag
-
Packages that use MutableCharBag Package Description org.eclipse.collections.api This package contains interfaces for Eclipse Collections API.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.primitive This package contains implementations of the immutable primitive bag interfaces.org.eclipse.collections.impl.bag.mutable This package contains implementations of theMutableBag
interface.org.eclipse.collections.impl.bag.mutable.primitive This package contains implementations of the mutable primitive bag interfaces.org.eclipse.collections.impl.bimap.mutable This package contains implementations of theMutableBiMap
interface.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.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 This package contains implementations of theMutableMap
interface.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.primitive org.eclipse.collections.impl.set.immutable.primitive This package contains implementations of the immutable primitive set interfaces.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.string.immutable -
-
Uses of MutableCharBag in org.eclipse.collections.api
Methods in org.eclipse.collections.api that return MutableCharBag Modifier and Type Method Description MutableCharBag
CharIterable. toBag()
Converts the CharIterable to a new MutableCharBag. -
Uses of MutableCharBag in org.eclipse.collections.api.bag
Methods in org.eclipse.collections.api.bag that return MutableCharBag Modifier and Type Method Description default MutableCharBag
MutableBag. collectChar(CharFunction<? super T> charFunction)
-
Uses of MutableCharBag in org.eclipse.collections.api.bag.primitive
Methods in org.eclipse.collections.api.bag.primitive that return MutableCharBag Modifier and Type Method Description MutableCharBag
MutableCharBag. asSynchronized()
MutableCharBag
MutableCharBag. asUnmodifiable()
default MutableCharBag
MutableCharBag. newEmpty()
Creates a new empty mutable version of the same Bag type.MutableCharBag
MutableCharBag. reject(CharPredicate predicate)
MutableCharBag
MutableCharBag. select(CharPredicate predicate)
MutableCharBag
MutableCharBag. selectByOccurrences(IntPredicate predicate)
Returns all elements of the bag that have a number of occurrences that satisfy the predicate.default MutableCharBag
MutableCharBag. selectDuplicates()
Returns all elements of the bag that have more than one occurrence.default MutableCharBag
MutableCharBag. tap(CharProcedure procedure)
MutableCharBag
MutableCharBag. with(char element)
MutableCharBag
MutableCharBag. withAll(CharIterable elements)
MutableCharBag
MutableCharBag. without(char element)
MutableCharBag
MutableCharBag. withoutAll(CharIterable elements)
-
Uses of MutableCharBag in org.eclipse.collections.api.factory.bag.primitive
Methods in org.eclipse.collections.api.factory.bag.primitive that return MutableCharBag Modifier and Type Method Description MutableCharBag
MutableCharBagFactory. empty()
MutableCharBag
MutableCharBagFactory. of()
Same asMutableCharBagFactory.empty()
.MutableCharBag
MutableCharBagFactory. of(char... items)
Same asMutableCharBagFactory.with(char[])
.MutableCharBag
MutableCharBagFactory. ofAll(java.lang.Iterable<java.lang.Character> iterable)
MutableCharBag
MutableCharBagFactory. ofAll(CharIterable items)
MutableCharBag
MutableCharBagFactory. with()
Same asMutableCharBagFactory.empty()
.MutableCharBag
MutableCharBagFactory. with(char... items)
MutableCharBag
MutableCharBagFactory. withAll(java.lang.Iterable<java.lang.Character> iterable)
MutableCharBag
MutableCharBagFactory. withAll(CharIterable items)
-
Uses of MutableCharBag in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map that return MutableCharBag Modifier and Type Method Description MutableCharBag
MutableMap. collectChar(CharFunction<? super V> charFunction)
-
Uses of MutableCharBag in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableCharBag Modifier and Type Method Description MutableCharBag
MutablePrimitiveObjectMap. collectChar(CharFunction<? super V> charFunction)
MutableCharBag
MutableCharValuesMap. reject(CharPredicate predicate)
MutableCharBag
MutableCharValuesMap. select(CharPredicate predicate)
-
Uses of MutableCharBag in org.eclipse.collections.impl.bag.immutable.primitive
Fields in org.eclipse.collections.impl.bag.immutable.primitive declared as MutableCharBag Modifier and Type Field Description private MutableCharBag
ImmutableCharHashBag. delegate
Methods in org.eclipse.collections.impl.bag.immutable.primitive that return MutableCharBag Modifier and Type Method Description MutableCharBag
ImmutableCharEmptyBag. toBag()
MutableCharBag
ImmutableCharHashBag. toBag()
MutableCharBag
ImmutableCharSingletonBag. toBag()
-
Uses of MutableCharBag in org.eclipse.collections.impl.bag.mutable
Methods in org.eclipse.collections.impl.bag.mutable that return MutableCharBag Modifier and Type Method Description MutableCharBag
MultiReaderHashBag. collectChar(CharFunction<? super T> charFunction)
MutableCharBag
MultiReaderHashBag.UntouchableMutableBag. collectChar(CharFunction<? super T> charFunction)
MutableCharBag
SynchronizedBag. collectChar(CharFunction<? super T> charFunction)
MutableCharBag
UnmodifiableBag. collectChar(CharFunction<? super T> charFunction)
-
Uses of MutableCharBag in org.eclipse.collections.impl.bag.mutable.primitive
Classes in org.eclipse.collections.impl.bag.mutable.primitive that implement MutableCharBag Modifier and Type Class Description class
CharHashBag
CharHashBag is similar toHashBag
, and is memory-optimized for char primitives.class
SynchronizedCharBag
A synchronized view of aMutableCharBag
.class
UnmodifiableCharBag
This file was automatically generated from template file unmodifiablePrimitiveBag.stg.Methods in org.eclipse.collections.impl.bag.mutable.primitive that return MutableCharBag Modifier and Type Method Description MutableCharBag
CharHashBag. asSynchronized()
MutableCharBag
SynchronizedCharBag. asSynchronized()
MutableCharBag
UnmodifiableCharBag. asSynchronized()
MutableCharBag
CharHashBag. asUnmodifiable()
MutableCharBag
SynchronizedCharBag. asUnmodifiable()
MutableCharBag
UnmodifiableCharBag. asUnmodifiable()
MutableCharBag
MutableCharBagFactoryImpl. empty()
private MutableCharBag
SynchronizedCharBag. getMutableCharBag()
private MutableCharBag
UnmodifiableCharBag. getMutableCharBag()
MutableCharBag
SynchronizedCharBag. newEmpty()
MutableCharBag
UnmodifiableCharBag. newEmpty()
MutableCharBag
MutableCharBagFactoryImpl. of()
MutableCharBag
MutableCharBagFactoryImpl. of(char... items)
MutableCharBag
MutableCharBagFactoryImpl. ofAll(java.lang.Iterable<java.lang.Character> iterable)
MutableCharBag
MutableCharBagFactoryImpl. ofAll(CharIterable items)
MutableCharBag
SynchronizedCharBag. reject(CharPredicate predicate)
MutableCharBag
UnmodifiableCharBag. reject(CharPredicate predicate)
MutableCharBag
SynchronizedCharBag. select(CharPredicate predicate)
MutableCharBag
UnmodifiableCharBag. select(CharPredicate predicate)
MutableCharBag
SynchronizedCharBag. selectByOccurrences(IntPredicate predicate)
MutableCharBag
UnmodifiableCharBag. selectByOccurrences(IntPredicate predicate)
MutableCharBag
MutableCharBagFactoryImpl. with()
MutableCharBag
MutableCharBagFactoryImpl. with(char... items)
MutableCharBag
MutableCharBagFactoryImpl. withAll(java.lang.Iterable<java.lang.Character> iterable)
MutableCharBag
MutableCharBagFactoryImpl. withAll(CharIterable items)
Constructors in org.eclipse.collections.impl.bag.mutable.primitive with parameters of type MutableCharBag Constructor Description SynchronizedCharBag(MutableCharBag bag)
SynchronizedCharBag(MutableCharBag bag, java.lang.Object newLock)
UnmodifiableCharBag(MutableCharBag bag)
-
Uses of MutableCharBag in org.eclipse.collections.impl.bimap.mutable
Methods in org.eclipse.collections.impl.bimap.mutable that return MutableCharBag Modifier and Type Method Description MutableCharBag
AbstractMutableBiMap. collectChar(CharFunction<? super V> charFunction)
-
Uses of MutableCharBag in org.eclipse.collections.impl.collection.mutable.primitive
Methods in org.eclipse.collections.impl.collection.mutable.primitive that return MutableCharBag Modifier and Type Method Description MutableCharBag
AbstractSynchronizedCharCollection. toBag()
MutableCharBag
AbstractUnmodifiableCharCollection. toBag()
-
Uses of MutableCharBag in org.eclipse.collections.impl.lazy.primitive
Methods in org.eclipse.collections.impl.lazy.primitive that return MutableCharBag Modifier and Type Method Description MutableCharBag
AbstractLazyCharIterable. toBag()
MutableCharBag
CollectCharIterable. toBag()
MutableCharBag
LazyCharIterableAdapter. toBag()
MutableCharBag
ReverseCharIterable. toBag()
MutableCharBag
SelectCharIterable. toBag()
-
Uses of MutableCharBag in org.eclipse.collections.impl.list.immutable.primitive
Methods in org.eclipse.collections.impl.list.immutable.primitive that return MutableCharBag Modifier and Type Method Description MutableCharBag
ImmutableCharArrayList. toBag()
MutableCharBag
ImmutableCharEmptyList. toBag()
MutableCharBag
ImmutableCharSingletonList. toBag()
-
Uses of MutableCharBag in org.eclipse.collections.impl.map.immutable.primitive
Methods in org.eclipse.collections.impl.map.immutable.primitive that return MutableCharBag Modifier and Type Method Description MutableCharBag
ImmutableByteCharEmptyMap. toBag()
MutableCharBag
ImmutableByteCharHashMap. toBag()
MutableCharBag
ImmutableByteCharSingletonMap. toBag()
MutableCharBag
ImmutableCharCharEmptyMap. toBag()
MutableCharBag
ImmutableCharCharHashMap. toBag()
MutableCharBag
ImmutableCharCharSingletonMap. toBag()
MutableCharBag
ImmutableDoubleCharEmptyMap. toBag()
MutableCharBag
ImmutableDoubleCharHashMap. toBag()
MutableCharBag
ImmutableDoubleCharSingletonMap. toBag()
MutableCharBag
ImmutableFloatCharEmptyMap. toBag()
MutableCharBag
ImmutableFloatCharHashMap. toBag()
MutableCharBag
ImmutableFloatCharSingletonMap. toBag()
MutableCharBag
ImmutableIntCharEmptyMap. toBag()
MutableCharBag
ImmutableIntCharHashMap. toBag()
MutableCharBag
ImmutableIntCharSingletonMap. toBag()
MutableCharBag
ImmutableLongCharEmptyMap. toBag()
MutableCharBag
ImmutableLongCharHashMap. toBag()
MutableCharBag
ImmutableLongCharSingletonMap. toBag()
MutableCharBag
ImmutableObjectCharEmptyMap. toBag()
MutableCharBag
ImmutableObjectCharHashMap. toBag()
MutableCharBag
ImmutableObjectCharSingletonMap. toBag()
MutableCharBag
ImmutableShortCharEmptyMap. toBag()
MutableCharBag
ImmutableShortCharHashMap. toBag()
MutableCharBag
ImmutableShortCharSingletonMap. toBag()
-
Uses of MutableCharBag in org.eclipse.collections.impl.map.mutable
Methods in org.eclipse.collections.impl.map.mutable that return MutableCharBag Modifier and Type Method Description MutableCharBag
AbstractMutableMap. collectChar(CharFunction<? super V> charFunction)
MutableCharBag
SynchronizedMutableMap. collectChar(CharFunction<? super V> charFunction)
MutableCharBag
UnmodifiableMutableMap. collectChar(CharFunction<? super V> charFunction)
-
Uses of MutableCharBag in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive that return MutableCharBag Modifier and Type Method Description MutableCharBag
ByteObjectHashMap. collectChar(CharFunction<? super V> charFunction)
MutableCharBag
CharObjectHashMap. collectChar(CharFunction<? super V> charFunction)
MutableCharBag
DoubleObjectHashMap. collectChar(CharFunction<? super V> charFunction)
MutableCharBag
FloatObjectHashMap. collectChar(CharFunction<? super V> charFunction)
MutableCharBag
IntObjectHashMap. collectChar(CharFunction<? super V> charFunction)
MutableCharBag
LongObjectHashMap. collectChar(CharFunction<? super V> charFunction)
MutableCharBag
ShortObjectHashMap. collectChar(CharFunction<? super V> charFunction)
MutableCharBag
SynchronizedByteObjectMap. collectChar(CharFunction<? super V> charFunction)
MutableCharBag
SynchronizedCharObjectMap. collectChar(CharFunction<? super V> charFunction)
MutableCharBag
SynchronizedDoubleObjectMap. collectChar(CharFunction<? super V> charFunction)
MutableCharBag
SynchronizedFloatObjectMap. collectChar(CharFunction<? super V> charFunction)
MutableCharBag
SynchronizedIntObjectMap. collectChar(CharFunction<? super V> charFunction)
MutableCharBag
SynchronizedLongObjectMap. collectChar(CharFunction<? super V> charFunction)
MutableCharBag
SynchronizedShortObjectMap. collectChar(CharFunction<? super V> charFunction)
MutableCharBag
UnmodifiableByteObjectMap. collectChar(CharFunction<? super V> charFunction)
MutableCharBag
UnmodifiableCharObjectMap. collectChar(CharFunction<? super V> charFunction)
MutableCharBag
UnmodifiableDoubleObjectMap. collectChar(CharFunction<? super V> charFunction)
MutableCharBag
UnmodifiableFloatObjectMap. collectChar(CharFunction<? super V> charFunction)
MutableCharBag
UnmodifiableIntObjectMap. collectChar(CharFunction<? super V> charFunction)
MutableCharBag
UnmodifiableLongObjectMap. collectChar(CharFunction<? super V> charFunction)
MutableCharBag
UnmodifiableShortObjectMap. collectChar(CharFunction<? super V> charFunction)
MutableCharBag
AbstractMutableCharValuesMap. reject(CharPredicate predicate)
MutableCharBag
SynchronizedByteCharMap. reject(CharPredicate predicate)
MutableCharBag
SynchronizedCharCharMap. reject(CharPredicate predicate)
MutableCharBag
SynchronizedDoubleCharMap. reject(CharPredicate predicate)
MutableCharBag
SynchronizedFloatCharMap. reject(CharPredicate predicate)
MutableCharBag
SynchronizedIntCharMap. reject(CharPredicate predicate)
MutableCharBag
SynchronizedLongCharMap. reject(CharPredicate predicate)
MutableCharBag
SynchronizedShortCharMap. reject(CharPredicate predicate)
MutableCharBag
UnmodifiableByteCharMap. reject(CharPredicate predicate)
MutableCharBag
UnmodifiableCharCharMap. reject(CharPredicate predicate)
MutableCharBag
UnmodifiableDoubleCharMap. reject(CharPredicate predicate)
MutableCharBag
UnmodifiableFloatCharMap. reject(CharPredicate predicate)
MutableCharBag
UnmodifiableIntCharMap. reject(CharPredicate predicate)
MutableCharBag
UnmodifiableLongCharMap. reject(CharPredicate predicate)
MutableCharBag
UnmodifiableShortCharMap. reject(CharPredicate predicate)
MutableCharBag
AbstractMutableCharValuesMap. select(CharPredicate predicate)
MutableCharBag
SynchronizedByteCharMap. select(CharPredicate predicate)
MutableCharBag
SynchronizedCharCharMap. select(CharPredicate predicate)
MutableCharBag
SynchronizedDoubleCharMap. select(CharPredicate predicate)
MutableCharBag
SynchronizedFloatCharMap. select(CharPredicate predicate)
MutableCharBag
SynchronizedIntCharMap. select(CharPredicate predicate)
MutableCharBag
SynchronizedLongCharMap. select(CharPredicate predicate)
MutableCharBag
SynchronizedShortCharMap. select(CharPredicate predicate)
MutableCharBag
UnmodifiableByteCharMap. select(CharPredicate predicate)
MutableCharBag
UnmodifiableCharCharMap. select(CharPredicate predicate)
MutableCharBag
UnmodifiableDoubleCharMap. select(CharPredicate predicate)
MutableCharBag
UnmodifiableFloatCharMap. select(CharPredicate predicate)
MutableCharBag
UnmodifiableIntCharMap. select(CharPredicate predicate)
MutableCharBag
UnmodifiableLongCharMap. select(CharPredicate predicate)
MutableCharBag
UnmodifiableShortCharMap. select(CharPredicate predicate)
MutableCharBag
AbstractMutableCharKeySet. toBag()
MutableCharBag
AbstractMutableCharValuesMap.AbstractCharValuesCollection. toBag()
MutableCharBag
CharBooleanHashMap.KeysView. toBag()
MutableCharBag
ObjectCharHashMap. toBag()
MutableCharBag
ObjectCharHashMap.ValuesCollection. toBag()
MutableCharBag
ObjectCharHashMapWithHashingStrategy. toBag()
MutableCharBag
ObjectCharHashMapWithHashingStrategy.ValuesCollection. toBag()
MutableCharBag
SynchronizedByteCharMap. toBag()
MutableCharBag
SynchronizedCharCharMap. toBag()
MutableCharBag
SynchronizedDoubleCharMap. toBag()
MutableCharBag
SynchronizedFloatCharMap. toBag()
MutableCharBag
SynchronizedIntCharMap. toBag()
MutableCharBag
SynchronizedLongCharMap. toBag()
MutableCharBag
SynchronizedObjectCharMap. toBag()
MutableCharBag
SynchronizedShortCharMap. toBag()
MutableCharBag
UnmodifiableByteCharMap. toBag()
MutableCharBag
UnmodifiableCharCharMap. toBag()
MutableCharBag
UnmodifiableDoubleCharMap. toBag()
MutableCharBag
UnmodifiableFloatCharMap. toBag()
MutableCharBag
UnmodifiableIntCharMap. toBag()
MutableCharBag
UnmodifiableLongCharMap. toBag()
MutableCharBag
UnmodifiableObjectCharMap. toBag()
MutableCharBag
UnmodifiableShortCharMap. toBag()
-
Uses of MutableCharBag in org.eclipse.collections.impl.primitive
Methods in org.eclipse.collections.impl.primitive that return MutableCharBag Modifier and Type Method Description MutableCharBag
AbstractCharIterable. toBag()
MutableCharBag
SynchronizedCharIterable. toBag()
-
Uses of MutableCharBag in org.eclipse.collections.impl.set.immutable.primitive
Methods in org.eclipse.collections.impl.set.immutable.primitive that return MutableCharBag Modifier and Type Method Description MutableCharBag
ImmutableCharEmptySet. toBag()
MutableCharBag
ImmutableCharSingletonSet. toBag()
-
Uses of MutableCharBag in org.eclipse.collections.impl.stack.immutable.primitive
Methods in org.eclipse.collections.impl.stack.immutable.primitive that return MutableCharBag Modifier and Type Method Description MutableCharBag
ImmutableCharEmptyStack. toBag()
MutableCharBag
ImmutableCharSingletonStack. toBag()
-
Uses of MutableCharBag in org.eclipse.collections.impl.stack.mutable.primitive
Methods in org.eclipse.collections.impl.stack.mutable.primitive that return MutableCharBag Modifier and Type Method Description MutableCharBag
SynchronizedCharStack. toBag()
MutableCharBag
UnmodifiableCharStack. toBag()
-
Uses of MutableCharBag in org.eclipse.collections.impl.stack.primitive
Methods in org.eclipse.collections.impl.stack.primitive that return MutableCharBag Modifier and Type Method Description MutableCharBag
AbstractCharStack. toBag()
-
Uses of MutableCharBag in org.eclipse.collections.impl.string.immutable
Methods in org.eclipse.collections.impl.string.immutable that return MutableCharBag Modifier and Type Method Description MutableCharBag
CharAdapter. toBag()
-