Enum NutritionRequestStatus
- java.lang.Object
-
- java.lang.Enum<NutritionRequestStatus>
-
- org.hl7.fhir.dstu3.model.codesystems.NutritionRequestStatus
-
- All Implemented Interfaces:
Serializable,Comparable<NutritionRequestStatus>
public enum NutritionRequestStatus extends Enum<NutritionRequestStatus>
-
-
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 NutritionRequestStatusfromCode(String codeString)StringgetDefinition()StringgetDisplay()StringgetSystem()StringtoCode()static NutritionRequestStatusvalueOf(String name)Returns the enum constant of this type with the specified name.static NutritionRequestStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PROPOSED
public static final NutritionRequestStatus PROPOSED
The request has been proposed.
-
DRAFT
public static final NutritionRequestStatus DRAFT
The request is in preliminary form prior to being sent.
-
PLANNED
public static final NutritionRequestStatus PLANNED
The request has been planned.
-
REQUESTED
public static final NutritionRequestStatus REQUESTED
The request has been placed.
-
ACTIVE
public static final NutritionRequestStatus ACTIVE
The request is 'actionable', but not all actions that are implied by it have occurred yet.
-
ONHOLD
public static final NutritionRequestStatus 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 NutritionRequestStatus 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 NutritionRequestStatus CANCELLED
The request has been withdrawn and is no longer actionable.
-
ENTEREDINERROR
public static final NutritionRequestStatus ENTEREDINERROR
The request was entered in error and voided.
-
NULL
public static final NutritionRequestStatus NULL
added to help the parsers
-
-
Method Detail
-
values
public static NutritionRequestStatus[] 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 (NutritionRequestStatus c : NutritionRequestStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static NutritionRequestStatus 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 NutritionRequestStatus fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-