Enum Class HeaderDragType
- All Implemented Interfaces:
Serializable
,Comparable<HeaderDragType>
,Constable
Deprecated.
This is a preview feature which may be changed or removed in a future release.
Specifies whether a node is a draggable part of a
HeaderBar
.- Since:
- 25
- See Also:
-
Nested Class Summary
Nested classes/interfaces declared in class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionDeprecated.The node is a draggable part of theHeaderBar
.Deprecated.The node and its descendants are a draggable part of theHeaderBar
.Deprecated.The node is not a draggable part of theHeaderBar
. -
Method Summary
Modifier and TypeMethodDescriptionstatic HeaderDragType
Deprecated.Returns the enum constant of this class with the specified name.static HeaderDragType[]
values()
Deprecated.Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
NONE
Deprecated.The node is not a draggable part of theHeaderBar
.If the node inherits
DRAGGABLE_SUBTREE
from its parent, the inheritance stops and descendants of the node will not inheritDRAGGABLE_SUBTREE
. -
DRAGGABLE
Deprecated.The node is a draggable part of theHeaderBar
.This drag type does not apply to descendants of the node. However, it does not stop an inherited
DRAGGABLE_SUBTREE
drag type from being inherited by descendants of the node. -
DRAGGABLE_SUBTREE
Deprecated.The node and its descendants are a draggable part of theHeaderBar
.This drag type is inherited by descendants of the node until a descendant specifies
NONE
.
-
-
Method Details
-
values
Deprecated.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
Deprecated.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
-