public static enum BrowseTriggerStateHandler.BrowseInternalState extends java.lang.Enum<BrowseTriggerStateHandler.BrowseInternalState>
| Enum Constant and Description |
|---|
ENTRY
ENTRY event iss triggered for the browse
|
ENTRY_CELL
ENTRY event iss triggered for the browse cell
|
ENTRY_ROW
ROW-ENTRY event is triggered for the browse
|
LEAVE
LEAVE event is triggered for the browse
|
LEAVE_CELL
LEAVE event is triggered for the browse cell
|
LEAVE_ROW
ROW-LEAVE event is triggered for the browse
|
| Modifier and Type | Method and Description |
|---|---|
static BrowseTriggerStateHandler.BrowseInternalState |
get(int eventCode,
boolean cell)
Gets this enum value from the given event code.
|
static BrowseTriggerStateHandler.BrowseInternalState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BrowseTriggerStateHandler.BrowseInternalState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BrowseTriggerStateHandler.BrowseInternalState ENTRY_CELL
public static final BrowseTriggerStateHandler.BrowseInternalState LEAVE_CELL
public static final BrowseTriggerStateHandler.BrowseInternalState ENTRY_ROW
public static final BrowseTriggerStateHandler.BrowseInternalState LEAVE_ROW
public static final BrowseTriggerStateHandler.BrowseInternalState ENTRY
public static final BrowseTriggerStateHandler.BrowseInternalState LEAVE
public static BrowseTriggerStateHandler.BrowseInternalState[] values()
for (BrowseTriggerStateHandler.BrowseInternalState c : BrowseTriggerStateHandler.BrowseInternalState.values()) System.out.println(c);
public static BrowseTriggerStateHandler.BrowseInternalState 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 static BrowseTriggerStateHandler.BrowseInternalState get(int eventCode, boolean cell)
eventCode - The event codecell - Indicates the scope of this state where true means the browse cell and
false means the whole browse.