|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<LayoutPolicy>
com.smartgwt.client.types.LayoutPolicy
public enum LayoutPolicy
Policy controlling how the Layout will manage member sizes on this axis.
See also ${isc.DocUtils.linkForRef('attr:Layout.overflow')}.
Enum Constant Summary | |
---|---|
FILL
Layout sizes members so that they fill the specified size of the The rules are: Any component given an initial pixel size, programmatically resized to a specific pixel size, or drag resized by user action is left at that exact size Any component that autofits
is given exactly the space it
needs, never forced to take up more.
All other components split
the remaining space equally, or according to their
relative percentages.
|
|
NONE
Layout does not try to size members on the axis at all, merely stacking them (length axis) and leaving them at default breadth. |
Method Summary | |
---|---|
String |
getValue()
|
static LayoutPolicy |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static LayoutPolicy[] |
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 LayoutPolicy NONE
public static final LayoutPolicy FILL
autofits
is given exactly the space it
needs, never forced to take up more.
Method Detail |
---|
public static LayoutPolicy[] values()
for (LayoutPolicy c : LayoutPolicy.values()) System.out.println(c);
public static LayoutPolicy 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 nullpublic String getValue()
getValue
in interface ValueEnum
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |