| Enum Constant and Description | 
|---|
| GROUPEDGrouped table is a set of rows embedded in a rounded rectangle | 
| PLAINThe default mode which displays a list of rows | 
| Modifier and Type | Method and Description | 
|---|---|
| java.lang.String | getValue() | 
| static TableMode | valueOf(java.lang.String name)Returns the enum constant of this type with the specified name. | 
| static TableMode[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final TableMode PLAIN
 If this enumerated value is used in a Component XML
 file or server-side DataSource descriptor (.ds.xml file), use the value "plain".
public static final TableMode GROUPED
 If this enumerated value is used in a Component XML
 file or server-side DataSource descriptor (.ds.xml file), use the value "grouped".
public static TableMode[] values()
for (TableMode c : TableMode.values()) System.out.println(c);
public static TableMode 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