
Package org.hl7.fhir.dstu3.model
Enum Provenance.ProvenanceEntityRole
- java.lang.Object
-
- java.lang.Enum<Provenance.ProvenanceEntityRole>
-
- org.hl7.fhir.dstu3.model.Provenance.ProvenanceEntityRole
-
- All Implemented Interfaces:
Serializable
,Comparable<Provenance.ProvenanceEntityRole>
- Enclosing class:
- Provenance
public static enum Provenance.ProvenanceEntityRole extends Enum<Provenance.ProvenanceEntityRole>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DERIVATION
A transformation of an entity into another, an update of an entity resulting in a new one, or the construction of a new entity based on a preexisting entity.NULL
added to help the parsers with the generic typesQUOTATION
The repeat of (some or all of) an entity, such as text or image, by someone who may or may not be its original author.REMOVAL
A derivation for which the entity is removed from accessibility usually through the use of the Delete operation.REVISION
A derivation for which the resulting entity is a revised version of some original.SOURCE
A primary source for a topic refers to something produced by some agent with direct experience and knowledge about the topic, at the time of the topic's study, without benefit from hindsight.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Provenance.ProvenanceEntityRole
fromCode(String codeString)
String
getDefinition()
String
getDisplay()
String
getSystem()
String
toCode()
static Provenance.ProvenanceEntityRole
valueOf(String name)
Returns the enum constant of this type with the specified name.static Provenance.ProvenanceEntityRole[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DERIVATION
public static final Provenance.ProvenanceEntityRole DERIVATION
A transformation of an entity into another, an update of an entity resulting in a new one, or the construction of a new entity based on a preexisting entity.
-
REVISION
public static final Provenance.ProvenanceEntityRole REVISION
A derivation for which the resulting entity is a revised version of some original.
-
QUOTATION
public static final Provenance.ProvenanceEntityRole QUOTATION
The repeat of (some or all of) an entity, such as text or image, by someone who may or may not be its original author.
-
SOURCE
public static final Provenance.ProvenanceEntityRole SOURCE
A primary source for a topic refers to something produced by some agent with direct experience and knowledge about the topic, at the time of the topic's study, without benefit from hindsight.
-
REMOVAL
public static final Provenance.ProvenanceEntityRole REMOVAL
A derivation for which the entity is removed from accessibility usually through the use of the Delete operation.
-
NULL
public static final Provenance.ProvenanceEntityRole NULL
added to help the parsers with the generic types
-
-
Method Detail
-
values
public static Provenance.ProvenanceEntityRole[] 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 (Provenance.ProvenanceEntityRole c : Provenance.ProvenanceEntityRole.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Provenance.ProvenanceEntityRole 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 Provenance.ProvenanceEntityRole fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-