public static enum VcfAllele.PrimaryType extends java.lang.Enum<VcfAllele.PrimaryType>
| Enum Constant and Description |
|---|
BREAKPOINT |
DELETED |
MULTI_BASE |
NO_VARIATION |
SINGLE_BASE |
SYMBOLIC |
| Modifier and Type | Method and Description |
|---|---|
static VcfAllele.PrimaryType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static VcfAllele.PrimaryType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VcfAllele.PrimaryType SINGLE_BASE
public static final VcfAllele.PrimaryType MULTI_BASE
public static final VcfAllele.PrimaryType SYMBOLIC
public static final VcfAllele.PrimaryType BREAKPOINT
public static final VcfAllele.PrimaryType DELETED
public static final VcfAllele.PrimaryType NO_VARIATION
public static VcfAllele.PrimaryType[] values()
for (VcfAllele.PrimaryType c : VcfAllele.PrimaryType.values()) System.out.println(c);
public static VcfAllele.PrimaryType 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 null