public enum SelectionNotificationType extends java.lang.Enum<SelectionNotificationType> implements ValueEnum
ListGrid.reselectOnUpdateNotifications| 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
 If this enumerated value is used in a Component XML
 file or server-side DataSource descriptor (.ds.xml file), use the value "none".
public static final SelectionNotificationType SELECTIONCHANGED
ListGrid.selectionChanged() should fire but
 ListGrid.selectionUpdated() should not
 fire.
 
 If this enumerated value is used in a Component XML
 file or server-side DataSource descriptor (.ds.xml file), use the value "selectionChanged".
public static final SelectionNotificationType SELECTIONUPDATED
ListGrid.selectionChanged() and ListGrid.selectionUpdated() should both fire.
 
 If this enumerated value is used in a Component XML
 file or server-side DataSource descriptor (.ds.xml file), use the value "selectionUpdated".
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