public enum ActivationType extends Enum<ActivationType>
Enum Constant and Description |
---|
CID
Collision-induced dissociation.
|
ECD
Electron-capture dissociation.
|
ETD
Electron-transfer dissociation.
|
ETHCD
Electron-transfer and higher-energy collision dissociation.
|
HCD
Higher-energy C-trap dissociation.
|
UNKNOWN
Unknown MS/MS experiment type.
|
UVPD
Ultraviolet photodissociation.
|
Modifier and Type | Method and Description |
---|---|
static ActivationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ActivationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ActivationType CID
public static final ActivationType HCD
public static final ActivationType ECD
public static final ActivationType ETD
public static final ActivationType ETHCD
public static final ActivationType UVPD
public static final ActivationType UNKNOWN
public static ActivationType[] values()
for (ActivationType c : ActivationType.values()) System.out.println(c);
public static ActivationType 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.