|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectedu.stanford.nlp.util.Sets
public class Sets
Utilities for sets.
Method Summary | ||
---|---|---|
static
|
cross(Set<E> s1,
Set<F> s2)
Returns the set cross product of s1 and s2, as Pair s |
|
static
|
diff(Set<E> s1,
Set<E> s2)
Returns the difference of sets s1 and s2. |
|
static
|
intersection(Set<E> s1,
Set<E> s2)
Returns the intersection of sets s1 and s2. |
|
static void |
main(String[] args)
|
|
static
|
powerSet(Set<E> s)
Returns the powerset (the set of all subsets) of set s. |
|
static
|
union(Set<E> s1,
Set<E> s2)
Returns the union of sets s1 and s2. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method Detail |
---|
public static <E,F> Set<Pair<E,F>> cross(Set<E> s1, Set<F> s2)
Pair
s
public static <E> Set<E> diff(Set<E> s1, Set<E> s2)
public static <E> Set<E> union(Set<E> s1, Set<E> s2)
public static <E> Set<E> intersection(Set<E> s1, Set<E> s2)
public static <E> Set<Set<E>> powerSet(Set<E> s)
public static void main(String[] args)
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |