public enum CollectionActionEnum extends java.lang.Enum<CollectionActionEnum>
Java class for CollectionActionEnum.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="CollectionActionEnum"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="SUBSCRIBE"/> <enumeration value="UNSUBSCRIBE"/> <enumeration value="PAUSE"/> <enumeration value="RESUME"/> <enumeration value="STATUS"/> </restriction> </simpleType>
Enum Constant and Description |
---|
PAUSE
Pause delivery of an existing subscription.
|
RESUME
Resume delivery of an existing subscription.
|
STATUS
Ask about the requester's established subscriptions for this collection.
|
SUBSCRIBE
Create a new subscription.
|
UNSUBSCRIBE
Delete an existing subscription.
|
Modifier and Type | Method and Description |
---|---|
static CollectionActionEnum |
fromValue(java.lang.String v) |
java.lang.String |
value() |
static CollectionActionEnum |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CollectionActionEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CollectionActionEnum SUBSCRIBE
public static final CollectionActionEnum UNSUBSCRIBE
public static final CollectionActionEnum PAUSE
public static final CollectionActionEnum RESUME
public static final CollectionActionEnum STATUS
public static CollectionActionEnum[] values()
for (CollectionActionEnum c : CollectionActionEnum.values()) System.out.println(c);
public static CollectionActionEnum 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 value()
public static CollectionActionEnum fromValue(java.lang.String v)