public static enum ConnectingTextureData.RenderType extends java.lang.Enum<ConnectingTextureData.RenderType>
| Enum Constant and Description |
|---|
CUTOUT
Every pixel in the texture will be either fully transparent or fully opaque.
|
OPAQUE
Pixels in the texture will be rendered fully opaque.
|
TRANSLUCENT
Pixels will be rendered with the transparency in the texture.
|
| Modifier and Type | Method and Description |
|---|---|
static ConnectingTextureData.RenderType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ConnectingTextureData.RenderType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConnectingTextureData.RenderType OPAQUE
public static final ConnectingTextureData.RenderType CUTOUT
public static final ConnectingTextureData.RenderType TRANSLUCENT
public static ConnectingTextureData.RenderType[] values()
for (ConnectingTextureData.RenderType c : ConnectingTextureData.RenderType.values()) System.out.println(c);
public static ConnectingTextureData.RenderType 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