public static enum EnumAllele.Height extends java.lang.Enum<EnumAllele.Height> implements IAlleleValue<java.lang.Float>
| Enum Constant and Description |
|---|
AVERAGE |
GIGANTIC |
LARGE |
LARGER |
LARGEST |
SMALL |
SMALLER |
SMALLEST |
| Modifier and Type | Method and Description |
|---|---|
java.lang.Float |
getValue() |
boolean |
isDominant() |
static EnumAllele.Height |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumAllele.Height[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumAllele.Height SMALLEST
public static final EnumAllele.Height SMALLER
public static final EnumAllele.Height SMALL
public static final EnumAllele.Height AVERAGE
public static final EnumAllele.Height LARGE
public static final EnumAllele.Height LARGER
public static final EnumAllele.Height LARGEST
public static final EnumAllele.Height GIGANTIC
public static EnumAllele.Height[] values()
for (EnumAllele.Height c : EnumAllele.Height.values()) System.out.println(c);
public static EnumAllele.Height 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>