C D F G H I M O R S T W

C

close() - Method in class CSVFileReader
Close the input CSV file.
close() - Method in class CSVFileWriter
Close the output CSV file.
CSVFile - Class in <Unnamed>
CSVFile is a class used to handle Comma-Separated Values files.
CSVFile() - Constructor for class CSVFile
CSVFile constructor with the default field separator and text qualifier.
CSVFile(char) - Constructor for class CSVFile
CSVFile constructor with a given field separator and the default text qualifier.
CSVFile(char, char) - Constructor for class CSVFile
CSVFile constructor with given field separator and text qualifier.
CSVFileExample - Class in <Unnamed>
 
CSVFileExample() - Constructor for class CSVFileExample
 
CSVFileReader - Class in <Unnamed>
CSVFileReader is a class derived from CSVFile used to parse an existing CSV file.
CSVFileReader(String) - Constructor for class CSVFileReader
CSVFileReader constructor just need the name of the existing CSV file that will be read.
CSVFileReader(String, char) - Constructor for class CSVFileReader
CSVFileReader constructor with a given field separator.
CSVFileReader(String, char, char) - Constructor for class CSVFileReader
CSVFileReader constructor with given field separator and text qualifier.
CSVFileWriter - Class in <Unnamed>
CSVFileWriter is a class derived from CSVFile used to format some fields into a new CSV file.
CSVFileWriter(String) - Constructor for class CSVFileWriter
CSVFileWriter constructor just need the name of the CSV file that will be written.
CSVFileWriter(String, char) - Constructor for class CSVFileWriter
CSVFileWriter constructor with a given field separator.
CSVFileWriter(String, char, char) - Constructor for class CSVFileWriter
CSVFileWriter constructor with given field separator and text qualifier.

D

DEFAULT_FIELD_SEPARATOR - Static variable in class CSVFile
The default char used as field separator.
DEFAULT_TEXT_QUALIFIER - Static variable in class CSVFile
The default char used as text qualifier

F

fieldSeparator - Variable in class CSVFile
The current char used as field separator.

G

getFieldSeparator() - Method in class CSVFile
Get the current field separator.
getTextQualifier() - Method in class CSVFile
Get the current text qualifier.

H

handlePlainField(String, StringBuffer, int) - Method in class CSVFileReader
Handles an unquoted field.
handleQuotedField(String, StringBuffer, int) - Method in class CSVFileReader
Handles a quoted field.

I

in - Variable in class CSVFileReader
The buffered reader linked to the CSV file to be read.

M

main(String[]) - Static method in class CSVFileExample
 

O

out - Variable in class CSVFileWriter
The print writer linked to the CSV file to be written.

R

readFields() - Method in class CSVFileReader
Split the next line of the input CSV file into fields.

S

setFieldSeparator(char) - Method in class CSVFile
Set the current field separator.
setTextQualifier(char) - Method in class CSVFile
Set the current text qualifier.

T

textQualifier - Variable in class CSVFile
The current char used as text qualifier.

W

writeFields(Vector<String>) - Method in class CSVFileWriter
Join the fields and write them as a new line to the CSV file.

C D F G H I M O R S T W