public static enum Renderer.AxisDrawStyle extends java.lang.Enum<Renderer.AxisDrawStyle>
| Enum Constant and Description | 
|---|
ARROW
Render the axes as three solid arrows 
 | 
LINE
Render the axes as three pixel-based lines 
 | 
OFF
Do not render the axes 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static Renderer.AxisDrawStyle | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static Renderer.AxisDrawStyle[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final Renderer.AxisDrawStyle OFF
public static final Renderer.AxisDrawStyle LINE
public static final Renderer.AxisDrawStyle ARROW
public static Renderer.AxisDrawStyle[] values()
for (Renderer.AxisDrawStyle c : Renderer.AxisDrawStyle.values()) System.out.println(c);
public static Renderer.AxisDrawStyle 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