public enum SubscriptionStatus extends java.lang.Enum<SubscriptionStatus>
| Enum Constant and Description |
|---|
OK
Client Access server will continue to send notifications.
|
UNSUBSCRIBE
Client Access server will stop sending notifications and end the subscription.
|
| Modifier and Type | Method and Description |
|---|---|
static SubscriptionStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SubscriptionStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SubscriptionStatus OK
public static final SubscriptionStatus UNSUBSCRIBE
public static SubscriptionStatus[] values()
for (SubscriptionStatus c : SubscriptionStatus.values()) System.out.println(c);
public static SubscriptionStatus 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