public static enum CompareTablesQuery.Operation extends Enum<CompareTablesQuery.Operation>
Enum Constant and Description |
---|
ALL |
DIFFERENCE |
INTERSECTION |
NONE |
SYMMETRIC_DIFFERENCE |
UNION |
Modifier and Type | Method and Description |
---|---|
static CompareTablesQuery.Operation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CompareTablesQuery.Operation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CompareTablesQuery.Operation NONE
public static final CompareTablesQuery.Operation ALL
public static final CompareTablesQuery.Operation INTERSECTION
public static final CompareTablesQuery.Operation UNION
public static final CompareTablesQuery.Operation SYMMETRIC_DIFFERENCE
public static final CompareTablesQuery.Operation DIFFERENCE
public static CompareTablesQuery.Operation[] values()
for (CompareTablesQuery.Operation c : CompareTablesQuery.Operation.values()) System.out.println(c);
public static CompareTablesQuery.Operation 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 null