public static enum BoxAIAgent.Mode extends Enum<BoxAIAgent.Mode>
Enum Constant and Description |
---|
ASK
The type of AI agent used to handle queries.
|
EXTRACT
The type of AI agent used for extracting metadata freeform.
|
EXTRACT_STRUCTURED
The type of AI agent used for extracting metadata structured.
|
TEXT_GEN
The type of AI agent used for generating text.
|
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static BoxAIAgent.Mode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BoxAIAgent.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BoxAIAgent.Mode ASK
public static final BoxAIAgent.Mode TEXT_GEN
public static final BoxAIAgent.Mode EXTRACT
public static final BoxAIAgent.Mode EXTRACT_STRUCTURED
public static BoxAIAgent.Mode[] values()
for (BoxAIAgent.Mode c : BoxAIAgent.Mode.values()) System.out.println(c);
public static BoxAIAgent.Mode 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 String toString()
toString
in class Enum<BoxAIAgent.Mode>