public static enum MaterialModelV2.AlphaMode extends java.lang.Enum<MaterialModelV2.AlphaMode>
| Enum Constant and Description |
|---|
BLEND
Blend mode
|
MASK
Masking mode
|
OPAQUE
Opaque mode
|
| Modifier and Type | Method and Description |
|---|---|
static MaterialModelV2.AlphaMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MaterialModelV2.AlphaMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MaterialModelV2.AlphaMode OPAQUE
public static final MaterialModelV2.AlphaMode MASK
public static final MaterialModelV2.AlphaMode BLEND
public static MaterialModelV2.AlphaMode[] values()
for (MaterialModelV2.AlphaMode c : MaterialModelV2.AlphaMode.values()) System.out.println(c);
public static MaterialModelV2.AlphaMode 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 nullCopyright © 2022. All Rights Reserved.