public static enum PipelineState.BlendMode extends java.lang.Enum<PipelineState.BlendMode>
| Enum Constant and Description |
|---|
AlphaBlended |
Opaque |
| Modifier and Type | Method and Description |
|---|---|
static PipelineState.BlendMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PipelineState.BlendMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PipelineState.BlendMode Opaque
public static final PipelineState.BlendMode AlphaBlended
public static PipelineState.BlendMode[] values()
for (PipelineState.BlendMode c : PipelineState.BlendMode.values()) System.out.println(c);
public static PipelineState.BlendMode 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