public enum SettingType extends Enum<SettingType>
| Enum Constant and Description |
|---|
CALL_TO_ACTIONS
Setting for the Get Started Button or the Persistent Menu.
|
DOMAIN_WHITELISTING
The domain whitelisting.
|
GREETING
Setting for the Greeting Text message.
|
PAYMENT
The payment.
|
| Modifier and Type | Method and Description |
|---|---|
static SettingType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SettingType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SettingType GREETING
public static final SettingType CALL_TO_ACTIONS
public static final SettingType DOMAIN_WHITELISTING
public static final SettingType PAYMENT
public static SettingType[] values()
for (SettingType c : SettingType.values()) System.out.println(c);
public static SettingType 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 nullCopyright © 2017 BotMill. All rights reserved.