public enum TextureType extends java.lang.Enum<TextureType>
TexturePainter| Enum Constant and Description |
|---|
alpha
Alpha layer texture.
|
darkLinen
Dark linen cloth texture.
|
darkMaze
Dark maze texture.
|
escheresque
Escheresque texture.
|
graphy
Graphy texture.
|
illusion
Illusion texture.
|
lightMaze
Light maze texture.
|
linen
Linen cloth texture.
|
none
Empty texture.
|
washedWall
Washed wall texture.
|
wildOliva
Wild oliva texture.
|
| Modifier and Type | Method and Description |
|---|---|
java.awt.image.BufferedImage |
getTexture()
Returns texture image.
|
static TextureType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TextureType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TextureType none
public static final TextureType linen
public static final TextureType darkLinen
public static final TextureType graphy
public static final TextureType illusion
public static final TextureType escheresque
public static final TextureType wildOliva
public static final TextureType darkMaze
public static final TextureType lightMaze
public static final TextureType washedWall
public static final TextureType alpha
public static TextureType[] values()
for (TextureType c : TextureType.values()) System.out.println(c);
public static TextureType 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 nullpublic java.awt.image.BufferedImage getTexture()