public static enum SessionEvent.OperationType extends Enum<SessionEvent.OperationType>
| Enum Constant and Description |
|---|
ACTIVATE |
CLOSE |
CREATE |
DEACTIVATE |
KILL |
STORE |
| Modifier and Type | Method and Description |
|---|---|
static SessionEvent.OperationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SessionEvent.OperationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SessionEvent.OperationType ACTIVATE
public static final SessionEvent.OperationType CLOSE
public static final SessionEvent.OperationType CREATE
public static final SessionEvent.OperationType DEACTIVATE
public static final SessionEvent.OperationType KILL
public static final SessionEvent.OperationType STORE
public static SessionEvent.OperationType[] values()
for (SessionEvent.OperationType c : SessionEvent.OperationType.values()) System.out.println(c);
public static SessionEvent.OperationType 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 © 2010-2014 The Apache Software Foundation. All Rights Reserved.