Uses of Class
org.apache.commons.csv.QuoteMode
-
-
Uses of QuoteMode in org.apache.commons.csv
Fields in org.apache.commons.csv declared as QuoteMode Modifier and Type Field Description private QuoteModeCSVFormat. quoteModeMethods in org.apache.commons.csv that return QuoteMode Modifier and Type Method Description QuoteModeCSVFormat. getQuoteMode()Returns the quote policy output fields.static QuoteModeQuoteMode. valueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static QuoteMode[]QuoteMode. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.apache.commons.csv with parameters of type QuoteMode Modifier and Type Method Description CSVFormatCSVFormat. withQuoteMode(QuoteMode quoteModePolicy)Returns a newCSVFormatwith the output quote policy of the format set to the specified value.Constructors in org.apache.commons.csv with parameters of type QuoteMode Constructor Description CSVFormat(char delimiter, java.lang.Character quoteChar, QuoteMode quoteMode, java.lang.Character commentStart, java.lang.Character escape, boolean ignoreSurroundingSpaces, boolean ignoreEmptyLines, java.lang.String recordSeparator, java.lang.String nullString, java.lang.Object[] headerComments, java.lang.String[] header, boolean skipHeaderRecord, boolean allowMissingColumnNames, boolean ignoreHeaderCase, boolean trim, boolean trailingDelimiter)Creates a customized CSV format.
-