Package it.unimi.dsi.fastutil.chars
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
public interface CharSet extends CharCollection, Set<Character>
A type-specific
Set; provides some additional methods that use
polymorphism to avoid (un)boxing.
Additionally, this interface strengthens (again) iterator().
- See Also:
Set
-
Method Summary
Modifier and Type Method Description default booleanadd(Character o)Deprecated.Please use the corresponding type-specific method instead.default booleancontains(Object o)Deprecated.Please use the corresponding type-specific method instead.CharIteratoriterator()Returns a type-specific iterator on the elements of this set.static CharSetof(char... a)Creates a new set using a list of elements.default booleanrem(char k)Deprecated.Please useremove()instead.booleanremove(char k)Removes an element from this set.default booleanremove(Object o)Deprecated.Please use the corresponding type-specific method instead.Methods inherited from interface it.unimi.dsi.fastutil.chars.CharCollection
add, addAll, contains, containsAll, removeAll, removeIf, removeIf, retainAll, toArray, toCharArray, toCharArrayMethods inherited from interface it.unimi.dsi.fastutil.chars.CharIterable
forEach, forEachMethods inherited from interface java.util.Collection
parallelStream, stream, toArray
-
Method Details
-
iterator
CharIterator iterator()Returns a type-specific iterator on the elements of this set.Note that 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.- 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:
Iterable.iterator()
-
remove
boolean remove(char k)Removes an element from this set.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.- See Also:
Collection.remove(Object)
-
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:
Collection.remove(Object)
-
of
Creates a new set using a list of elements.- Parameters:
a- a list of elements that will be used to initialize the new set.
-