public static enum Text.VerticalAlignment extends Enum<Text.VerticalAlignment>
| Enum Constant and Description |
|---|
REGULAR |
SUBSCRIPT |
SUPERSCRIPT |
| Modifier and Type | Method and Description |
|---|---|
static Text.VerticalAlignment |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Text.VerticalAlignment[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Text.VerticalAlignment SUPERSCRIPT
public static final Text.VerticalAlignment SUBSCRIPT
public static final Text.VerticalAlignment REGULAR
public static Text.VerticalAlignment[] values()
for (Text.VerticalAlignment c : Text.VerticalAlignment.values()) System.out.println(c);
public static Text.VerticalAlignment 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 © 2014. All rights reserved.