Package picard.illumina.parser.readers
Enum TileMetricsOutReader.TileMetricsVersion
- java.lang.Object
-
- java.lang.Enum<TileMetricsOutReader.TileMetricsVersion>
-
- picard.illumina.parser.readers.TileMetricsOutReader.TileMetricsVersion
-
- All Implemented Interfaces:
Serializable
,Comparable<TileMetricsOutReader.TileMetricsVersion>
- Enclosing class:
- TileMetricsOutReader
public static enum TileMetricsOutReader.TileMetricsVersion extends Enum<TileMetricsOutReader.TileMetricsVersion>
-
-
Field Summary
Fields Modifier and Type Field Description int
version
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TileMetricsOutReader.TileMetricsVersion
findByKey(int i)
static TileMetricsOutReader.TileMetricsVersion
valueOf(String name)
Returns the enum constant of this type with the specified name.static TileMetricsOutReader.TileMetricsVersion[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TWO
public static final TileMetricsOutReader.TileMetricsVersion TWO
-
THREE
public static final TileMetricsOutReader.TileMetricsVersion THREE
-
-
Method Detail
-
values
public static TileMetricsOutReader.TileMetricsVersion[] 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 (TileMetricsOutReader.TileMetricsVersion c : TileMetricsOutReader.TileMetricsVersion.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TileMetricsOutReader.TileMetricsVersion 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
-
findByKey
public static TileMetricsOutReader.TileMetricsVersion findByKey(int i)
-
-