public enum SeparationType extends Enum<SeparationType>
A separation type will usually provide additional information for acquired MsScan
objects. The most common case being a chromatographic separation coupled to a mass spectrometer.
Here, the chromatograph would provide the retention time of each acquired data point as
additional information.
Enum Constant and Description |
---|
CE
Capillary electrophoresis chromatography.
|
GC
Gas chromatography.
|
GCxGC
Comprehensive two-dimensional gas chromatography.
|
IMS
Ion mobility spectrometry.
|
LC
Liquid chromatography.
|
LCxLC
Comprehensive two-dimensional liquid chromatography.
|
UNKNOWN
Unknown separation method.
|
UNKNOWN_2D |
Modifier and Type | Method and Description |
---|---|
int |
getFeatureDimensions()
Return the number of additional features linked to an
MsScan and to |
static SeparationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SeparationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SeparationType GC
public static final SeparationType GCxGC
public static final SeparationType LC
public static final SeparationType LCxLC
public static final SeparationType CE
public static final SeparationType IMS
public static final SeparationType UNKNOWN
public static final SeparationType UNKNOWN_2D
public static SeparationType[] values()
for (SeparationType c : SeparationType.values()) System.out.println(c);
public static SeparationType 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 nullpublic int getFeatureDimensions()
MsScan
and to
For chromatography, the number will be 1 for one-dimensional chromatography, where each data point has a retention time assigned to it.
The number will be 2 for (comprehensive) two-dimensional chromatography, where each data point has two retention times assigned to it.
Copyright © 2019. All rights reserved.