Uses of Interface
org.eclipse.collections.api.bag.primitive.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 of
Map |
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.mutable |
This package contains implementations of the
MutableBag interface. |
org.eclipse.collections.impl.bag.mutable.primitive |
This package contains implementations of the mutable primitive bag interfaces.
|
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.map.mutable |
This package contains implementations of the
MutableMap 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.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 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(Iterable<Character> iterable)
MutableCharBag
MutableCharBagFactory. ofAll(CharIterable items)
MutableCharBag
MutableCharBagFactory. with()
Same asMutableCharBagFactory.empty()
.MutableCharBag
MutableCharBagFactory. with(char... items)
MutableCharBag
MutableCharBagFactory. withAll(Iterable<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.mutable
Methods in org.eclipse.collections.impl.bag.mutable that return MutableCharBag Modifier and Type Method Description MutableCharBag
AbstractMutableBag. collectChar(CharFunction<? super T> charFunction)
MutableCharBag
MultiReaderHashBag. 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()
MutableCharBag
SynchronizedCharBag. newEmpty()
MutableCharBag
UnmodifiableCharBag. newEmpty()
MutableCharBag
MutableCharBagFactoryImpl. of()
MutableCharBag
MutableCharBagFactoryImpl. of(char... items)
MutableCharBag
MutableCharBagFactoryImpl. ofAll(Iterable<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(Iterable<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, Object newLock)
UnmodifiableCharBag(MutableCharBag bag)
-
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.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
ObjectCharHashMap. toBag()
MutableCharBag
ObjectCharHashMapWithHashingStrategy. 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.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()