public static enum Renderer.PointStyle extends java.lang.Enum<Renderer.PointStyle>
Enum Constant and Description |
---|
CUBE
Draw points as cubes
|
POINT
Draw points using pixel-based primitives
|
SPHERE
Draw points as solid spheres
|
Modifier and Type | Method and Description |
---|---|
static Renderer.PointStyle |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Renderer.PointStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Renderer.PointStyle SPHERE
public static final Renderer.PointStyle CUBE
public static final Renderer.PointStyle POINT
public static Renderer.PointStyle[] values()
for (Renderer.PointStyle c : Renderer.PointStyle.values()) System.out.println(c);
public static Renderer.PointStyle 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