public enum PushDestinationType extends java.lang.Enum<PushDestinationType>
| Enum Constant and Description |
|---|
jabberMsg |
phoneCall |
sesEmailMsg |
smsMsg |
smtpEmailMsg |
| Modifier and Type | Method and Description |
|---|---|
boolean |
isJabberMsg() |
boolean |
isPhoneCall() |
boolean |
isSesEmailMsg() |
boolean |
isSmsMsg() |
boolean |
isSmtpEmailMsg() |
static PushDestinationType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PushDestinationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PushDestinationType sesEmailMsg
public static final PushDestinationType smtpEmailMsg
public static final PushDestinationType smsMsg
public static final PushDestinationType phoneCall
public static final PushDestinationType jabberMsg
public static PushDestinationType[] values()
for (PushDestinationType c : PushDestinationType.values()) System.out.println(c);
public static PushDestinationType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic boolean isSesEmailMsg()
public boolean isSmtpEmailMsg()
public boolean isSmsMsg()
public boolean isJabberMsg()
public boolean isPhoneCall()