Package htsjdk.samtools.cram.structure
Enum Class DataSeriesType
- All Implemented Interfaces:
Serializable
,Comparable<DataSeriesType>
,Constable
Data series types known to CRAM.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionA single signed byte (256 distinct values)An array of bytes.A signed integer ~4 billions of them.A signed long value, 64 bits, too many to count. -
Method Summary
Modifier and TypeMethodDescriptionstatic DataSeriesType
Returns the enum constant of this class with the specified name.static DataSeriesType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
BYTE
A single signed byte (256 distinct values) -
INT
A signed integer ~4 billions of them. -
LONG
A signed long value, 64 bits, too many to count. -
BYTE_ARRAY
An array of bytes.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-