|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<FormLayoutType>
com.smartgwt.client.types.FormLayoutType
public enum FormLayoutType
Enum Constant Summary | |
---|---|
ABSOLUTE
Allow absolute positioning of every form item. |
|
TABLE
Use a tabular layout similar to HTML tables, but with much more powerful control over sizing, item visibility and reflow, overflow handling, etc. |
Method Summary | |
---|---|
java.lang.String |
getValue()
|
static FormLayoutType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static FormLayoutType[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final FormLayoutType TABLE
public static final FormLayoutType ABSOLUTE
Allow absolute positioning of every form item. This provides maximum flexibility in placement, with the following limitations:
.
Method Detail |
---|
public static final FormLayoutType[] values()
for(FormLayoutType c : FormLayoutType.values()) System.out.println(c);
public static FormLayoutType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namepublic java.lang.String getValue()
getValue
in interface ValueEnum
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |