public enum DepthFunction extends Enum<DepthFunction>
| Enum Constant and Description |
|---|
ALWAYS |
EQUAL |
GREATER |
GREATER_OR_EQUAL |
LESS |
LESS_OR_EQUAL |
NEVER |
NOT_EQUAL |
| Modifier and Type | Method and Description |
|---|---|
static DepthFunction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DepthFunction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DepthFunction NEVER
public static final DepthFunction LESS
public static final DepthFunction EQUAL
public static final DepthFunction LESS_OR_EQUAL
public static final DepthFunction GREATER
public static final DepthFunction NOT_EQUAL
public static final DepthFunction GREATER_OR_EQUAL
public static final DepthFunction ALWAYS
public static DepthFunction[] values()
for (DepthFunction c : DepthFunction.values()) System.out.println(c);
public static DepthFunction 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 © 2014. All rights reserved.