Package com.smartgwt.client.types
Enum RecordDropAppearance
- All Implemented Interfaces:
ValueEnum
,Serializable
,Comparable<RecordDropAppearance>
,Constable
Controls how ListGrid record drop events report their
dropPosition
, and where the drop indicator will be
displayed if appropriate.-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionWhen 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 recordNo dropPosition will be reportedWhen 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.When the user drops onto a record, dropPosition will always be "over" -
Method Summary
Modifier and TypeMethodDescriptiongetValue()
static RecordDropAppearance
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.
-
Enum Constant Details
-
OVER
When the user drops onto a record, dropPosition will always be "over"If this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "over". -
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 recordIf this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "between". -
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.If this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "both". -
BODY
No dropPosition will be reportedIf this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "body".
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
getValue
-