Uses of Interface
org.eclipse.collections.api.set.primitive.ImmutableCharSet
-
Packages that use ImmutableCharSet Package Description 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.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. -
-
Uses of ImmutableCharSet in org.eclipse.collections.api.bag.primitive
Methods in org.eclipse.collections.api.bag.primitive that return ImmutableCharSet Modifier and Type Method Description ImmutableCharSetImmutableCharBag. selectUnique()Returns all elements of the bag that have exactly one occurrence. -
Uses of ImmutableCharSet in org.eclipse.collections.api.factory.set.primitive
Methods in org.eclipse.collections.api.factory.set.primitive that return ImmutableCharSet Modifier and Type Method Description ImmutableCharSetImmutableCharSetFactory. empty()ImmutableCharSetImmutableCharSetFactory. of()Same asImmutableCharSetFactory.empty().ImmutableCharSetImmutableCharSetFactory. of(char one)Same asImmutableCharSetFactory.with(char).ImmutableCharSetImmutableCharSetFactory. of(char... items)Same asImmutableCharSetFactory.with(char[]).ImmutableCharSetImmutableCharSetFactory. ofAll(Iterable<Character> iterable)ImmutableCharSetImmutableCharSetFactory. ofAll(CharIterable items)ImmutableCharSetImmutableCharSetFactory. with()Same asImmutableCharSetFactory.empty().ImmutableCharSetImmutableCharSetFactory. with(char one)ImmutableCharSetImmutableCharSetFactory. with(char... items)ImmutableCharSetImmutableCharSetFactory. withAll(Iterable<Character> iterable)ImmutableCharSetImmutableCharSetFactory. withAll(CharIterable items) -
Uses of ImmutableCharSet in org.eclipse.collections.api.set
Methods in org.eclipse.collections.api.set that return ImmutableCharSet Modifier and Type Method Description ImmutableCharSetImmutableSet. collectChar(CharFunction<? super T> charFunction) -
Uses of ImmutableCharSet in org.eclipse.collections.api.set.primitive
Methods in org.eclipse.collections.api.set.primitive that return ImmutableCharSet Modifier and Type Method Description default ImmutableCharSetImmutableCharSet. difference(CharSet set)Returns the set of all members ofthisthat are not members ofset.default ImmutableCharSetImmutableCharSet. intersect(CharSet set)Returns the set of all objects that are members of boththisandset.ImmutableCharSetImmutableCharSet. newWith(char element)ImmutableCharSetImmutableCharSet. newWithAll(CharIterable elements)ImmutableCharSetImmutableCharSet. newWithout(char element)ImmutableCharSetImmutableCharSet. newWithoutAll(CharIterable elements)ImmutableCharSetImmutableCharSet. reject(CharPredicate predicate)ImmutableCharSetImmutableCharSet. select(CharPredicate predicate)default ImmutableCharSetImmutableCharSet. 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 ImmutableCharSetImmutableCharSet. tap(CharProcedure procedure)ImmutableCharSetCharSet. toImmutable()Returns an immutable copy of this set.ImmutableCharSetMutableCharSet. toImmutable()Returns an immutable copy of this set.default ImmutableCharSetImmutableCharSet. union(CharSet set)
-