Uses of Class
com.opencsv.enums.CSVReaderNullFieldIndicator
-
Packages that use CSVReaderNullFieldIndicator Package Description com.opencsv A very simple CSV parser for Java released under a commercial-friendly license.com.opencsv.bean A bean binding interface for use with opencsv.com.opencsv.enums Enumerations relevant to opencsv's internal operations. -
-
Uses of CSVReaderNullFieldIndicator in com.opencsv
Fields in com.opencsv declared as CSVReaderNullFieldIndicator Modifier and Type Field Description static CSVReaderNullFieldIndicator
ICSVParser. DEFAULT_NULL_FIELD_INDICATOR
Denotes what field contents will cause the parser to return null: EMPTY_SEPARATORS, EMPTY_QUOTES, BOTH, NEITHER (default).protected CSVReaderNullFieldIndicator
AbstractCSVParser. nullFieldIndicator
Determines the handling of null fields.Methods in com.opencsv that return CSVReaderNullFieldIndicator Modifier and Type Method Description CSVReaderNullFieldIndicator
AbstractCSVParser. nullFieldIndicator()
CSVReaderNullFieldIndicator
CSVParserBuilder. nullFieldIndicator()
CSVReaderNullFieldIndicator
ICSVParser. nullFieldIndicator()
CSVReaderNullFieldIndicator
RFC4180Parser. nullFieldIndicator()
CSVReaderNullFieldIndicator
RFC4180ParserBuilder. nullFieldIndicator()
Methods in com.opencsv with parameters of type CSVReaderNullFieldIndicator Modifier and Type Method Description CSVParserBuilder
CSVParserBuilder. withFieldAsNull(CSVReaderNullFieldIndicator fieldIndicator)
Sets the NullFieldIndicator.CSVReaderBuilder
CSVReaderBuilder. withFieldAsNull(CSVReaderNullFieldIndicator indicator)
Checks to see if it should treat a field with two separators, two quotes, or both as a null field.RFC4180ParserBuilder
RFC4180ParserBuilder. withFieldAsNull(CSVReaderNullFieldIndicator fieldIndicator)
Sets the NullFieldIndicator.Constructors in com.opencsv with parameters of type CSVReaderNullFieldIndicator Constructor Description AbstractCSVParser(char separator, char quotechar, CSVReaderNullFieldIndicator nullFieldIndicator)
Common constructor. -
Uses of CSVReaderNullFieldIndicator in com.opencsv.bean
Methods in com.opencsv.bean with parameters of type CSVReaderNullFieldIndicator Modifier and Type Method Description CsvToBeanBuilder<T>
CsvToBeanBuilder. withFieldAsNull(CSVReaderNullFieldIndicator indicator)
-
Uses of CSVReaderNullFieldIndicator in com.opencsv.enums
Methods in com.opencsv.enums that return CSVReaderNullFieldIndicator Modifier and Type Method Description static CSVReaderNullFieldIndicator
CSVReaderNullFieldIndicator. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static CSVReaderNullFieldIndicator[]
CSVReaderNullFieldIndicator. values()
Returns an array containing the constants of this enum type, in the order they are declared.
-