Package de.isas.mztab2.model
Enum SmallMoleculeSummary.PrefixEnum
- java.lang.Object
-
- java.lang.Enum<SmallMoleculeSummary.PrefixEnum>
-
- de.isas.mztab2.model.SmallMoleculeSummary.PrefixEnum
-
- All Implemented Interfaces:
Serializable
,Comparable<SmallMoleculeSummary.PrefixEnum>
- Enclosing class:
- SmallMoleculeSummary
public static enum SmallMoleculeSummary.PrefixEnum extends Enum<SmallMoleculeSummary.PrefixEnum>
The small molecule table row prefix. SML MUST be used for rows of the small molecule table.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description SML
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SmallMoleculeSummary.PrefixEnum
fromValue(String text)
String
getValue()
String
toString()
static SmallMoleculeSummary.PrefixEnum
valueOf(String name)
Returns the enum constant of this type with the specified name.static SmallMoleculeSummary.PrefixEnum[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SML
public static final SmallMoleculeSummary.PrefixEnum SML
-
-
Method Detail
-
values
public static SmallMoleculeSummary.PrefixEnum[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (SmallMoleculeSummary.PrefixEnum c : SmallMoleculeSummary.PrefixEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SmallMoleculeSummary.PrefixEnum valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
toString
public String toString()
- Overrides:
toString
in classEnum<SmallMoleculeSummary.PrefixEnum>
-
fromValue
public static SmallMoleculeSummary.PrefixEnum fromValue(String text)
-
-