public enum AIServiceMode extends java.lang.Enum<AIServiceMode> implements ValueEnum
The amount of interaction with AI is lowest in AI Assist mode. AIDE requires more interaction with AI, and Hybrid mode requires the most amount of interaction. More interaction with AI generally requires more time to process the component view request.
Enum Constant and Description |
---|
AIASSIST
AI Assist - AI is driving existing UI on the user's behalf.
|
AIDE
AI Data Enhance - Per-record augmentation or enhancements provided via AI.
|
HYBRID
AI decides whether AI Assist, AIDE, or some combination of both approaches should be used to best respond to the
component view request.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getValue() |
static AIServiceMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AIServiceMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AIServiceMode AIASSIST
AdvancedCriteria
.
If this enumerated value is used in a Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "aiAssist".
public static final AIServiceMode AIDE
If this enumerated value is used in a Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "AIDE".
public static final AIServiceMode HYBRID
If this enumerated value is used in a Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "hybrid".
public static AIServiceMode[] values()
for (AIServiceMode c : AIServiceMode.values()) System.out.println(c);
public static AIServiceMode 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