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