Enum CoverageCopayType
- java.lang.Object
-
- java.lang.Enum<CoverageCopayType>
-
- org.hl7.fhir.r4.model.codesystems.CoverageCopayType
-
- All Implemented Interfaces:
Serializable,Comparable<CoverageCopayType>
public enum CoverageCopayType extends Enum<CoverageCopayType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description COPAYA standard fixed currency amount applied to all classes or service or product not otherwise specified.COPAYPCTA standard percentage applied to all classes or service or product not otherwise specified.DEDUCTIBLEThe accumulated amount of patient payment before the coverage begins to pay for services.EMERGENCYAn episode in an emergency department.GPVISITAn office visit for a general practitioner of a discipline.INPTHOSPAn episode of an Inpatient hospital stay.MAXOUTOFPOCKETThe maximum amout of payment for services which a patient, or family, is expected to incur - typically annually.NULLadded to help the parsersSPVISITAn office visit for a specialist practitioner of a disciplineTELEVISITA visit held where the patient is remote relative to the practitioner, e.g.URGENTCAREA visit to an urgent care facility - typically a community care clinic.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static CoverageCopayTypefromCode(String codeString)StringgetDefinition()StringgetDisplay()StringgetSystem()StringtoCode()static CoverageCopayTypevalueOf(String name)Returns the enum constant of this type with the specified name.static CoverageCopayType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
GPVISIT
public static final CoverageCopayType GPVISIT
An office visit for a general practitioner of a discipline.
-
SPVISIT
public static final CoverageCopayType SPVISIT
An office visit for a specialist practitioner of a discipline
-
EMERGENCY
public static final CoverageCopayType EMERGENCY
An episode in an emergency department.
-
INPTHOSP
public static final CoverageCopayType INPTHOSP
An episode of an Inpatient hospital stay.
-
TELEVISIT
public static final CoverageCopayType TELEVISIT
A visit held where the patient is remote relative to the practitioner, e.g. by phone, computer or video conference.
-
URGENTCARE
public static final CoverageCopayType URGENTCARE
A visit to an urgent care facility - typically a community care clinic.
-
COPAYPCT
public static final CoverageCopayType COPAYPCT
A standard percentage applied to all classes or service or product not otherwise specified.
-
COPAY
public static final CoverageCopayType COPAY
A standard fixed currency amount applied to all classes or service or product not otherwise specified.
-
DEDUCTIBLE
public static final CoverageCopayType DEDUCTIBLE
The accumulated amount of patient payment before the coverage begins to pay for services.
-
MAXOUTOFPOCKET
public static final CoverageCopayType MAXOUTOFPOCKET
The maximum amout of payment for services which a patient, or family, is expected to incur - typically annually.
-
NULL
public static final CoverageCopayType NULL
added to help the parsers
-
-
Method Detail
-
values
public static CoverageCopayType[] 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 (CoverageCopayType c : CoverageCopayType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CoverageCopayType 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 CoverageCopayType fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-