nl.coderight.jazz.form
Enum FormLayout.Align
java.lang.Object
java.lang.Enum<FormLayout.Align>
nl.coderight.jazz.form.FormLayout.Align
- All Implemented Interfaces:
- Serializable, Comparable<FormLayout.Align>
- Enclosing class:
- FormLayout
public static enum FormLayout.Align
- extends Enum<FormLayout.Align>
TOP
public static final FormLayout.Align TOP
BOTTOM
public static final FormLayout.Align BOTTOM
CENTER
public static final FormLayout.Align CENTER
LEFT
public static final FormLayout.Align LEFT
RIGHT
public static final FormLayout.Align RIGHT
values
public static FormLayout.Align[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (FormLayout.Align c : FormLayout.Align.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static FormLayout.Align valueOf(String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name - the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is null
Copyright 2010 CodeRight, All rights reserved.