com.smartgwt.client.types
Enum LayoutPolicy

java.lang.Object
  extended by java.lang.Enum<LayoutPolicy>
      extended by com.smartgwt.client.types.LayoutPolicy
All Implemented Interfaces:
ValueEnum, Serializable, Comparable<LayoutPolicy>

public enum LayoutPolicy
extends Enum<LayoutPolicy>
implements ValueEnum

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

NONE

public static final LayoutPolicy NONE
Layout does not try to size members on the axis at all, merely stacking them (length axis) and leaving them at default breadth.


FILL

public static final LayoutPolicy FILL
Layout sizes members so that they fill the specified size of the The rules are:

Method Detail

values

public static LayoutPolicy[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (LayoutPolicy c : LayoutPolicy.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static LayoutPolicy valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null

getValue

public String getValue()
Specified by:
getValue in interface ValueEnum