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