public static enum RowHoverEvent.HoveringScope extends java.lang.Enum<RowHoverEvent.HoveringScope>
| Enum Constant and Description | 
|---|
| CELL_HOVERCell-only hover event, the mouse remains on the same row | 
| ROW_HOVERChange in the hovering row, the mouse is moving over different rows | 
| UNKNOWNBackward-compatibility parameter to handle the rare case where we don't
 know the event's context, because it is outside of CellTable. | 
| Modifier and Type | Method and Description | 
|---|---|
| static RowHoverEvent.HoveringScope | valueOf(java.lang.String name)Returns the enum constant of this type with the specified name. | 
| static RowHoverEvent.HoveringScope[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final RowHoverEvent.HoveringScope UNKNOWN
public static final RowHoverEvent.HoveringScope ROW_HOVER
public static final RowHoverEvent.HoveringScope CELL_HOVER
public static RowHoverEvent.HoveringScope[] values()
for (RowHoverEvent.HoveringScope c : RowHoverEvent.HoveringScope.values()) System.out.println(c);
public static RowHoverEvent.HoveringScope 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