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