Enum NutritionOrderStatus
- java.lang.Object
-
- java.lang.Enum<NutritionOrderStatus>
-
- org.hl7.fhir.dstu2016may.model.codesystems.NutritionOrderStatus
-
- All Implemented Interfaces:
Serializable,Comparable<NutritionOrderStatus>
public enum NutritionOrderStatus extends Enum<NutritionOrderStatus>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACTIVEThe request is 'actionable', but not all actions that are implied by it have occurred yet.CANCELLEDThe request has been withdrawn and is no longer actionable.COMPLETEDAll actions that are implied by the order have occurred and no continuation is planned (this will rarely be made explicit).DRAFTThe request is in preliminary form prior to being sent.ENTEREDINERRORThe request was entered in error and voided.NULLadded to help the parsersONHOLDActions implied by the request have been temporarily halted, but are expected to continue later.PLANNEDThe request has been planned.PROPOSEDThe request has been proposed.REQUESTEDThe request has been placed.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static NutritionOrderStatusfromCode(String codeString)StringgetDefinition()StringgetDisplay()StringgetSystem()StringtoCode()static NutritionOrderStatusvalueOf(String name)Returns the enum constant of this type with the specified name.static NutritionOrderStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PROPOSED
public static final NutritionOrderStatus PROPOSED
The request has been proposed.
-
DRAFT
public static final NutritionOrderStatus DRAFT
The request is in preliminary form prior to being sent.
-
PLANNED
public static final NutritionOrderStatus PLANNED
The request has been planned.
-
REQUESTED
public static final NutritionOrderStatus REQUESTED
The request has been placed.
-
ACTIVE
public static final NutritionOrderStatus ACTIVE
The request is 'actionable', but not all actions that are implied by it have occurred yet.
-
ONHOLD
public static final NutritionOrderStatus ONHOLD
Actions implied by the request have been temporarily halted, but are expected to continue later. May also be called "suspended".
-
COMPLETED
public static final NutritionOrderStatus COMPLETED
All actions that are implied by the order have occurred and no continuation is planned (this will rarely be made explicit).
-
CANCELLED
public static final NutritionOrderStatus CANCELLED
The request has been withdrawn and is no longer actionable.
-
ENTEREDINERROR
public static final NutritionOrderStatus ENTEREDINERROR
The request was entered in error and voided.
-
NULL
public static final NutritionOrderStatus NULL
added to help the parsers
-
-
Method Detail
-
values
public static NutritionOrderStatus[] 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 (NutritionOrderStatus c : NutritionOrderStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static NutritionOrderStatus 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 NutritionOrderStatus fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-