public enum MS_IonizationMode extends Enum<MS_IonizationMode>
| Enum Constant and Description |
|---|
MS_AcceptAnyIonizationMode
The value of this constant is 10
|
MS_AtmosphericPressureChemicalIonization
The value of this constant is 4
|
MS_ChemicalIonization
The value of this constant is 1
|
MS_ElectronImpact
The value of this constant is 0
|
MS_Electrospray
The value of this constant is 3
|
MS_FastAtomBombardment
The value of this constant is 2
|
MS_FieldDesorption
The value of this constant is 7
|
MS_GlowDischarge
The value of this constant is 9
|
MS_MatrixAssistedLaserDesorptionIonization
The value of this constant is 8
|
MS_Nanospray
The value of this constant is 5
|
MS_Thermospray
The value of this constant is 6
|
| Modifier and Type | Method and Description |
|---|---|
static MS_IonizationMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MS_IonizationMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MS_IonizationMode MS_ElectronImpact
The value of this constant is 0
public static final MS_IonizationMode MS_ChemicalIonization
The value of this constant is 1
public static final MS_IonizationMode MS_FastAtomBombardment
The value of this constant is 2
public static final MS_IonizationMode MS_Electrospray
The value of this constant is 3
public static final MS_IonizationMode MS_AtmosphericPressureChemicalIonization
The value of this constant is 4
public static final MS_IonizationMode MS_Nanospray
The value of this constant is 5
public static final MS_IonizationMode MS_Thermospray
The value of this constant is 6
public static final MS_IonizationMode MS_FieldDesorption
The value of this constant is 7
public static final MS_IonizationMode MS_MatrixAssistedLaserDesorptionIonization
The value of this constant is 8
public static final MS_IonizationMode MS_GlowDischarge
The value of this constant is 9
public static final MS_IonizationMode MS_AcceptAnyIonizationMode
The value of this constant is 10
public static MS_IonizationMode[] values()
for (MS_IonizationMode c : MS_IonizationMode.values()) System.out.println(c);
public static MS_IonizationMode 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.