- capacity() - Method in class org.apache.commons.csv.CharBuffer
-
Returns the current capacity of the buffer.
- charAt(int) - Method in class org.apache.commons.csv.CharBuffer
-
Returns the character at the specified position.
- CharBuffer - Class in org.apache.commons.csv
-
A simple StringBuffer replacement that aims to
reduce copying as much as possible.
- CharBuffer() - Constructor for class org.apache.commons.csv.CharBuffer
-
Creates a new CharBuffer with an initial capacity of 32 characters.
- CharBuffer(int) - Constructor for class org.apache.commons.csv.CharBuffer
-
Creates a new CharBuffer with an initial capacity
of length
characters.
- clear() - Method in class org.apache.commons.csv.CharBuffer
-
Empties the buffer.
- clone() - Method in class org.apache.commons.csv.CSVStrategy
-
- COMMENTS_DISABLED - Static variable in class org.apache.commons.csv.CSVStrategy
-
- config - Variable in class org.apache.commons.csv.writer.CSVConfigGuesser
-
The found config
- CSVConfig - Class in org.apache.commons.csv.writer
-
The CSVConfig is used to configure the CSV writer
- CSVConfig() - Constructor for class org.apache.commons.csv.writer.CSVConfig
-
- CSVConfigGuesser - Class in org.apache.commons.csv.writer
-
Tries to guess a config based on an InputStream.
- CSVConfigGuesser() - Constructor for class org.apache.commons.csv.writer.CSVConfigGuesser
-
- CSVConfigGuesser(InputStream) - Constructor for class org.apache.commons.csv.writer.CSVConfigGuesser
-
- CSVField - Class in org.apache.commons.csv.writer
-
- CSVField() - Constructor for class org.apache.commons.csv.writer.CSVField
-
- CSVField(String) - Constructor for class org.apache.commons.csv.writer.CSVField
-
- CSVField(String, int) - Constructor for class org.apache.commons.csv.writer.CSVField
-
- CSVParser - Class in org.apache.commons.csv
-
Parses CSV files according to the specified configuration.
- CSVParser(InputStream) - Constructor for class org.apache.commons.csv.CSVParser
-
- CSVParser(Reader) - Constructor for class org.apache.commons.csv.CSVParser
-
- CSVParser(Reader, char) - Constructor for class org.apache.commons.csv.CSVParser
-
- CSVParser(Reader, char, char, char) - Constructor for class org.apache.commons.csv.CSVParser
-
- CSVParser(Reader, CSVStrategy) - Constructor for class org.apache.commons.csv.CSVParser
-
- CSVPrinter - Class in org.apache.commons.csv
-
Print values as a comma separated list.
- CSVPrinter(Writer, CSVStrategy) - Constructor for class org.apache.commons.csv.CSVPrinter
-
Create a printer that will print values to the given
stream following the CSVStrategy.
- CSVStrategy - Class in org.apache.commons.csv
-
CSVStrategy
Represents the strategy for a CSV.
- CSVStrategy(char, char, char) - Constructor for class org.apache.commons.csv.CSVStrategy
-
- CSVStrategy(char, char, char, char, boolean, boolean, boolean, boolean) - Constructor for class org.apache.commons.csv.CSVStrategy
-
Customized CSV strategy setter.
- CSVStrategy(char, char, char, boolean, boolean, boolean) - Constructor for class org.apache.commons.csv.CSVStrategy
-
Deprecated.
- CSVUtils - Class in org.apache.commons.csv
-
Utility methods for dealing with CSV files
- CSVUtils() - Constructor for class org.apache.commons.csv.CSVUtils
-
CSVUtils
instances should NOT be constructed in
standard programming.
- CSVWriter - Class in org.apache.commons.csv.writer
-
CSVWriter
- CSVWriter() - Constructor for class org.apache.commons.csv.writer.CSVWriter
-
- CSVWriter(CSVConfig) - Constructor for class org.apache.commons.csv.writer.CSVWriter
-
- setCommentStart(char) - Method in class org.apache.commons.csv.CSVStrategy
-
- setConfig(CSVConfig) - Method in class org.apache.commons.csv.writer.CSVWriter
-
Set the CSVConfig
- setDelimiter(char) - Method in class org.apache.commons.csv.CSVStrategy
-
- setDelimiter(char) - Method in class org.apache.commons.csv.writer.CSVConfig
-
Set the delimiter to use
- setEncapsulator(char) - Method in class org.apache.commons.csv.CSVStrategy
-
- setEndTrimmed(boolean) - Method in class org.apache.commons.csv.writer.CSVConfig
-
Specify if the end of the line needs to be trimmed.
- setEscape(char) - Method in class org.apache.commons.csv.CSVStrategy
-
- setFieldHeader(boolean) - Method in class org.apache.commons.csv.writer.CSVConfig
-
Specify if you want to use a field header.
- setFields(CSVField[]) - Method in class org.apache.commons.csv.writer.CSVConfig
-
Set the fields that should be used by the writer.
- setFields(Collection) - Method in class org.apache.commons.csv.writer.CSVConfig
-
Set the fields that should be used by the writer
- setFill(int) - Method in class org.apache.commons.csv.writer.CSVConfig
-
Set the fill pattern.
- setFill(int) - Method in class org.apache.commons.csv.writer.CSVField
-
Sets overrideFill to true.
- setFillChar(char) - Method in class org.apache.commons.csv.writer.CSVConfig
-
Set the fill char
- setFixedWidth(boolean) - Method in class org.apache.commons.csv.writer.CSVConfig
-
Specify if the CSV file is fixed width.
- setHasFieldHeader(boolean) - Method in class org.apache.commons.csv.writer.CSVConfigGuesser
-
Specify if the CSV file has a field header
- setIgnoreDelimiter(boolean) - Method in class org.apache.commons.csv.writer.CSVConfig
-
Specify if the writer should ignore the delimiter.
- setIgnoreEmptyLines(boolean) - Method in class org.apache.commons.csv.CSVStrategy
-
- setIgnoreLeadingWhitespaces(boolean) - Method in class org.apache.commons.csv.CSVStrategy
-
- setIgnoreTrailingWhitespaces(boolean) - Method in class org.apache.commons.csv.CSVStrategy
-
- setIgnoreValueDelimiter(boolean) - Method in class org.apache.commons.csv.writer.CSVConfig
-
Specify if the writer should ignore the value delimiter.
- setInputStream(InputStream) - Method in class org.apache.commons.csv.writer.CSVConfigGuesser
-
- setName(String) - Method in class org.apache.commons.csv.writer.CSVField
-
Set the name of the field
- setPrinterNewline(String) - Method in class org.apache.commons.csv.CSVStrategy
-
- setRowDelimiter(String) - Method in class org.apache.commons.csv.writer.CSVConfig
-
Set the rowDelimiter to use
- setSize(int) - Method in class org.apache.commons.csv.writer.CSVField
-
Set the size of the field.
- setUnicodeEscapeInterpretation(boolean) - Method in class org.apache.commons.csv.CSVStrategy
-
- setValueDelimiter(char) - Method in class org.apache.commons.csv.writer.CSVConfig
-
Set the value delimiter to use
- setWriter(Writer) - Method in class org.apache.commons.csv.writer.CSVWriter
-
Set the writer to write the CSV file to.
- shrink() - Method in class org.apache.commons.csv.CharBuffer
-
Shrinks the capacity of the buffer to the current length if necessary.
- strategy - Variable in class org.apache.commons.csv.CSVPrinter
-