public enum RecordLayout extends java.lang.Enum<RecordLayout> implements ValueEnum
| Enum Constant and Description | 
|---|
| SUMMARY_DATA | 
| SUMMARY_FULL | 
| SUMMARY_INFO | 
| TITLE_DESCRIPTIONShow  titleanddescriptionfields only | 
| TITLE_ONLYShow  title fieldonly | 
| Modifier and Type | Method and Description | 
|---|---|
| java.lang.String | getValue() | 
| static RecordLayout | valueOf(java.lang.String name)Returns the enum constant of this type with the specified name. | 
| static RecordLayout[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final RecordLayout TITLE_ONLY
title field only
 
 If this enumerated value is used in a Component XML
 file or server-side DataSource descriptor (.ds.xml file), use the value "titleOnly".
public static final RecordLayout TITLE_DESCRIPTION
title and description fields only
 
 If this enumerated value is used in a Component XML
 file or server-side DataSource descriptor (.ds.xml file), use the value "titleAndDescription".
public static final RecordLayout SUMMARY_INFO
title, description and info fields only
 
 If this enumerated value is used in a Component XML
 file or server-side DataSource descriptor (.ds.xml file), use the value "summaryInfo".
public static final RecordLayout SUMMARY_DATA
title, description and data fields only
 
 If this enumerated value is used in a Component XML
 file or server-side DataSource descriptor (.ds.xml file), use the value "summaryData".
public static final RecordLayout SUMMARY_FULL
title, description, info and data fields similar to the iPhoneOS Mail application
 
 If this enumerated value is used in a Component XML
 file or server-side DataSource descriptor (.ds.xml file), use the value "summaryFull".
public static RecordLayout[] values()
for (RecordLayout c : RecordLayout.values()) System.out.println(c);
public static RecordLayout 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