public enum Valign extends Enum<Valign>
TextBillboardRenderer, w.r.t. its position.| Enum Constant and Description |
|---|
BOTTOM
Bottom vertical alignment.
|
CENTER
Centered vertical alignment.
|
GROUND
Ground vertical alignment.
|
TOP
Top vertical alignment.
|
| Modifier and Type | Method and Description |
|---|---|
static Valign |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Valign[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Valign TOP
public static final Valign GROUND
public static final Valign CENTER
public static final Valign BOTTOM
public static Valign[] values()
for (Valign c : Valign.values()) System.out.println(c);
public static Valign valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2016. All rights reserved.