org.xith3d.scenegraph
Enum Texture.MipmapMode
java.lang.Object
java.lang.Enum<Texture.MipmapMode>
org.xith3d.scenegraph.Texture.MipmapMode
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<Texture.MipmapMode>
- Enclosing class:
- Texture
public static enum Texture.MipmapMode
- extends java.lang.Enum<Texture.MipmapMode>
|
Enum Constant Summary |
BASE_LEVEL
Mipmap mode - Indicates that this texture only has a base-level image. |
MULTI_LEVEL_MIPMAP
Mipmap mode - Indicates that this texture object has multiple images, one
for each mipmap level. |
| Methods inherited from class java.lang.Enum |
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
BASE_LEVEL
public static final Texture.MipmapMode BASE_LEVEL
- Mipmap mode - Indicates that this texture only has a base-level image.
MULTI_LEVEL_MIPMAP
public static final Texture.MipmapMode MULTI_LEVEL_MIPMAP
- Mipmap mode - Indicates that this texture object has multiple images, one
for each mipmap level. Images for all levels must be set.
values
public static Texture.MipmapMode[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (Texture.MipmapMode c : Texture.MipmapMode.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static Texture.MipmapMode valueOf(java.lang.String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name - the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException - if this enum type has no constant
with the specified name
java.lang.NullPointerException - if the argument is null
booleanValue
public boolean booleanValue()
valueOf
public static Texture.MipmapMode valueOf(boolean boolVal)