Package de.isas.mztab2.model
Enum MsRun.Properties
- java.lang.Object
-
- java.lang.Enum<MsRun.Properties>
-
- de.isas.mztab2.model.MsRun.Properties
-
- All Implemented Interfaces:
Serializable
,Comparable<MsRun.Properties>
- Enclosing class:
- MsRun
public static enum MsRun.Properties extends Enum<MsRun.Properties>
Property enumeration for MsRun.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description format
fragmentationMethod
hash
hashMethod
id
idFormat
instrumentRef
location
name
scanPolarity
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getPropertyName()
static MsRun.Properties
of(String value)
String
toString()
String
toUpper()
static MsRun.Properties
valueOf(String name)
Returns the enum constant of this type with the specified name.static MsRun.Properties[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
id
public static final MsRun.Properties id
-
name
public static final MsRun.Properties name
-
location
public static final MsRun.Properties location
-
instrumentRef
public static final MsRun.Properties instrumentRef
-
format
public static final MsRun.Properties format
-
idFormat
public static final MsRun.Properties idFormat
-
fragmentationMethod
public static final MsRun.Properties fragmentationMethod
-
scanPolarity
public static final MsRun.Properties scanPolarity
-
hash
public static final MsRun.Properties hash
-
hashMethod
public static final MsRun.Properties hashMethod
-
-
Method Detail
-
values
public static MsRun.Properties[] 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 (MsRun.Properties c : MsRun.Properties.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MsRun.Properties 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
-
getPropertyName
public String getPropertyName()
-
toString
public String toString()
- Overrides:
toString
in classEnum<MsRun.Properties>
-
of
public static MsRun.Properties of(String value)
-
-