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