public enum TriggerType extends Enum<TriggerType>
| Enum Constant and Description |
|---|
DATAACCESSED
The trigger occurs whenever data of a particular type is accessed.
|
DATAACCESSENDED
The trigger occurs whenever access to data of a particular type is completed.
|
DATAADDED
The trigger occurs whenever data of a particular type is added.
|
DATACHANGED
The trigger occurs whenever data of a particular type is changed in any way, either added, modified, or removed.
|
DATAMODIFIED
The trigger occurs whenever data of a particular type is modified.
|
DATAREMOVED
The trigger occurs whenever data of a particular type is removed.
|
NAMEDEVENT
The trigger occurs in response to a specific named event, and no other information about the trigger is specified.
|
NULL
added to help the parsers
|
PERIODIC
The trigger occurs at a specific time or periodically as described by a timing or schedule.
|
| Modifier and Type | Method and Description |
|---|---|
static TriggerType |
fromCode(String codeString) |
String |
getDefinition() |
String |
getDisplay() |
String |
getSystem() |
String |
toCode() |
static TriggerType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TriggerType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TriggerType NAMEDEVENT
public static final TriggerType PERIODIC
public static final TriggerType DATACHANGED
public static final TriggerType DATAADDED
public static final TriggerType DATAMODIFIED
public static final TriggerType DATAREMOVED
public static final TriggerType DATAACCESSED
public static final TriggerType DATAACCESSENDED
public static final TriggerType NULL
public static TriggerType[] values()
for (TriggerType c : TriggerType.values()) System.out.println(c);
public static TriggerType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic static TriggerType fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
org.hl7.fhir.exceptions.FHIRExceptionpublic String getDefinition()
public String getDisplay()
Copyright © 2014–2021 Health Level 7. All rights reserved.