public enum AutoFitIconFieldType extends java.lang.Enum<AutoFitIconFieldType> implements ValueEnum
type:"icon" be sized by default?| Enum Constant and Description | 
|---|
| ICONWIDTHsize the field to accommodate the width of the icon | 
| NONEApply no special sizing to icon fields - treat them like any other field in the grid | 
| TITLEsize the field to accommodate the title (or the width of the icon if it exceeds the width of the title. | 
| Modifier and Type | Method and Description | 
|---|---|
| java.lang.String | getValue() | 
| static AutoFitIconFieldType | valueOf(java.lang.String name)Returns the enum constant of this type with the specified name. | 
| static AutoFitIconFieldType[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final AutoFitIconFieldType NONE
 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 final AutoFitIconFieldType ICONWIDTH
 If this enumerated value is used in a Component XML
 file or server-side DataSource descriptor (.ds.xml file), use the value "iconWidth".
public static final AutoFitIconFieldType TITLE
 If this enumerated value is used in a Component XML
 file or server-side DataSource descriptor (.ds.xml file), use the value "title".
public static AutoFitIconFieldType[] values()
for (AutoFitIconFieldType c : AutoFitIconFieldType.values()) System.out.println(c);
public static AutoFitIconFieldType 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