|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectcom.github.andrewoma.dexx.collection.SortedSets
public class SortedSets
SortedSets is the preferred method of constructing instances of SortedSet.
TreeSet is currently constructed in
all cases, however this may change in the future.
SortedSets is preferred for construction as:
TreeSets)
| Method Summary | ||
|---|---|---|
static
|
builder()
|
|
static
|
builder(Comparator<? super E> comparator)
|
|
static
|
copyOf(Comparator<? super E> comparator,
E[] es)
|
|
static
|
copyOf(Comparator<? super E> comparator,
Iterable<E> iterable)
|
|
static
|
copyOf(Comparator<? super E> comparator,
Iterator<E> iterator)
|
|
static
|
copyOf(Comparator<? super E> comparator,
Traversable<E> traversable)
|
|
static
|
copyOf(E[] es)
|
|
static
|
copyOf(Iterable<E> iterable)
|
|
static
|
copyOf(Iterator<E> iterator)
|
|
static
|
copyOfTraversable(Comparator<? super E> comparator,
Traversable<E> traversable)
|
|
static
|
copyOfTraversable(Traversable<E> traversable)
|
|
static
|
factory()
|
|
static
|
factory(Comparator<? super E> comparator)
|
|
static
|
of()
|
|
static
|
of(Comparator<? super E> comparator)
|
|
static
|
of(Comparator<? super E> comparator,
E e)
|
|
static
|
of(Comparator<? super E> comparator,
E e1,
E e2)
|
|
static
|
of(Comparator<? super E> comparator,
E e1,
E e2,
E e3)
|
|
static
|
of(Comparator<? super E> comparator,
E e1,
E e2,
E e3,
E e4)
|
|
static
|
of(Comparator<? super E> comparator,
E e1,
E e2,
E e3,
E e4,
E e5)
|
|
static
|
of(Comparator<? super E> comparator,
E e1,
E e2,
E e3,
E e4,
E e5,
E e6)
|
|
static
|
of(Comparator<? super E> comparator,
E e1,
E e2,
E e3,
E e4,
E e5,
E e6,
E e7)
|
|
static
|
of(Comparator<? super E> comparator,
E e1,
E e2,
E e3,
E e4,
E e5,
E e6,
E e7,
E e8)
|
|
static
|
of(Comparator<? super E> comparator,
E e1,
E e2,
E e3,
E e4,
E e5,
E e6,
E e7,
E e8,
E e9)
|
|
static
|
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
|
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
|
of(E e)
|
|
static
|
of(E e1,
E e2)
|
|
static
|
of(E e1,
E e2,
E e3)
|
|
static
|
of(E e1,
E e2,
E e3,
E e4)
|
|
static
|
of(E e1,
E e2,
E e3,
E e4,
E e5)
|
|
static
|
of(E e1,
E e2,
E e3,
E e4,
E e5,
E e6)
|
|
static
|
of(E e1,
E e2,
E e3,
E e4,
E e5,
E e6,
E e7)
|
|
static
|
of(E e1,
E e2,
E e3,
E e4,
E e5,
E e6,
E e7,
E e8)
|
|
static
|
of(E e1,
E e2,
E e3,
E e4,
E e5,
E e6,
E e7,
E e8,
E e9)
|
|
static
|
of(E e1,
E e2,
E e3,
E e4,
E e5,
E e6,
E e7,
E e8,
E e9,
E e10)
|
|
static
|
of(E e1,
E e2,
E e3,
E e4,
E e5,
E e6,
E e7,
E e8,
E e9,
E e10,
E... others)
|
|
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Method Detail |
|---|
@NotNull public static <E extends Comparable<? super E>> SortedSet<E> of()
@NotNull public static <E extends Comparable<? super E>> SortedSet<E> of(E e)
@NotNull
public static <E extends Comparable<? super E>> SortedSet<E> of(E e1,
E e2)
@NotNull
public static <E extends Comparable<? super E>> SortedSet<E> of(E e1,
E e2,
E e3)
@NotNull
public static <E extends Comparable<? super E>> SortedSet<E> of(E e1,
E e2,
E e3,
E e4)
@NotNull
public static <E extends Comparable<? super E>> SortedSet<E> of(E e1,
E e2,
E e3,
E e4,
E e5)
@NotNull
public static <E extends Comparable<? super E>> SortedSet<E> of(E e1,
E e2,
E e3,
E e4,
E e5,
E e6)
@NotNull
public static <E extends Comparable<? super E>> SortedSet<E> of(E e1,
E e2,
E e3,
E e4,
E e5,
E e6,
E e7)
@NotNull
public static <E extends Comparable<? super E>> SortedSet<E> of(E e1,
E e2,
E e3,
E e4,
E e5,
E e6,
E e7,
E e8)
@NotNull
public static <E extends Comparable<? super E>> SortedSet<E> of(E e1,
E e2,
E e3,
E e4,
E e5,
E e6,
E e7,
E e8,
E e9)
@NotNull
public static <E extends Comparable<? super E>> SortedSet<E> of(E e1,
E e2,
E e3,
E e4,
E e5,
E e6,
E e7,
E e8,
E e9,
E e10)
@NotNull
public static <E extends Comparable<? super E>> SortedSet<E> of(E e1,
E e2,
E e3,
E e4,
E e5,
E e6,
E e7,
E e8,
E e9,
E e10,
E... others)
@NotNull public static <E extends Comparable<? super E>> SortedSet<E> of(Comparator<? super E> comparator)
@NotNull
public static <E extends Comparable<? super E>> SortedSet<E> of(Comparator<? super E> comparator,
E e)
@NotNull
public static <E extends Comparable<? super E>> SortedSet<E> of(Comparator<? super E> comparator,
E e1,
E e2)
@NotNull
public static <E extends Comparable<? super E>> SortedSet<E> of(Comparator<? super E> comparator,
E e1,
E e2,
E e3)
@NotNull
public static <E extends Comparable<? super E>> SortedSet<E> of(Comparator<? super E> comparator,
E e1,
E e2,
E e3,
E e4)
@NotNull
public static <E extends Comparable<? super E>> SortedSet<E> of(Comparator<? super E> comparator,
E e1,
E e2,
E e3,
E e4,
E e5)
@NotNull
public static <E extends Comparable<? super E>> SortedSet<E> of(Comparator<? super E> comparator,
E e1,
E e2,
E e3,
E e4,
E e5,
E e6)
@NotNull
public static <E extends Comparable<? super E>> SortedSet<E> of(Comparator<? super E> comparator,
E e1,
E e2,
E e3,
E e4,
E e5,
E e6,
E e7)
@NotNull
public static <E extends Comparable<? super E>> SortedSet<E> of(Comparator<? super E> comparator,
E e1,
E e2,
E e3,
E e4,
E e5,
E e6,
E e7,
E e8)
@NotNull
public static <E extends Comparable<? super E>> SortedSet<E> of(Comparator<? super E> comparator,
E e1,
E e2,
E e3,
E e4,
E e5,
E e6,
E e7,
E e8,
E e9)
@NotNull
public static <E extends Comparable<? super E>> SortedSet<E> 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)
@NotNull
public static <E extends Comparable<? super E>> SortedSet<E> 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)
@NotNull public static <E> SortedSet<E> copyOf(Iterable<E> iterable)
@NotNull public static <E> SortedSet<E> copyOf(Iterator<E> iterator)
@NotNull public static <E> SortedSet<E> copyOf(E[] es)
@NotNull
public static <E> SortedSet<E> copyOf(Comparator<? super E> comparator,
E[] es)
@NotNull
public static <E> SortedSet<E> copyOf(Comparator<? super E> comparator,
Iterable<E> iterable)
@NotNull
public static <E> SortedSet<E> copyOf(Comparator<? super E> comparator,
Iterator<E> iterator)
@NotNull
public static <E> SortedSet<E> copyOf(Comparator<? super E> comparator,
Traversable<E> traversable)
@NotNull public static <E> SortedSet<E> copyOfTraversable(Traversable<E> traversable)
@NotNull
public static <E> SortedSet<E> copyOfTraversable(Comparator<? super E> comparator,
Traversable<E> traversable)
@NotNull public static <E> BuilderFactory<E,SortedSet<E>> factory()
@NotNull public static <E> BuilderFactory<E,SortedSet<E>> factory(Comparator<? super E> comparator)
@NotNull public static <E> Builder<E,SortedSet<E>> builder()
@NotNull public static <E> Builder<E,SortedSet<E>> builder(Comparator<? super E> comparator)
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||