Interface Ordered<T>
- Type Parameters:
T- Component type
- All Known Subinterfaces:
BitSet<T>, SortedMap<K,V>, SortedMultimap<K, V>, SortedSet<T>
- All Known Implementing Classes:
BitSetModule.AbstractBitSet, BitSetModule.BitSet1, BitSetModule.BitSet2, BitSetModule.BitSetN, PriorityQueue, TreeMap, TreeMultimap, TreeSet
public interface Ordered<T>
An ordered collection interface.
-
Method Summary
Modifier and TypeMethodDescriptionReturns the comparator which defines the order of the elements contained in this collection.
-
Method Details
-
comparator
Comparator<T> comparator()Returns the comparator which defines the order of the elements contained in this collection.- Returns:
- The comparator that defines the order of this collection's elements.
-