public enum SubscriptionChannelType extends Enum<SubscriptionChannelType>
| Enum Constant and Description |
|---|
EMAIL
The channel is executed by sending an email to the email addressed in the URI (which must be a mailto:).
|
MESSAGE
The channel is executed by sending a message (e.g.
|
NULL
added to help the parsers
|
RESTHOOK
The channel is executed by making a post to the URI.
|
SMS
The channel is executed by sending an SMS message to the phone number identified in the URL (tel:).
|
WEBSOCKET
The channel is executed by sending a packet across a web socket connection maintained by the client.
|
| Modifier and Type | Method and Description |
|---|---|
static SubscriptionChannelType |
fromCode(String codeString) |
String |
getDefinition() |
String |
getDisplay() |
String |
getSystem() |
String |
toCode() |
static SubscriptionChannelType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SubscriptionChannelType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SubscriptionChannelType RESTHOOK
public static final SubscriptionChannelType WEBSOCKET
public static final SubscriptionChannelType EMAIL
public static final SubscriptionChannelType SMS
public static final SubscriptionChannelType MESSAGE
public static final SubscriptionChannelType NULL
public static SubscriptionChannelType[] values()
for (SubscriptionChannelType c : SubscriptionChannelType.values()) System.out.println(c);
public static SubscriptionChannelType 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 SubscriptionChannelType 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.