public static enum MzmlFileIterator.Precision extends Enum<MzmlFileIterator.Precision>
Enum Constant and Description |
---|
FLOAT32BIT
Corresponds to the PSI-MS ontology term "MS:1000521" / "32-bit float"
and binary data will be represented in the Java primitive: float
|
FLOAT64BIT
Corresponds to the PSI-MS ontology term "MS:1000523" / "64-bit float"
and binary data will be represented in the Java primitive: double
|
INT32BIT
Corresponds to the PSI-MS ontology term "MS:1000519" / "32-bit
integer" and binary data will be represented in the Java primitive:
int
|
INT64BIT
Corresponds to the PSI-MS ontology term "MS:1000522" / "64-bit
integer" and binary data will be represented in the Java primitive:
long
|
NTSTRING
Corresponds to the PSI-MS ontology term "MS:1001479" /
"null-terminated ASCII string" and binary data will be represented in
the Java type: String
|
Modifier and Type | Method and Description |
---|---|
static MzmlFileIterator.Precision |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MzmlFileIterator.Precision[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MzmlFileIterator.Precision FLOAT32BIT
public static final MzmlFileIterator.Precision FLOAT64BIT
public static final MzmlFileIterator.Precision INT32BIT
public static final MzmlFileIterator.Precision INT64BIT
public static final MzmlFileIterator.Precision NTSTRING
public static MzmlFileIterator.Precision[] values()
for (MzmlFileIterator.Precision c : MzmlFileIterator.Precision.values()) System.out.println(c);
public static MzmlFileIterator.Precision valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2021. All rights reserved.