public enum RecordDropAppearance extends java.lang.Enum<RecordDropAppearance> implements ValueEnum
dropPosition
, and where the drop indicator will be
displayed if appropriate.Enum Constant and Description |
---|
BETWEEN
When the user drops onto a record, dropPosition will be either "before" or "after" depending on whether the mouse was
over the top or bottom of the target record
|
BODY
No dropPosition will be reported
|
BOTH
When the user drops onto a record, if the drop occurs centered over the record, the dropPosition will be reported as
"over", otherwise it will be "before" or "after" depending on whether the mouse was over the top or bottom of the target
record.
|
OVER
When the user drops onto a record, dropPosition will always be "over"
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getValue() |
static RecordDropAppearance |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RecordDropAppearance[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RecordDropAppearance 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 RecordDropAppearance BETWEEN
If this enumerated value is used in a Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "between".
public static final RecordDropAppearance BOTH
If this enumerated value is used in a Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "both".
public static final RecordDropAppearance BODY
If this enumerated value is used in a Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "body".
public static RecordDropAppearance[] values()
for (RecordDropAppearance c : RecordDropAppearance.values()) System.out.println(c);
public static RecordDropAppearance 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