Enum V3EntityRisk
- java.lang.Object
-
- java.lang.Enum<V3EntityRisk>
-
- org.hl7.fhir.r4.model.codesystems.V3EntityRisk
-
- All Implemented Interfaces:
Serializable,Comparable<V3EntityRisk>
public enum V3EntityRisk extends Enum<V3EntityRisk>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AGGA danger that can be associated with certain living subjects, including humans.BHZMaterial contains microorganisms that is an environmental hazard.BIOThe dangers associated with normal biological materials.CORMaterial is corrosive and may cause severe injury to skin, mucous membranes and eyes.ESCThe entity is at risk for escaping from containment or control.EXPMaterial is an explosive mixture.IFLMaterial is highly inflammable and in certain mixtures (with air) may lead to explosions.INFMaterial known to be infectious with human pathogenic microorganisms.INJMaterial is solid and sharp (e.g., cannulas).NULLadded to help the parsersPOIMaterial is poisonous to humans and/or animals.RADMaterial is a source for ionizing radiation and must be handled with special care to avoid injury of those who handle it and to avoid environmental hazards.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static V3EntityRiskfromCode(String codeString)StringgetDefinition()StringgetDisplay()StringgetSystem()StringtoCode()static V3EntityRiskvalueOf(String name)Returns the enum constant of this type with the specified name.static V3EntityRisk[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AGG
public static final V3EntityRisk AGG
A danger that can be associated with certain living subjects, including humans.
-
BIO
public static final V3EntityRisk BIO
The dangers associated with normal biological materials. I.e. potential risk of unknown infections. Routine biological materials from living subjects.
-
COR
public static final V3EntityRisk COR
Material is corrosive and may cause severe injury to skin, mucous membranes and eyes. Avoid any unprotected contact.
-
ESC
public static final V3EntityRisk ESC
The entity is at risk for escaping from containment or control.
-
IFL
public static final V3EntityRisk IFL
Material is highly inflammable and in certain mixtures (with air) may lead to explosions. Keep away from fire, sparks and excessive heat.
-
EXP
public static final V3EntityRisk EXP
Material is an explosive mixture. Keep away from fire, sparks, and heat.
-
INF
public static final V3EntityRisk INF
Material known to be infectious with human pathogenic microorganisms. Those who handle this material must take precautions for their protection.
-
BHZ
public static final V3EntityRisk BHZ
Material contains microorganisms that is an environmental hazard. Must be handled with special care.
-
INJ
public static final V3EntityRisk INJ
Material is solid and sharp (e.g., cannulas). Dispose in hard container.
-
POI
public static final V3EntityRisk POI
Material is poisonous to humans and/or animals. Special care must be taken to avoid incorporation, even of small amounts.
-
RAD
public static final V3EntityRisk RAD
Material is a source for ionizing radiation and must be handled with special care to avoid injury of those who handle it and to avoid environmental hazards.
-
NULL
public static final V3EntityRisk NULL
added to help the parsers
-
-
Method Detail
-
values
public static V3EntityRisk[] 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 (V3EntityRisk c : V3EntityRisk.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static V3EntityRisk 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 V3EntityRisk fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-