Package ca.uhn.fhir.model.dstu2.valueset
Enum MeasmntPrincipleEnum
- java.lang.Object
-
- java.lang.Enum<MeasmntPrincipleEnum>
-
- ca.uhn.fhir.model.dstu2.valueset.MeasmntPrincipleEnum
-
- All Implemented Interfaces:
Serializable,Comparable<MeasmntPrincipleEnum>
public enum MeasmntPrincipleEnum extends Enum<MeasmntPrincipleEnum>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description MSP_ACOUSTICALDisplay: MSP Acoustical
Code Value: acoustical Measurement is done using the acoustical principle.MSP_BIOLOGICALDisplay: MSP Biological
Code Value: biological Measurement is done using the biological principle.MSP_CHEMICALDisplay: MSP Chemical
Code Value: chemical Measurement is done using the chemical principle.MSP_ELECTRICALDisplay: MSP Electrical
Code Value: electrical Measurement is done using the electrical principle.MSP_IMPEDANCEDisplay: MSP Impedance
Code Value: impedance Measurement is done using the impedance principle.MSP_MANUALDisplay: MSP Manual
Code Value: manual Measurement is done using the manual principle.MSP_MECHANICALDisplay: MSP Mechanical
Code Value: mechanical Measurement is done using the mechanical principle.MSP_NUCLEARDisplay: MSP Nuclear
Code Value: nuclear Measurement is done using the nuclear principle.MSP_OPTICALDisplay: MSP Optical
Code Value: optical Measurement is done using the optical principle.MSP_OTHERDisplay: MSP Other
Code Value: other Measurement principle isn't in the list.MSP_THERMALDisplay: MSP Thermal
Code Value: thermal Measurement is done using the thermal principle.
-
Field Summary
Fields Modifier and Type Field Description static ca.uhn.fhir.model.api.IValueSetEnumBinder<MeasmntPrincipleEnum>VALUESET_BINDERConverts codes to their respective enumerated valuesstatic StringVALUESET_IDENTIFIERIdentifier for this Value Set:static StringVALUESET_NAMEName for this Value Set: Measmnt-Principle
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static MeasmntPrincipleEnumforCode(String theCode)Returns the enumerated value associated with this codeStringgetCode()Returns the code associated with this enumerated valueStringgetSystem()Returns the code system associated with this enumerated valuestatic MeasmntPrincipleEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static MeasmntPrincipleEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MSP_OTHER
public static final MeasmntPrincipleEnum MSP_OTHER
Display: MSP Other
Code Value: other Measurement principle isn't in the list.
-
MSP_CHEMICAL
public static final MeasmntPrincipleEnum MSP_CHEMICAL
Display: MSP Chemical
Code Value: chemical Measurement is done using the chemical principle.
-
MSP_ELECTRICAL
public static final MeasmntPrincipleEnum MSP_ELECTRICAL
Display: MSP Electrical
Code Value: electrical Measurement is done using the electrical principle.
-
MSP_IMPEDANCE
public static final MeasmntPrincipleEnum MSP_IMPEDANCE
Display: MSP Impedance
Code Value: impedance Measurement is done using the impedance principle.
-
MSP_NUCLEAR
public static final MeasmntPrincipleEnum MSP_NUCLEAR
Display: MSP Nuclear
Code Value: nuclear Measurement is done using the nuclear principle.
-
MSP_OPTICAL
public static final MeasmntPrincipleEnum MSP_OPTICAL
Display: MSP Optical
Code Value: optical Measurement is done using the optical principle.
-
MSP_THERMAL
public static final MeasmntPrincipleEnum MSP_THERMAL
Display: MSP Thermal
Code Value: thermal Measurement is done using the thermal principle.
-
MSP_BIOLOGICAL
public static final MeasmntPrincipleEnum MSP_BIOLOGICAL
Display: MSP Biological
Code Value: biological Measurement is done using the biological principle.
-
MSP_MECHANICAL
public static final MeasmntPrincipleEnum MSP_MECHANICAL
Display: MSP Mechanical
Code Value: mechanical Measurement is done using the mechanical principle.
-
MSP_ACOUSTICAL
public static final MeasmntPrincipleEnum MSP_ACOUSTICAL
Display: MSP Acoustical
Code Value: acoustical Measurement is done using the acoustical principle.
-
MSP_MANUAL
public static final MeasmntPrincipleEnum MSP_MANUAL
Display: MSP Manual
Code Value: manual Measurement is done using the manual principle.
-
-
Field Detail
-
VALUESET_IDENTIFIER
public static final String VALUESET_IDENTIFIER
Identifier for this Value Set:- See Also:
- Constant Field Values
-
VALUESET_NAME
public static final String VALUESET_NAME
Name for this Value Set: Measmnt-Principle- See Also:
- Constant Field Values
-
VALUESET_BINDER
public static final ca.uhn.fhir.model.api.IValueSetEnumBinder<MeasmntPrincipleEnum> VALUESET_BINDER
Converts codes to their respective enumerated values
-
-
Method Detail
-
values
public static MeasmntPrincipleEnum[] 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 (MeasmntPrincipleEnum c : MeasmntPrincipleEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MeasmntPrincipleEnum 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
-
forCode
public static MeasmntPrincipleEnum forCode(String theCode)
Returns the enumerated value associated with this code
-
-