public enum FlexRequestDataType extends Enum<FlexRequestDataType>
| Enum Constant and Description |
|---|
Bool
Boolean response expected
|
Enumeration
Text response should be from a provided list of options.
|
List
List of text responses expected
|
Numeric
Numeric response expected
|
Text
Text/string response expected
|
| Modifier and Type | Method and Description |
|---|---|
static FlexRequestDataType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FlexRequestDataType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FlexRequestDataType Text
public static final FlexRequestDataType Numeric
public static final FlexRequestDataType Bool
public static final FlexRequestDataType List
public static final FlexRequestDataType Enumeration
FlexRequest.EnumerationValuespublic static FlexRequestDataType[] values()
for (FlexRequestDataType c : FlexRequestDataType.values()) System.out.println(c);
public static FlexRequestDataType 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 nullCopyright © 2024. All rights reserved.