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