public static enum AdornedGraphicNode.Location extends java.lang.Enum<AdornedGraphicNode.Location>
| Enum Constant and Description |
|---|
LEFT_BOTTOM
Place it to the left bottom
|
LEFT_TOP
Place it to the left top
|
RIGHT_BOTTOM
Place it to the right bottom
|
RIGHT_TOP
Place it to the right top
|
| Modifier and Type | Method and Description |
|---|---|
static AdornedGraphicNode.Location |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AdornedGraphicNode.Location[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AdornedGraphicNode.Location LEFT_TOP
public static final AdornedGraphicNode.Location LEFT_BOTTOM
public static final AdornedGraphicNode.Location RIGHT_TOP
public static final AdornedGraphicNode.Location RIGHT_BOTTOM
public static AdornedGraphicNode.Location[] values()
for (AdornedGraphicNode.Location c : AdornedGraphicNode.Location.values()) System.out.println(c);
public static AdornedGraphicNode.Location 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