|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<TextureAlignmentType>
com.arctorus.documents.TextureAlignmentType
public enum TextureAlignmentType
Defines different types of texture alignments.
Enum Constant Summary | |
---|---|
BOTTOM
Texture is aligned to the bottom. |
|
BOTTOM_LEFT
Texture is aligned to the bottom left corner. |
|
BOTTOM_RIGHT
Texture is aligned to the bottom right corner. |
|
CENTER
Texture is aligned to the center. |
|
LEFT
Texture is aligned to the left |
|
RIGHT
Texture is aligned to the right. |
|
TOP
Texture is aligned to the top. |
|
TOP_LEFT
Texture is aligned to the top left corner. |
|
TOP_RIGHT
Texture is aligned to the top right corner. |
Method Summary | |
---|---|
static TextureAlignmentType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static TextureAlignmentType[] |
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 |
---|
public static final TextureAlignmentType TOP_LEFT
public static final TextureAlignmentType TOP
public static final TextureAlignmentType TOP_RIGHT
public static final TextureAlignmentType LEFT
public static final TextureAlignmentType CENTER
public static final TextureAlignmentType RIGHT
public static final TextureAlignmentType BOTTOM_LEFT
public static final TextureAlignmentType BOTTOM
public static final TextureAlignmentType BOTTOM_RIGHT
Method Detail |
---|
public static final TextureAlignmentType[] values()
for(TextureAlignmentType c : TextureAlignmentType.values()) System.out.println(c);
public static TextureAlignmentType 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 name
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |