Package picard.sam.SamErrorMetric
Enum ReadBaseStratification.LongShortHomopolymer
- java.lang.Object
-
- java.lang.Enum<ReadBaseStratification.LongShortHomopolymer>
-
- picard.sam.SamErrorMetric.ReadBaseStratification.LongShortHomopolymer
-
- All Implemented Interfaces:
Serializable
,Comparable<ReadBaseStratification.LongShortHomopolymer>
- Enclosing class:
- ReadBaseStratification
public static enum ReadBaseStratification.LongShortHomopolymer extends Enum<ReadBaseStratification.LongShortHomopolymer>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description LONG_HOMOPOLYMER
SHORT_HOMOPOLYMER
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ReadBaseStratification.LongShortHomopolymer
valueOf(String name)
Returns the enum constant of this type with the specified name.static ReadBaseStratification.LongShortHomopolymer[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SHORT_HOMOPOLYMER
public static final ReadBaseStratification.LongShortHomopolymer SHORT_HOMOPOLYMER
-
LONG_HOMOPOLYMER
public static final ReadBaseStratification.LongShortHomopolymer LONG_HOMOPOLYMER
-
-
Method Detail
-
values
public static ReadBaseStratification.LongShortHomopolymer[] 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 (ReadBaseStratification.LongShortHomopolymer c : ReadBaseStratification.LongShortHomopolymer.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ReadBaseStratification.LongShortHomopolymer 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
-
-