public static enum ShapeNodeRenderer.NodeShape extends java.lang.Enum<ShapeNodeRenderer.NodeShape>
Enum Constant and Description |
---|
BOX
Node rendered inside of a rectangular box
|
DIAMOND
Node rendered inside of a diamond
|
HEXAGON
Node rendered inside of a hexagon
|
OCTAGON
Node rendered inside of an octagon
|
OVAL
Node rendered inside of an oval
|
TRIANGLE_DOWN
Node rendered inside of a downward pointing triangle
|
TRIANGLE_UP
Node rendered inside of an upward pointing triangle
|
Modifier and Type | Method and Description |
---|---|
static ShapeNodeRenderer.NodeShape |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ShapeNodeRenderer.NodeShape[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ShapeNodeRenderer.NodeShape OVAL
public static final ShapeNodeRenderer.NodeShape BOX
public static final ShapeNodeRenderer.NodeShape DIAMOND
public static final ShapeNodeRenderer.NodeShape TRIANGLE_UP
public static final ShapeNodeRenderer.NodeShape TRIANGLE_DOWN
public static final ShapeNodeRenderer.NodeShape HEXAGON
public static final ShapeNodeRenderer.NodeShape OCTAGON
public static ShapeNodeRenderer.NodeShape[] values()
for (ShapeNodeRenderer.NodeShape c : ShapeNodeRenderer.NodeShape.values()) System.out.println(c);
public static ShapeNodeRenderer.NodeShape 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