public static enum Session.OPERATION extends Enum<Session.OPERATION>
| Enum Constant and Description |
|---|
AddResources |
Create |
Dispose |
RemoveResources |
UpdateResources |
| Modifier and Type | Method and Description |
|---|---|
static Session.OPERATION |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Session.OPERATION[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Session.OPERATION Create
public static final Session.OPERATION AddResources
public static final Session.OPERATION UpdateResources
public static final Session.OPERATION RemoveResources
public static final Session.OPERATION Dispose
public static Session.OPERATION[] values()
for (Session.OPERATION c : Session.OPERATION.values()) System.out.println(c);
public static Session.OPERATION valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant
with the specified nameNullPointerException - if the argument is nullCopyright © 2015. All Rights Reserved.