@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public enum FlowNodeType extends Enum<FlowNodeType>
Enum Constant and Description |
---|
Agent |
Collector |
Condition |
Input |
Iterator |
KnowledgeBase |
LambdaFunction |
Lex |
Output |
Prompt |
Retrieval |
Storage |
Modifier and Type | Method and Description |
---|---|
static FlowNodeType |
fromValue(String value)
Use this in place of valueOf.
|
String |
toString() |
static FlowNodeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FlowNodeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FlowNodeType Input
public static final FlowNodeType Output
public static final FlowNodeType KnowledgeBase
public static final FlowNodeType Condition
public static final FlowNodeType Lex
public static final FlowNodeType Prompt
public static final FlowNodeType LambdaFunction
public static final FlowNodeType Storage
public static final FlowNodeType Agent
public static final FlowNodeType Retrieval
public static final FlowNodeType Iterator
public static final FlowNodeType Collector
public static FlowNodeType[] values()
for (FlowNodeType c : FlowNodeType.values()) System.out.println(c);
public static FlowNodeType 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<FlowNodeType>
public static FlowNodeType fromValue(String value)
value
- real valueIllegalArgumentException
- If the specified value does not map to one of the known values in this enum.