public static enum GlStateManager.DestFactor extends java.lang.Enum<GlStateManager.DestFactor>
Enum Constant and Description |
---|
CONSTANT_ALPHA |
CONSTANT_COLOR |
DST_ALPHA |
DST_COLOR |
ONE |
ONE_MINUS_CONSTANT_ALPHA |
ONE_MINUS_CONSTANT_COLOR |
ONE_MINUS_DST_ALPHA |
ONE_MINUS_DST_COLOR |
ONE_MINUS_SRC_ALPHA |
ONE_MINUS_SRC_COLOR |
SRC_ALPHA |
SRC_COLOR |
ZERO |
Modifier and Type | Field and Description |
---|---|
int |
factor |
Modifier and Type | Method and Description |
---|---|
static GlStateManager.DestFactor |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GlStateManager.DestFactor[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GlStateManager.DestFactor CONSTANT_ALPHA
public static final GlStateManager.DestFactor CONSTANT_COLOR
public static final GlStateManager.DestFactor DST_ALPHA
public static final GlStateManager.DestFactor DST_COLOR
public static final GlStateManager.DestFactor ONE
public static final GlStateManager.DestFactor ONE_MINUS_CONSTANT_ALPHA
public static final GlStateManager.DestFactor ONE_MINUS_CONSTANT_COLOR
public static final GlStateManager.DestFactor ONE_MINUS_DST_ALPHA
public static final GlStateManager.DestFactor ONE_MINUS_DST_COLOR
public static final GlStateManager.DestFactor ONE_MINUS_SRC_ALPHA
public static final GlStateManager.DestFactor ONE_MINUS_SRC_COLOR
public static final GlStateManager.DestFactor SRC_ALPHA
public static final GlStateManager.DestFactor SRC_COLOR
public static final GlStateManager.DestFactor ZERO
public static GlStateManager.DestFactor[] values()
for (GlStateManager.DestFactor c : GlStateManager.DestFactor.values()) System.out.println(c);
public static GlStateManager.DestFactor 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