public static enum CompositeOverlay.Operation extends Enum<CompositeOverlay.Operation>
Modifier and Type | Method and Description |
---|---|
static CompositeOverlay.Operation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CompositeOverlay.Operation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CompositeOverlay.Operation AND
public static final CompositeOverlay.Operation OR
public static final CompositeOverlay.Operation XOR
public static final CompositeOverlay.Operation NOT
public static CompositeOverlay.Operation[] values()
for (CompositeOverlay.Operation c : CompositeOverlay.Operation.values()) System.out.println(c);
public static CompositeOverlay.Operation 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 © 2014–2022 ImageJ. All rights reserved.