public enum MaskSource extends java.lang.Enum<MaskSource>
| Enum Constant and Description |
|---|
MaskSourceAlpha |
MaskSourceBackground |
MaskSourceFile |
MaskSourceModel |
| Modifier and Type | Method and Description |
|---|---|
static MaskSource |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MaskSource[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MaskSource MaskSourceAlpha
public static final MaskSource MaskSourceFile
public static final MaskSource MaskSourceBackground
public static final MaskSource MaskSourceModel
public static MaskSource[] values()
for (MaskSource c : MaskSource.values()) System.out.println(c);
public static MaskSource 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