Package de.isas.mztab2.model
Enum CV.Properties
- java.lang.Object
-
- java.lang.Enum<CV.Properties>
-
- de.isas.mztab2.model.CV.Properties
-
- All Implemented Interfaces:
Serializable
,Comparable<CV.Properties>
- Enclosing class:
- CV
public static enum CV.Properties extends Enum<CV.Properties>
Property enumeration for CV.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getPropertyName()
static CV.Properties
of(String value)
String
toString()
String
toUpper()
static CV.Properties
valueOf(String name)
Returns the enum constant of this type with the specified name.static CV.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 CV.Properties id
-
label
public static final CV.Properties label
-
fullName
public static final CV.Properties fullName
-
version
public static final CV.Properties version
-
uri
public static final CV.Properties uri
-
-
Method Detail
-
values
public static CV.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 (CV.Properties c : CV.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 CV.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<CV.Properties>
-
of
public static CV.Properties of(String value)
-
-