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