public enum MS_PrecursorEnergy extends Enum<MS_PrecursorEnergy>
| Enum Constant and Description |
|---|
MS_AcceptAnyPrecursorEnergy
The value of this constant is 1
|
MS_PrecursorEnergyValid
The value of this constant is 0
|
| Modifier and Type | Method and Description |
|---|---|
static MS_PrecursorEnergy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MS_PrecursorEnergy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MS_PrecursorEnergy MS_PrecursorEnergyValid
The value of this constant is 0
public static final MS_PrecursorEnergy MS_AcceptAnyPrecursorEnergy
The value of this constant is 1
public static MS_PrecursorEnergy[] values()
for (MS_PrecursorEnergy c : MS_PrecursorEnergy.values()) System.out.println(c);
public static MS_PrecursorEnergy 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.