public static enum Rectangle3DPlotter.RectanglePlotPosition extends Enum<Rectangle3DPlotter.RectanglePlotPosition>
Enum Constant and Description |
---|
BOTTOM_LEFT
Put the bottom left of the rectangle on the data point
|
BOTTOM_RIGHT
Put the bottom right of the rectangle on the data point
|
CENTRAL
Centre the rectangle on the data point
|
TOP_LEFT
Put the top left of the rectangle on the data point
|
TOP_RIGHT
Put the top right of the rectangle on the data point
|
Modifier and Type | Method and Description |
---|---|
static Rectangle3DPlotter.RectanglePlotPosition |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Rectangle3DPlotter.RectanglePlotPosition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Rectangle3DPlotter.RectanglePlotPosition CENTRAL
public static final Rectangle3DPlotter.RectanglePlotPosition TOP_LEFT
public static final Rectangle3DPlotter.RectanglePlotPosition BOTTOM_LEFT
public static final Rectangle3DPlotter.RectanglePlotPosition BOTTOM_RIGHT
public static final Rectangle3DPlotter.RectanglePlotPosition TOP_RIGHT
public static Rectangle3DPlotter.RectanglePlotPosition[] values()
for (Rectangle3DPlotter.RectanglePlotPosition c : Rectangle3DPlotter.RectanglePlotPosition.values()) System.out.println(c);
public static Rectangle3DPlotter.RectanglePlotPosition valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null