Package org.hl7.fhir.r5.model
Enum NutritionProduct.NutritionProductStatus
- java.lang.Object
-
- java.lang.Enum<NutritionProduct.NutritionProductStatus>
-
- org.hl7.fhir.r5.model.NutritionProduct.NutritionProductStatus
-
- All Implemented Interfaces:
Serializable,Comparable<NutritionProduct.NutritionProductStatus>
- Enclosing class:
- NutritionProduct
public static enum NutritionProduct.NutritionProductStatus extends Enum<NutritionProduct.NutritionProductStatus>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACTIVEThe product can be used.ENTEREDINERRORThis electronic record should never have existed, though it is possible that real-world decisions were based on it.INACTIVEThe product is not expected or allowed to be used.NULLadded to help the parsers with the generic types
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static NutritionProduct.NutritionProductStatusfromCode(String codeString)StringgetDefinition()StringgetDisplay()StringgetSystem()StringtoCode()static NutritionProduct.NutritionProductStatusvalueOf(String name)Returns the enum constant of this type with the specified name.static NutritionProduct.NutritionProductStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ACTIVE
public static final NutritionProduct.NutritionProductStatus ACTIVE
The product can be used.
-
INACTIVE
public static final NutritionProduct.NutritionProductStatus INACTIVE
The product is not expected or allowed to be used.
-
ENTEREDINERROR
public static final NutritionProduct.NutritionProductStatus ENTEREDINERROR
This electronic record should never have existed, though it is possible that real-world decisions were based on it. (If real-world activity has occurred, the status should be \"cancelled\" rather than \"entered-in-error\".).
-
NULL
public static final NutritionProduct.NutritionProductStatus NULL
added to help the parsers with the generic types
-
-
Method Detail
-
values
public static NutritionProduct.NutritionProductStatus[] 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 (NutritionProduct.NutritionProductStatus c : NutritionProduct.NutritionProductStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static NutritionProduct.NutritionProductStatus 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 NutritionProduct.NutritionProductStatus fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-