public enum BlendMode extends Enum<BlendMode>
| Enum Constant and Description |
|---|
ADD |
ALPHA |
DARKEN |
DIFFERENCE |
ERASE |
HARDLIGHT |
INVERT |
LAYER |
LIGHTEN |
MULTIPLY |
NORMAL |
OVERLAY |
SCREEN |
SUBTRACT |
| Modifier and Type | Method and Description |
|---|---|
String |
nativeEnum() |
static BlendMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BlendMode |
valueOfNative(String nativeEnum) |
static BlendMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BlendMode ADD
public static final BlendMode ALPHA
public static final BlendMode DARKEN
public static final BlendMode DIFFERENCE
public static final BlendMode ERASE
public static final BlendMode HARDLIGHT
public static final BlendMode INVERT
public static final BlendMode LAYER
public static final BlendMode LIGHTEN
public static final BlendMode MULTIPLY
public static final BlendMode NORMAL
public static final BlendMode OVERLAY
public static final BlendMode SCREEN
public static final BlendMode SUBTRACT
public static BlendMode[] values()
for (BlendMode c : BlendMode.values()) System.out.println(c);
public static BlendMode 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 nullpublic String nativeEnum()
Copyright © 2013. All Rights Reserved.