public enum GraphAxesTextDisplayMode extends java.lang.Enum<GraphAxesTextDisplayMode>
The display mode of the axis text of the graph map.
Description:
copyright
company
| Enum Constant and Description |
|---|
ALL
Displays all the text.
|
NONE
Displays none.
|
YAXES
Displays the text of the Y axis.
|
| Modifier and Type | Method and Description |
|---|---|
static GraphAxesTextDisplayMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GraphAxesTextDisplayMode[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
public static final GraphAxesTextDisplayMode ALL
public static final GraphAxesTextDisplayMode NONE
public static final GraphAxesTextDisplayMode YAXES
public static GraphAxesTextDisplayMode[] values()
for (GraphAxesTextDisplayMode c : GraphAxesTextDisplayMode.values())
System.out.println(c);
public static GraphAxesTextDisplayMode 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