public static enum Context2d.Composite extends java.lang.Enum<Context2d.Composite>
Enum Constant and Description |
---|
COPY
A (B is ignored).
|
DESTINATION_ATOP
B atop A.
|
DESTINATION_IN
B in A.
|
DESTINATION_OUT
B out A.
|
DESTINATION_OVER
B over A.
|
LIGHTER
A plus B.
|
SOURCE_ATOP
A atop B.
|
SOURCE_IN
A in B.
|
SOURCE_OUT
A out B.
|
SOURCE_OVER
A over B.
|
XOR
A xor B.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getValue() |
static Context2d.Composite |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Context2d.Composite[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Context2d.Composite COPY
public static final Context2d.Composite DESTINATION_ATOP
public static final Context2d.Composite DESTINATION_IN
public static final Context2d.Composite DESTINATION_OUT
public static final Context2d.Composite DESTINATION_OVER
public static final Context2d.Composite LIGHTER
public static final Context2d.Composite SOURCE_ATOP
public static final Context2d.Composite SOURCE_IN
public static final Context2d.Composite SOURCE_OUT
public static final Context2d.Composite SOURCE_OVER
public static final Context2d.Composite XOR
public static Context2d.Composite[] values()
for (Context2d.Composite c : Context2d.Composite.values()) System.out.println(c);
public static Context2d.Composite 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 nullpublic java.lang.String getValue()