public static enum Renderer.LineStyle extends java.lang.Enum<Renderer.LineStyle>
| Enum Constant and Description | 
|---|
| CYLINDERDraw lines as solid cylinders | 
| LINEDraw lines using pixel-based primitives | 
| SOLID_ARROWDraw lines as solid arrows | 
| SPINDLEDraw lines as solid spindles | 
| Modifier and Type | Method and Description | 
|---|---|
| static Renderer.LineStyle | valueOf(java.lang.String name)Returns the enum constant of this type with the specified name. | 
| static Renderer.LineStyle[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final Renderer.LineStyle LINE
public static final Renderer.LineStyle CYLINDER
public static final Renderer.LineStyle SOLID_ARROW
public static final Renderer.LineStyle SPINDLE
public static Renderer.LineStyle[] values()
for (Renderer.LineStyle c : Renderer.LineStyle.values()) System.out.println(c);
public static Renderer.LineStyle 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