Package it.unimi.dsi.fastutil.chars
Class AbstractCharSortedSet
java.lang.Object
java.util.AbstractCollection<java.lang.Character>
it.unimi.dsi.fastutil.chars.AbstractCharCollection
it.unimi.dsi.fastutil.chars.AbstractCharSet
it.unimi.dsi.fastutil.chars.AbstractCharSortedSet
- All Implemented Interfaces:
CharBidirectionalIterable,CharCollection,it.unimi.dsi.fastutil.chars.CharIterable,CharSet,CharSortedSet,java.lang.Cloneable,java.lang.Iterable<java.lang.Character>,java.util.Collection<java.lang.Character>,java.util.Set<java.lang.Character>,java.util.SortedSet<java.lang.Character>
- Direct Known Subclasses:
CharAVLTreeSet,CharLinkedOpenCustomHashSet,CharLinkedOpenHashSet,CharRBTreeSet
public abstract class AbstractCharSortedSet extends AbstractCharSet implements CharSortedSet
An abstract class providing basic methods for sorted sets implementing a type-specific interface.
-
Method Summary
Modifier and Type Method Description abstract CharBidirectionalIteratoriterator()Returns a type-specific iterator on the elements of this collection.Methods inherited from class it.unimi.dsi.fastutil.chars.AbstractCharSet
equals, hashCode, rem, removeMethods 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, toStringMethods inherited from class java.util.AbstractCollection
clear, isEmpty, size, toArray, toArrayMethods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, waitMethods 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 it.unimi.dsi.fastutil.chars.CharSet
add, contains, rem, remove, removeMethods inherited from interface it.unimi.dsi.fastutil.chars.CharSortedSet
comparator, first, firstChar, headSet, headSet, iterator, last, lastChar, spliterator, subSet, subSet, tailSet, tailSetMethods inherited from interface java.util.Collection
toArrayMethods inherited from interface java.util.Set
add, addAll, clear, contains, containsAll, equals, hashCode, isEmpty, remove, removeAll, retainAll, size, toArray, toArray
-
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 interfaceit.unimi.dsi.fastutil.chars.CharIterable- Specified by:
iteratorin interfaceCharSet- Specified by:
iteratorin interfaceCharSortedSet- Specified by:
iteratorin interfacejava.util.Collection<java.lang.Character>- Specified by:
iteratorin interfacejava.lang.Iterable<java.lang.Character>- Specified by:
iteratorin interfacejava.util.Set<java.lang.Character>- Specified by:
iteratorin classAbstractCharSet- Returns:
- a type-specific iterator on the elements of this collection.
-