|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||
java.lang.Objectjava.lang.Enum<LayoutResizeBarPolicy>
com.smartgwt.client.types.LayoutResizeBarPolicy
public enum LayoutResizeBarPolicy
Policy for whether resize bars are shown on members by default.
| Enum Constant Summary | |
|---|---|
ALL
resize bars are shown on all resizable members that are not explicitly marked showResizeBar:false, including the last member. |
|
MARKED
resize bars are only shown on members marked showResizeBar:true |
|
MIDDLE
resize bars are shown on all resizable members that are not explicitly marked showResizeBar:false, except the last member. |
|
NONE
resize bars are not shown even if members are marked with showResizeBar:true |
|
| Method Summary | |
|---|---|
String |
getValue()
|
static LayoutResizeBarPolicy |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static LayoutResizeBarPolicy[] |
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 LayoutResizeBarPolicy MARKED
showResizeBar:true
public static final LayoutResizeBarPolicy MIDDLE
LayoutPolicy of "fill" (VLayout, HLayout) since the overall
space will always be filled.
public static final LayoutResizeBarPolicy ALL
LayoutPolicy of "none" (VStack, HStack) since the
overall size of the layout is dictated by it's member's sizes.
public static final LayoutResizeBarPolicy NONE
showResizeBar:true
| Method Detail |
|---|
public static LayoutResizeBarPolicy[] values()
for (LayoutResizeBarPolicy c : LayoutResizeBarPolicy.values()) System.out.println(c);
public static LayoutResizeBarPolicy 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 | ||||||||