public enum ResultStrength extends java.lang.Enum<ResultStrength>
| Modifier and Type | Method and Description |
|---|---|
static ResultStrength |
toEnum(java.lang.String value)
Converts a string to a enum.
|
java.lang.String |
toString() |
static ResultStrength |
valueOf(java.lang.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(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String toString()
toString in class java.lang.Enum<ResultStrength>public static ResultStrength toEnum(@NotNull java.lang.String value)
value - the value to convert