public enum ElementAlignment extends Enum<ElementAlignment>
| Enum Constant and Description |
|---|
LEFT_ALIGN |
NONE |
RIGHT_ALIGN |
| Modifier and Type | Method and Description |
|---|---|
boolean |
isLeft() |
boolean |
isNoChange() |
boolean |
isRight() |
static ElementAlignment |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ElementAlignment[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ElementAlignment NONE
public static final ElementAlignment LEFT_ALIGN
public static final ElementAlignment RIGHT_ALIGN
public static ElementAlignment[] values()
for (ElementAlignment c : ElementAlignment.values()) System.out.println(c);
public static ElementAlignment 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 boolean isNoChange()
public boolean isRight()
public boolean isLeft()
Copyright © 2020. All rights reserved.