Enum ResourceStatus
- java.lang.Object
-
- java.lang.Enum<ResourceStatus>
-
- org.hl7.fhir.r4.model.codesystems.ResourceStatus
-
- All Implemented Interfaces:
Serializable,Comparable<ResourceStatus>
public enum ResourceStatus extends Enum<ResourceStatus>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ABANDONEDThe process described/requested in the resource did not complete - usually due to some workflow error, and no further action is plannedACCEPTEDThe fulfiller has decided to perform the action, and plans are in train to do this in the futureACTIVEThe resource describes information that is currently valid or a process that is presently occuringAHEADOFTARGETAhead of the planned timelinesARRIVEDThe pre-conditions for the action are all fulfilled, and it is imminentBEHINDTARGETBUSYUNAVAILABLEnot available at this time/locationCOMPLETEThe process described/requested in the resource has been completed, and no further action is plannedCONFIRMEDThe information in this resource is approvedDECLINEDThe fulfiller chose not to perform the actionDIFFERENTIALPotentially true?DRAFTThe information in the resource is still being prepared and editedERRORThe resource was created in error, and should not be treated as valid (note: in many cases, for various data integrity related reasons, the information cannot be removed from the record)FAILEDThe process described/requested in the resource could not be completed, and no further action is plannedFREEFree for schedulingHWDISCONThe hardware is disconnectedINACTIVEThe resource describes information that is no longer valid or a process that is stopped occurringNOTREADYBehind the planned timelinesNULLadded to help the parsersONTARGETReady to actPARTIALThis information is still being assembledPLANNEDThe resource describes a course of action that is planned and agreed/approved, but at the time of recording was still futurePROPOSEDThe resource describes an action or plan that is proposed, and not yet approved by the participantsRECEIVEDThe fulfiller has received the request, but not yet agreed to carry out the actionREFUTEDThis information has been ruled out by testing and evaluationREPLACEDThe information in this resource has been replaced by information in another resourceREQUESTEDA fulfiller has been asked to perform this action, but it has not yet occurredRESOLVEDThe issue identified by this resource is no longer of concernSUSPENDEDThe process described/requested in this resource has been halted for some reasonTRANSDUCDISCONThe device transducer is disconnectedUNCONFIRMEDThe information in this resource is not yet approvedUNKNOWNAuthoring system does not know the status
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ResourceStatusfromCode(String codeString)StringgetDefinition()StringgetDisplay()StringgetSystem()StringtoCode()static ResourceStatusvalueOf(String name)Returns the enum constant of this type with the specified name.static ResourceStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ERROR
public static final ResourceStatus ERROR
The resource was created in error, and should not be treated as valid (note: in many cases, for various data integrity related reasons, the information cannot be removed from the record)
-
PROPOSED
public static final ResourceStatus PROPOSED
The resource describes an action or plan that is proposed, and not yet approved by the participants
-
PLANNED
public static final ResourceStatus PLANNED
The resource describes a course of action that is planned and agreed/approved, but at the time of recording was still future
-
DRAFT
public static final ResourceStatus DRAFT
The information in the resource is still being prepared and edited
-
REQUESTED
public static final ResourceStatus REQUESTED
A fulfiller has been asked to perform this action, but it has not yet occurred
-
RECEIVED
public static final ResourceStatus RECEIVED
The fulfiller has received the request, but not yet agreed to carry out the action
-
DECLINED
public static final ResourceStatus DECLINED
The fulfiller chose not to perform the action
-
ACCEPTED
public static final ResourceStatus ACCEPTED
The fulfiller has decided to perform the action, and plans are in train to do this in the future
-
ARRIVED
public static final ResourceStatus ARRIVED
The pre-conditions for the action are all fulfilled, and it is imminent
-
ACTIVE
public static final ResourceStatus ACTIVE
The resource describes information that is currently valid or a process that is presently occuring
-
SUSPENDED
public static final ResourceStatus SUSPENDED
The process described/requested in this resource has been halted for some reason
-
FAILED
public static final ResourceStatus FAILED
The process described/requested in the resource could not be completed, and no further action is planned
-
REPLACED
public static final ResourceStatus REPLACED
The information in this resource has been replaced by information in another resource
-
COMPLETE
public static final ResourceStatus COMPLETE
The process described/requested in the resource has been completed, and no further action is planned
-
INACTIVE
public static final ResourceStatus INACTIVE
The resource describes information that is no longer valid or a process that is stopped occurring
-
ABANDONED
public static final ResourceStatus ABANDONED
The process described/requested in the resource did not complete - usually due to some workflow error, and no further action is planned
-
UNKNOWN
public static final ResourceStatus UNKNOWN
Authoring system does not know the status
-
UNCONFIRMED
public static final ResourceStatus UNCONFIRMED
The information in this resource is not yet approved
-
CONFIRMED
public static final ResourceStatus CONFIRMED
The information in this resource is approved
-
RESOLVED
public static final ResourceStatus RESOLVED
The issue identified by this resource is no longer of concern
-
REFUTED
public static final ResourceStatus REFUTED
This information has been ruled out by testing and evaluation
-
DIFFERENTIAL
public static final ResourceStatus DIFFERENTIAL
Potentially true?
-
PARTIAL
public static final ResourceStatus PARTIAL
This information is still being assembled
-
BUSYUNAVAILABLE
public static final ResourceStatus BUSYUNAVAILABLE
not available at this time/location
-
FREE
public static final ResourceStatus FREE
Free for scheduling
-
ONTARGET
public static final ResourceStatus ONTARGET
Ready to act
-
AHEADOFTARGET
public static final ResourceStatus AHEADOFTARGET
Ahead of the planned timelines
-
BEHINDTARGET
public static final ResourceStatus BEHINDTARGET
-
NOTREADY
public static final ResourceStatus NOTREADY
Behind the planned timelines
-
TRANSDUCDISCON
public static final ResourceStatus TRANSDUCDISCON
The device transducer is disconnected
-
HWDISCON
public static final ResourceStatus HWDISCON
The hardware is disconnected
-
NULL
public static final ResourceStatus NULL
added to help the parsers
-
-
Method Detail
-
values
public static ResourceStatus[] 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 (ResourceStatus c : ResourceStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ResourceStatus 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 ResourceStatus fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-