Enum LocationPhysicalType
- java.lang.Object
-
- java.lang.Enum<LocationPhysicalType>
-
- org.hl7.fhir.r4.model.codesystems.LocationPhysicalType
-
- All Implemented Interfaces:
Serializable,Comparable<LocationPhysicalType>
public enum LocationPhysicalType extends Enum<LocationPhysicalType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AREAA defined physical boundary of something, such as a flood risk zone, region, postcodeBDA space that is allocated for sleeping/laying on.BUAny Building or structure.CAA container that can store goods, equipment, medications or other items.COAny corridor within a Building, that may connect rooms.HOA residential dwelling.JDNA wide scope that covers a conceptual domain, such as a Nation (Country wide community or Federal Government - e.g.LVLA Level in a multi-level Building/Structure.NULLadded to help the parsersRDA defined path to travel between 2 points that has a known name.ROA space that is allocated as a room, it may have walls/roof etc., but does not require these.SIA collection of buildings or other locations such as a site or a campus.VEA means of transportation.WAA Ward is a section of a medical facility that may contain rooms and other types of location.WIA Wing within a Building, this often contains levels, rooms and corridors.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static LocationPhysicalTypefromCode(String codeString)StringgetDefinition()StringgetDisplay()StringgetSystem()StringtoCode()static LocationPhysicalTypevalueOf(String name)Returns the enum constant of this type with the specified name.static LocationPhysicalType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SI
public static final LocationPhysicalType SI
A collection of buildings or other locations such as a site or a campus.
-
BU
public static final LocationPhysicalType BU
Any Building or structure. This may contain rooms, corridors, wings, etc. It might not have walls, or a roof, but is considered a defined/allocated space.
-
WI
public static final LocationPhysicalType WI
A Wing within a Building, this often contains levels, rooms and corridors.
-
WA
public static final LocationPhysicalType WA
A Ward is a section of a medical facility that may contain rooms and other types of location.
-
LVL
public static final LocationPhysicalType LVL
A Level in a multi-level Building/Structure.
-
CO
public static final LocationPhysicalType CO
Any corridor within a Building, that may connect rooms.
-
RO
public static final LocationPhysicalType RO
A space that is allocated as a room, it may have walls/roof etc., but does not require these.
-
BD
public static final LocationPhysicalType BD
A space that is allocated for sleeping/laying on. This is not the physical bed/trolley that may be moved about, but the space it may occupy.
-
VE
public static final LocationPhysicalType VE
A means of transportation.
-
HO
public static final LocationPhysicalType HO
A residential dwelling. Usually used to reference a location that a person/patient may reside.
-
CA
public static final LocationPhysicalType CA
A container that can store goods, equipment, medications or other items.
-
RD
public static final LocationPhysicalType RD
A defined path to travel between 2 points that has a known name.
-
AREA
public static final LocationPhysicalType AREA
A defined physical boundary of something, such as a flood risk zone, region, postcode
-
JDN
public static final LocationPhysicalType JDN
A wide scope that covers a conceptual domain, such as a Nation (Country wide community or Federal Government - e.g. Ministry of Health), Province or State (community or Government), Business (throughout the enterprise), Nation with a business scope of an agency (e.g. CDC, FDA etc.) or a Business segment (UK Pharmacy), not just an physical boundary
-
NULL
public static final LocationPhysicalType NULL
added to help the parsers
-
-
Method Detail
-
values
public static LocationPhysicalType[] 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 (LocationPhysicalType c : LocationPhysicalType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LocationPhysicalType 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 LocationPhysicalType fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-