public enum SubscriptionEventReason extends java.lang.Enum<SubscriptionEventReason>
Modifier and Type | Method and Description |
---|---|
static SubscriptionEventReason |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SubscriptionEventReason[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SubscriptionEventReason Add
public static final SubscriptionEventReason Change
public static final SubscriptionEventReason Remove
public static SubscriptionEventReason[] values()
for (SubscriptionEventReason c : SubscriptionEventReason.values()) System.out.println(c);
public static SubscriptionEventReason 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 null