Package org.hl7.fhir.r5.model
Enum Provenance.ProvenanceEntityRole
- java.lang.Object
-
- java.lang.Enum<Provenance.ProvenanceEntityRole>
-
- org.hl7.fhir.r5.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 DERIVATIONA 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 pre-existing entity.INSTANTIATESThe record resulting from this event adheres to the protocol, guideline, order set or other definition represented by this entity.NULLadded to help the parsers with the generic typesQUOTATIONThe record resulting from this event repeats some or all of the data in this entity, such as by a different author than the author of this entity.REMOVALThe record resulting from this event is no longer accessible, usually through the use of the Delete operation.REVISIONThe record resulting from this event is a new version updated from this entity.SOURCEThe record resulting from this event is constructed using the information in this source entity.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Provenance.ProvenanceEntityRolefromCode(String codeString)StringgetDefinition()StringgetDisplay()StringgetSystem()StringtoCode()static Provenance.ProvenanceEntityRolevalueOf(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 pre-existing entity.
-
REVISION
public static final Provenance.ProvenanceEntityRole REVISION
The record resulting from this event is a new version updated from this entity.
-
QUOTATION
public static final Provenance.ProvenanceEntityRole QUOTATION
The record resulting from this event repeats some or all of the data in this entity, such as by a different author than the author of this entity.
-
SOURCE
public static final Provenance.ProvenanceEntityRole SOURCE
The record resulting from this event is constructed using the information in this source entity.
-
INSTANTIATES
public static final Provenance.ProvenanceEntityRole INSTANTIATES
The record resulting from this event adheres to the protocol, guideline, order set or other definition represented by this entity.
-
REMOVAL
public static final Provenance.ProvenanceEntityRole REMOVAL
The record resulting from this event is no longer accessible, 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()
-
-