Package htsjdk.samtools.cram.lossy
Enum BaseCategoryType
- java.lang.Object
-
- java.lang.Enum<BaseCategoryType>
-
- htsjdk.samtools.cram.lossy.BaseCategoryType
-
- All Implemented Interfaces:
Serializable
,Comparable<BaseCategoryType>
public enum BaseCategoryType extends Enum<BaseCategoryType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description FLANKING_DELETION
INSERTION
LOWER_COVERAGE
MATCH
MISMATCH
PILEUP
-
Method Summary
All Methods Static Methods Concrete Methods 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.
-
-
-
Enum Constant Detail
-
MATCH
public static final BaseCategoryType MATCH
-
MISMATCH
public static final BaseCategoryType MISMATCH
-
FLANKING_DELETION
public static final BaseCategoryType FLANKING_DELETION
-
PILEUP
public static final BaseCategoryType PILEUP
-
LOWER_COVERAGE
public static final BaseCategoryType LOWER_COVERAGE
-
INSERTION
public static final BaseCategoryType INSERTION
-
-
Method Detail
-
values
public static BaseCategoryType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (BaseCategoryType c : BaseCategoryType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BaseCategoryType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-