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 MutableCharSetCharIterable. 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 MutableCharSetMutableCharBag. 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 MutableCharSetMutableCharSetFactory. empty()MutableCharSetMutableCharSetFactory. of()Same asMutableCharSetFactory.empty().MutableCharSetMutableCharSetFactory. of(char... items)Same asMutableCharSetFactory.with(char[]).MutableCharSetMutableCharSetFactory. ofAll(java.lang.Iterable<java.lang.Character> iterable)MutableCharSetMutableCharSetFactory. ofAll(CharIterable items)MutableCharSetMutableCharSetFactory. with()Same asMutableCharSetFactory.empty().MutableCharSetMutableCharSetFactory. with(char... items)MutableCharSetMutableCharSetFactory. withAll(java.lang.Iterable<java.lang.Character> iterable)MutableCharSetMutableCharSetFactory. withAll(CharIterable items)default MutableCharSetMutableCharSetFactory. 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 MutableCharSetCharBooleanMap. keySet()Returns a set containing all the keys in this map.MutableCharSetCharByteMap. keySet()Returns a set containing all the keys in this map.MutableCharSetCharCharMap. keySet()Returns a set containing all the keys in this map.MutableCharSetCharDoubleMap. keySet()Returns a set containing all the keys in this map.MutableCharSetCharFloatMap. keySet()Returns a set containing all the keys in this map.MutableCharSetCharIntMap. keySet()Returns a set containing all the keys in this map.MutableCharSetCharLongMap. keySet()Returns a set containing all the keys in this map.MutableCharSetCharObjectMap. keySet()Returns a set containing all the keys in this map.MutableCharSetCharShortMap. 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 MutableCharSetMutableSet. 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 MutableCharSetMutableCharSet. asSynchronized()MutableCharSetMutableCharSet. asUnmodifiable()default MutableCharSetMutableCharSet. difference(CharSet set)Returns the set of all members ofthisthat are not members ofset.default MutableCharSetMutableCharSet. intersect(CharSet set)Returns the set of all objects that are members of boththisandset.default MutableCharSetMutableCharSet. newEmpty()Creates a new empty mutable version of the same Set type.MutableCharSetMutableCharSet. reject(CharPredicate predicate)MutableCharSetMutableCharSet. select(CharPredicate predicate)default MutableCharSetMutableCharSet. symmetricDifference(CharSet set)Returns the set of all objects that are a member of exactly one ofthisandset(elements which are in one of the sets, but not in both).default MutableCharSetMutableCharSet. tap(CharProcedure procedure)default MutableCharSetMutableCharSet. union(CharSet set)MutableCharSetMutableCharSet. with(char element)MutableCharSetMutableCharSet. withAll(CharIterable elements)MutableCharSetMutableCharSet. without(char element)MutableCharSetMutableCharSet. 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 MutableCharSetImmutableCharEmptyBag. toSet()MutableCharSetImmutableCharHashBag. toSet()MutableCharSetImmutableCharSingletonBag. 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 MutableCharSetCharHashBag. selectUnique()MutableCharSetSynchronizedCharBag. selectUnique()MutableCharSetUnmodifiableCharBag. 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 MutableCharSetAbstractSynchronizedCharCollection. toSet()MutableCharSetAbstractUnmodifiableCharCollection. 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 MutableCharSetAbstractLazyCharIterable. toSet()MutableCharSetCollectCharIterable. toSet()MutableCharSetLazyCharIterableAdapter. toSet()MutableCharSetReverseCharIterable. toSet()MutableCharSetSelectCharIterable. 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 MutableCharSetImmutableCharArrayList. toSet()MutableCharSetImmutableCharEmptyList. toSet()MutableCharSetImmutableCharSingletonList. 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 MutableCharSetImmutableCharBooleanEmptyMap. keySet()MutableCharSetImmutableCharBooleanHashMap. keySet()MutableCharSetImmutableCharBooleanSingletonMap. keySet()MutableCharSetImmutableCharByteEmptyMap. keySet()MutableCharSetImmutableCharByteHashMap. keySet()MutableCharSetImmutableCharByteSingletonMap. keySet()MutableCharSetImmutableCharCharEmptyMap. keySet()MutableCharSetImmutableCharCharHashMap. keySet()MutableCharSetImmutableCharCharSingletonMap. keySet()MutableCharSetImmutableCharDoubleEmptyMap. keySet()MutableCharSetImmutableCharDoubleHashMap. keySet()MutableCharSetImmutableCharDoubleSingletonMap. keySet()MutableCharSetImmutableCharFloatEmptyMap. keySet()MutableCharSetImmutableCharFloatHashMap. keySet()MutableCharSetImmutableCharFloatSingletonMap. keySet()MutableCharSetImmutableCharIntEmptyMap. keySet()MutableCharSetImmutableCharIntHashMap. keySet()MutableCharSetImmutableCharIntSingletonMap. keySet()MutableCharSetImmutableCharLongEmptyMap. keySet()MutableCharSetImmutableCharLongHashMap. keySet()MutableCharSetImmutableCharLongSingletonMap. keySet()MutableCharSetImmutableCharObjectEmptyMap. keySet()MutableCharSetImmutableCharObjectHashMap. keySet()MutableCharSetImmutableCharObjectSingletonMap. keySet()MutableCharSetImmutableCharShortEmptyMap. keySet()MutableCharSetImmutableCharShortHashMap. keySet()MutableCharSetImmutableCharShortSingletonMap. keySet()MutableCharSetImmutableByteCharEmptyMap. toSet()MutableCharSetImmutableByteCharHashMap. toSet()MutableCharSetImmutableByteCharSingletonMap. toSet()MutableCharSetImmutableCharCharEmptyMap. toSet()MutableCharSetImmutableCharCharHashMap. toSet()MutableCharSetImmutableCharCharSingletonMap. toSet()MutableCharSetImmutableDoubleCharEmptyMap. toSet()MutableCharSetImmutableDoubleCharHashMap. toSet()MutableCharSetImmutableDoubleCharSingletonMap. toSet()MutableCharSetImmutableFloatCharEmptyMap. toSet()MutableCharSetImmutableFloatCharHashMap. toSet()MutableCharSetImmutableFloatCharSingletonMap. toSet()MutableCharSetImmutableIntCharEmptyMap. toSet()MutableCharSetImmutableIntCharHashMap. toSet()MutableCharSetImmutableIntCharSingletonMap. toSet()MutableCharSetImmutableLongCharEmptyMap. toSet()MutableCharSetImmutableLongCharHashMap. toSet()MutableCharSetImmutableLongCharSingletonMap. toSet()MutableCharSetImmutableObjectCharEmptyMap. toSet()MutableCharSetImmutableObjectCharHashMap. toSet()MutableCharSetImmutableObjectCharSingletonMap. toSet()MutableCharSetImmutableShortCharEmptyMap. toSet()MutableCharSetImmutableShortCharHashMap. toSet()MutableCharSetImmutableShortCharSingletonMap. 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 classAbstractMutableCharKeySetThis file was automatically generated from template file abstractMutablePrimitiveKeySet.stg.private classCharBooleanHashMap.KeySetprivate classCharByteHashMap.KeySetprivate classCharCharHashMap.KeySetprivate classCharDoubleHashMap.KeySetprivate classCharFloatHashMap.KeySetprivate classCharIntHashMap.KeySetprivate classCharLongHashMap.KeySetprivate classCharObjectHashMap.KeySetprivate classCharShortHashMap.KeySetMethods in org.eclipse.collections.impl.map.mutable.primitive that return MutableCharSet Modifier and Type Method Description MutableCharSetAbstractMutableCharKeySet. asSynchronized()MutableCharSetAbstractMutableCharKeySet. asUnmodifiable()MutableCharSetCharBooleanHashMap. keySet()MutableCharSetCharByteHashMap. keySet()MutableCharSetCharCharHashMap. keySet()MutableCharSetCharDoubleHashMap. keySet()MutableCharSetCharFloatHashMap. keySet()MutableCharSetCharIntHashMap. keySet()MutableCharSetCharLongHashMap. keySet()MutableCharSetCharObjectHashMap. keySet()MutableCharSetCharShortHashMap. keySet()MutableCharSetSynchronizedCharBooleanMap. keySet()MutableCharSetSynchronizedCharByteMap. keySet()MutableCharSetSynchronizedCharCharMap. keySet()MutableCharSetSynchronizedCharDoubleMap. keySet()MutableCharSetSynchronizedCharFloatMap. keySet()MutableCharSetSynchronizedCharIntMap. keySet()MutableCharSetSynchronizedCharLongMap. keySet()MutableCharSetSynchronizedCharObjectMap. keySet()MutableCharSetSynchronizedCharShortMap. keySet()MutableCharSetUnmodifiableCharBooleanMap. keySet()MutableCharSetUnmodifiableCharByteMap. keySet()MutableCharSetUnmodifiableCharCharMap. keySet()MutableCharSetUnmodifiableCharDoubleMap. keySet()MutableCharSetUnmodifiableCharFloatMap. keySet()MutableCharSetUnmodifiableCharIntMap. keySet()MutableCharSetUnmodifiableCharLongMap. keySet()MutableCharSetUnmodifiableCharObjectMap. keySet()MutableCharSetUnmodifiableCharShortMap. keySet()MutableCharSetCharBooleanHashMap.KeySet. newEmpty()MutableCharSetCharByteHashMap.KeySet. newEmpty()MutableCharSetCharCharHashMap.KeySet. newEmpty()MutableCharSetCharDoubleHashMap.KeySet. newEmpty()MutableCharSetCharFloatHashMap.KeySet. newEmpty()MutableCharSetCharIntHashMap.KeySet. newEmpty()MutableCharSetCharLongHashMap.KeySet. newEmpty()MutableCharSetCharObjectHashMap.KeySet. newEmpty()MutableCharSetCharShortHashMap.KeySet. newEmpty()MutableCharSetAbstractMutableCharKeySet. reject(CharPredicate predicate)MutableCharSetAbstractMutableCharKeySet. select(CharPredicate predicate)MutableCharSetAbstractMutableCharKeySet. toSet()MutableCharSetAbstractMutableCharValuesMap.AbstractCharValuesCollection. toSet()MutableCharSetCharBooleanHashMap.KeysView. toSet()MutableCharSetObjectCharHashMap. toSet()MutableCharSetObjectCharHashMap.ValuesCollection. toSet()MutableCharSetObjectCharHashMapWithHashingStrategy. toSet()MutableCharSetObjectCharHashMapWithHashingStrategy.ValuesCollection. toSet()MutableCharSetSynchronizedByteCharMap. toSet()MutableCharSetSynchronizedCharCharMap. toSet()MutableCharSetSynchronizedDoubleCharMap. toSet()MutableCharSetSynchronizedFloatCharMap. toSet()MutableCharSetSynchronizedIntCharMap. toSet()MutableCharSetSynchronizedLongCharMap. toSet()MutableCharSetSynchronizedObjectCharMap. toSet()MutableCharSetSynchronizedShortCharMap. toSet()MutableCharSetUnmodifiableByteCharMap. toSet()MutableCharSetUnmodifiableCharCharMap. toSet()MutableCharSetUnmodifiableDoubleCharMap. toSet()MutableCharSetUnmodifiableFloatCharMap. toSet()MutableCharSetUnmodifiableIntCharMap. toSet()MutableCharSetUnmodifiableLongCharMap. toSet()MutableCharSetUnmodifiableObjectCharMap. toSet()MutableCharSetUnmodifiableShortCharMap. toSet()MutableCharSetAbstractMutableCharKeySet. with(char element)MutableCharSetAbstractMutableCharKeySet. withAll(CharIterable elements)MutableCharSetAbstractMutableCharKeySet. without(char element)MutableCharSetAbstractMutableCharKeySet. 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 MutableCharSetAbstractCharIterable. toSet()MutableCharSetSynchronizedCharIterable. 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 MutableCharSetImmutableCharEmptySet. toSet()MutableCharSetImmutableCharSingletonSet. 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 MutableCharSetMultiReaderUnifiedSet. collectChar(CharFunction<? super T> charFunction)MutableCharSetMultiReaderUnifiedSet.UntouchableMutableSet. collectChar(CharFunction<? super T> charFunction)MutableCharSetSynchronizedMutableSet. collectChar(CharFunction<? super T> charFunction)MutableCharSetUnmodifiableMutableSet. 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 classCharHashSetThis file was automatically generated from template file primitiveHashSet.stg.classSynchronizedCharSetA synchronized view of aMutableCharSet.classUnmodifiableCharSetThis file was automatically generated from template file unmodifiablePrimitiveSet.stg.Fields in org.eclipse.collections.impl.set.mutable.primitive declared as MutableCharSet Modifier and Type Field Description private MutableCharSetBoxedMutableCharSet. delegateMethods in org.eclipse.collections.impl.set.mutable.primitive that return MutableCharSet Modifier and Type Method Description MutableCharSetCharHashSet. asSynchronized()MutableCharSetSynchronizedCharSet. asSynchronized()MutableCharSetUnmodifiableCharSet. asSynchronized()MutableCharSetCharHashSet. asUnmodifiable()MutableCharSetSynchronizedCharSet. asUnmodifiable()MutableCharSetUnmodifiableCharSet. asUnmodifiable()MutableCharSetMutableCharSetFactoryImpl. empty()private MutableCharSetSynchronizedCharSet. getMutableCharSet()private MutableCharSetUnmodifiableCharSet. getMutableCharSet()MutableCharSetSynchronizedCharSet. newEmpty()MutableCharSetUnmodifiableCharSet. newEmpty()MutableCharSetMutableCharSetFactoryImpl. of()MutableCharSetMutableCharSetFactoryImpl. of(char... items)MutableCharSetMutableCharSetFactoryImpl. ofAll(java.lang.Iterable<java.lang.Character> iterable)MutableCharSetMutableCharSetFactoryImpl. ofAll(CharIterable items)MutableCharSetSynchronizedCharSet. reject(CharPredicate predicate)MutableCharSetUnmodifiableCharSet. reject(CharPredicate predicate)MutableCharSetSynchronizedCharSet. select(CharPredicate predicate)MutableCharSetUnmodifiableCharSet. select(CharPredicate predicate)MutableCharSetMutableCharSetFactoryImpl. with()MutableCharSetMutableCharSetFactoryImpl. with(char... items)MutableCharSetMutableCharSetFactoryImpl. withAll(java.lang.Iterable<java.lang.Character> iterable)MutableCharSetMutableCharSetFactoryImpl. withAll(CharIterable items)MutableCharSetMutableCharSetFactoryImpl. withInitialCapacity(int capacity)Methods in org.eclipse.collections.impl.set.mutable.primitive with parameters of type MutableCharSet Modifier and Type Method Description static SynchronizedCharSetSynchronizedCharSet. of(MutableCharSet set)This method will take a MutableCharSet and wrap it directly in a SynchronizedCharSet.static SynchronizedCharSetSynchronizedCharSet. of(MutableCharSet set, java.lang.Object lock)This method will take a MutableCharSet and wrap it directly in a SynchronizedCharSet.static UnmodifiableCharSetUnmodifiableCharSet. 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 BoxedMutableCharSet(MutableCharSet delegate)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 MutableCharSetImmutableCharEmptyStack. toSet()MutableCharSetImmutableCharSingletonStack. 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 MutableCharSetSynchronizedCharStack. toSet()MutableCharSetUnmodifiableCharStack. 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 MutableCharSetAbstractCharStack. 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 MutableCharSetCharAdapter. toSet()
-