public enum PeaksCompression extends Enum<PeaksCompression>
| Enum Constant and Description |
|---|
NONE
No compression.
|
NUMPRESS_LINPRED
MSNumPress compression - linear prediction.
|
NUMPRESS_POSINT
MSNumPress compression - positive integer.
|
NUMPRESS_SHLOGF
MSNumPress compression - short logged float.
|
ZLIB
Zlib compression.
|
| Modifier and Type | Method and Description |
|---|---|
static PeaksCompression |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PeaksCompression[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PeaksCompression NONE
public static final PeaksCompression ZLIB
public static final PeaksCompression NUMPRESS_LINPRED
public static final PeaksCompression NUMPRESS_POSINT
public static final PeaksCompression NUMPRESS_SHLOGF
public static PeaksCompression[] values()
for (PeaksCompression c : PeaksCompression.values()) System.out.println(c);
public static PeaksCompression 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 © 2017. All rights reserved.