public enum ResultStrength extends Enum<ResultStrength>
| Modifier and Type | Method and Description |
|---|---|
static ResultStrength |
toEnum(String value)
Converts a string to a enum.
|
String |
toString() |
static ResultStrength |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ResultStrength[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ResultStrength HIGH
public static final ResultStrength LOW
public static final ResultStrength NO_MATCH
public static final ResultStrength NO_DATA
public static ResultStrength[] values()
for (ResultStrength c : ResultStrength.values()) System.out.println(c);
public static ResultStrength 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<ResultStrength>public static ResultStrength toEnum(@NotNull String value)
value - the value to convert