Enum V3EntityClass
- java.lang.Object
-
- java.lang.Enum<V3EntityClass>
-
- org.hl7.fhir.r4.model.codesystems.V3EntityClass
-
- All Implemented Interfaces:
Serializable
,Comparable<V3EntityClass>
public enum V3EntityClass extends Enum<V3EntityClass>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ANM
A living subject from the animal kingdom.CER
A physical artifact that stores information about the granting of authorization.CHEM
A substance that is fully defined by an organic or inorganic chemical formula, includes mixtures of other chemical substances.CITY
The territory of a city, town or other municipality.CONT
A container of other entities.COUNTRY
The territory of a sovereign nation.COUNTY
The territory of a county, parish or other division of a state or province.DEV
A subtype of ManufacturedMaterial used in an activity, without being substantially changed through that activity.ENT
Corresponds to the Entity classFOOD
Naturally occurring, processed or manufactured entities that are primarily used as food for humans and animals.HCE
A health chart included to serve as a document receiving entity in the management of medical records.HOLD
A type of container that can hold other containers or other holders.LIV
Anything that essentially has the property of life, independent of current state (a dead human corpse is still essentially a living subject).MAT
Any thing that has extension in space and mass, may be of living or non-living origin.MIC
All single celled living organisms including protozoa, bacteria, yeast, viruses, etc.MMAT
Corresponds to the ManufacturedMaterial classMODDV
Class to contain unique attributes of diagnostic imaging equipment.NAT
A politically organized body of people bonded by territory and known as a nation.NLIV
A subtype of living subject that includes all living things except the species Homo Sapiens.NULL
added to help the parsersORG
A social or legal structure formed by human beings.PLC
A physical place or site with its containing structure.PLNT
A living subject from the order of plants.PROVINCE
The territory of a state, province, department or other division of a sovereign country.PSN
A living subject of the species homo sapiens.PUB
An agency of the people of a state often assuming some authority over a certain matter.RGRP
A grouping of resources (personnel, material, or places) to be used for scheduling purposes.STATE
A politically organized body of people bonded by territory, culture, or ethnicity, having sovereignty (to a certain extent) granted by other states (enclosing or neighboring states).
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static V3EntityClass
fromCode(String codeString)
String
getDefinition()
String
getDisplay()
String
getSystem()
String
toCode()
static V3EntityClass
valueOf(String name)
Returns the enum constant of this type with the specified name.static V3EntityClass[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ENT
public static final V3EntityClass ENT
Corresponds to the Entity class
-
HCE
public static final V3EntityClass HCE
A health chart included to serve as a document receiving entity in the management of medical records.
-
LIV
public static final V3EntityClass LIV
Anything that essentially has the property of life, independent of current state (a dead human corpse is still essentially a living subject).
-
NLIV
public static final V3EntityClass NLIV
A subtype of living subject that includes all living things except the species Homo Sapiens.
-
ANM
public static final V3EntityClass ANM
A living subject from the animal kingdom.
-
MIC
public static final V3EntityClass MIC
All single celled living organisms including protozoa, bacteria, yeast, viruses, etc.
-
PLNT
public static final V3EntityClass PLNT
A living subject from the order of plants.
-
PSN
public static final V3EntityClass PSN
A living subject of the species homo sapiens.
-
MAT
public static final V3EntityClass MAT
Any thing that has extension in space and mass, may be of living or non-living origin.
-
CHEM
public static final V3EntityClass CHEM
A substance that is fully defined by an organic or inorganic chemical formula, includes mixtures of other chemical substances. Refine using, e.g., IUPAC codes.
-
FOOD
public static final V3EntityClass FOOD
Naturally occurring, processed or manufactured entities that are primarily used as food for humans and animals.
-
MMAT
public static final V3EntityClass MMAT
Corresponds to the ManufacturedMaterial class
-
CONT
public static final V3EntityClass CONT
A container of other entities.
-
HOLD
public static final V3EntityClass HOLD
A type of container that can hold other containers or other holders.
-
DEV
public static final V3EntityClass DEV
A subtype of ManufacturedMaterial used in an activity, without being substantially changed through that activity. The kind of device is identified by the code attribute inherited from Entity. Usage: This includes durable (reusable) medical equipment as well as disposable equipment.
-
CER
public static final V3EntityClass CER
A physical artifact that stores information about the granting of authorization.
-
MODDV
public static final V3EntityClass MODDV
Class to contain unique attributes of diagnostic imaging equipment.
-
ORG
public static final V3EntityClass ORG
A social or legal structure formed by human beings.
-
PUB
public static final V3EntityClass PUB
An agency of the people of a state often assuming some authority over a certain matter. Includes government, governmental agencies, associations.
-
STATE
public static final V3EntityClass STATE
A politically organized body of people bonded by territory, culture, or ethnicity, having sovereignty (to a certain extent) granted by other states (enclosing or neighboring states). This includes countries (nations), provinces (e.g., one of the United States of America or a French departement), counties or municipalities. Refine using, e.g., ISO country codes, FIPS-PUB state codes, etc.
-
NAT
public static final V3EntityClass NAT
A politically organized body of people bonded by territory and known as a nation.
-
PLC
public static final V3EntityClass PLC
A physical place or site with its containing structure. May be natural or man-made. The geographic position of a place may or may not be constant.
-
CITY
public static final V3EntityClass CITY
The territory of a city, town or other municipality.
-
COUNTRY
public static final V3EntityClass COUNTRY
The territory of a sovereign nation.
-
COUNTY
public static final V3EntityClass COUNTY
The territory of a county, parish or other division of a state or province.
-
PROVINCE
public static final V3EntityClass PROVINCE
The territory of a state, province, department or other division of a sovereign country.
-
RGRP
public static final V3EntityClass RGRP
A grouping of resources (personnel, material, or places) to be used for scheduling purposes. May be a pool of like-type resources, a team, or combination of personnel, material and places.
-
NULL
public static final V3EntityClass NULL
added to help the parsers
-
-
Method Detail
-
values
public static V3EntityClass[] 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 (V3EntityClass c : V3EntityClass.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static V3EntityClass 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 V3EntityClass fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-