Package adams.flow.source
Enum EnterManyValues.OutputType
- java.lang.Object
-
- java.lang.Enum<EnterManyValues.OutputType>
-
- adams.flow.source.EnterManyValues.OutputType
-
- All Implemented Interfaces:
Serializable
,Comparable<EnterManyValues.OutputType>
- Enclosing class:
- EnterManyValues
public static enum EnterManyValues.OutputType extends Enum<EnterManyValues.OutputType>
Defines how to output the data that the user entered.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description KEY_VALUE_PAIRS
KEY_VALUE_PAIRS_ARRAY
MAP
SPREADSHEET
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static EnterManyValues.OutputType
valueOf(String name)
Returns the enum constant of this type with the specified name.static EnterManyValues.OutputType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SPREADSHEET
public static final EnterManyValues.OutputType SPREADSHEET
-
KEY_VALUE_PAIRS
public static final EnterManyValues.OutputType KEY_VALUE_PAIRS
-
KEY_VALUE_PAIRS_ARRAY
public static final EnterManyValues.OutputType KEY_VALUE_PAIRS_ARRAY
-
MAP
public static final EnterManyValues.OutputType MAP
-
-
Method Detail
-
values
public static EnterManyValues.OutputType[] 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 (EnterManyValues.OutputType c : EnterManyValues.OutputType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EnterManyValues.OutputType valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-