public enum EnumSubscriptionType extends java.lang.Enum<EnumSubscriptionType>
| Enum Constant and Description |
|---|
CANCEL_SUBSCRIPTION
Enum constant for Cancellation Subscription Type
|
MODIFIED_SUBSCRIPTION
Enum constant for Modified Subscription Type
|
NEW_SUBSCRIPTION
Enum constant for New Subscription Type
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
Returns the String value of this enum.
|
static EnumSubscriptionType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumSubscriptionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumSubscriptionType NEW_SUBSCRIPTION
public static final EnumSubscriptionType MODIFIED_SUBSCRIPTION
public static final EnumSubscriptionType CANCEL_SUBSCRIPTION
public static EnumSubscriptionType[] values()
for (EnumSubscriptionType c : EnumSubscriptionType.values()) System.out.println(c);
public static EnumSubscriptionType 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 getValue()