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