public enum JCGLDepthClamping extends Enum<JCGLDepthClamping>
| Enum Constant and Description |
|---|
DEPTH_CLAMP_DISABLED
Depth clamping is disabled.
|
DEPTH_CLAMP_ENABLED
Depth clamping is enabled.
|
| Modifier and Type | Method and Description |
|---|---|
static JCGLDepthClamping |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JCGLDepthClamping[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JCGLDepthClamping DEPTH_CLAMP_ENABLED
public static final JCGLDepthClamping DEPTH_CLAMP_DISABLED
public static JCGLDepthClamping[] values()
for (JCGLDepthClamping c : JCGLDepthClamping.values()) System.out.println(c);
public static JCGLDepthClamping valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2016 <code@io7m.com> http://io7m.com