public enum ColorMask extends Enum<ColorMask>
| Enum Constant and Description |
|---|
BLUE
Blue Color Mask.
|
GREEN
Green Color Mask.
|
RED
Red Color Mask.
|
| Modifier and Type | Field and Description |
|---|---|
static int |
MAX_DEPTH
Maximum value a single RGB value is allowed.
|
| Modifier and Type | Method and Description |
|---|---|
static ColorMask |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ColorMask[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ColorMask RED
public static final ColorMask GREEN
public static final ColorMask BLUE
public static final int MAX_DEPTH
public static ColorMask[] values()
for (ColorMask c : ColorMask.values()) System.out.println(c);
public static ColorMask 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 © 2013–2020 Adobe. All rights reserved.