Serializable
, Comparable<BaseCategoryType>
public enum BaseCategoryType extends Enum<BaseCategoryType>
Enum Constant | Description |
---|---|
FLANKING_DELETION |
|
INSERTION |
|
LOWER_COVERAGE |
|
MATCH |
|
MISMATCH |
|
PILEUP |
Modifier and Type | Method | Description |
---|---|---|
static BaseCategoryType |
valueOf(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(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