Enum AiAgent.SourceType.Value
- java.lang.Object
-
- java.lang.Enum<AiAgent.SourceType.Value>
-
- com.intercom.api.resources.aiagent.types.AiAgent.SourceType.Value
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<AiAgent.SourceType.Value>
- Enclosing class:
- AiAgent.SourceType
public static enum AiAgent.SourceType.Value extends java.lang.Enum<AiAgent.SourceType.Value>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ESSENTIALS_PLAN_SETUPFIN_PREVIEWPROFILEUNKNOWNWORKFLOWWORKFLOW_PREVIEW
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AiAgent.SourceType.ValuevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static AiAgent.SourceType.Value[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ESSENTIALS_PLAN_SETUP
public static final AiAgent.SourceType.Value ESSENTIALS_PLAN_SETUP
-
PROFILE
public static final AiAgent.SourceType.Value PROFILE
-
WORKFLOW
public static final AiAgent.SourceType.Value WORKFLOW
-
WORKFLOW_PREVIEW
public static final AiAgent.SourceType.Value WORKFLOW_PREVIEW
-
FIN_PREVIEW
public static final AiAgent.SourceType.Value FIN_PREVIEW
-
UNKNOWN
public static final AiAgent.SourceType.Value UNKNOWN
-
-
Method Detail
-
values
public static AiAgent.SourceType.Value[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (AiAgent.SourceType.Value c : AiAgent.SourceType.Value.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AiAgent.SourceType.Value valueOf(java.lang.String name)
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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-