public enum GridDropLocation extends Enum<GridDropLocation>
Enum Constant and Description |
---|
ABOVE
Drop above or before the row.
|
BELOW
Drop below or after the row.
|
EMPTY
Dropping into an empty grid, or to the empty area below the grid rows
when
GridDropMode.ON_TOP is used. |
ON_TOP
Drop on top of the row.
|
Modifier and Type | Method and Description |
---|---|
String |
getClientName()
Gets name that is used in the client side representation of the
component.
|
static GridDropLocation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GridDropLocation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GridDropLocation ON_TOP
public static final GridDropLocation ABOVE
public static final GridDropLocation BELOW
public static final GridDropLocation EMPTY
GridDropMode.ON_TOP
is used.public static GridDropLocation[] values()
for (GridDropLocation c : GridDropLocation.values()) System.out.println(c);
public static GridDropLocation 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 © 2025. All rights reserved.