public enum TextAlignment3D extends java.lang.Enum<TextAlignment3D>
Enum Constant and Description |
---|
Camera
Align (billboard) to camera
|
Default
Default alignment
|
ScreenAutoRotated
2D text, rotated with alignment to corresponding object ( i.e.
|
ScreenHorizontal
2D text
|
Modifier and Type | Field and Description |
---|---|
int |
nativeAlignment |
Modifier and Type | Method and Description |
---|---|
static TextAlignment3D |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TextAlignment3D[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TextAlignment3D Default
public static final TextAlignment3D Camera
public static final TextAlignment3D ScreenHorizontal
public static final TextAlignment3D ScreenAutoRotated
public static TextAlignment3D[] values()
for (TextAlignment3D c : TextAlignment3D.values()) System.out.println(c);
public static TextAlignment3D 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