protected class AbstractMultimap.WrappedSortedKeySet extends AbstractMultimap.WrappedKeySet implements SortedSet<K>
Modifier | Constructor and Description |
---|---|
protected |
AbstractMultimap.WrappedSortedKeySet(SortedMap<K,Collection<V>> wrapped) |
Modifier and Type | Method and Description |
---|---|
Comparator<? super K> |
comparator() |
K |
first() |
SortedSet<K> |
headSet(K toElement) |
K |
last() |
SortedSet<K> |
subSet(K fromElement,
K toElement) |
SortedSet<K> |
tailSet(K fromElement) |
clear, contains, containsAll, iterator, remove, size
equals, hashCode, removeAll
add, addAll, isEmpty, retainAll, toArray, toArray, toString
protected AbstractMultimap.WrappedSortedKeySet(SortedMap<K,Collection<V>> wrapped)
public Comparator<? super K> comparator()
comparator
in interface SortedSet<K>
SortedSet.comparator()
public SortedSet<K> subSet(K fromElement, K toElement)
subSet
in interface SortedSet<K>
SortedSet.subSet(java.lang.Object, java.lang.Object)
public SortedSet<K> headSet(K toElement)
headSet
in interface SortedSet<K>
SortedSet.headSet(java.lang.Object)
public SortedSet<K> tailSet(K fromElement)
tailSet
in interface SortedSet<K>
SortedSet.tailSet(java.lang.Object)
public K first()
first
in interface SortedSet<K>
SortedSet.first()
public K last()
last
in interface SortedSet<K>
SortedSet.last()
Copyright © 2008-2013 JBoss, a division of Red Hat. All Rights Reserved.