org.osm2world.core.target.common
public static enum TextureData.Wrap extends Enum<TextureData.Wrap>
Enum Constant and Description |
---|
CLAMP |
CLAMP_TO_BORDER |
REPEAT |
Modifier and Type | Method and Description |
---|---|
static TextureData.Wrap |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TextureData.Wrap[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TextureData.Wrap REPEAT
public static final TextureData.Wrap CLAMP
public static final TextureData.Wrap CLAMP_TO_BORDER
public static TextureData.Wrap[] values()
for (TextureData.Wrap c : TextureData.Wrap.values()) System.out.println(c);
public static TextureData.Wrap valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant
with the specified nameNullPointerException
- if the argument is null