public enum ComparisonMode extends Enum<ComparisonMode>
| Enum Constant and Description |
|---|
COMPARE_DATES |
COMPARE_DOUBLE_LONGINT |
COMPARE_DOUBLES |
COMPARE_LONGINT_DOUBLE |
COMPARE_LONGINTS |
COMPARE_STRINGS |
| Modifier and Type | Method and Description |
|---|---|
static ComparisonMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ComparisonMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ComparisonMode COMPARE_LONGINTS
public static final ComparisonMode COMPARE_DOUBLES
public static final ComparisonMode COMPARE_LONGINT_DOUBLE
public static final ComparisonMode COMPARE_DOUBLE_LONGINT
public static final ComparisonMode COMPARE_DATES
public static final ComparisonMode COMPARE_STRINGS
public static ComparisonMode[] values()
for (ComparisonMode c : ComparisonMode.values()) System.out.println(c);
public static ComparisonMode 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 nullCopyright © 2017. All Rights Reserved.