|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<HorizontalAlign>
com.flagstone.transform.datatype.HorizontalAlign
public enum HorizontalAlign
HorizontalAlign is used to set the alignment of text displayed in dynamic text fields and the registration point for displaying images.
| Enum Constant Summary | |
|---|---|
CENTER
The item displayed is centre aligned. |
|
JUSTIFY
The item displayed is justified. |
|
LEFT
The item displayed is left aligned. |
|
RIGHT
The item displayed is right aligned. |
|
| Method Summary | |
|---|---|
static HorizontalAlign |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static HorizontalAlign[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final HorizontalAlign LEFT
public static final HorizontalAlign RIGHT
public static final HorizontalAlign CENTER
public static final HorizontalAlign JUSTIFY
| Method Detail |
|---|
public static HorizontalAlign[] values()
for (HorizontalAlign c : HorizontalAlign.values()) System.out.println(c);
public static HorizontalAlign valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is null
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||