Enum CanonicalSubscriptionChannelType
java.lang.Object
java.lang.Enum<CanonicalSubscriptionChannelType>
ca.uhn.fhir.jpa.subscription.model.CanonicalSubscriptionChannelType
- All Implemented Interfaces:
Serializable
,Comparable<CanonicalSubscriptionChannelType>
-
Enum Constant Summary
Enum ConstantDescriptionThe channel is executed by sending an email to the email addressed in the URI (which must be a mailto:).The channel is executed by sending a message (e.g.added to help the parsers with the generic typesThe channel is executed by making a post to the URI.The channel is executed by sending an SMS message to the phone number identified in the URL (tel:).The channel is executed by sending a packet across a web socket connection maintained by the client. -
Method Summary
Modifier and TypeMethodDescriptionorg.hl7.fhir.dstu2.model.Subscription.SubscriptionChannelType
toCode()
org.hl7.fhir.r5.model.Coding
Returns the enum constant of this type with the specified name.static CanonicalSubscriptionChannelType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
RESTHOOK
The channel is executed by making a post to the URI. If a payload is included, the URL is interpreted as the service base, and an update (PUT) is made. -
WEBSOCKET
The channel is executed by sending a packet across a web socket connection maintained by the client. The URL identifies the websocket, and the client binds to this URL. -
EMAIL
The channel is executed by sending an email to the email addressed in the URI (which must be a mailto:). -
SMS
The channel is executed by sending an SMS message to the phone number identified in the URL (tel:). -
MESSAGE
The channel is executed by sending a message (e.g. a Bundle with a MessageHeader resource etc.) to the application identified in the URI. -
NULL
added to help the parsers with the generic types
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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 CanonicalSubscriptionChannelType fromCode(@Nullable String theSystem, @Nonnull String codeString) throws org.hl7.fhir.exceptions.FHIRException - Throws:
org.hl7.fhir.exceptions.FHIRException
-
toCode
-
getSystem
-
getDefinition
-
getDisplay
-
toCanonical
-
toR5Coding
-