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