Package it.unimi.dsi.fastutil.chars
Class AbstractCharSortedSet
java.lang.Object
java.util.AbstractCollection<Character>
it.unimi.dsi.fastutil.chars.AbstractCharCollection
it.unimi.dsi.fastutil.chars.AbstractCharSet
it.unimi.dsi.fastutil.chars.AbstractCharSortedSet
- All Implemented Interfaces:
CharBidirectionalIterable
,CharCollection
,CharIterable
,CharSet
,CharSortedSet
,Cloneable
,Iterable<Character>
,Collection<Character>
,SequencedCollection<Character>
,SequencedSet<Character>
,Set<Character>
,SortedSet<Character>
- Direct Known Subclasses:
CharAVLTreeSet
,CharLinkedOpenCustomHashSet
,CharLinkedOpenHashSet
,CharRBTreeSet
An abstract class providing basic methods for sorted sets implementing a type-specific interface.
-
Method Summary
Modifier and TypeMethodDescriptionabstract CharBidirectionalIterator
iterator()
Returns a type-specific iterator on the elements of this collection.Methods inherited from class it.unimi.dsi.fastutil.chars.AbstractCharSet
equals, hashCode, rem, remove
Methods inherited from class it.unimi.dsi.fastutil.chars.AbstractCharCollection
add, add, addAll, addAll, contains, contains, containsAll, containsAll, remove, removeAll, removeAll, retainAll, retainAll, toArray, toCharArray, toCharArray, toString
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, toCharArray
Methods inherited from interface it.unimi.dsi.fastutil.chars.CharIterable
forEach, forEach, forEach
Methods inherited from interface it.unimi.dsi.fastutil.chars.CharSet
add, contains, rem, remove, remove
Methods inherited from interface it.unimi.dsi.fastutil.chars.CharSortedSet
comparator, first, firstChar, headSet, headSet, iterator, last, lastChar, spliterator, subSet, subSet, tailSet, tailSet
Methods inherited from interface java.util.Collection
toArray
Methods inherited from interface java.util.Set
add, addAll, clear, contains, containsAll, equals, hashCode, isEmpty, remove, removeAll, retainAll, size, toArray, toArray
Methods inherited from interface java.util.SortedSet
addFirst, addLast, getFirst, getLast, removeFirst, removeLast, reversed
-
Method Details
-
iterator
Description copied from interface:CharCollection
Returns a type-specific iterator on the elements of this collection.- Specified by:
iterator
in interfaceCharBidirectionalIterable
- Specified by:
iterator
in interfaceCharCollection
- Specified by:
iterator
in interfaceCharIterable
- Specified by:
iterator
in interfaceCharSet
- Specified by:
iterator
in interfaceCharSortedSet
- Specified by:
iterator
in interfaceCollection<Character>
- Specified by:
iterator
in interfaceIterable<Character>
- Specified by:
iterator
in interfaceSet<Character>
- Specified by:
iterator
in classAbstractCharSet
- Returns:
- a type-specific iterator on the elements of this collection.
- See Also:
-