public enum MessageSignificanceCategory extends Enum<MessageSignificanceCategory>
| Enum Constant and Description |
|---|
CONSEQUENCE
The message represents/requests a change that should not be processed more than once; e.g., making a booking for an appointment.
|
CURRENCY
The message represents a response to query for current information.
|
NOTIFICATION
The content is not necessarily intended to be current, and it can be reprocessed, though there may be version issues created by processing old notifications.
|
NULL
added to help the parsers
|
| Modifier and Type | Method and Description |
|---|---|
static MessageSignificanceCategory |
fromCode(String codeString) |
String |
getDefinition() |
String |
getDisplay() |
String |
getSystem() |
String |
toCode() |
static MessageSignificanceCategory |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MessageSignificanceCategory[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MessageSignificanceCategory CONSEQUENCE
public static final MessageSignificanceCategory CURRENCY
public static final MessageSignificanceCategory NOTIFICATION
public static final MessageSignificanceCategory NULL
public static MessageSignificanceCategory[] values()
for (MessageSignificanceCategory c : MessageSignificanceCategory.values()) System.out.println(c);
public static MessageSignificanceCategory 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 MessageSignificanceCategory 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.