public static enum GLProgramInfo.RenderingMode extends java.lang.Enum<GLProgramInfo.RenderingMode>
Enum Constant and Description |
---|
DEFAULT |
INSTANCED_AFFINES |
INSTANCED_FRAMES |
INSTANCED_LINES |
INSTANCED_POINTS |
POINTS |
Modifier and Type | Method and Description |
---|---|
static GLProgramInfo.RenderingMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GLProgramInfo.RenderingMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GLProgramInfo.RenderingMode DEFAULT
public static final GLProgramInfo.RenderingMode POINTS
public static final GLProgramInfo.RenderingMode INSTANCED_POINTS
public static final GLProgramInfo.RenderingMode INSTANCED_LINES
public static final GLProgramInfo.RenderingMode INSTANCED_FRAMES
public static final GLProgramInfo.RenderingMode INSTANCED_AFFINES
public static GLProgramInfo.RenderingMode[] values()
for (GLProgramInfo.RenderingMode c : GLProgramInfo.RenderingMode.values()) System.out.println(c);
public static GLProgramInfo.RenderingMode 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