public static enum Judgment.Classification extends Enum<Judgment.Classification>
| Enum Constant and Description |
|---|
Benign |
Pathogenic |
VOUS |
| Modifier and Type | Method and Description |
|---|---|
static Judgment.Classification |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Judgment.Classification[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Judgment.Classification Benign
public static final Judgment.Classification Pathogenic
public static final Judgment.Classification VOUS
public static Judgment.Classification[] values()
for (Judgment.Classification c : Judgment.Classification.values()) System.out.println(c);
public static Judgment.Classification 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 nullCopyright © 2017. All rights reserved.