
Package org.hl7.fhir.dstu3.model
Enum NutritionOrder.NutritionOrderStatus
- java.lang.Object
-
- java.lang.Enum<NutritionOrder.NutritionOrderStatus>
-
- org.hl7.fhir.dstu3.model.NutritionOrder.NutritionOrderStatus
-
- All Implemented Interfaces:
Serializable
,Comparable<NutritionOrder.NutritionOrderStatus>
- Enclosing class:
- NutritionOrder
public static enum NutritionOrder.NutritionOrderStatus extends Enum<NutritionOrder.NutritionOrderStatus>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACTIVE
The request is 'actionable', but not all actions that are implied by it have occurred yet.CANCELLED
The request has been withdrawn and is no longer actionable.COMPLETED
All actions that are implied by the order have occurred and no continuation is planned (this will rarely be made explicit).DRAFT
The request is in preliminary form prior to being sent.ENTEREDINERROR
The request was entered in error and voided.NULL
added to help the parsers with the generic typesONHOLD
Actions implied by the request have been temporarily halted, but are expected to continue later.PLANNED
The request has been planned.PROPOSED
The request has been proposed.REQUESTED
The request has been placed.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static NutritionOrder.NutritionOrderStatus
fromCode(String codeString)
String
getDefinition()
String
getDisplay()
String
getSystem()
String
toCode()
static NutritionOrder.NutritionOrderStatus
valueOf(String name)
Returns the enum constant of this type with the specified name.static NutritionOrder.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 NutritionOrder.NutritionOrderStatus PROPOSED
The request has been proposed.
-
DRAFT
public static final NutritionOrder.NutritionOrderStatus DRAFT
The request is in preliminary form prior to being sent.
-
PLANNED
public static final NutritionOrder.NutritionOrderStatus PLANNED
The request has been planned.
-
REQUESTED
public static final NutritionOrder.NutritionOrderStatus REQUESTED
The request has been placed.
-
ACTIVE
public static final NutritionOrder.NutritionOrderStatus ACTIVE
The request is 'actionable', but not all actions that are implied by it have occurred yet.
-
ONHOLD
public static final NutritionOrder.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 NutritionOrder.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 NutritionOrder.NutritionOrderStatus CANCELLED
The request has been withdrawn and is no longer actionable.
-
ENTEREDINERROR
public static final NutritionOrder.NutritionOrderStatus ENTEREDINERROR
The request was entered in error and voided.
-
NULL
public static final NutritionOrder.NutritionOrderStatus NULL
added to help the parsers with the generic types
-
-
Method Detail
-
values
public static NutritionOrder.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 (NutritionOrder.NutritionOrderStatus c : NutritionOrder.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 NutritionOrder.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 NutritionOrder.NutritionOrderStatus fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-