public enum ADVEvent extends java.lang.Enum<ADVEvent>
| Enum Constant | Description |
|---|---|
CURRENT_SESSION_CHANGED |
|
NOTIFICATION |
|
SESSION_ADDED |
|
SESSION_REMOVED |
|
SNAPSHOT_ADDED |
|
STEP_BACKWARD |
|
STEP_FIRST |
|
STEP_FORWARD |
|
STEP_LAST |
| Modifier and Type | Method | Description |
|---|---|---|
static ADVEvent |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static ADVEvent[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ADVEvent STEP_FIRST
public static final ADVEvent STEP_BACKWARD
public static final ADVEvent STEP_FORWARD
public static final ADVEvent STEP_LAST
public static final ADVEvent SNAPSHOT_ADDED
public static final ADVEvent SESSION_ADDED
public static final ADVEvent SESSION_REMOVED
public static final ADVEvent CURRENT_SESSION_CHANGED
public static final ADVEvent NOTIFICATION
public static ADVEvent[] values()
for (ADVEvent c : ADVEvent.values()) System.out.println(c);
public static ADVEvent 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