Enum PurposeOfUse
- java.lang.Object
-
- java.lang.Enum<PurposeOfUse>
-
- org.openehealth.ipf.commons.ihe.xacml20.model.PurposeOfUse
-
- All Implemented Interfaces:
Serializable,Comparable<PurposeOfUse>
public enum PurposeOfUse extends Enum<PurposeOfUse>
- Author:
- Dmytro Rud
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static PurposeOfUsefromCode(CE code)CEgetCode()static PurposeOfUsevalueOf(String name)Returns the enum constant of this type with the specified name.static PurposeOfUse[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NORMAL
public static final PurposeOfUse NORMAL
-
EMERGENCY
public static final PurposeOfUse EMERGENCY
-
AUTO
public static final PurposeOfUse AUTO
-
-
Method Detail
-
values
public static PurposeOfUse[] 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 (PurposeOfUse c : PurposeOfUse.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PurposeOfUse 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
-
fromCode
public static PurposeOfUse fromCode(CE code)
-
getCode
public CE getCode()
-
-