Serializable
, Comparable<VariantContext.Type>
public static enum VariantContext.Type extends Enum<VariantContext.Type>
Enum Constant | Description |
---|---|
INDEL |
|
MIXED |
|
MNP |
|
NO_VARIATION |
|
SNP |
|
SYMBOLIC |
Modifier and Type | Method | Description |
---|---|---|
static VariantContext.Type |
valueOf(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(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null