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