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 SummaryNested classes/interfaces inherited from class java.lang.EnumEnum.EnumDesc<E extends Enum<E>>
- 
Enum Constant SummaryEnum ConstantsEnum ConstantDescriptionno change in appearance.MultiAutoChild is created on top of the component.editMask on top of the component is updated withEditProxy.selectedBordereditMask on top of the component is updated withEditProxy.selectedTintColorandEditProxy.selectedTintOpacity
- 
Method SummaryModifier and TypeMethodDescriptiongetValue()static SelectedAppearanceReturns 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- 
TINTMASKeditMask on top of the component is updated withEditProxy.selectedTintColorandEditProxy.selectedTintOpacityIf this enumerated value is used in a Component XMLfile or server-side DataSource descriptor (.ds.xml file), use the value "tintMask".
- 
OUTLINEMASKeditMask on top of the component is updated withEditProxy.selectedBorderIf this enumerated value is used in a Component XMLfile or server-side DataSource descriptor (.ds.xml file), use the value "outlineMask".
- 
OUTLINEEDGESMultiAutoChild is created on top of the component. This constructs a border around the component using 4 separateoutlineEdgecomponents so that interactivity is not blocked.If this enumerated value is used in a Component XMLfile or server-side DataSource descriptor (.ds.xml file), use the value "outlineEdges".
- 
NONEno change in appearance. OverrideEditProxy.showSelectedAppearance()to create a custom appearance.If this enumerated value is used in a Component XMLfile or server-side DataSource descriptor (.ds.xml file), use the value "none".
 
- 
- 
Method Details- 
valuesReturns 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
 
- 
valueOfReturns 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 name
- NullPointerException- if the argument is null
 
- 
getValue
 
-