Uses of Interface
com.github.andrewoma.dexx.collection.Set
-
Packages that use Set Package Description com.github.andrewoma.dexx.collection Dexx collections are a port of Scala's immutable, persistent collection classes to pure Java.com.github.andrewoma.dexx.collection.internal.adapter com.github.andrewoma.dexx.collection.internal.base -
-
Uses of Set in com.github.andrewoma.dexx.collection
Subinterfaces of Set in com.github.andrewoma.dexx.collection Modifier and Type Interface Description interfaceSortedSet<E>SortedSetdefines the interface for sets that are sorted.Classes in com.github.andrewoma.dexx.collection that implement Set Modifier and Type Class Description classHashSet<E>HashSetis an implementation ofSetbacked by aHashMap.classTreeSet<E>TreeSetis an implementation ofSortedSetbacked by aTreeMap.Methods in com.github.andrewoma.dexx.collection that return Set Modifier and Type Method Description @NotNull Set<E>Set. add(E value)Returns 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>Sets. copyOf(java.lang.Iterable<E> iterable)static <E> @NotNull Set<E>Sets. copyOf(java.util.Iterator<E> iterator)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)@NotNull Set<E>Set. remove(E value)Removes the specified value from the set if it exists.@NotNull Set<E>Traversable. toSet()Converts this collection to a set.Methods in com.github.andrewoma.dexx.collection that return types with arguments of type Set Modifier and Type Method Description static <E> @NotNull Builder<E,Set<E>>Sets. builder()static <E> @NotNull BuilderFactory<E,Set<E>>Sets. factory() -
Uses of Set in com.github.andrewoma.dexx.collection.internal.adapter
Fields in com.github.andrewoma.dexx.collection.internal.adapter declared as Set Modifier and Type Field Description private Set<E>SetAdapater. setConstructors in com.github.andrewoma.dexx.collection.internal.adapter with parameters of type Set Constructor Description SetAdapater(Set<E> set) -
Uses of Set in com.github.andrewoma.dexx.collection.internal.base
Classes in com.github.andrewoma.dexx.collection.internal.base that implement Set Modifier and Type Class Description classAbstractSet<E>classAbstractSortedSet<E>Methods in com.github.andrewoma.dexx.collection.internal.base that return Set Modifier and Type Method Description @NotNull Set<E>AbstractTraversable. toSet()
-