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