Enum BasicResourceType
- java.lang.Object
-
- java.lang.Enum<BasicResourceType>
-
- org.hl7.fhir.r4.model.codesystems.BasicResourceType
-
- All Implemented Interfaces:
Serializable,Comparable<BasicResourceType>
public enum BasicResourceType extends Enum<BasicResourceType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACCOUNTA financial instrument used to track costs, charges or other amounts.ADJUDICATThe determination of what will be paid against a particular invoice based on coverage, plan rules, etc.ADMINACTAn occurrence of a non-care-related event in the healthcare domain, such as approvals, reviews, etc.ADVEVENTAn undesired reaction caused by exposure to some agent (e.g.APTMTREQA request that a time be scheduled for a type of service for a specified patient, potentially subject to other constraintsCONSENTAn assertion of permission for an activity or set of activities to occur, possibly subject to particular limitations; e.g.DIETThe specification of a set of food and/or other nutritional material to be delivered to a patient.EXPOSURERecord of a situation where a subject was exposed to a substance.INVESTIGATIONA formalized inquiry into the circumstances surrounding a particular unplanned event or potential event for the purposes of identifying possible causes and contributing factors for the eventINVOICEA request for payment for goods and/or services.NULLadded to help the parsersPREDETERMINEAn adjudication of what would be paid under an insurance plan for a hypothetical claim for goods or servicesPREDETREQA request for a pre-determination of the cost that would be paid under an insurance plan for a hypothetical claim for goods or servicesPROTOCOLA set of (possibly conditional) steps to be taken to achieve some aim.REFERRALA request that care of a particular type be provided to a patient.STUDYAn investigation to determine information about a particular therapy or productTRANSFERThe transition of a patient or set of material from one location to another
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static BasicResourceTypefromCode(String codeString)StringgetDefinition()StringgetDisplay()StringgetSystem()StringtoCode()static BasicResourceTypevalueOf(String name)Returns the enum constant of this type with the specified name.static BasicResourceType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CONSENT
public static final BasicResourceType CONSENT
An assertion of permission for an activity or set of activities to occur, possibly subject to particular limitations; e.g. surgical consent, information disclosure consent, etc.
-
REFERRAL
public static final BasicResourceType REFERRAL
A request that care of a particular type be provided to a patient. Could involve the transfer of care, a consult, etc.
-
ADVEVENT
public static final BasicResourceType ADVEVENT
An undesired reaction caused by exposure to some agent (e.g. a medication, immunization, food, or environmental agent).
-
APTMTREQ
public static final BasicResourceType APTMTREQ
A request that a time be scheduled for a type of service for a specified patient, potentially subject to other constraints
-
TRANSFER
public static final BasicResourceType TRANSFER
The transition of a patient or set of material from one location to another
-
DIET
public static final BasicResourceType DIET
The specification of a set of food and/or other nutritional material to be delivered to a patient.
-
ADMINACT
public static final BasicResourceType ADMINACT
An occurrence of a non-care-related event in the healthcare domain, such as approvals, reviews, etc.
-
EXPOSURE
public static final BasicResourceType EXPOSURE
Record of a situation where a subject was exposed to a substance. Usually of interest to public health.
-
INVESTIGATION
public static final BasicResourceType INVESTIGATION
A formalized inquiry into the circumstances surrounding a particular unplanned event or potential event for the purposes of identifying possible causes and contributing factors for the event
-
ACCOUNT
public static final BasicResourceType ACCOUNT
A financial instrument used to track costs, charges or other amounts.
-
INVOICE
public static final BasicResourceType INVOICE
A request for payment for goods and/or services. Includes the idea of a healthcare insurance claim.
-
ADJUDICAT
public static final BasicResourceType ADJUDICAT
The determination of what will be paid against a particular invoice based on coverage, plan rules, etc.
-
PREDETREQ
public static final BasicResourceType PREDETREQ
A request for a pre-determination of the cost that would be paid under an insurance plan for a hypothetical claim for goods or services
-
PREDETERMINE
public static final BasicResourceType PREDETERMINE
An adjudication of what would be paid under an insurance plan for a hypothetical claim for goods or services
-
STUDY
public static final BasicResourceType STUDY
An investigation to determine information about a particular therapy or product
-
PROTOCOL
public static final BasicResourceType PROTOCOL
A set of (possibly conditional) steps to be taken to achieve some aim. Includes study protocols, treatment protocols, emergency protocols, etc.
-
NULL
public static final BasicResourceType NULL
added to help the parsers
-
-
Method Detail
-
values
public static BasicResourceType[] 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 (BasicResourceType c : BasicResourceType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BasicResourceType 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 BasicResourceType fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-