Uses of Interface
org.eclipse.collections.api.bag.primitive.ImmutableCharBag
-
Packages that use ImmutableCharBag Package Description 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 This package contains implementations of theImmutableBag
interface.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.bimap.immutable org.eclipse.collections.impl.map.immutable This package contains implementations of theImmutableMap
interface.org.eclipse.collections.impl.map.immutable.primitive This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces. -
-
Uses of ImmutableCharBag in org.eclipse.collections.api.bag
Methods in org.eclipse.collections.api.bag that return ImmutableCharBag Modifier and Type Method Description ImmutableCharBag
ImmutableBag. collectChar(CharFunction<? super T> charFunction)
-
Uses of ImmutableCharBag in org.eclipse.collections.api.bag.primitive
Methods in org.eclipse.collections.api.bag.primitive that return ImmutableCharBag Modifier and Type Method Description ImmutableCharBag
ImmutableCharBag. newWith(char element)
ImmutableCharBag
ImmutableCharBag. newWithAll(CharIterable elements)
ImmutableCharBag
ImmutableCharBag. newWithout(char element)
ImmutableCharBag
ImmutableCharBag. newWithoutAll(CharIterable elements)
ImmutableCharBag
ImmutableCharBag. reject(CharPredicate predicate)
ImmutableCharBag
ImmutableCharBag. select(CharPredicate predicate)
ImmutableCharBag
ImmutableCharBag. selectByOccurrences(IntPredicate predicate)
Returns all elements of the bag that have a number of occurrences that satisfy the predicate.default ImmutableCharBag
ImmutableCharBag. selectDuplicates()
Returns all elements of the bag that have more than one occurrence.default ImmutableCharBag
ImmutableCharBag. tap(CharProcedure procedure)
ImmutableCharBag
CharBag. toImmutable()
Returns an immutable copy of this bag.ImmutableCharBag
MutableCharBag. toImmutable()
Returns an immutable copy of this bag. -
Uses of ImmutableCharBag in org.eclipse.collections.api.factory.bag.primitive
Methods in org.eclipse.collections.api.factory.bag.primitive that return ImmutableCharBag Modifier and Type Method Description ImmutableCharBag
ImmutableCharBagFactory. empty()
ImmutableCharBag
ImmutableCharBagFactory. of()
Same asImmutableCharBagFactory.empty()
.ImmutableCharBag
ImmutableCharBagFactory. of(char one)
Same asImmutableCharBagFactory.with(char)
.ImmutableCharBag
ImmutableCharBagFactory. of(char... items)
Same asImmutableCharBagFactory.with(char[])
.ImmutableCharBag
ImmutableCharBagFactory. ofAll(java.lang.Iterable<java.lang.Character> iterable)
ImmutableCharBag
ImmutableCharBagFactory. ofAll(CharIterable items)
ImmutableCharBag
ImmutableCharBagFactory. with()
Same asImmutableCharBagFactory.empty()
.ImmutableCharBag
ImmutableCharBagFactory. with(char one)
ImmutableCharBag
ImmutableCharBagFactory. with(char... items)
ImmutableCharBag
ImmutableCharBagFactory. withAll(java.lang.Iterable<java.lang.Character> iterable)
ImmutableCharBag
ImmutableCharBagFactory. withAll(CharIterable items)
-
Uses of ImmutableCharBag in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map that return ImmutableCharBag Modifier and Type Method Description ImmutableCharBag
ImmutableMap. collectChar(CharFunction<? super V> charFunction)
-
Uses of ImmutableCharBag in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return ImmutableCharBag Modifier and Type Method Description ImmutableCharBag
ImmutablePrimitiveObjectMap. collectChar(CharFunction<? super V> charFunction)
ImmutableCharBag
ImmutableByteCharMap. reject(CharPredicate predicate)
ImmutableCharBag
ImmutableCharCharMap. reject(CharPredicate predicate)
ImmutableCharBag
ImmutableDoubleCharMap. reject(CharPredicate predicate)
ImmutableCharBag
ImmutableFloatCharMap. reject(CharPredicate predicate)
ImmutableCharBag
ImmutableIntCharMap. reject(CharPredicate predicate)
ImmutableCharBag
ImmutableLongCharMap. reject(CharPredicate predicate)
ImmutableCharBag
ImmutableShortCharMap. reject(CharPredicate predicate)
ImmutableCharBag
ImmutableByteCharMap. select(CharPredicate predicate)
ImmutableCharBag
ImmutableCharCharMap. select(CharPredicate predicate)
ImmutableCharBag
ImmutableDoubleCharMap. select(CharPredicate predicate)
ImmutableCharBag
ImmutableFloatCharMap. select(CharPredicate predicate)
ImmutableCharBag
ImmutableIntCharMap. select(CharPredicate predicate)
ImmutableCharBag
ImmutableLongCharMap. select(CharPredicate predicate)
ImmutableCharBag
ImmutableShortCharMap. select(CharPredicate predicate)
-
Uses of ImmutableCharBag in org.eclipse.collections.impl.bag.immutable
Methods in org.eclipse.collections.impl.bag.immutable that return ImmutableCharBag Modifier and Type Method Description ImmutableCharBag
AbstractImmutableBag. collectChar(CharFunction<? super T> charFunction)
ImmutableCharBag
ImmutableEmptyBag. collectChar(CharFunction<? super T> charFunction)
-
Uses of ImmutableCharBag in org.eclipse.collections.impl.bag.immutable.primitive
Classes in org.eclipse.collections.impl.bag.immutable.primitive that implement ImmutableCharBag Modifier and Type Class Description (package private) class
ImmutableCharEmptyBag
ImmutableCharEmptyBag is an optimization forImmutableCharBag
of size 0.(package private) class
ImmutableCharHashBag
ImmutableCharHashBag is the non-modifiable equivalent ofCharHashBag
.(package private) class
ImmutableCharSingletonBag
ImmutableCharSingletonBag is an optimization forImmutableCharBag
of size 1.Fields in org.eclipse.collections.impl.bag.immutable.primitive declared as ImmutableCharBag Modifier and Type Field Description (package private) static ImmutableCharBag
ImmutableCharEmptyBag. INSTANCE
Methods in org.eclipse.collections.impl.bag.immutable.primitive that return ImmutableCharBag Modifier and Type Method Description ImmutableCharBag
ImmutableCharBagFactoryImpl. empty()
ImmutableCharBag
ImmutableCharEmptyBag. newWith(char element)
ImmutableCharBag
ImmutableCharHashBag. newWith(char element)
ImmutableCharBag
ImmutableCharSingletonBag. newWith(char element)
ImmutableCharBag
ImmutableCharEmptyBag. newWithAll(CharIterable elements)
ImmutableCharBag
ImmutableCharHashBag. newWithAll(CharIterable elements)
ImmutableCharBag
ImmutableCharSingletonBag. newWithAll(CharIterable elements)
ImmutableCharBag
ImmutableCharEmptyBag. newWithout(char element)
ImmutableCharBag
ImmutableCharHashBag. newWithout(char element)
ImmutableCharBag
ImmutableCharSingletonBag. newWithout(char element)
ImmutableCharBag
ImmutableCharEmptyBag. newWithoutAll(CharIterable elements)
ImmutableCharBag
ImmutableCharHashBag. newWithoutAll(CharIterable elements)
ImmutableCharBag
ImmutableCharSingletonBag. newWithoutAll(CharIterable elements)
ImmutableCharBag
ImmutableCharBagFactoryImpl. of()
ImmutableCharBag
ImmutableCharBagFactoryImpl. of(char one)
ImmutableCharBag
ImmutableCharBagFactoryImpl. of(char... items)
ImmutableCharBag
ImmutableCharBagFactoryImpl. ofAll(java.lang.Iterable<java.lang.Character> iterable)
ImmutableCharBag
ImmutableCharBagFactoryImpl. ofAll(CharIterable items)
ImmutableCharBag
ImmutableCharEmptyBag. reject(CharPredicate predicate)
ImmutableCharBag
ImmutableCharHashBag. reject(CharPredicate predicate)
ImmutableCharBag
ImmutableCharSingletonBag. reject(CharPredicate predicate)
ImmutableCharBag
ImmutableCharEmptyBag. select(CharPredicate predicate)
ImmutableCharBag
ImmutableCharHashBag. select(CharPredicate predicate)
ImmutableCharBag
ImmutableCharSingletonBag. select(CharPredicate predicate)
ImmutableCharBag
ImmutableCharEmptyBag. selectByOccurrences(IntPredicate predicate)
ImmutableCharBag
ImmutableCharHashBag. selectByOccurrences(IntPredicate predicate)
ImmutableCharBag
ImmutableCharSingletonBag. selectByOccurrences(IntPredicate predicate)
ImmutableCharBag
ImmutableCharEmptyBag. toImmutable()
ImmutableCharBag
ImmutableCharHashBag. toImmutable()
ImmutableCharBag
ImmutableCharSingletonBag. toImmutable()
ImmutableCharBag
ImmutableCharBagFactoryImpl. with()
ImmutableCharBag
ImmutableCharBagFactoryImpl. with(char one)
ImmutableCharBag
ImmutableCharBagFactoryImpl. with(char... items)
ImmutableCharBag
ImmutableCharBagFactoryImpl. withAll(java.lang.Iterable<java.lang.Character> iterable)
ImmutableCharBag
ImmutableCharBagFactoryImpl. withAll(CharIterable items)
-
Uses of ImmutableCharBag in org.eclipse.collections.impl.bag.mutable.primitive
Methods in org.eclipse.collections.impl.bag.mutable.primitive that return ImmutableCharBag Modifier and Type Method Description ImmutableCharBag
CharHashBag. toImmutable()
ImmutableCharBag
SynchronizedCharBag. toImmutable()
ImmutableCharBag
UnmodifiableCharBag. toImmutable()
-
Uses of ImmutableCharBag in org.eclipse.collections.impl.bimap.immutable
Methods in org.eclipse.collections.impl.bimap.immutable that return ImmutableCharBag Modifier and Type Method Description ImmutableCharBag
AbstractImmutableBiMap. collectChar(CharFunction<? super V> charFunction)
-
Uses of ImmutableCharBag in org.eclipse.collections.impl.map.immutable
Methods in org.eclipse.collections.impl.map.immutable that return ImmutableCharBag Modifier and Type Method Description ImmutableCharBag
AbstractImmutableMap. collectChar(CharFunction<? super V> charFunction)
-
Uses of ImmutableCharBag in org.eclipse.collections.impl.map.immutable.primitive
Methods in org.eclipse.collections.impl.map.immutable.primitive that return ImmutableCharBag Modifier and Type Method Description ImmutableCharBag
ImmutableByteObjectEmptyMap. collectChar(CharFunction<? super V> charFunction)
ImmutableCharBag
ImmutableByteObjectHashMap. collectChar(CharFunction<? super V> charFunction)
ImmutableCharBag
ImmutableByteObjectSingletonMap. collectChar(CharFunction<? super V> charFunction)
ImmutableCharBag
ImmutableCharObjectEmptyMap. collectChar(CharFunction<? super V> charFunction)
ImmutableCharBag
ImmutableCharObjectHashMap. collectChar(CharFunction<? super V> charFunction)
ImmutableCharBag
ImmutableCharObjectSingletonMap. collectChar(CharFunction<? super V> charFunction)
ImmutableCharBag
ImmutableDoubleObjectEmptyMap. collectChar(CharFunction<? super V> charFunction)
ImmutableCharBag
ImmutableDoubleObjectHashMap. collectChar(CharFunction<? super V> charFunction)
ImmutableCharBag
ImmutableDoubleObjectSingletonMap. collectChar(CharFunction<? super V> charFunction)
ImmutableCharBag
ImmutableFloatObjectEmptyMap. collectChar(CharFunction<? super V> charFunction)
ImmutableCharBag
ImmutableFloatObjectHashMap. collectChar(CharFunction<? super V> charFunction)
ImmutableCharBag
ImmutableFloatObjectSingletonMap. collectChar(CharFunction<? super V> charFunction)
ImmutableCharBag
ImmutableIntObjectEmptyMap. collectChar(CharFunction<? super V> charFunction)
ImmutableCharBag
ImmutableIntObjectHashMap. collectChar(CharFunction<? super V> charFunction)
ImmutableCharBag
ImmutableIntObjectSingletonMap. collectChar(CharFunction<? super V> charFunction)
ImmutableCharBag
ImmutableLongObjectEmptyMap. collectChar(CharFunction<? super V> charFunction)
ImmutableCharBag
ImmutableLongObjectHashMap. collectChar(CharFunction<? super V> charFunction)
ImmutableCharBag
ImmutableLongObjectSingletonMap. collectChar(CharFunction<? super V> charFunction)
ImmutableCharBag
ImmutableShortObjectEmptyMap. collectChar(CharFunction<? super V> charFunction)
ImmutableCharBag
ImmutableShortObjectHashMap. collectChar(CharFunction<? super V> charFunction)
ImmutableCharBag
ImmutableShortObjectSingletonMap. collectChar(CharFunction<? super V> charFunction)
ImmutableCharBag
ImmutableByteCharEmptyMap. reject(CharPredicate predicate)
ImmutableCharBag
ImmutableByteCharHashMap. reject(CharPredicate predicate)
ImmutableCharBag
ImmutableByteCharSingletonMap. reject(CharPredicate predicate)
ImmutableCharBag
ImmutableCharCharEmptyMap. reject(CharPredicate predicate)
ImmutableCharBag
ImmutableCharCharHashMap. reject(CharPredicate predicate)
ImmutableCharBag
ImmutableCharCharSingletonMap. reject(CharPredicate predicate)
ImmutableCharBag
ImmutableDoubleCharEmptyMap. reject(CharPredicate predicate)
ImmutableCharBag
ImmutableDoubleCharHashMap. reject(CharPredicate predicate)
ImmutableCharBag
ImmutableDoubleCharSingletonMap. reject(CharPredicate predicate)
ImmutableCharBag
ImmutableFloatCharEmptyMap. reject(CharPredicate predicate)
ImmutableCharBag
ImmutableFloatCharHashMap. reject(CharPredicate predicate)
ImmutableCharBag
ImmutableFloatCharSingletonMap. reject(CharPredicate predicate)
ImmutableCharBag
ImmutableIntCharEmptyMap. reject(CharPredicate predicate)
ImmutableCharBag
ImmutableIntCharHashMap. reject(CharPredicate predicate)
ImmutableCharBag
ImmutableIntCharSingletonMap. reject(CharPredicate predicate)
ImmutableCharBag
ImmutableLongCharEmptyMap. reject(CharPredicate predicate)
ImmutableCharBag
ImmutableLongCharHashMap. reject(CharPredicate predicate)
ImmutableCharBag
ImmutableLongCharSingletonMap. reject(CharPredicate predicate)
ImmutableCharBag
ImmutableShortCharEmptyMap. reject(CharPredicate predicate)
ImmutableCharBag
ImmutableShortCharHashMap. reject(CharPredicate predicate)
ImmutableCharBag
ImmutableShortCharSingletonMap. reject(CharPredicate predicate)
ImmutableCharBag
ImmutableByteCharEmptyMap. select(CharPredicate predicate)
ImmutableCharBag
ImmutableByteCharHashMap. select(CharPredicate predicate)
ImmutableCharBag
ImmutableByteCharSingletonMap. select(CharPredicate predicate)
ImmutableCharBag
ImmutableCharCharEmptyMap. select(CharPredicate predicate)
ImmutableCharBag
ImmutableCharCharHashMap. select(CharPredicate predicate)
ImmutableCharBag
ImmutableCharCharSingletonMap. select(CharPredicate predicate)
ImmutableCharBag
ImmutableDoubleCharEmptyMap. select(CharPredicate predicate)
ImmutableCharBag
ImmutableDoubleCharHashMap. select(CharPredicate predicate)
ImmutableCharBag
ImmutableDoubleCharSingletonMap. select(CharPredicate predicate)
ImmutableCharBag
ImmutableFloatCharEmptyMap. select(CharPredicate predicate)
ImmutableCharBag
ImmutableFloatCharHashMap. select(CharPredicate predicate)
ImmutableCharBag
ImmutableFloatCharSingletonMap. select(CharPredicate predicate)
ImmutableCharBag
ImmutableIntCharEmptyMap. select(CharPredicate predicate)
ImmutableCharBag
ImmutableIntCharHashMap. select(CharPredicate predicate)
ImmutableCharBag
ImmutableIntCharSingletonMap. select(CharPredicate predicate)
ImmutableCharBag
ImmutableLongCharEmptyMap. select(CharPredicate predicate)
ImmutableCharBag
ImmutableLongCharHashMap. select(CharPredicate predicate)
ImmutableCharBag
ImmutableLongCharSingletonMap. select(CharPredicate predicate)
ImmutableCharBag
ImmutableShortCharEmptyMap. select(CharPredicate predicate)
ImmutableCharBag
ImmutableShortCharHashMap. select(CharPredicate predicate)
ImmutableCharBag
ImmutableShortCharSingletonMap. select(CharPredicate predicate)
-