Enum DeviceSafety
- java.lang.Object
-
- java.lang.Enum<DeviceSafety>
-
- org.hl7.fhir.dstu3.model.codesystems.DeviceSafety
-
- All Implemented Interfaces:
Serializable,Comparable<DeviceSafety>
public enum DeviceSafety extends Enum<DeviceSafety>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CONTAINSLATEXIndicates that the device or packaging contains natural rubber that contacts humansLATEXFREEIndicates that natural rubber latex was not used as materials in the manufacture of the medical product and container and the device labeling contains this information.LATEXUNKNOWNIndicates that whether the device or packaging contains natural rubber that contacts humans is not indicated on the label Not all medical products that are NOT made with natural rubber latex will be markedMRCONDITIONALAn item that has been demonstrated to pose no known hazards in a specified MRI environment with specified conditions of use.MRSAFEThe device, when used in the MRI environment, has been demonstrated to present no additional risk to the patient or other individual, but may affect the quality of the diagnostic information.MRUNKNOWNLabeling does not contain MRI Safety informationMRUNSAFEAn item that is known to pose hazards in all MRI environments.NULLadded to help the parsers
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DeviceSafetyfromCode(String codeString)StringgetDefinition()StringgetDisplay()StringgetSystem()StringtoCode()static DeviceSafetyvalueOf(String name)Returns the enum constant of this type with the specified name.static DeviceSafety[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CONTAINSLATEX
public static final DeviceSafety CONTAINSLATEX
Indicates that the device or packaging contains natural rubber that contacts humans
-
LATEXFREE
public static final DeviceSafety LATEXFREE
Indicates that natural rubber latex was not used as materials in the manufacture of the medical product and container and the device labeling contains this information.
-
LATEXUNKNOWN
public static final DeviceSafety LATEXUNKNOWN
Indicates that whether the device or packaging contains natural rubber that contacts humans is not indicated on the label Not all medical products that are NOT made with natural rubber latex will be marked
-
MRSAFE
public static final DeviceSafety MRSAFE
The device, when used in the MRI environment, has been demonstrated to present no additional risk to the patient or other individual, but may affect the quality of the diagnostic information. The MRI conditions in which the device was tested should be specified in conjunction with the term MR safe since a device which is safe under one set of conditions may not be found to be so under more extreme MRI conditions.
-
MRUNSAFE
public static final DeviceSafety MRUNSAFE
An item that is known to pose hazards in all MRI environments. MR Unsafe items include magnetic items such as a pair of ferromagnetic scissors.
-
MRCONDITIONAL
public static final DeviceSafety MRCONDITIONAL
An item that has been demonstrated to pose no known hazards in a specified MRI environment with specified conditions of use. Field conditions that define the MRI environment include, for instance, static magnetic field or specific absorption rate (SAR).
-
MRUNKNOWN
public static final DeviceSafety MRUNKNOWN
Labeling does not contain MRI Safety information
-
NULL
public static final DeviceSafety NULL
added to help the parsers
-
-
Method Detail
-
values
public static DeviceSafety[] 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 (DeviceSafety c : DeviceSafety.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DeviceSafety 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 DeviceSafety fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-