Package com.ibm.fhir.model.type.code
Enum SubscriptionChannelType.ValueSet
- java.lang.Object
-
- java.lang.Enum<SubscriptionChannelType.ValueSet>
-
- com.ibm.fhir.model.type.code.SubscriptionChannelType.ValueSet
-
- All Implemented Interfaces:
Serializable,Comparable<SubscriptionChannelType.ValueSet>
- Enclosing class:
- SubscriptionChannelType
public static enum SubscriptionChannelType.ValueSet extends Enum<SubscriptionChannelType.ValueSet>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SubscriptionChannelType.ValueSetfrom(String value)Factory method for creating SubscriptionChannelType.ValueSet values from a passed string value.Stringvalue()static SubscriptionChannelType.ValueSetvalueOf(String name)Returns the enum constant of this type with the specified name.static SubscriptionChannelType.ValueSet[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
REST_HOOK
public static final SubscriptionChannelType.ValueSet REST_HOOK
Rest HookThe 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
public static final SubscriptionChannelType.ValueSet WEBSOCKET
WebsocketThe 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
public static final SubscriptionChannelType.ValueSet EMAIL
EmailThe channel is executed by sending an email to the email addressed in the URI (which must be a mailto:).
-
SMS
public static final SubscriptionChannelType.ValueSet SMS
SMSThe channel is executed by sending an SMS message to the phone number identified in the URL (tel:).
-
MESSAGE
public static final SubscriptionChannelType.ValueSet MESSAGE
MessageThe channel is executed by sending a message (e.g. a Bundle with a MessageHeader resource etc.) to the application identified in the URI.
-
-
Method Detail
-
values
public static SubscriptionChannelType.ValueSet[] 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 (SubscriptionChannelType.ValueSet c : SubscriptionChannelType.ValueSet.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SubscriptionChannelType.ValueSet 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
-
value
public String value()
- Returns:
- The java.lang.String value of the code represented by this enum
-
from
public static SubscriptionChannelType.ValueSet from(String value)
Factory method for creating SubscriptionChannelType.ValueSet values from a passed string value.- Parameters:
value- A string that matches one of the allowed code values- Throws:
IllegalArgumentException- If the passed string cannot be parsed into an allowed code value
-
-