Uses of Class
com.github.andrewoma.dexx.collection.TreeSet
-
Packages that use TreeSet Package Description com.github.andrewoma.dexx.collection Dexx collections are a port of Scala's immutable, persistent collection classes to pure Java. -
-
Uses of TreeSet in com.github.andrewoma.dexx.collection
Fields in com.github.andrewoma.dexx.collection declared as TreeSet Modifier and Type Field Description protected static TreeSet
TreeSet. EMPTY
Methods in com.github.andrewoma.dexx.collection that return TreeSet Modifier and Type Method Description @NotNull TreeSet<E>
TreeSet. add(E value)
static <E> @NotNull TreeSet<E>
TreeSet. empty()
@NotNull TreeSet<E>
TreeSet. remove(E value)
Methods in com.github.andrewoma.dexx.collection that return types with arguments of type TreeSet Modifier and Type Method Description static <E> @NotNull BuilderFactory<E,TreeSet<E>>
TreeSet. factory(java.util.Comparator<? super E> ordering)
-