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