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