Package org.hl7.fhir.utilities
Enum Utilities.DecimalStatus
- java.lang.Object
-
- java.lang.Enum<Utilities.DecimalStatus>
-
- org.hl7.fhir.utilities.Utilities.DecimalStatus
-
- All Implemented Interfaces:
Serializable,Comparable<Utilities.DecimalStatus>
- Enclosing class:
- Utilities
public static enum Utilities.DecimalStatus extends Enum<Utilities.DecimalStatus>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Utilities.DecimalStatusvalueOf(String name)Returns the enum constant of this type with the specified name.static Utilities.DecimalStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BLANK
public static final Utilities.DecimalStatus BLANK
-
SYNTAX
public static final Utilities.DecimalStatus SYNTAX
-
RANGE
public static final Utilities.DecimalStatus RANGE
-
OK
public static final Utilities.DecimalStatus OK
-
-
Method Detail
-
values
public static Utilities.DecimalStatus[] 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 (Utilities.DecimalStatus c : Utilities.DecimalStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Utilities.DecimalStatus 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
-
-