public enum BlendMode extends Enum<BlendMode> implements IEnumWithValue
| Enum Constant and Description |
|---|
FUNC_ADD
source + destination
|
FUNC_SUBTRACT
source - destination
|
MAX
Maximum of source and destination
|
MIN
Minimum of source and destination
|
| Modifier and Type | Method and Description |
|---|---|
int |
value() |
static BlendMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BlendMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOffromValue, transformForClientpublic static final BlendMode FUNC_ADD
public static final BlendMode FUNC_SUBTRACT
public static final BlendMode MAX
public static final BlendMode MIN
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 int value()
value in interface IEnumWithValueCopyright © 2018 Regenstrief Center for Biomedical Informatics. All rights reserved.