public static enum ProgramStore.BlendDstFunc extends Enum<ProgramStore.BlendDstFunc>
Enum Constant and Description |
---|
DST_ALPHA |
ONE |
ONE_MINUS_DST_ALPHA |
ONE_MINUS_SRC_ALPHA |
ONE_MINUS_SRC_COLOR |
SRC_ALPHA |
SRC_COLOR |
ZERO |
Modifier and Type | Method and Description |
---|---|
static ProgramStore.BlendDstFunc |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProgramStore.BlendDstFunc[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProgramStore.BlendDstFunc ZERO
public static final ProgramStore.BlendDstFunc ONE
public static final ProgramStore.BlendDstFunc SRC_COLOR
public static final ProgramStore.BlendDstFunc ONE_MINUS_SRC_COLOR
public static final ProgramStore.BlendDstFunc SRC_ALPHA
public static final ProgramStore.BlendDstFunc ONE_MINUS_SRC_ALPHA
public static final ProgramStore.BlendDstFunc DST_ALPHA
public static final ProgramStore.BlendDstFunc ONE_MINUS_DST_ALPHA
public static ProgramStore.BlendDstFunc[] values()
for (ProgramStore.BlendDstFunc c : ProgramStore.BlendDstFunc.values()) System.out.println(c);
public static ProgramStore.BlendDstFunc 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 null