Package org.n52.shetland.aqd
Enum AqdConstants.AssessmentType
- java.lang.Object
-
- java.lang.Enum<AqdConstants.AssessmentType>
-
- org.n52.shetland.aqd.AqdConstants.AssessmentType
-
- All Implemented Interfaces:
Serializable,Comparable<AqdConstants.AssessmentType>
- Enclosing interface:
- AqdConstants
public static enum AqdConstants.AssessmentType extends Enum<AqdConstants.AssessmentType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description FixedInteractiveModelObjective
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AqdConstants.AssessmentTypefrom(String v)static AqdConstants.AssessmentTypefromConceptURI(String v)static AqdConstants.AssessmentTypefromId(String v)StringgetConceptURI()StringgetId()static AqdConstants.AssessmentTypevalueOf(String name)Returns the enum constant of this type with the specified name.static AqdConstants.AssessmentType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Fixed
public static final AqdConstants.AssessmentType Fixed
-
Interactive
public static final AqdConstants.AssessmentType Interactive
-
Model
public static final AqdConstants.AssessmentType Model
-
Objective
public static final AqdConstants.AssessmentType Objective
-
-
Method Detail
-
values
public static AqdConstants.AssessmentType[] 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 (AqdConstants.AssessmentType c : AqdConstants.AssessmentType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AqdConstants.AssessmentType 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
-
getId
public String getId()
-
getConceptURI
public String getConceptURI()
-
from
public static AqdConstants.AssessmentType from(String v)
-
fromConceptURI
public static AqdConstants.AssessmentType fromConceptURI(String v)
-
fromId
public static AqdConstants.AssessmentType fromId(String v)
-
-