Enum V3ActStatus
- java.lang.Object
-
- java.lang.Enum<V3ActStatus>
-
- org.hl7.fhir.r4.model.codesystems.V3ActStatus
-
- All Implemented Interfaces:
Serializable,Comparable<V3ActStatus>
public enum V3ActStatus extends Enum<V3ActStatus>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ABORTEDThe Act has been terminated prior to the originally intended completion.ACTIVEThe Act can be performed or is being performedCANCELLEDThe Act has been abandoned before activation.COMPLETEDAn Act that has terminated normally after all of its constituents have been performed.HELDAn Act that is still in the preparatory stages has been put aside.NEWAn Act that is in the preparatory stages and may not yet be acted uponNORMALEncompasses the expected states of an Act, but excludes "nullified" and "obsolete" which represent unusual terminal states for the life-cycle.NULLadded to help the parsersNULLIFIEDThis Act instance was created in error and has been 'removed' and is treated as though it never existed.OBSOLETEThis Act instance has been replaced by a new instance.SUSPENDEDAn Act that has been activated (actions could or have been performed against it), but has been temporarily disabled.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static V3ActStatusfromCode(String codeString)StringgetDefinition()StringgetDisplay()StringgetSystem()StringtoCode()static V3ActStatusvalueOf(String name)Returns the enum constant of this type with the specified name.static V3ActStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NORMAL
public static final V3ActStatus NORMAL
Encompasses the expected states of an Act, but excludes "nullified" and "obsolete" which represent unusual terminal states for the life-cycle.
-
ABORTED
public static final V3ActStatus ABORTED
The Act has been terminated prior to the originally intended completion.
-
ACTIVE
public static final V3ActStatus ACTIVE
The Act can be performed or is being performed
-
CANCELLED
public static final V3ActStatus CANCELLED
The Act has been abandoned before activation.
-
COMPLETED
public static final V3ActStatus COMPLETED
An Act that has terminated normally after all of its constituents have been performed.
-
HELD
public static final V3ActStatus HELD
An Act that is still in the preparatory stages has been put aside. No action can occur until the Act is released.
-
NEW
public static final V3ActStatus NEW
An Act that is in the preparatory stages and may not yet be acted upon
-
SUSPENDED
public static final V3ActStatus SUSPENDED
An Act that has been activated (actions could or have been performed against it), but has been temporarily disabled. No further action should be taken against it until it is released
-
NULLIFIED
public static final V3ActStatus NULLIFIED
This Act instance was created in error and has been 'removed' and is treated as though it never existed. A record is retained for audit purposes only.
-
OBSOLETE
public static final V3ActStatus OBSOLETE
This Act instance has been replaced by a new instance.
-
NULL
public static final V3ActStatus NULL
added to help the parsers
-
-
Method Detail
-
values
public static V3ActStatus[] 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 (V3ActStatus c : V3ActStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static V3ActStatus 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 V3ActStatus fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-