public static enum LineAuthenticationParams.BotPrompt extends java.lang.Enum<LineAuthenticationParams.BotPrompt>
| Enum Constant and Description |
|---|
aggressive
Opens a new screen to add a bot as a friend after the user agrees to the permissions in
the consent screen.
|
normal
Includes an option to add a bot as a friend in the consent screen.
|
| Modifier and Type | Method and Description |
|---|---|
static LineAuthenticationParams.BotPrompt |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LineAuthenticationParams.BotPrompt[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LineAuthenticationParams.BotPrompt normal
public static final LineAuthenticationParams.BotPrompt aggressive
public static LineAuthenticationParams.BotPrompt[] values()
for (LineAuthenticationParams.BotPrompt c : LineAuthenticationParams.BotPrompt.values()) System.out.println(c);
public static LineAuthenticationParams.BotPrompt 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