Enum V3EducationLevel
- java.lang.Object
-
- java.lang.Enum<V3EducationLevel>
-
- org.hl7.fhir.r4.model.codesystems.V3EducationLevel
-
- All Implemented Interfaces:
Serializable,Comparable<V3EducationLevel>
public enum V3EducationLevel extends Enum<V3EducationLevel>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ASSOCAssociate's or technical degree completeBDCollege or baccalaureate degree completeELEMElementary SchoolGDGraduate or professional Degree completeHSHigh School or secondary school degree completeNULLadded to help the parsersPBSome post-baccalaureate educationPOSTGDoctoral or post graduate educationSCOLSome College educationSECSome secondary or high school education
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static V3EducationLevelfromCode(String codeString)StringgetDefinition()StringgetDisplay()StringgetSystem()StringtoCode()static V3EducationLevelvalueOf(String name)Returns the enum constant of this type with the specified name.static V3EducationLevel[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ASSOC
public static final V3EducationLevel ASSOC
Associate's or technical degree complete
-
BD
public static final V3EducationLevel BD
College or baccalaureate degree complete
-
ELEM
public static final V3EducationLevel ELEM
Elementary School
-
GD
public static final V3EducationLevel GD
Graduate or professional Degree complete
-
HS
public static final V3EducationLevel HS
High School or secondary school degree complete
-
PB
public static final V3EducationLevel PB
Some post-baccalaureate education
-
POSTG
public static final V3EducationLevel POSTG
Doctoral or post graduate education
-
SCOL
public static final V3EducationLevel SCOL
Some College education
-
SEC
public static final V3EducationLevel SEC
Some secondary or high school education
-
NULL
public static final V3EducationLevel NULL
added to help the parsers
-
-
Method Detail
-
values
public static V3EducationLevel[] 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 (V3EducationLevel c : V3EducationLevel.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static V3EducationLevel 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 V3EducationLevel fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-