Uses of Interface
com.github.andrewoma.dexx.collection.Set

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
<E> Set<E>
Sets.copyOf(E[] es)
           
static
<E> Set<E>
Sets.copyOf(Iterable<E> iterable)
           
static
<E> Set<E>
Sets.copyOf(Iterator<E> iterator)
           
static
<E> Set<E>
Sets.copyOfTraversable(Traversable<E> traversable)
           
static
<E> Set<E>
Sets.of()
           
static
<E> Set<E>
Sets.of(E t)
           
static
<E> Set<E>
Sets.of(E e1, E e2)
           
static
<E> Set<E>
Sets.of(E e1, E e2, E e3)
           
static
<E> Set<E>
Sets.of(E e1, E e2, E e3, E e4)
           
static
<E> Set<E>
Sets.of(E e1, E e2, E e3, E e4, E e5)
           
static
<E> Set<E>
Sets.of(E e1, E e2, E e3, E e4, E e5, E e6)
           
static
<E> Set<E>
Sets.of(E e1, E e2, E e3, E e4, E e5, E e6, E e7)
           
static
<E> Set<E>
Sets.of(E e1, E e2, E e3, E e4, E e5, E e6, E e7, E e8)
           
static
<E> Set<E>
Sets.of(E e1, E e2, E e3, E e4, E e5, E e6, E e7, E e8, E e9)
           
static
<E> 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> 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)
           
 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
<E> Builder<E,Set<E>>
Sets.builder()
           
static
<E> BuilderFactory<E,Set<E>>
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()
           
 



Copyright © 2014. All Rights Reserved.