public enum CompositeOperation extends Enum<CompositeOperation>
| Enum Constant and Description |
|---|
COPY
Displays the source image.
|
DESTINATION_ATOP
Displays the destination image on top of the source image.
|
DESTINATION_IN
Displays the destination image in to the source image.
|
DESTINATION_OUT
Displays the destination image out of the source image.
|
DESTINATION_OVER
Displays the destination image over the source image.
|
LIGHTER
Displays the source image + the destination image.
|
SOURCE_ATOP
Displays the source image on top of the destination image.
|
SOURCE_IN
Displays the source image in to the destination image.
|
SOURCE_OUT
Displays the source image out of the destination image.
|
SOURCE_OVER
Displays the source image over the destination image.
|
XOR
The source image is combined by using an exclusive OR with the destination image.
|
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static CompositeOperation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CompositeOperation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CompositeOperation COPY
public static final CompositeOperation DESTINATION_ATOP
public static final CompositeOperation DESTINATION_IN
public static final CompositeOperation DESTINATION_OUT
public static final CompositeOperation DESTINATION_OVER
public static final CompositeOperation LIGHTER
public static final CompositeOperation SOURCE_ATOP
public static final CompositeOperation SOURCE_IN
public static final CompositeOperation SOURCE_OUT
public static final CompositeOperation SOURCE_OVER
public static final CompositeOperation XOR
public static CompositeOperation[] values()
for (CompositeOperation c : CompositeOperation.values()) System.out.println(c);
public static CompositeOperation 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 toString()
toString in class Enum<CompositeOperation>Copyright © 2018 Regenstrief Center for Biomedical Informatics. All rights reserved.