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 CharBidirectionalIteratoriterator()Returns a type-specific iterator on the elements of this collection.Methods inherited from class AbstractCharSet
equals, hashCode, rem, removeMethods inherited from class AbstractCharCollection
add, add, addAll, addAll, contains, contains, containsAll, containsAll, remove, removeAll, removeAll, retainAll, retainAll, toArray, toCharArray, toCharArray, toStringMethods inherited from interface CharCollection
add, addAll, contains, containsAll, intIterator, intParallelStream, intSpliterator, intStream, parallelStream, removeAll, removeIf, removeIf, removeIf, retainAll, stream, toArray, toCharArray, toCharArrayMethods inherited from interface CharIterable
forEach, forEach, forEachMethods inherited from interface CharSortedSet
comparator, first, firstChar, headSet, headSet, iterator, last, lastChar, spliterator, subSet, subSet, tailSet, tailSetMethods inherited from interface Collection
toArrayMethods inherited from interface Set
add, addAll, clear, contains, containsAll, equals, hashCode, isEmpty, remove, removeAll, retainAll, size, toArray, toArrayMethods inherited from interface SortedSet
addFirst, addLast, getFirst, getLast, removeFirst, removeLast, reversed
-
Method Details
-
iterator
Description copied from interface:CharCollectionReturns a type-specific iterator on the elements of this collection.- Specified by:
iteratorin interfaceCharBidirectionalIterable- Specified by:
iteratorin interfaceCharCollection- Specified by:
iteratorin interfaceCharIterable- Specified by:
iteratorin interfaceCharSet- Specified by:
iteratorin interfaceCharSortedSet- Specified by:
iteratorin interfaceCollection<Character>- Specified by:
iteratorin interfaceIterable<Character>- Specified by:
iteratorin interfaceSet<Character>- Specified by:
iteratorin classAbstractCharSet- Returns:
- a type-specific iterator on the elements of this collection.
- See Also:
-