Enum V3EntityDeterminer
- java.lang.Object
-
- java.lang.Enum<V3EntityDeterminer>
-
- org.hl7.fhir.r4.model.codesystems.V3EntityDeterminer
-
- All Implemented Interfaces:
Serializable,Comparable<V3EntityDeterminer>
public enum V3EntityDeterminer extends Enum<V3EntityDeterminer>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description GROUPA determiner that specifies that the Entity object represents a particular collection of physical things (as opposed to a universal, kind, or class of physical thing).GROUPKINDA determiner that specifies that the Entity object represents a universal, kind or class of collections physical things.INSTANCEDescription:A determiner that specifies that the Entity object represents a particular physical thing (as opposed to a universal, kind, or class of physical thing).KINDDescription:A determiner that specifies that the Entity object represents a universal, kind or class of physical thing (as opposed to a particular thing).NULLadded to help the parsersQUANTIFIEDKINDThe described quantified determiner indicates that the given Entity is taken as a general description of a specific amount of a thing.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static V3EntityDeterminerfromCode(String codeString)StringgetDefinition()StringgetDisplay()StringgetSystem()StringtoCode()static V3EntityDeterminervalueOf(String name)Returns the enum constant of this type with the specified name.static V3EntityDeterminer[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INSTANCE
public static final V3EntityDeterminer INSTANCE
Description:A determiner that specifies that the Entity object represents a particular physical thing (as opposed to a universal, kind, or class of physical thing). Discussion: It does not matter whether an INSTANCE still exists as a whole at the point in time (or process) when we mention it, for example, a drug product lot is an INSTANCE even though it has been portioned out for retail purpose.
-
GROUP
public static final V3EntityDeterminer GROUP
A determiner that specifies that the Entity object represents a particular collection of physical things (as opposed to a universal, kind, or class of physical thing). While the collection may resolve to having only a single individual (or even no individuals), the potential should exist for it to cover multiple individuals.
-
KIND
public static final V3EntityDeterminer KIND
Description:A determiner that specifies that the Entity object represents a universal, kind or class of physical thing (as opposed to a particular thing).
-
GROUPKIND
public static final V3EntityDeterminer GROUPKIND
A determiner that specifies that the Entity object represents a universal, kind or class of collections physical things. While the collection may resolve to having only a single individual (or even no individuals), the potential should exist for it to cover multiple individuals.
-
QUANTIFIEDKIND
public static final V3EntityDeterminer QUANTIFIEDKIND
The described quantified determiner indicates that the given Entity is taken as a general description of a specific amount of a thing. For example, QUANTIFIED_KIND of syringe (quantity = 3,) stands for exactly three syringes.
-
NULL
public static final V3EntityDeterminer NULL
added to help the parsers
-
-
Method Detail
-
values
public static V3EntityDeterminer[] 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 (V3EntityDeterminer c : V3EntityDeterminer.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static V3EntityDeterminer 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 V3EntityDeterminer fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-