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