public enum SelectionNotificationType extends java.lang.Enum<SelectionNotificationType> implements ValueEnum
reselectOnUpdateNotification| Enum Constant and Description |
|---|
NONE
No selection change notification should fire
|
SELECTIONCHANGED
ListGrid.selectionChanged should fire but
ListGrid.selectionUpdated should not fire. |
SELECTIONUPDATED
ListGrid.selectionChanged and ListGrid.selectionUpdated should both fire. |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue() |
static SelectionNotificationType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SelectionNotificationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SelectionNotificationType NONE
public static final SelectionNotificationType SELECTIONCHANGED
ListGrid.selectionChanged should fire but
ListGrid.selectionUpdated should not fire.public static final SelectionNotificationType SELECTIONUPDATED
ListGrid.selectionChanged and ListGrid.selectionUpdated should both fire.public static SelectionNotificationType[] values()
for (SelectionNotificationType c : SelectionNotificationType.values()) System.out.println(c);
public static SelectionNotificationType 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