Package org.hl7.fhir.r4.model
Enum ChargeItem.ChargeItemStatus
- java.lang.Object
-
- java.lang.Enum<ChargeItem.ChargeItemStatus>
-
- org.hl7.fhir.r4.model.ChargeItem.ChargeItemStatus
-
- All Implemented Interfaces:
Serializable,Comparable<ChargeItem.ChargeItemStatus>
- Enclosing class:
- ChargeItem
public static enum ChargeItem.ChargeItemStatus extends Enum<ChargeItem.ChargeItemStatus>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ABORTEDThe processing of the charge was aborted.BILLABLEThe charge item is ready for billing.BILLEDThe charge item has been billed (e.g.ENTEREDINERRORThe charge item has been entered in error and should not be processed for billing.NOTBILLABLEThe charge item has been determined to be not billable (e.g.NULLadded to help the parsers with the generic typesPLANNEDThe charge item has been entered, but the charged service is not yet complete, so it shall not be billed yet but might be used in the context of pre-authorization.UNKNOWNThe authoring system does not know which of the status values currently applies for this charge item Note: This concept is not to be used for "other" - one of the listed statuses is presumed to apply, it's just not known which one.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ChargeItem.ChargeItemStatusfromCode(String codeString)StringgetDefinition()StringgetDisplay()StringgetSystem()StringtoCode()static ChargeItem.ChargeItemStatusvalueOf(String name)Returns the enum constant of this type with the specified name.static ChargeItem.ChargeItemStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PLANNED
public static final ChargeItem.ChargeItemStatus PLANNED
The charge item has been entered, but the charged service is not yet complete, so it shall not be billed yet but might be used in the context of pre-authorization.
-
BILLABLE
public static final ChargeItem.ChargeItemStatus BILLABLE
The charge item is ready for billing.
-
NOTBILLABLE
public static final ChargeItem.ChargeItemStatus NOTBILLABLE
The charge item has been determined to be not billable (e.g. due to rules associated with the billing code).
-
ABORTED
public static final ChargeItem.ChargeItemStatus ABORTED
The processing of the charge was aborted.
-
BILLED
public static final ChargeItem.ChargeItemStatus BILLED
The charge item has been billed (e.g. a billing engine has generated financial transactions by applying the associated ruled for the charge item to the context of the Encounter, and placed them into Claims/Invoices.
-
ENTEREDINERROR
public static final ChargeItem.ChargeItemStatus ENTEREDINERROR
The charge item has been entered in error and should not be processed for billing.
-
UNKNOWN
public static final ChargeItem.ChargeItemStatus UNKNOWN
The authoring system does not know which of the status values currently applies for this charge item Note: This concept is not to be used for "other" - one of the listed statuses is presumed to apply, it's just not known which one.
-
NULL
public static final ChargeItem.ChargeItemStatus NULL
added to help the parsers with the generic types
-
-
Method Detail
-
values
public static ChargeItem.ChargeItemStatus[] 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 (ChargeItem.ChargeItemStatus c : ChargeItem.ChargeItemStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ChargeItem.ChargeItemStatus 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 ChargeItem.ChargeItemStatus fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-