Enum DataQuestionStepType
- All Implemented Interfaces:
ValueEnum
,Serializable
,Comparable<DataQuestionStepType>
,Constable
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionAsks AI to describe the components of a dashboard to visualize the answer to a data question.Asks AI to create a dashboard component.Asks AI to determine a next step.Asks AI to fix a dashboard component, given the list of validation errors.Asks AI to fix a query, given the list of validation errors.Asks AI to construct aDSRequest
query.Prepares a summarization of theUserAIRequest
containing the end user's data question, if necessary.Validates an AI-generated component against schema, identifying potential errors.Validates an AI-generatedDSRequest
against schema, identifying potential errors. -
Method Summary
Modifier and TypeMethodDescriptiongetValue()
static DataQuestionStepType
Returns the enum constant of this type with the specified name.static DataQuestionStepType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
SUMMARIZEUSERAIREQUEST
Prepares a summarization of theUserAIRequest
containing the end user's data question, if necessary.If this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "summarizeUserAIRequest". -
DETERMINENEXTSTEP
Asks AI to determine a next step. Only a subset of step types are offered as choices to AI.If this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "determineNextStep". -
MAKEQUERY
Asks AI to construct aDSRequest
query.If this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "makeQuery". -
VALIDATEQUERY
Validates an AI-generatedDSRequest
against schema, identifying potential errors.If this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "validateQuery". -
FIXQUERY
Asks AI to fix a query, given the list of validation errors.If this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "fixQuery". -
CREATEDASHBOARD
Asks AI to describe the components of a dashboard to visualize the answer to a data question.If this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "createDashboard". -
CREATEDASHBOARDCOMPONENT
Asks AI to create a dashboard component.If this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "createDashboardComponent". -
VALIDATEDASHBOARDCOMPONENT
Validates an AI-generated component against schema, identifying potential errors.If this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "validateDashboardComponent". -
FIXDASHBOARDCOMPONENT
Asks AI to fix a dashboard component, given the list of validation errors.If this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "fixDashboardComponent".
-
-
Method Details
-
values
Returns 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
-
valueOf
Returns 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 nameNullPointerException
- if the argument is null
-
getValue
-