- All Implemented Interfaces:
Serializable,Comparable<DockDropVisualizationMode>,Constable
Controls how drop zones are visualized during drag.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionShow only the active indicator, without background zones.Show all valid drop zones in the current layout tree.Show only zones related to the currently active target.Hide all drop-zone visuals while dragging.Show valid drop zones within the active target subtree. -
Method Summary
Modifier and TypeMethodDescriptionstatic DockDropVisualizationModeReturns the enum constant of this class with the specified name.static DockDropVisualizationMode[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
OFF
Hide all drop-zone visuals while dragging. -
DEFAULT
Show only zones related to the currently active target. -
ALL_ZONES
Show all valid drop zones in the current layout tree. -
SUBTREE
Show valid drop zones within the active target subtree. -
ACTIVE_ONLY
Show only the active indicator, without background zones.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-