Package htsjdk.samtools
Enum SAMReadGroupRecord.PlatformValue
- java.lang.Object
-
- java.lang.Enum<SAMReadGroupRecord.PlatformValue>
-
- htsjdk.samtools.SAMReadGroupRecord.PlatformValue
-
- All Implemented Interfaces:
Serializable
,Comparable<SAMReadGroupRecord.PlatformValue>
- Enclosing class:
- SAMReadGroupRecord
public static enum SAMReadGroupRecord.PlatformValue extends Enum<SAMReadGroupRecord.PlatformValue>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SAMReadGroupRecord.PlatformValue
valueOf(String name)
Returns the enum constant of this type with the specified name.static SAMReadGroupRecord.PlatformValue[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BGI
public static final SAMReadGroupRecord.PlatformValue BGI
-
CAPILLARY
public static final SAMReadGroupRecord.PlatformValue CAPILLARY
-
LS454
public static final SAMReadGroupRecord.PlatformValue LS454
-
ILLUMINA
public static final SAMReadGroupRecord.PlatformValue ILLUMINA
-
SOLID
public static final SAMReadGroupRecord.PlatformValue SOLID
-
HELICOS
public static final SAMReadGroupRecord.PlatformValue HELICOS
-
IONTORRENT
public static final SAMReadGroupRecord.PlatformValue IONTORRENT
-
ONT
public static final SAMReadGroupRecord.PlatformValue ONT
-
PACBIO
public static final SAMReadGroupRecord.PlatformValue PACBIO
-
OTHER
public static final SAMReadGroupRecord.PlatformValue OTHER
-
-
Method Detail
-
values
public static SAMReadGroupRecord.PlatformValue[] 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 (SAMReadGroupRecord.PlatformValue c : SAMReadGroupRecord.PlatformValue.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SAMReadGroupRecord.PlatformValue 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
-
-