Uses of Interface
org.eclipse.collections.api.set.primitive.MutableCharSet
-
Packages that use MutableCharSet Package Description org.eclipse.collections.api This package contains interfaces for Eclipse Collections API.org.eclipse.collections.api.bag.primitive This package contains API for Primitive Bags with Mutable and Immutable variants.org.eclipse.collections.api.factory.set.primitive This package contains factory API for creating primitive set instances.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.api.set This package contains interfaces for set API which enhance the performance and functionality ofSet
.org.eclipse.collections.api.set.primitive This package contains API for mutable and immutable primitive sets.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.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.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.set.mutable This package contains implementations ofMutableSet
.org.eclipse.collections.impl.set.mutable.primitive This package contains implementations of the mutable 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 MutableCharSet in org.eclipse.collections.api
Methods in org.eclipse.collections.api that return MutableCharSet Modifier and Type Method Description MutableCharSet
CharIterable. toSet()
Converts the CharIterable to a new MutableCharSet. -
Uses of MutableCharSet in org.eclipse.collections.api.bag.primitive
Methods in org.eclipse.collections.api.bag.primitive that return MutableCharSet Modifier and Type Method Description MutableCharSet
MutableCharBag. selectUnique()
Returns all elements of the bag that have exactly one occurrence. -
Uses of MutableCharSet in org.eclipse.collections.api.factory.set.primitive
Methods in org.eclipse.collections.api.factory.set.primitive that return MutableCharSet Modifier and Type Method Description MutableCharSet
MutableCharSetFactory. empty()
MutableCharSet
MutableCharSetFactory. of()
Same asMutableCharSetFactory.empty()
.MutableCharSet
MutableCharSetFactory. of(char... items)
Same asMutableCharSetFactory.with(char[])
.MutableCharSet
MutableCharSetFactory. ofAll(java.lang.Iterable<java.lang.Character> iterable)
MutableCharSet
MutableCharSetFactory. ofAll(CharIterable items)
MutableCharSet
MutableCharSetFactory. with()
Same asMutableCharSetFactory.empty()
.MutableCharSet
MutableCharSetFactory. with(char... items)
MutableCharSet
MutableCharSetFactory. withAll(java.lang.Iterable<java.lang.Character> iterable)
MutableCharSet
MutableCharSetFactory. withAll(CharIterable items)
default MutableCharSet
MutableCharSetFactory. withInitialCapacity(int capacity)
Same asMutableCharSetFactory.empty()
. -
Uses of MutableCharSet in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableCharSet Modifier and Type Method Description MutableCharSet
CharBooleanMap. keySet()
Returns a set containing all the keys in this map.MutableCharSet
CharByteMap. keySet()
Returns a set containing all the keys in this map.MutableCharSet
CharCharMap. keySet()
Returns a set containing all the keys in this map.MutableCharSet
CharDoubleMap. keySet()
Returns a set containing all the keys in this map.MutableCharSet
CharFloatMap. keySet()
Returns a set containing all the keys in this map.MutableCharSet
CharIntMap. keySet()
Returns a set containing all the keys in this map.MutableCharSet
CharLongMap. keySet()
Returns a set containing all the keys in this map.MutableCharSet
CharObjectMap. keySet()
Returns a set containing all the keys in this map.MutableCharSet
CharShortMap. keySet()
Returns a set containing all the keys in this map. -
Uses of MutableCharSet in org.eclipse.collections.api.set
Methods in org.eclipse.collections.api.set that return MutableCharSet Modifier and Type Method Description default MutableCharSet
MutableSet. collectChar(CharFunction<? super T> charFunction)
-
Uses of MutableCharSet in org.eclipse.collections.api.set.primitive
Methods in org.eclipse.collections.api.set.primitive that return MutableCharSet Modifier and Type Method Description MutableCharSet
MutableCharSet. asSynchronized()
MutableCharSet
MutableCharSet. asUnmodifiable()
default MutableCharSet
MutableCharSet. difference(CharSet set)
Returns the set of all members ofthis
that are not members ofset
.default MutableCharSet
MutableCharSet. intersect(CharSet set)
Returns the set of all objects that are members of boththis
andset
.default MutableCharSet
MutableCharSet. newEmpty()
Creates a new empty mutable version of the same Set type.MutableCharSet
MutableCharSet. reject(CharPredicate predicate)
MutableCharSet
MutableCharSet. select(CharPredicate predicate)
default MutableCharSet
MutableCharSet. symmetricDifference(CharSet set)
Returns the set of all objects that are a member of exactly one ofthis
andset
(elements which are in one of the sets, but not in both).default MutableCharSet
MutableCharSet. tap(CharProcedure procedure)
default MutableCharSet
MutableCharSet. union(CharSet set)
MutableCharSet
MutableCharSet. with(char element)
MutableCharSet
MutableCharSet. withAll(CharIterable elements)
MutableCharSet
MutableCharSet. without(char element)
MutableCharSet
MutableCharSet. withoutAll(CharIterable elements)
-
Uses of MutableCharSet in org.eclipse.collections.impl.bag.immutable.primitive
Methods in org.eclipse.collections.impl.bag.immutable.primitive that return MutableCharSet Modifier and Type Method Description MutableCharSet
ImmutableCharEmptyBag. toSet()
MutableCharSet
ImmutableCharHashBag. toSet()
MutableCharSet
ImmutableCharSingletonBag. toSet()
-
Uses of MutableCharSet in org.eclipse.collections.impl.bag.mutable.primitive
Methods in org.eclipse.collections.impl.bag.mutable.primitive that return MutableCharSet Modifier and Type Method Description MutableCharSet
CharHashBag. selectUnique()
MutableCharSet
SynchronizedCharBag. selectUnique()
MutableCharSet
UnmodifiableCharBag. selectUnique()
-
Uses of MutableCharSet in org.eclipse.collections.impl.collection.mutable.primitive
Methods in org.eclipse.collections.impl.collection.mutable.primitive that return MutableCharSet Modifier and Type Method Description MutableCharSet
AbstractSynchronizedCharCollection. toSet()
MutableCharSet
AbstractUnmodifiableCharCollection. toSet()
-
Uses of MutableCharSet in org.eclipse.collections.impl.lazy.primitive
Methods in org.eclipse.collections.impl.lazy.primitive that return MutableCharSet Modifier and Type Method Description MutableCharSet
AbstractLazyCharIterable. toSet()
MutableCharSet
CollectCharIterable. toSet()
MutableCharSet
LazyCharIterableAdapter. toSet()
MutableCharSet
ReverseCharIterable. toSet()
MutableCharSet
SelectCharIterable. toSet()
-
Uses of MutableCharSet in org.eclipse.collections.impl.list.immutable.primitive
Methods in org.eclipse.collections.impl.list.immutable.primitive that return MutableCharSet Modifier and Type Method Description MutableCharSet
ImmutableCharArrayList. toSet()
MutableCharSet
ImmutableCharEmptyList. toSet()
MutableCharSet
ImmutableCharSingletonList. toSet()
-
Uses of MutableCharSet in org.eclipse.collections.impl.map.immutable.primitive
Methods in org.eclipse.collections.impl.map.immutable.primitive that return MutableCharSet Modifier and Type Method Description MutableCharSet
ImmutableCharBooleanEmptyMap. keySet()
MutableCharSet
ImmutableCharBooleanHashMap. keySet()
MutableCharSet
ImmutableCharBooleanSingletonMap. keySet()
MutableCharSet
ImmutableCharByteEmptyMap. keySet()
MutableCharSet
ImmutableCharByteHashMap. keySet()
MutableCharSet
ImmutableCharByteSingletonMap. keySet()
MutableCharSet
ImmutableCharCharEmptyMap. keySet()
MutableCharSet
ImmutableCharCharHashMap. keySet()
MutableCharSet
ImmutableCharCharSingletonMap. keySet()
MutableCharSet
ImmutableCharDoubleEmptyMap. keySet()
MutableCharSet
ImmutableCharDoubleHashMap. keySet()
MutableCharSet
ImmutableCharDoubleSingletonMap. keySet()
MutableCharSet
ImmutableCharFloatEmptyMap. keySet()
MutableCharSet
ImmutableCharFloatHashMap. keySet()
MutableCharSet
ImmutableCharFloatSingletonMap. keySet()
MutableCharSet
ImmutableCharIntEmptyMap. keySet()
MutableCharSet
ImmutableCharIntHashMap. keySet()
MutableCharSet
ImmutableCharIntSingletonMap. keySet()
MutableCharSet
ImmutableCharLongEmptyMap. keySet()
MutableCharSet
ImmutableCharLongHashMap. keySet()
MutableCharSet
ImmutableCharLongSingletonMap. keySet()
MutableCharSet
ImmutableCharObjectEmptyMap. keySet()
MutableCharSet
ImmutableCharObjectHashMap. keySet()
MutableCharSet
ImmutableCharObjectSingletonMap. keySet()
MutableCharSet
ImmutableCharShortEmptyMap. keySet()
MutableCharSet
ImmutableCharShortHashMap. keySet()
MutableCharSet
ImmutableCharShortSingletonMap. keySet()
MutableCharSet
ImmutableByteCharEmptyMap. toSet()
MutableCharSet
ImmutableByteCharHashMap. toSet()
MutableCharSet
ImmutableByteCharSingletonMap. toSet()
MutableCharSet
ImmutableCharCharEmptyMap. toSet()
MutableCharSet
ImmutableCharCharHashMap. toSet()
MutableCharSet
ImmutableCharCharSingletonMap. toSet()
MutableCharSet
ImmutableDoubleCharEmptyMap. toSet()
MutableCharSet
ImmutableDoubleCharHashMap. toSet()
MutableCharSet
ImmutableDoubleCharSingletonMap. toSet()
MutableCharSet
ImmutableFloatCharEmptyMap. toSet()
MutableCharSet
ImmutableFloatCharHashMap. toSet()
MutableCharSet
ImmutableFloatCharSingletonMap. toSet()
MutableCharSet
ImmutableIntCharEmptyMap. toSet()
MutableCharSet
ImmutableIntCharHashMap. toSet()
MutableCharSet
ImmutableIntCharSingletonMap. toSet()
MutableCharSet
ImmutableLongCharEmptyMap. toSet()
MutableCharSet
ImmutableLongCharHashMap. toSet()
MutableCharSet
ImmutableLongCharSingletonMap. toSet()
MutableCharSet
ImmutableObjectCharEmptyMap. toSet()
MutableCharSet
ImmutableObjectCharHashMap. toSet()
MutableCharSet
ImmutableObjectCharSingletonMap. toSet()
MutableCharSet
ImmutableShortCharEmptyMap. toSet()
MutableCharSet
ImmutableShortCharHashMap. toSet()
MutableCharSet
ImmutableShortCharSingletonMap. toSet()
-
Uses of MutableCharSet in org.eclipse.collections.impl.map.mutable.primitive
Classes in org.eclipse.collections.impl.map.mutable.primitive that implement MutableCharSet Modifier and Type Class Description class
AbstractMutableCharKeySet
This file was automatically generated from template file abstractMutablePrimitiveKeySet.stg.private class
CharBooleanHashMap.KeySet
private class
CharByteHashMap.KeySet
private class
CharCharHashMap.KeySet
private class
CharDoubleHashMap.KeySet
private class
CharFloatHashMap.KeySet
private class
CharIntHashMap.KeySet
private class
CharLongHashMap.KeySet
private class
CharObjectHashMap.KeySet
private class
CharShortHashMap.KeySet
Methods in org.eclipse.collections.impl.map.mutable.primitive that return MutableCharSet Modifier and Type Method Description MutableCharSet
AbstractMutableCharKeySet. asSynchronized()
MutableCharSet
AbstractMutableCharKeySet. asUnmodifiable()
MutableCharSet
CharBooleanHashMap. keySet()
MutableCharSet
CharByteHashMap. keySet()
MutableCharSet
CharCharHashMap. keySet()
MutableCharSet
CharDoubleHashMap. keySet()
MutableCharSet
CharFloatHashMap. keySet()
MutableCharSet
CharIntHashMap. keySet()
MutableCharSet
CharLongHashMap. keySet()
MutableCharSet
CharObjectHashMap. keySet()
MutableCharSet
CharShortHashMap. keySet()
MutableCharSet
SynchronizedCharBooleanMap. keySet()
MutableCharSet
SynchronizedCharByteMap. keySet()
MutableCharSet
SynchronizedCharCharMap. keySet()
MutableCharSet
SynchronizedCharDoubleMap. keySet()
MutableCharSet
SynchronizedCharFloatMap. keySet()
MutableCharSet
SynchronizedCharIntMap. keySet()
MutableCharSet
SynchronizedCharLongMap. keySet()
MutableCharSet
SynchronizedCharObjectMap. keySet()
MutableCharSet
SynchronizedCharShortMap. keySet()
MutableCharSet
UnmodifiableCharBooleanMap. keySet()
MutableCharSet
UnmodifiableCharByteMap. keySet()
MutableCharSet
UnmodifiableCharCharMap. keySet()
MutableCharSet
UnmodifiableCharDoubleMap. keySet()
MutableCharSet
UnmodifiableCharFloatMap. keySet()
MutableCharSet
UnmodifiableCharIntMap. keySet()
MutableCharSet
UnmodifiableCharLongMap. keySet()
MutableCharSet
UnmodifiableCharObjectMap. keySet()
MutableCharSet
UnmodifiableCharShortMap. keySet()
MutableCharSet
CharBooleanHashMap.KeySet. newEmpty()
MutableCharSet
CharByteHashMap.KeySet. newEmpty()
MutableCharSet
CharCharHashMap.KeySet. newEmpty()
MutableCharSet
CharDoubleHashMap.KeySet. newEmpty()
MutableCharSet
CharFloatHashMap.KeySet. newEmpty()
MutableCharSet
CharIntHashMap.KeySet. newEmpty()
MutableCharSet
CharLongHashMap.KeySet. newEmpty()
MutableCharSet
CharObjectHashMap.KeySet. newEmpty()
MutableCharSet
CharShortHashMap.KeySet. newEmpty()
MutableCharSet
AbstractMutableCharKeySet. reject(CharPredicate predicate)
MutableCharSet
AbstractMutableCharKeySet. select(CharPredicate predicate)
MutableCharSet
AbstractMutableCharKeySet. toSet()
MutableCharSet
AbstractMutableCharValuesMap.AbstractCharValuesCollection. toSet()
MutableCharSet
CharBooleanHashMap.KeysView. toSet()
MutableCharSet
ObjectCharHashMap. toSet()
MutableCharSet
ObjectCharHashMap.ValuesCollection. toSet()
MutableCharSet
ObjectCharHashMapWithHashingStrategy. toSet()
MutableCharSet
ObjectCharHashMapWithHashingStrategy.ValuesCollection. toSet()
MutableCharSet
SynchronizedByteCharMap. toSet()
MutableCharSet
SynchronizedCharCharMap. toSet()
MutableCharSet
SynchronizedDoubleCharMap. toSet()
MutableCharSet
SynchronizedFloatCharMap. toSet()
MutableCharSet
SynchronizedIntCharMap. toSet()
MutableCharSet
SynchronizedLongCharMap. toSet()
MutableCharSet
SynchronizedObjectCharMap. toSet()
MutableCharSet
SynchronizedShortCharMap. toSet()
MutableCharSet
UnmodifiableByteCharMap. toSet()
MutableCharSet
UnmodifiableCharCharMap. toSet()
MutableCharSet
UnmodifiableDoubleCharMap. toSet()
MutableCharSet
UnmodifiableFloatCharMap. toSet()
MutableCharSet
UnmodifiableIntCharMap. toSet()
MutableCharSet
UnmodifiableLongCharMap. toSet()
MutableCharSet
UnmodifiableObjectCharMap. toSet()
MutableCharSet
UnmodifiableShortCharMap. toSet()
MutableCharSet
AbstractMutableCharKeySet. with(char element)
MutableCharSet
AbstractMutableCharKeySet. withAll(CharIterable elements)
MutableCharSet
AbstractMutableCharKeySet. without(char element)
MutableCharSet
AbstractMutableCharKeySet. withoutAll(CharIterable elements)
-
Uses of MutableCharSet in org.eclipse.collections.impl.primitive
Methods in org.eclipse.collections.impl.primitive that return MutableCharSet Modifier and Type Method Description MutableCharSet
AbstractCharIterable. toSet()
MutableCharSet
SynchronizedCharIterable. toSet()
-
Uses of MutableCharSet in org.eclipse.collections.impl.set.immutable.primitive
Methods in org.eclipse.collections.impl.set.immutable.primitive that return MutableCharSet Modifier and Type Method Description MutableCharSet
ImmutableCharEmptySet. toSet()
MutableCharSet
ImmutableCharSingletonSet. toSet()
-
Uses of MutableCharSet in org.eclipse.collections.impl.set.mutable
Methods in org.eclipse.collections.impl.set.mutable that return MutableCharSet Modifier and Type Method Description MutableCharSet
MultiReaderUnifiedSet. collectChar(CharFunction<? super T> charFunction)
MutableCharSet
MultiReaderUnifiedSet.UntouchableMutableSet. collectChar(CharFunction<? super T> charFunction)
MutableCharSet
SynchronizedMutableSet. collectChar(CharFunction<? super T> charFunction)
MutableCharSet
UnmodifiableMutableSet. collectChar(CharFunction<? super T> charFunction)
-
Uses of MutableCharSet in org.eclipse.collections.impl.set.mutable.primitive
Classes in org.eclipse.collections.impl.set.mutable.primitive that implement MutableCharSet Modifier and Type Class Description class
CharHashSet
This file was automatically generated from template file primitiveHashSet.stg.class
SynchronizedCharSet
A synchronized view of aMutableCharSet
.class
UnmodifiableCharSet
This file was automatically generated from template file unmodifiablePrimitiveSet.stg.Methods in org.eclipse.collections.impl.set.mutable.primitive that return MutableCharSet Modifier and Type Method Description MutableCharSet
CharHashSet. asSynchronized()
MutableCharSet
SynchronizedCharSet. asSynchronized()
MutableCharSet
UnmodifiableCharSet. asSynchronized()
MutableCharSet
CharHashSet. asUnmodifiable()
MutableCharSet
SynchronizedCharSet. asUnmodifiable()
MutableCharSet
UnmodifiableCharSet. asUnmodifiable()
MutableCharSet
MutableCharSetFactoryImpl. empty()
private MutableCharSet
SynchronizedCharSet. getMutableCharSet()
private MutableCharSet
UnmodifiableCharSet. getMutableCharSet()
MutableCharSet
SynchronizedCharSet. newEmpty()
MutableCharSet
UnmodifiableCharSet. newEmpty()
MutableCharSet
MutableCharSetFactoryImpl. of()
MutableCharSet
MutableCharSetFactoryImpl. of(char... items)
MutableCharSet
MutableCharSetFactoryImpl. ofAll(java.lang.Iterable<java.lang.Character> iterable)
MutableCharSet
MutableCharSetFactoryImpl. ofAll(CharIterable items)
MutableCharSet
SynchronizedCharSet. reject(CharPredicate predicate)
MutableCharSet
UnmodifiableCharSet. reject(CharPredicate predicate)
MutableCharSet
SynchronizedCharSet. select(CharPredicate predicate)
MutableCharSet
UnmodifiableCharSet. select(CharPredicate predicate)
MutableCharSet
MutableCharSetFactoryImpl. with()
MutableCharSet
MutableCharSetFactoryImpl. with(char... items)
MutableCharSet
MutableCharSetFactoryImpl. withAll(java.lang.Iterable<java.lang.Character> iterable)
MutableCharSet
MutableCharSetFactoryImpl. withAll(CharIterable items)
MutableCharSet
MutableCharSetFactoryImpl. withInitialCapacity(int capacity)
Methods in org.eclipse.collections.impl.set.mutable.primitive with parameters of type MutableCharSet Modifier and Type Method Description static SynchronizedCharSet
SynchronizedCharSet. of(MutableCharSet set)
This method will take a MutableCharSet and wrap it directly in a SynchronizedCharSet.static SynchronizedCharSet
SynchronizedCharSet. of(MutableCharSet set, java.lang.Object lock)
This method will take a MutableCharSet and wrap it directly in a SynchronizedCharSet.static UnmodifiableCharSet
UnmodifiableCharSet. of(MutableCharSet set)
This method will take a MutableCharSet and wrap it directly in a UnmodifiableCharSet.Constructors in org.eclipse.collections.impl.set.mutable.primitive with parameters of type MutableCharSet Constructor Description SynchronizedCharSet(MutableCharSet set)
SynchronizedCharSet(MutableCharSet set, java.lang.Object newLock)
UnmodifiableCharSet(MutableCharSet set)
-
Uses of MutableCharSet in org.eclipse.collections.impl.stack.immutable.primitive
Methods in org.eclipse.collections.impl.stack.immutable.primitive that return MutableCharSet Modifier and Type Method Description MutableCharSet
ImmutableCharEmptyStack. toSet()
MutableCharSet
ImmutableCharSingletonStack. toSet()
-
Uses of MutableCharSet in org.eclipse.collections.impl.stack.mutable.primitive
Methods in org.eclipse.collections.impl.stack.mutable.primitive that return MutableCharSet Modifier and Type Method Description MutableCharSet
SynchronizedCharStack. toSet()
MutableCharSet
UnmodifiableCharStack. toSet()
-
Uses of MutableCharSet in org.eclipse.collections.impl.stack.primitive
Methods in org.eclipse.collections.impl.stack.primitive that return MutableCharSet Modifier and Type Method Description MutableCharSet
AbstractCharStack. toSet()
-
Uses of MutableCharSet in org.eclipse.collections.impl.string.immutable
Methods in org.eclipse.collections.impl.string.immutable that return MutableCharSet Modifier and Type Method Description MutableCharSet
CharAdapter. toSet()
-