public enum ChromatogramType extends Enum<ChromatogramType>
| Enum Constant and Description |
|---|
BPC
Base peak chromatogram (BPC).
|
MRM_SRM
Multiple Reaction Monitoring (MRM) or Selected Reaction Monitoring (SRM).
|
SIC
Single ion current (SIC) chromatogram.
|
TIC
Total ion current (TIC) chromatogram.
|
UNKNOWN
Unknown chromatogram type.
|
XIC
Extracted-ion chromatogram (XIC).
|
| Modifier and Type | Method and Description |
|---|---|
static ChromatogramType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ChromatogramType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChromatogramType TIC
public static final ChromatogramType BPC
public static final ChromatogramType XIC
public static final ChromatogramType SIC
public static final ChromatogramType MRM_SRM
public static final ChromatogramType UNKNOWN
public static ChromatogramType[] values()
for (ChromatogramType c : ChromatogramType.values()) System.out.println(c);
public static ChromatogramType 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.