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