public enum BotMode extends Enum<BotMode>
| Enum Constant and Description |
|---|
MULTI_AGENT |
SINGLE_AGENT |
SINGLE_AGENT_WORKFLOW |
| Modifier and Type | Method and Description |
|---|---|
static BotMode |
fromValue(int value) |
int |
getValue() |
static BotMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BotMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BotMode SINGLE_AGENT
public static final BotMode MULTI_AGENT
public static final BotMode SINGLE_AGENT_WORKFLOW
public static BotMode[] values()
for (BotMode c : BotMode.values()) System.out.println(c);
public static BotMode 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 nullpublic int getValue()
public static BotMode fromValue(int value)
Copyright © 2024. All rights reserved.