public enum SendIntent extends java.lang.Enum<SendIntent> implements EnumParam
| Enum Constant and Description |
|---|
ACCOUNT_UPDATE |
BOT_AD_INVITE |
BOT_AD_PROMO |
CONFIRMED_NOTIFICATION |
CUSTOMER_SUPPORT |
DEFAULT |
FINANCE_NOTIFICATION |
GAME_NOTIFICATION |
MODERATED_NEWSLETTER |
NON_PROMO_NEWSLETTER |
PROMO_NEWSLETTER |
PURCHASE_UPDATE |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue() |
java.lang.String |
toString() |
static SendIntent |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SendIntent[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="account_update") public static final SendIntent ACCOUNT_UPDATE
@SerializedName(value="bot_ad_invite") public static final SendIntent BOT_AD_INVITE
@SerializedName(value="bot_ad_promo") public static final SendIntent BOT_AD_PROMO
@SerializedName(value="confirmed_notification") public static final SendIntent CONFIRMED_NOTIFICATION
@SerializedName(value="customer_support") public static final SendIntent CUSTOMER_SUPPORT
@SerializedName(value="default") public static final SendIntent DEFAULT
@SerializedName(value="finance_notification") public static final SendIntent FINANCE_NOTIFICATION
@SerializedName(value="game_notification") public static final SendIntent GAME_NOTIFICATION
@SerializedName(value="moderated_newsletter") public static final SendIntent MODERATED_NEWSLETTER
@SerializedName(value="non_promo_newsletter") public static final SendIntent NON_PROMO_NEWSLETTER
@SerializedName(value="promo_newsletter") public static final SendIntent PROMO_NEWSLETTER
@SerializedName(value="purchase_update") public static final SendIntent PURCHASE_UPDATE
public static SendIntent[] values()
for (SendIntent c : SendIntent.values()) System.out.println(c);
public static SendIntent 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 java.lang.String toString()
toString in class java.lang.Enum<SendIntent>