public enum AutoHorizontalAlignment extends Enum<AutoHorizontalAlignment>
| Enum Constant and Description |
|---|
center |
contentEnd |
contentStart |
defaultAlign |
justify |
left |
localeEnd |
localeStart |
right |
| Modifier and Type | Method and Description |
|---|---|
static AutoHorizontalAlignment |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AutoHorizontalAlignment[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AutoHorizontalAlignment center
public static final AutoHorizontalAlignment justify
public static final AutoHorizontalAlignment left
public static final AutoHorizontalAlignment right
public static final AutoHorizontalAlignment localeStart
public static final AutoHorizontalAlignment localeEnd
public static final AutoHorizontalAlignment defaultAlign
public static final AutoHorizontalAlignment contentStart
public static final AutoHorizontalAlignment contentEnd
public static AutoHorizontalAlignment[] values()
for (AutoHorizontalAlignment c : AutoHorizontalAlignment.values()) System.out.println(c);
public static AutoHorizontalAlignment 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 © 2015. All rights reserved.