public enum FbBotMillPolicy extends Enum<FbBotMillPolicy>
FbBot will use when
processing the callback handler chain.| Enum Constant and Description |
|---|
FIRST_ONLY
Runs the chain only until the first condition is met.
|
PROCESS_ALL
Runs always all the chain.
|
| Modifier and Type | Method and Description |
|---|---|
static FbBotMillPolicy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FbBotMillPolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FbBotMillPolicy FIRST_ONLY
public static final FbBotMillPolicy PROCESS_ALL
public static FbBotMillPolicy[] values()
for (FbBotMillPolicy c : FbBotMillPolicy.values()) System.out.println(c);
public static FbBotMillPolicy 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.