public enum LayoutResizeBarPolicy extends java.lang.Enum<LayoutResizeBarPolicy> implements ValueEnum
| Enum Constant and Description |
|---|
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 |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String | getValue() |
static LayoutResizeBarPolicy | valueOf(java.lang.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. |
public static final LayoutResizeBarPolicy MARKED
showResizeBar:true If this enumerated value is used in a Component XML file or server-side DataSource descriptor (.ds.xml file), use the value "marked".
public static final LayoutResizeBarPolicy MIDDLE
LayoutPolicy of "fill" (VLayout, HLayout) since the overall space will always be filled. If this enumerated value is used in a Component XML file or server-side DataSource descriptor (.ds.xml file), use the value "middle".
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. If this enumerated value is used in a Component XML file or server-side DataSource descriptor (.ds.xml file), use the value "all".
public static final LayoutResizeBarPolicy NONE
showResizeBar:true If this enumerated value is used in a Component XML file or server-side DataSource descriptor (.ds.xml file), use the value "none".
public static LayoutResizeBarPolicy[] values()
for (LayoutResizeBarPolicy c : LayoutResizeBarPolicy.values()) System.out.println(c);
public static LayoutResizeBarPolicy 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 namejava.lang.NullPointerException - if the argument is null