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 CSVReaderNullFieldIndicatorICSVParser. DEFAULT_NULL_FIELD_INDICATORDenotes what field contents will cause the parser to return null: EMPTY_SEPARATORS, EMPTY_QUOTES, BOTH, NEITHER (default).protected CSVReaderNullFieldIndicatorAbstractCSVParser. nullFieldIndicatorDetermines the handling of null fields.private CSVReaderNullFieldIndicatorCSVParserBuilder. nullFieldIndicatorprotected CSVReaderNullFieldIndicatorCSVReaderBaseBuilder. nullFieldIndicatorprivate CSVReaderNullFieldIndicatorRFC4180ParserBuilder. nullFieldIndicatorMethods in com.opencsv that return CSVReaderNullFieldIndicator Modifier and Type Method Description CSVReaderNullFieldIndicatorAbstractCSVParser. nullFieldIndicator()CSVReaderNullFieldIndicatorCSVParserBuilder. nullFieldIndicator()CSVReaderNullFieldIndicatorICSVParser. nullFieldIndicator()CSVReaderNullFieldIndicatorRFC4180ParserBuilder. nullFieldIndicator()Methods in com.opencsv with parameters of type CSVReaderNullFieldIndicator Modifier and Type Method Description CSVParserBuilderCSVParserBuilder. withFieldAsNull(CSVReaderNullFieldIndicator fieldIndicator)Sets the NullFieldIndicator.CSVReaderBuilderCSVReaderBuilder. withFieldAsNull(CSVReaderNullFieldIndicator indicator)Checks to see if it should treat a field with two separators, two quotes, or both as a null field.CSVReaderHeaderAwareBuilderCSVReaderHeaderAwareBuilder. withFieldAsNull(CSVReaderNullFieldIndicator indicator)Checks to see if it should treat a field with two separators, two quotes, or both as a null field.RFC4180ParserBuilderRFC4180ParserBuilder. 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.CSVParser(char separator, char quotechar, char escape, boolean strictQuotes, boolean ignoreLeadingWhiteSpace, boolean ignoreQuotations, CSVReaderNullFieldIndicator nullFieldIndicator, java.util.Locale errorLocale)Constructs CSVParser.RFC4180Parser(char quoteChar, char separator, CSVReaderNullFieldIndicator nullFieldIndicator)Constructor used by the CSVParserBuilder. -
Uses of CSVReaderNullFieldIndicator in com.opencsv.bean
Fields in com.opencsv.bean declared as CSVReaderNullFieldIndicator Modifier and Type Field Description private CSVReaderNullFieldIndicatorCsvToBeanBuilder. nullFieldIndicatorMethods 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 CSVReaderNullFieldIndicatorCSVReaderNullFieldIndicator. 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.
-