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