Class ConvertEmptyOrBlankStringsToNull
java.lang.Object
com.opencsv.bean.processor.ConvertEmptyOrBlankStringsToNull
- All Implemented Interfaces:
StringProcessor
StringProcessor that converts the empty or blank strings to a literal null string.
This is useful when you prefer null in a particular variable.
A sample of this can be found in the unit test ProcessorTestBean and is annotated as follows.
@PreAssignmentProcessor(processor = ConvertEmptyOrBlankStringsToNull.class)
@CsvBindByName(column = "name")
private String beanName;
- Since:
- 5.4
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprocessString(String value) Method that contains the code that will transform a string into the value that will be validated and converted into the bean field.voidsetParameterString(String value) This method is unused in this implementation as we are converting to null.
-
Constructor Details
-
ConvertEmptyOrBlankStringsToNull
public ConvertEmptyOrBlankStringsToNull()Default Constructor.
-
-
Method Details
-
processString
Description copied from interface:StringProcessorMethod that contains the code that will transform a string into the value that will be validated and converted into the bean field.- Specified by:
processStringin interfaceStringProcessor- Parameters:
value-Stringto be processed- Returns:
- The processed
String
-
setParameterString
This method is unused in this implementation as we are converting to null. Any calls to this method are ignored.- Specified by:
setParameterStringin interfaceStringProcessor- Parameters:
value- Information used by the processor to process the string
-