|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use Set | |
|---|---|
| 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 | |
|---|---|
interface |
SortedSet<E>
SortedSet defines the interface for sets that are sorted. |
| Classes in com.github.andrewoma.dexx.collection that implement Set | |
|---|---|
class |
HashSet<E>
HashSet is an implementation of Set backed by a HashMap. |
class |
TreeSet<E>
TreeSet is an implementation of SortedSet backed by a TreeMap. |
| Methods in com.github.andrewoma.dexx.collection that return Set | ||
|---|---|---|
Set<E> |
Set.add(E value)
Returns a set that adds the specified value if it doesn't already exist in this set. |
|
static
|
Sets.copyOf(E[] es)
|
|
static
|
Sets.copyOf(Iterable<E> iterable)
|
|
static
|
Sets.copyOf(Iterator<E> iterator)
|
|
static
|
Sets.copyOfTraversable(Traversable<E> traversable)
|
|
static
|
Sets.of()
|
|
static
|
Sets.of(E t)
|
|
static
|
Sets.of(E e1,
E e2)
|
|
static
|
Sets.of(E e1,
E e2,
E e3)
|
|
static
|
Sets.of(E e1,
E e2,
E e3,
E e4)
|
|
static
|
Sets.of(E e1,
E e2,
E e3,
E e4,
E e5)
|
|
static
|
Sets.of(E e1,
E e2,
E e3,
E e4,
E e5,
E e6)
|
|
static
|
Sets.of(E e1,
E e2,
E e3,
E e4,
E e5,
E e6,
E e7)
|
|
static
|
Sets.of(E e1,
E e2,
E e3,
E e4,
E e5,
E e6,
E e7,
E e8)
|
|
static
|
Sets.of(E e1,
E e2,
E e3,
E e4,
E e5,
E e6,
E e7,
E e8,
E e9)
|
|
static
|
Sets.of(E e1,
E e2,
E e3,
E e4,
E e5,
E e6,
E e7,
E e8,
E e9,
E e10)
|
|
static
|
Sets.of(E e1,
E e2,
E e3,
E e4,
E e5,
E e6,
E e7,
E e8,
E e9,
E e10,
E... others)
|
|
Set<E> |
Set.remove(E value)
Removes the specified value from the set if it exists. |
|
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 | ||
|---|---|---|
static
|
Sets.builder()
|
|
static
|
Sets.factory()
|
|
| Uses of Set in com.github.andrewoma.dexx.collection.internal.adapter |
|---|
| Constructors in com.github.andrewoma.dexx.collection.internal.adapter with parameters of type Set | |
|---|---|
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 | |
|---|---|
class |
AbstractSet<E>
|
class |
AbstractSortedSet<E>
|
| Methods in com.github.andrewoma.dexx.collection.internal.base that return Set | |
|---|---|
Set<E> |
AbstractTraversable.toSet()
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||