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