public static enum PreChatForm.Field extends Enum<PreChatForm.Field>
NOT_REQUIRED
Data is not requiredOPTIONAL
Data should be requested if not known but is not requiredREQUIRED
Data must be complete to start a chatOPTIONAL_EDITABLE
Data should be requested if not known but is not requiredREQUIRED_EDITABLE
Data must be complete to start a chatEnum Constant and Description |
---|
NOT_REQUIRED
Data is not required.
|
OPTIONAL
Data should be requested if not known but is not required.
|
OPTIONAL_EDITABLE
Data should be requested if not known but is not required.
|
REQUIRED
Data must be complete to start a chat.
|
REQUIRED_EDITABLE
Data must be complete to start a chat.
|
Modifier and Type | Method and Description |
---|---|
static PreChatForm.Field |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PreChatForm.Field[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PreChatForm.Field NOT_REQUIRED
public static final PreChatForm.Field OPTIONAL
public static final PreChatForm.Field REQUIRED
public static final PreChatForm.Field OPTIONAL_EDITABLE
public static final PreChatForm.Field REQUIRED_EDITABLE
public static PreChatForm.Field[] values()
for (PreChatForm.Field c : PreChatForm.Field.values()) System.out.println(c);
public static PreChatForm.Field 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