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