public enum VariantType extends Enum<VariantType>
| Modifier and Type | Method and Description |
|---|---|
static VariantType |
getVariantTypeFromOrdinal(int ordinal)
Gets the enum for a given ordinal
|
static VariantType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VariantType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VariantType SNP
public static final VariantType insertion
public static final VariantType deletion
public static VariantType[] values()
for (VariantType c : VariantType.values()) System.out.println(c);
public static VariantType 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 nullpublic static VariantType getVariantTypeFromOrdinal(int ordinal)
ordinal -