Enum BusinessPropertyClassifierST
- java.lang.Object
-
- java.lang.Enum<BusinessPropertyClassifierST>
-
- fi.tut.mei.resdescapi.rdapi.model.rd.BusinessPropertyClassifierST
-
- All Implemented Interfaces:
Serializable
,Comparable<BusinessPropertyClassifierST>
public enum BusinessPropertyClassifierST extends Enum<BusinessPropertyClassifierST>
Java class for BusinessPropertyClassifier_ST.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="BusinessPropertyClassifier_ST"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="GENERIC"/> <enumeration value="INVESTMENT"/> <enumeration value="DURING_OP"/> <enumeration value="RESOURCE"/> <enumeration value="PERFORMANCE"/> <enumeration value="CONFIGURATION"/> <enumeration value="MAINTENANCE"/> </restriction> </simpleType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CONFIGURATION
DURING_OP
GENERIC
INVESTMENT
MAINTENANCE
PERFORMANCE
RESOURCE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static BusinessPropertyClassifierST
fromValue(String v)
String
value()
static BusinessPropertyClassifierST
valueOf(String name)
Returns the enum constant of this type with the specified name.static BusinessPropertyClassifierST[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
GENERIC
public static final BusinessPropertyClassifierST GENERIC
-
INVESTMENT
public static final BusinessPropertyClassifierST INVESTMENT
-
DURING_OP
public static final BusinessPropertyClassifierST DURING_OP
-
RESOURCE
public static final BusinessPropertyClassifierST RESOURCE
-
PERFORMANCE
public static final BusinessPropertyClassifierST PERFORMANCE
-
CONFIGURATION
public static final BusinessPropertyClassifierST CONFIGURATION
-
MAINTENANCE
public static final BusinessPropertyClassifierST MAINTENANCE
-
-
Method Detail
-
values
public static BusinessPropertyClassifierST[] 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 (BusinessPropertyClassifierST c : BusinessPropertyClassifierST.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BusinessPropertyClassifierST 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
-
value
public String value()
-
fromValue
public static BusinessPropertyClassifierST fromValue(String v)
-
-