public static enum Phenotype.Type extends Enum<Phenotype.Type>
| Enum Constant and Description |
|---|
CATEGORIZATION |
FREQUENCY |
SEQUENCE |
SYSTEM |
VALUE_THRESHOLD |
| Modifier and Type | Method and Description |
|---|---|
static Phenotype.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Phenotype.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Phenotype.Type CATEGORIZATION
public static final Phenotype.Type SEQUENCE
public static final Phenotype.Type FREQUENCY
public static final Phenotype.Type VALUE_THRESHOLD
public static final Phenotype.Type SYSTEM
public static Phenotype.Type[] values()
for (Phenotype.Type c : Phenotype.Type.values()) System.out.println(c);
public static Phenotype.Type 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 © 2016–2019 Emory University. All rights reserved.