public static enum Mask.MaskMode extends java.lang.Enum<Mask.MaskMode>
| Enum Constant and Description |
|---|
MASK_MODE_ADD |
MASK_MODE_INTERSECT |
MASK_MODE_SUBTRACT |
| Modifier and Type | Method and Description |
|---|---|
static Mask.MaskMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Mask.MaskMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Mask.MaskMode MASK_MODE_ADD
public static final Mask.MaskMode MASK_MODE_SUBTRACT
public static final Mask.MaskMode MASK_MODE_INTERSECT
public static Mask.MaskMode[] values()
for (Mask.MaskMode c : Mask.MaskMode.values()) System.out.println(c);
public static Mask.MaskMode valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null