public static enum Credits.Align extends Enum<Credits.Align>
Credits.setAlign(Credits.Align) method.| Enum Constant and Description |
|---|
CENTER
Center the credits
|
LEFT
Left align the credits
|
RIGHT
Right align the credits
|
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static Credits.Align |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Credits.Align[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Credits.Align LEFT
public static final Credits.Align CENTER
public static final Credits.Align RIGHT
public static Credits.Align[] values()
for (Credits.Align c : Credits.Align.values()) System.out.println(c);
public static Credits.Align 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 nullpublic String toString()
toString in class Enum<Credits.Align>Copyright © 2015. All Rights Reserved.