com.arctorus.documents
Enum TextureMirrorType

java.lang.Object
  extended by java.lang.Enum<TextureMirrorType>
      extended by com.arctorus.documents.TextureMirrorType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<TextureMirrorType>

public enum TextureMirrorType
extends java.lang.Enum<TextureMirrorType>

Defines different types of a texture mirroring.


Enum Constant Summary
BOTH
          Texture is reflected both horizontally and vertically.
HORIZONTAL
          Texture is reflected horizontally.
NONE
          Texture is not reflected.
VERTICAL
          Texture is reflected vertically.
 
Method Summary
static TextureMirrorType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static TextureMirrorType[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

NONE

public static final TextureMirrorType NONE
Texture is not reflected.


HORIZONTAL

public static final TextureMirrorType HORIZONTAL
Texture is reflected horizontally.


VERTICAL

public static final TextureMirrorType VERTICAL
Texture is reflected vertically.


BOTH

public static final TextureMirrorType BOTH
Texture is reflected both horizontally and vertically.

Method Detail

values

public static final TextureMirrorType[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(TextureMirrorType c : TextureMirrorType.values())
        System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they're declared

valueOf

public static TextureMirrorType 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