Package adams.flow.transformer
Enum SpreadSheetInsertRow.ValueType
- java.lang.Object
-
- java.lang.Enum<SpreadSheetInsertRow.ValueType>
-
- adams.flow.transformer.SpreadSheetInsertRow.ValueType
-
- All Implemented Interfaces:
Serializable
,Comparable<SpreadSheetInsertRow.ValueType>
- Enclosing class:
- SpreadSheetInsertRow
public static enum SpreadSheetInsertRow.ValueType extends Enum<SpreadSheetInsertRow.ValueType>
how to parse the value.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BLANK_SEPARATED_VALUES
COMMA_SEPARATED_VALUES
SINGLE_VALUE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SpreadSheetInsertRow.ValueType
valueOf(String name)
Returns the enum constant of this type with the specified name.static SpreadSheetInsertRow.ValueType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SINGLE_VALUE
public static final SpreadSheetInsertRow.ValueType SINGLE_VALUE
-
COMMA_SEPARATED_VALUES
public static final SpreadSheetInsertRow.ValueType COMMA_SEPARATED_VALUES
-
BLANK_SEPARATED_VALUES
public static final SpreadSheetInsertRow.ValueType BLANK_SEPARATED_VALUES
-
-
Method Detail
-
values
public static SpreadSheetInsertRow.ValueType[] 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 (SpreadSheetInsertRow.ValueType c : SpreadSheetInsertRow.ValueType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SpreadSheetInsertRow.ValueType 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
-
-