public enum MsSpectrumType extends Enum<MsSpectrumType>
Enum Constant and Description |
---|
CENTROIDED
Centroided mass spectrum.
|
PROFILE
Profile (continuous) mass spectrum.
|
THRESHOLDED
Thresholded mass spectrum.
|
Modifier and Type | Method and Description |
---|---|
static MsSpectrumType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MsSpectrumType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MsSpectrumType PROFILE
public static final MsSpectrumType THRESHOLDED
public static final MsSpectrumType CENTROIDED
public static MsSpectrumType[] values()
for (MsSpectrumType c : MsSpectrumType.values()) System.out.println(c);
public static MsSpectrumType 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 © 2019. All rights reserved.