Enum BenefitSubcategory
- java.lang.Object
-
- java.lang.Enum<BenefitSubcategory>
-
- org.hl7.fhir.dstu2016may.model.codesystems.BenefitSubcategory
-
- All Implemented Interfaces:
Serializable,Comparable<BenefitSubcategory>
public enum BenefitSubcategory extends Enum<BenefitSubcategory>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description MEDICALPRIMARYCAREMedical Primary Health CoverageNULLadded to help the parsersORALBASICDental Basic Coverage - exams, fillings, xrays, cleaning, minor proceduresORALMAJORDental Major Coverage - crowns, bridge, major proceduresORALORTHODental Orthodontic Coverage - braces, adjustments, ortho exams, related proceduresPHARMACYDISPENSEPharmacy Dispense CoverageVISIONCONTACTSContact LensesVISIONEXAMVision ExamVISIONGLASSESFrames and lenses
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static BenefitSubcategoryfromCode(String codeString)StringgetDefinition()StringgetDisplay()StringgetSystem()StringtoCode()static BenefitSubcategoryvalueOf(String name)Returns the enum constant of this type with the specified name.static BenefitSubcategory[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ORALBASIC
public static final BenefitSubcategory ORALBASIC
Dental Basic Coverage - exams, fillings, xrays, cleaning, minor procedures
-
ORALMAJOR
public static final BenefitSubcategory ORALMAJOR
Dental Major Coverage - crowns, bridge, major procedures
-
ORALORTHO
public static final BenefitSubcategory ORALORTHO
Dental Orthodontic Coverage - braces, adjustments, ortho exams, related procedures
-
VISIONEXAM
public static final BenefitSubcategory VISIONEXAM
Vision Exam
-
VISIONGLASSES
public static final BenefitSubcategory VISIONGLASSES
Frames and lenses
-
VISIONCONTACTS
public static final BenefitSubcategory VISIONCONTACTS
Contact Lenses
-
MEDICALPRIMARYCARE
public static final BenefitSubcategory MEDICALPRIMARYCARE
Medical Primary Health Coverage
-
PHARMACYDISPENSE
public static final BenefitSubcategory PHARMACYDISPENSE
Pharmacy Dispense Coverage
-
NULL
public static final BenefitSubcategory NULL
added to help the parsers
-
-
Method Detail
-
values
public static BenefitSubcategory[] 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 (BenefitSubcategory c : BenefitSubcategory.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BenefitSubcategory 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 BenefitSubcategory fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-