Interface CharSet
- All Superinterfaces:
CharCollection,CharIterable,Collection<Character>,Iterable<Character>,Set<Character>
- All Known Subinterfaces:
CharSortedSet
- All Known Implementing Classes:
AbstractCharSet,AbstractCharSortedSet,CharArraySet,CharAVLTreeSet,CharLinkedOpenCustomHashSet,CharLinkedOpenHashSet,CharOpenCustomHashSet,CharOpenHashSet,CharRBTreeSet,CharSets.EmptySet,CharSets.Singleton,CharSets.SynchronizedSet,CharSets.UnmodifiableSet,CharSortedSets.EmptySet,CharSortedSets.Singleton,CharSortedSets.SynchronizedSortedSet,CharSortedSets.UnmodifiableSortedSet
A type-specific
Set; provides some additional methods that use polymorphism to avoid
(un)boxing.
Additionally, this interface strengthens (again) iterator().
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptiondefault booleanDeprecated.Please use the corresponding type-specific method instead.default booleanDeprecated.Please use the corresponding type-specific method instead.iterator()Returns a type-specific iterator on the elements of this set.static CharSetof()Returns an immutable empty set.static CharSetof(char e) Returns an immutable set with the element given.static CharSetof(char... a) Returns an immutable list with the elements given.static CharSetof(char e0, char e1) Returns an immutable set with the elements given.static CharSetof(char e0, char e1, char e2) Returns an immutable set with the elements given.default booleanrem(char k) Deprecated.Please useremove()instead.booleanremove(char k) Removes an element from this set.default booleanDeprecated.Please use the corresponding type-specific method instead.default CharSpliteratorReturns a type-specific spliterator on the elements of this set.Methods inherited from interface it.unimi.dsi.fastutil.chars.CharCollection
add, addAll, contains, containsAll, intIterator, intParallelStream, intSpliterator, intStream, parallelStream, removeAll, removeIf, removeIf, removeIf, retainAll, stream, toArray, toCharArray, toCharArrayMethods inherited from interface it.unimi.dsi.fastutil.chars.CharIterable
forEach, forEach, forEachMethods inherited from interface java.util.Collection
toArray
-
Method Details
-
iterator
CharIterator iterator()Returns a type-specific iterator on the elements of this set.- Specified by:
iteratorin interfaceCharCollection- Specified by:
iteratorin interfaceCharIterable- Specified by:
iteratorin interfaceCollection<Character>- Specified by:
iteratorin interfaceIterable<Character>- Specified by:
iteratorin interfaceSet<Character>- Returns:
- a type-specific iterator on the elements of this set.
- See Also:
- API Notes:
- This specification strengthens the one given in
Iterable.iterator(), which was already strengthened in the corresponding type-specific class, but was weakened by the fact that this interface extendsSet.Also, this is generally the only
iteratormethod subclasses should override.
-
spliterator
Returns a type-specific spliterator on the elements of this set.Set spliterators must report at least
Spliterator.DISTINCT.See
Set.spliterator()for more documentation on the requirements of the returned spliterator.- Specified by:
spliteratorin interfaceCharCollection- Specified by:
spliteratorin interfaceCharIterable- Specified by:
spliteratorin interfaceCollection<Character>- Specified by:
spliteratorin interfaceIterable<Character>- Specified by:
spliteratorin interfaceSet<Character>- Returns:
- a type-specific spliterator on the elements of this collection.
- Since:
- 8.5.0
- API Notes:
- This specification strengthens the one given in
Collection.spliterator(), which was already strengthened in the corresponding type-specific class, but was weakened by the fact that this interface extendsSet.Also, this is generally the only
spliteratormethod subclasses should override. - Implementation Specification:
- The default implementation returns a late-binding spliterator (see
Spliteratorfor documentation on what binding policies mean) that wraps this instance's type specificiterator().Additionally, it reports
Spliterator.SIZEDandSpliterator.DISTINCT. - Implementation Notes:
- As this default implementation wraps the iterator, and
Iteratoris an inherently linear API, the returned spliterator will yield limited performance gains when run in parallel contexts, as the returned spliterator'strySplit()will have linear runtime.
-
remove
boolean remove(char k) Removes an element from this set.- See Also:
- API Notes:
- Note that the corresponding method of a type-specific collection is
rem(). This unfortunate situation is caused by the clash with the similarly named index-based method in theListinterface.
-
remove
Deprecated.Please use the corresponding type-specific method instead.- Specified by:
removein interfaceCharCollection- Specified by:
removein interfaceCollection<Character>- Specified by:
removein interfaceSet<Character>
-
add
Deprecated.Please use the corresponding type-specific method instead.- Specified by:
addin interfaceCharCollection- Specified by:
addin interfaceCollection<Character>- Specified by:
addin interfaceSet<Character>
-
contains
Deprecated.Please use the corresponding type-specific method instead.- Specified by:
containsin interfaceCharCollection- Specified by:
containsin interfaceCollection<Character>- Specified by:
containsin interfaceSet<Character>
-
rem
Deprecated.Please useremove()instead.Removes an element from this set.This method is inherited from the type-specific collection this type-specific set is based on, but it should not used as this interface reinstates
remove()as removal method.- Specified by:
remin interfaceCharCollection- See Also:
-
of
-
of
Returns an immutable set with the element given.- Parameters:
e- an element.- Returns:
- an immutable set containing
e.
-
of
Returns an immutable set with the elements given.- Parameters:
e0- the first element.e1- the second element.- Returns:
- an immutable set containing
e0ande1. - Throws:
IllegalArgumentException- if there were duplicate entries.
-
of
Returns an immutable set with the elements given.- Parameters:
e0- the first element.e1- the second element.e2- the third element.- Returns:
- an immutable set containing
e0,e1, ande2. - Throws:
IllegalArgumentException- if there were duplicate entries.
-
of
Returns an immutable list with the elements given.- Parameters:
a- the list of elements that will be in the final set.- Returns:
- an immutable set containing the elements in
a. - Throws:
IllegalArgumentException- if there are any duplicate entries.
-