Package com.streamconverter.controller
Enum Class CsvProcessingController.ProcessingMode
java.lang.Object
java.lang.Enum<CsvProcessingController.ProcessingMode>
com.streamconverter.controller.CsvProcessingController.ProcessingMode
- All Implemented Interfaces:
Serializable
,Comparable<CsvProcessingController.ProcessingMode>
,Constable
- Enclosing class:
CsvProcessingController
public static enum CsvProcessingController.ProcessingMode
extends Enum<CsvProcessingController.ProcessingMode>
Processing mode enumeration
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionExtract specific column data from CSVPerform complex multi-step processingPass through CSV data unchangedValidate CSV format only -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
COLUMN_EXTRACTION
Extract specific column data from CSV -
COMPLEX_PROCESSING
Perform complex multi-step processing -
VALIDATION_ONLY
Validate CSV format only -
PASS_THROUGH
Pass through CSV data unchanged
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-