public enum DirectionConstraint extends java.lang.Enum<DirectionConstraint>
NodeConstraints.setMoveDirection(com.mindfusion.diagramming.DirectionConstraint)
method of the
NodeConstraints
class.Enum Constant and Description |
---|
Horizontal
Users are allowed to move the node horizontally.
|
None
Specifies no restrictions.
|
Vertical
Users are allowed to move the node vertically.
|
Modifier and Type | Method and Description |
---|---|
static DirectionConstraint |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DirectionConstraint[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DirectionConstraint None
public static final DirectionConstraint Horizontal
public static final DirectionConstraint Vertical
public static DirectionConstraint[] values()
for (DirectionConstraint c : DirectionConstraint.values()) System.out.println(c);
public static DirectionConstraint 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