Enum SelectedAppearance
- All Implemented Interfaces:
ValueEnum
,Serializable
,Comparable<SelectedAppearance>
,Constable
edit mode
and is selected.
Modes such as "tintMask" or "outlineMask" create an "edit
mask"
that is layered over the selected component, and blocks all normal interaction with the component, so that
behaviors like EditProxy.supportsInlineEdit
can
completely take the place of the component's normal interactivity.
"outlineEdges" mode allows normal interaction
with the component, which allows the end user to do things like freeze ListGrid fields
, which the GridEditProxy
can implement as a persistent change to grid's configuration
.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionno change in appearance.MultiAutoChild is created on top of the component.editMask on top of the component is updated withEditProxy.selectedBorder
editMask on top of the component is updated withEditProxy.selectedTintColor
andEditProxy.selectedTintOpacity
-
Method Summary
Modifier and TypeMethodDescriptiongetValue()
static SelectedAppearance
Returns the enum constant of this type with the specified name.static SelectedAppearance[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
TINTMASK
editMask on top of the component is updated withEditProxy.selectedTintColor
andEditProxy.selectedTintOpacity
If this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "tintMask". -
OUTLINEMASK
editMask on top of the component is updated withEditProxy.selectedBorder
If this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "outlineMask". -
OUTLINEEDGES
MultiAutoChild is created on top of the component. This constructs a border around the component using 4 separateoutlineEdge
components so that interactivity is not blocked.If this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "outlineEdges". -
NONE
no change in appearance. OverrideEditProxy.showSelectedAppearance()
to create a custom appearance.If this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "none".
-
-
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
-