public enum TitleFieldSelectionMode extends Enum<TitleFieldSelectionMode>
| Enum Constant and Description |
|---|
AUTO
Automatically set the title field.
|
MANUAL
Manually set a field as the record title.
|
| Modifier and Type | Method and Description |
|---|---|
static TitleFieldSelectionMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TitleFieldSelectionMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TitleFieldSelectionMode AUTO
public static final TitleFieldSelectionMode MANUAL
public static TitleFieldSelectionMode[] values()
for (TitleFieldSelectionMode c : TitleFieldSelectionMode.values()) System.out.println(c);
public static TitleFieldSelectionMode 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 null