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