public enum ResizeDirection extends java.lang.Enum<ResizeDirection> implements ValueEnum
| Enum Constant and Description | 
|---|
| AFTERresize bar targets the canvas after it in the layout | 
| BEFOREresize bar targets the canvas before it in the layout | 
| Modifier and Type | Method and Description | 
|---|---|
| java.lang.String | getValue() | 
| static ResizeDirection | valueOf(java.lang.String name)Returns the enum constant of this type with the specified name. | 
| static ResizeDirection[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final ResizeDirection BEFORE
 If this enumerated value is used in a Component XML
 file or server-side DataSource descriptor (.ds.xml file), use the value "before".
public static final ResizeDirection AFTER
 If this enumerated value is used in a Component XML
 file or server-side DataSource descriptor (.ds.xml file), use the value "after".
public static ResizeDirection[] values()
for (ResizeDirection c : ResizeDirection.values()) System.out.println(c);
public static ResizeDirection 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