public static enum CompareTablesPane.SetopOption extends Enum<CompareTablesPane.SetopOption>
Enum Constant and Description |
---|
ALL |
DIFFERENCE |
INTERSECTION |
NONE |
REVERSE_DIFFERENCE |
SYMMETRIC_DIFFERENCE |
UNION |
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static CompareTablesPane.SetopOption |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CompareTablesPane.SetopOption[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CompareTablesPane.SetopOption NONE
public static final CompareTablesPane.SetopOption ALL
public static final CompareTablesPane.SetopOption INTERSECTION
public static final CompareTablesPane.SetopOption UNION
public static final CompareTablesPane.SetopOption SYMMETRIC_DIFFERENCE
public static final CompareTablesPane.SetopOption DIFFERENCE
public static final CompareTablesPane.SetopOption REVERSE_DIFFERENCE
public static CompareTablesPane.SetopOption[] values()
for (CompareTablesPane.SetopOption c : CompareTablesPane.SetopOption.values()) System.out.println(c);
public static CompareTablesPane.SetopOption valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic String toString()
toString
in class Enum<CompareTablesPane.SetopOption>