| Methods in com.github.andrewoma.dexx.collection that return SortedSet |
SortedSet<E> |
SortedSet.add(E value)
|
static
|
SortedSets.copyOf(Comparator<? super E> comparator,
E[] es)
|
static
|
SortedSets.copyOf(Comparator<? super E> comparator,
Iterable<E> iterable)
|
static
|
SortedSets.copyOf(Comparator<? super E> comparator,
Iterator<E> iterator)
|
static
|
SortedSets.copyOf(Comparator<? super E> comparator,
Traversable<E> traversable)
|
static
|
SortedSets.copyOf(E[] es)
|
static
|
SortedSets.copyOf(Iterable<E> iterable)
|
static
|
SortedSets.copyOf(Iterator<E> iterator)
|
static
|
SortedSets.copyOfTraversable(Comparator<? super E> comparator,
Traversable<E> traversable)
|
static
|
SortedSets.copyOfTraversable(Traversable<E> traversable)
|
SortedSet<E> |
SortedSet.drop(int number)
Returns a set containing all elements in this set, excluding the first number of elements. |
SortedSet<E> |
TreeSet.drop(int number)
|
SortedSet<E> |
SortedSet.from(E value,
boolean inclusive)
Returns the bottom of the set starting from the key specified. |
SortedSet<E> |
TreeSet.from(E value,
boolean inclusive)
|
static
|
SortedSets.of()
|
static
|
SortedSets.of(Comparator<? super E> comparator)
|
static
|
SortedSets.of(Comparator<? super E> comparator,
E e)
|
static
|
SortedSets.of(Comparator<? super E> comparator,
E e1,
E e2)
|
static
|
SortedSets.of(Comparator<? super E> comparator,
E e1,
E e2,
E e3)
|
static
|
SortedSets.of(Comparator<? super E> comparator,
E e1,
E e2,
E e3,
E e4)
|
static
|
SortedSets.of(Comparator<? super E> comparator,
E e1,
E e2,
E e3,
E e4,
E e5)
|
static
|
SortedSets.of(Comparator<? super E> comparator,
E e1,
E e2,
E e3,
E e4,
E e5,
E e6)
|
static
|
SortedSets.of(Comparator<? super E> comparator,
E e1,
E e2,
E e3,
E e4,
E e5,
E e6,
E e7)
|
static
|
SortedSets.of(Comparator<? super E> comparator,
E e1,
E e2,
E e3,
E e4,
E e5,
E e6,
E e7,
E e8)
|
static
|
SortedSets.of(Comparator<? super E> comparator,
E e1,
E e2,
E e3,
E e4,
E e5,
E e6,
E e7,
E e8,
E e9)
|
static
|
SortedSets.of(Comparator<? super E> comparator,
E e1,
E e2,
E e3,
E e4,
E e5,
E e6,
E e7,
E e8,
E e9,
E e10)
|
static
|
SortedSets.of(Comparator<? super E> comparator,
E e1,
E e2,
E e3,
E e4,
E e5,
E e6,
E e7,
E e8,
E e9,
E e10,
E... others)
|
static
|
SortedSets.of(E e)
|
static
|
SortedSets.of(E e1,
E e2)
|
static
|
SortedSets.of(E e1,
E e2,
E e3)
|
static
|
SortedSets.of(E e1,
E e2,
E e3,
E e4)
|
static
|
SortedSets.of(E e1,
E e2,
E e3,
E e4,
E e5)
|
static
|
SortedSets.of(E e1,
E e2,
E e3,
E e4,
E e5,
E e6)
|
static
|
SortedSets.of(E e1,
E e2,
E e3,
E e4,
E e5,
E e6,
E e7)
|
static
|
SortedSets.of(E e1,
E e2,
E e3,
E e4,
E e5,
E e6,
E e7,
E e8)
|
static
|
SortedSets.of(E e1,
E e2,
E e3,
E e4,
E e5,
E e6,
E e7,
E e8,
E e9)
|
static
|
SortedSets.of(E e1,
E e2,
E e3,
E e4,
E e5,
E e6,
E e7,
E e8,
E e9,
E e10)
|
static
|
SortedSets.of(E e1,
E e2,
E e3,
E e4,
E e5,
E e6,
E e7,
E e8,
E e9,
E e10,
E... others)
|
SortedSet<E> |
SortedSet.range(E from,
boolean fromInclusive,
E to,
boolean toInclusive)
Returns a subset of the set between the from and to keys specified. |
SortedSet<E> |
TreeSet.range(E from,
boolean fromInclusive,
E to,
boolean toInclusive)
|
SortedSet<E> |
SortedSet.remove(E value)
|
SortedSet<E> |
SortedSet.take(int number)
Returns a set containing the first number of elements from this set. |
SortedSet<E> |
TreeSet.take(int number)
|
SortedSet<E> |
SortedSet.to(E value,
boolean inclusive)
Returns the top of the set up until the key specified. |
SortedSet<E> |
TreeSet.to(E value,
boolean inclusive)
|
SortedSet<E> |
Traversable.toSortedSet(Comparator<? super E> comparator)
Converts this collection to a sorted set. |