Package com.smartgwt.client.types
Enum AIServiceMode
- All Implemented Interfaces:
- ValueEnum,- Serializable,- Comparable<AIServiceMode>,- Constable
The mode for how AI should respond to AI-powered component view requests, such as filering, sorting, and hiliting via
 AI. 
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.
- 
Nested Class SummaryNested classes/interfaces inherited from class java.lang.EnumEnum.EnumDesc<E extends Enum<E>>
- 
Enum Constant SummaryEnum ConstantsEnum ConstantDescriptionAI Assist - AI is driving existing UI on the user's behalf.AI Data Enhance - Per-record augmentation or enhancements provided via AI.AI decides whether AI Assist, AIDE, or some combination of both approaches should be used to best respond to the component view request.
- 
Method SummaryModifier and TypeMethodDescriptiongetValue()static AIServiceModeReturns 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.
- 
Enum Constant Details- 
AIASSISTAI Assist - AI is driving existing UI on the user's behalf. An example of this is: AI converts the user's description of what records they would like to see intoAdvancedCriteria.If this enumerated value is used in a Component XMLfile or server-side DataSource descriptor (.ds.xml file), use the value "aiAssist".
- 
AIDEAI Data Enhance - Per-record augmentation or enhancements provided via AI. Examples of this are AI-generated fields, where the field values are not in the records, but rather, supplied via AI.If this enumerated value is used in a Component XMLfile or server-side DataSource descriptor (.ds.xml file), use the value "AIDE".
- 
HYBRIDAI decides whether AI Assist, AIDE, or some combination of both approaches should be used to best respond to the component view request.If this enumerated value is used in a Component XMLfile or server-side DataSource descriptor (.ds.xml file), use the value "hybrid".
 
- 
- 
Method Details- 
valuesReturns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
 
- 
valueOfReturns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
- name- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
- IllegalArgumentException- if this enum type has no constant with the specified name
- NullPointerException- if the argument is null
 
- 
getValue
 
-