public static enum CompareTablesQuery.Mode extends Enum<CompareTablesQuery.Mode>
Enum Constant and Description |
---|
ABSOLUTE |
DIFF_RATIO_TO_FIRST |
DIFF_RATIO_TO_PREVIOUS |
DIFF_TO_FIRST |
DIFF_TO_PREVIOUS |
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static CompareTablesQuery.Mode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CompareTablesQuery.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CompareTablesQuery.Mode ABSOLUTE
public static final CompareTablesQuery.Mode DIFF_TO_FIRST
public static final CompareTablesQuery.Mode DIFF_TO_PREVIOUS
public static final CompareTablesQuery.Mode DIFF_RATIO_TO_FIRST
public static final CompareTablesQuery.Mode DIFF_RATIO_TO_PREVIOUS
public static CompareTablesQuery.Mode[] values()
for (CompareTablesQuery.Mode c : CompareTablesQuery.Mode.values()) System.out.println(c);
public static CompareTablesQuery.Mode 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<CompareTablesQuery.Mode>