public enum MgfField extends Enum<MgfField>
Enum Constant and Description |
---|
BEGIN_IONS |
CHARGE |
END_IONS |
PEPMASS |
RTINSECONDS |
TITLE |
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static MgfField |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MgfField[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MgfField BEGIN_IONS
public static final MgfField END_IONS
public static final MgfField TITLE
public static final MgfField PEPMASS
public static final MgfField CHARGE
public static final MgfField RTINSECONDS
public static MgfField[] values()
for (MgfField c : MgfField.values()) System.out.println(c);
public static MgfField 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.