Uses of Interface
com.github.andrewoma.dexx.collection.Set
Packages that use Set
Package
Description
Dexx collections are a port of Scala's immutable, persistent collection classes to pure Java.
-
Uses of Set in com.github.andrewoma.dexx.collection
Subinterfaces of Set in com.github.andrewoma.dexx.collectionModifier and TypeInterfaceDescriptioninterface
SortedSet<E>
SortedSet
defines the interface for sets that are sorted.Classes in com.github.andrewoma.dexx.collection that implement SetModifier and TypeClassDescriptionclass
HashSet<E>
HashSet
is an implementation ofSet
backed by aHashMap
.class
TreeSet<E>
TreeSet
is an implementation ofSortedSet
backed by aTreeMap
.Methods in com.github.andrewoma.dexx.collection that return SetModifier and TypeMethodDescriptionReturns a set that adds the specified value if it doesn't already exist in this set.private static <E> Set
<E> Sets.construct
(E... es) static <E> @NotNull Set
<E> Sets.copyOf
(E[] es) static <E> @NotNull Set
<E> static <E> @NotNull Set
<E> static <E> @NotNull Set
<E> Sets.copyOfTraversable
(Traversable<E> traversable) static <E> @NotNull Set
<E> Sets.of()
static <E> @NotNull Set
<E> Sets.of
(E t) static <E> @NotNull Set
<E> Sets.of
(E e1, E e2) static <E> @NotNull Set
<E> Sets.of
(E e1, E e2, E e3) static <E> @NotNull Set
<E> Sets.of
(E e1, E e2, E e3, E e4) static <E> @NotNull Set
<E> Sets.of
(E e1, E e2, E e3, E e4, E e5) static <E> @NotNull Set
<E> Sets.of
(E e1, E e2, E e3, E e4, E e5, E e6) static <E> @NotNull Set
<E> Sets.of
(E e1, E e2, E e3, E e4, E e5, E e6, E e7) static <E> @NotNull Set
<E> Sets.of
(E e1, E e2, E e3, E e4, E e5, E e6, E e7, E e8) static <E> @NotNull Set
<E> Sets.of
(E e1, E e2, E e3, E e4, E e5, E e6, E e7, E e8, E e9) static <E> @NotNull Set
<E> Sets.of
(E e1, E e2, E e3, E e4, E e5, E e6, E e7, E e8, E e9, E e10) static <E> @NotNull Set
<E> Sets.of
(E e1, E e2, E e3, E e4, E e5, E e6, E e7, E e8, E e9, E e10, E... others) Removes the specified value from the set if it exists.Traversable.toSet()
Converts this collection to a set.Methods in com.github.andrewoma.dexx.collection that return types with arguments of type Set -
Uses of Set in com.github.andrewoma.dexx.collection.internal.adapter
Fields in com.github.andrewoma.dexx.collection.internal.adapter declared as SetConstructors in com.github.andrewoma.dexx.collection.internal.adapter with parameters of type Set -
Uses of Set in com.github.andrewoma.dexx.collection.internal.base
Classes in com.github.andrewoma.dexx.collection.internal.base that implement SetMethods in com.github.andrewoma.dexx.collection.internal.base that return Set