public enum GridDropMode extends Enum<GridDropMode>
Enum Constant and Description |
---|
BETWEEN
The drop event can happen between Grid rows.
|
ON_GRID
The drop event will not happen on any specific row, it will show the drop
target outline around the whole grid.
|
ON_TOP
The drop event can happen on top of Grid rows.
|
ON_TOP_OR_BETWEEN
The drop event can happen either on top of or between Grid rows.
|
Modifier and Type | Method and Description |
---|---|
String |
getClientName()
Gets name that is used in the client side representation of the
component.
|
static GridDropMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GridDropMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GridDropMode BETWEEN
public static final GridDropMode ON_TOP
public static final GridDropMode ON_TOP_OR_BETWEEN
public static final GridDropMode ON_GRID
public static GridDropMode[] values()
for (GridDropMode c : GridDropMode.values()) System.out.println(c);
public static GridDropMode valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic String getClientName()
Copyright © 2023. All rights reserved.