public enum NodeHandleType extends java.lang.Enum<NodeHandleType>
Enum Constant and Description |
---|
Move
A central selection handle that can be used to move the node.
|
ResizeBottomCenter
A bottom-center handle that can be used to resize the node vertically.
|
ResizeBottomLeft
A bottom-left handle that can be used to resize the node.
|
ResizeBottomRight
A bottom-right handle that can be used to resize the node.
|
ResizeMiddleLeft
A middle-left handle that can be used to resize the node horizontally.
|
ResizeMiddleRight
A middle-right handle that can be used to resize the node horizontally.
|
ResizeTopCenter
A top-center handle that can be used to resize the node vertically.
|
ResizeTopLeft
A top-left handle that can be used to resize the node.
|
ResizeTopRight
A top-right handle that can be used to resize the node.
|
Rotate
A rotation handle that can be used to rotate the node.
|
Modifier and Type | Method and Description |
---|---|
static NodeHandleType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static NodeHandleType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NodeHandleType ResizeTopLeft
public static final NodeHandleType ResizeTopRight
public static final NodeHandleType ResizeBottomRight
public static final NodeHandleType ResizeBottomLeft
public static final NodeHandleType ResizeTopCenter
public static final NodeHandleType ResizeMiddleRight
public static final NodeHandleType ResizeBottomCenter
public static final NodeHandleType ResizeMiddleLeft
public static final NodeHandleType Move
public static final NodeHandleType Rotate
public static NodeHandleType[] values()
for (NodeHandleType c : NodeHandleType.values()) System.out.println(c);
public static NodeHandleType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null