public enum RecordDropPosition extends java.lang.Enum<RecordDropPosition> implements ValueEnum
ListGrid.recordDrop() operation with respect to the target record.| Enum Constant and Description |
|---|
AFTER User dropped after the record |
BEFORE User dropped before the record |
NONE Drop position is not over a record |
OVER User dropped directly onto the record |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String | getValue() |
static RecordDropPosition | valueOf(java.lang.String name) Returns the enum constant of this type with the specified name. |
static RecordDropPosition[] | values() Returns an array containing the constants of this enum type, in the order they are declared. |
public static final RecordDropPosition OVER
If this enumerated value is used in a Component XML file or server-side DataSource descriptor (.ds.xml file), use the value "over".
public static final RecordDropPosition BEFORE
If this enumerated value is used in a Component XML file or server-side DataSource descriptor (.ds.xml file), use the value "before".
public static final RecordDropPosition AFTER
If this enumerated value is used in a Component XML file or server-side DataSource descriptor (.ds.xml file), use the value "after".
public static final RecordDropPosition 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 RecordDropPosition[] values()
for (RecordDropPosition c : RecordDropPosition.values()) System.out.println(c);
public static RecordDropPosition 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