public enum SelectionNotificationType extends java.lang.Enum<SelectionNotificationType> implements ValueEnum
ListGrid.reselectOnUpdateNotifications and
 TileGrid.reselectOnUpdateNotifications.| Enum Constant and Description | 
|---|
| NONENo selection change notification should fire | 
| SELECTIONCHANGEDselectionChanged()should fire butselectionUpdated()should not fire. | 
| SELECTIONUPDATEDselectionChanged()andselectionUpdated()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
selectionChanged() should fire but 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
selectionChanged() and 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