Serializable, Comparable<ReadCategoryType>public enum ReadCategoryType extends Enum<ReadCategoryType>
| Enum Constant | Description |
|---|---|
ALL |
|
HIGHER_MAPPING_SCORE |
|
LOWER_MAPPING_SCORE |
|
UNPLACED |
| Modifier and Type | Method | Description |
|---|---|---|
static ReadCategoryType |
valueOf(String name) |
Returns the enum constant of this type with the specified name.
|
static ReadCategoryType[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReadCategoryType UNPLACED
public static final ReadCategoryType HIGHER_MAPPING_SCORE
public static final ReadCategoryType LOWER_MAPPING_SCORE
public static final ReadCategoryType ALL
public static ReadCategoryType[] values()
for (ReadCategoryType c : ReadCategoryType.values()) System.out.println(c);
public static ReadCategoryType 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