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