public static enum JavaPlot.Key extends java.lang.Enum<JavaPlot.Key>
Enum Constant and Description |
---|
BELOW |
BOTTOM_LEFT |
BOTTOM_RIGHT |
OFF |
OUTSIDE |
TOP_LEFT |
TOP_RIGHT |
Modifier and Type | Method and Description |
---|---|
static JavaPlot.Key |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static JavaPlot.Key[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JavaPlot.Key OFF
public static final JavaPlot.Key TOP_RIGHT
public static final JavaPlot.Key BOTTOM_RIGHT
public static final JavaPlot.Key TOP_LEFT
public static final JavaPlot.Key BOTTOM_LEFT
public static final JavaPlot.Key BELOW
public static final JavaPlot.Key OUTSIDE
public static JavaPlot.Key[] values()
for (JavaPlot.Key c : JavaPlot.Key.values()) System.out.println(c);
public static JavaPlot.Key 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