public enum CompositeMode extends Enum<CompositeMode>
Modifier and Type | Method and Description |
---|---|
static CompositeMode |
valueOf(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(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 nullCopyright © 2020. All rights reserved.