public enum FirstCallDisplay extends Enum<FirstCallDisplay>
| Enum Constant and Description | 
|---|
| autoThe display is automatically set according to the selection. | 
| recordIf the predicate has at least one record, forces the display of the record form. | 
| viewForces the display of the tabular view or of the hierarchical view. | 
| Modifier and Type | Method and Description | 
|---|---|
| boolean | isAuto() | 
| boolean | isRecord() | 
| boolean | isView() | 
| static FirstCallDisplay | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static FirstCallDisplay[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final FirstCallDisplay auto
The following rules apply:
public static final FirstCallDisplay view
public static final FirstCallDisplay record
public static FirstCallDisplay[] values()
for (FirstCallDisplay c : FirstCallDisplay.values()) System.out.println(c);
public static FirstCallDisplay valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic boolean isAuto()
public boolean isView()
public boolean isRecord()