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>,Set<Character>,SortedSet<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, contains, contains, containsAll, remove, removeAll, retainAll, toArray, toCharArray, toCharArray, toStringMethods inherited from class java.util.AbstractCollection
addAll, clear, containsAll, isEmpty, removeAll, retainAll, size, toArray, toArrayMethods 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.CharSet
add, contains, rem, remove, removeMethods inherited from interface it.unimi.dsi.fastutil.chars.CharSortedSet
comparator, first, firstChar, headSet, headSet, iterator, last, lastChar, subSet, subSet, tailSet, tailSet
-
Method Details
-
iterator
Description copied from interface:CharCollectionReturns a type-specific iterator on the elements of this collection.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 extendsCollection.- 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:
Iterable.iterator()
-