public static enum EnumAllele.Maturation extends java.lang.Enum<EnumAllele.Maturation> implements IAlleleValue<java.lang.Integer>
| Enum Constant and Description |
|---|
AVERAGE |
FAST |
FASTER |
FASTEST |
SLOW |
SLOWER |
SLOWEST |
| Modifier and Type | Method and Description |
|---|---|
java.lang.Integer |
getValue() |
boolean |
isDominant() |
static EnumAllele.Maturation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumAllele.Maturation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumAllele.Maturation SLOWEST
public static final EnumAllele.Maturation SLOWER
public static final EnumAllele.Maturation SLOW
public static final EnumAllele.Maturation AVERAGE
public static final EnumAllele.Maturation FAST
public static final EnumAllele.Maturation FASTER
public static final EnumAllele.Maturation FASTEST
public static EnumAllele.Maturation[] values()
for (EnumAllele.Maturation c : EnumAllele.Maturation.values()) System.out.println(c);
public static EnumAllele.Maturation 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.Integer getValue()
getValue in interface IAlleleValue<java.lang.Integer>public boolean isDominant()
isDominant in interface IAlleleValue<java.lang.Integer>