public enum MsScanType extends Enum<MsScanType>
Enum Constant and Description |
---|
DIA
Data Independent Acquisition (DIA) scan.
|
FULLMS
Full MS scan.
|
MRM_SRM
Multiple Reaction Monitoring (MRM) or Selected Reaction Monitoring (SRM) scan.
|
MSMS
Fragmentation (tandem MS, or MS/MS) scan.
|
SIM
Single ion monitoring (SIM) scan.
|
UNKNOWN
Unknown MS scan type.
|
Modifier and Type | Method and Description |
---|---|
static MsScanType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MsScanType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MsScanType FULLMS
public static final MsScanType MSMS
public static final MsScanType SIM
public static final MsScanType MRM_SRM
public static final MsScanType DIA
public static final MsScanType UNKNOWN
public static MsScanType[] values()
for (MsScanType c : MsScanType.values()) System.out.println(c);
public static MsScanType 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.