-bottom
C E G H I N P R S T W

C

close() - Method in class net.sf.csv4j.CSVReader
Closes the input
continueProcessing() - Method in interface net.sf.csv4j.CSVBeanProcessor
Indicates if the line processing should continue.
continueProcessing() - Method in interface net.sf.csv4j.CSVFieldMapProcessor
Indicates if the line processing should continue.
continueProcessing() - Method in interface net.sf.csv4j.CSVLineProcessor
Indicates if the line processing should continue.
continueProcessing() - Method in interface net.sf.csv4j.CSVSortedFieldMapProcessor
Indicates if the line processing should continue.
countTokens() - Method in class net.sf.csv4j.CSVTokenizer
Indicates how many tokens are left.
countTokens() - Method in interface net.sf.csv4j.Tokenizer
Indicates how many tokens are left.
CSVBeanProcessor<T> - Interface in net.sf.csv4j
Similar interface to the CSVLineProcessor interface for processing CSV lines except that the field values are written to a bean object.
CSVFieldMapProcessor - Interface in net.sf.csv4j
Similar interface to the CSVLineProcessor interface for processing CSV lines except that the lines are processed as a Map of field name and values.
CSVFileProcessor - Class in net.sf.csv4j
Provides an easy to use mechanism to process CSV files.
CSVFileProcessor() - Constructor for class net.sf.csv4j.CSVFileProcessor
Constructor.
CSVLineProcessor - Interface in net.sf.csv4j
Interface for processing CSV lines for the optional header and the data lines.
CSVParser - Class in net.sf.csv4j
Parses CSV lines of text.
CSVParser() - Constructor for class net.sf.csv4j.CSVParser
Constructor with default delimiter (,) and trimFields (true).
CSVParser(char, boolean) - Constructor for class net.sf.csv4j.CSVParser
Constructs the parser with specified options
CSVReader - Class in net.sf.csv4j
Reads and parses CSV lines from an input source.
CSVReader(Reader) - Constructor for class net.sf.csv4j.CSVReader
Constructs a CSV reader with the default options.
CSVReader(Reader, char) - Constructor for class net.sf.csv4j.CSVReader
Constructs a CSV reader with the specified options.
CSVReader(Reader, char, char) - Constructor for class net.sf.csv4j.CSVReader
Constructs a CSV reader with the specified options.
CSVSortedFieldMapProcessor - Interface in net.sf.csv4j
Similar interface to the CSVLineProcessor interface for processing CSV lines except that the lines are processed as a SortedMap of field name and values.
CSVStreamProcessor - Class in net.sf.csv4j
Provides an easy to use mechanism to process CSV streams.
CSVStreamProcessor() - Constructor for class net.sf.csv4j.CSVStreamProcessor
Constructor.
CSVTokenizer - Class in net.sf.csv4j
Provides an API similar to StringTokenizer.
CSVTokenizer(String) - Constructor for class net.sf.csv4j.CSVTokenizer
Creates a tokenizer from the specified CSV line.
CSVWriter - Class in net.sf.csv4j
Writes output lines in CSV format.
CSVWriter(Writer) - Constructor for class net.sf.csv4j.CSVWriter
Constructor.
CSVWriter(Writer, char) - Constructor for class net.sf.csv4j.CSVWriter
Constructor.
CSVWriter(Writer, char, char) - Constructor for class net.sf.csv4j.CSVWriter
Constructor.

E

escapeCSV(String) - Static method in class net.sf.csv4j.CSVWriter
Escapes a text string for CSV output.
escapeCSV(String, char) - Static method in class net.sf.csv4j.CSVWriter
Escapes a text string for CSV output.
escapeCSV(Writer, String, char) - Static method in class net.sf.csv4j.CSVWriter
Escapes a text string for CSV output.

G

getComment() - Method in class net.sf.csv4j.CSVFileProcessor
Returns the comment setting.
getComment() - Method in class net.sf.csv4j.CSVStreamProcessor
Returns the comment setting.
getLineNumber() - Method in class net.sf.csv4j.CSVReader
Returns the current line number.

H

hasMoreElements() - Method in class net.sf.csv4j.CSVTokenizer
hasMoreTokens() - Method in class net.sf.csv4j.CSVTokenizer
Indicates if more tokens are available.
hasMoreTokens() - Method in interface net.sf.csv4j.Tokenizer
Indicates if more tokens are available.
hasNext() - Method in class net.sf.csv4j.CSVTokenizer

I

isHasHeader() - Method in class net.sf.csv4j.CSVFileProcessor
Indicates if the file has a header line.
isHasHeader() - Method in class net.sf.csv4j.CSVStreamProcessor
Indicates if the file has a header line.
iterator() - Method in class net.sf.csv4j.CSVTokenizer

N

net.sf.csv4j - package net.sf.csv4j
Provides for performing CSV input and output processing.
next() - Method in class net.sf.csv4j.CSVTokenizer
nextElement() - Method in class net.sf.csv4j.CSVTokenizer
nextToken() - Method in class net.sf.csv4j.CSVTokenizer
Returns the next token.
nextToken() - Method in interface net.sf.csv4j.Tokenizer
Returns the next token.

P

ParseException - Exception in net.sf.csv4j
This exception indicates a CSV Parser error occurred.
ParseException(String) - Constructor for exception net.sf.csv4j.ParseException
Constructor.
ParseException(String, Throwable) - Constructor for exception net.sf.csv4j.ParseException
Constructor.
processDataLine(int, T) - Method in interface net.sf.csv4j.CSVBeanProcessor
Process a CSV data line.
processDataLine(int, Map<String, String>) - Method in interface net.sf.csv4j.CSVFieldMapProcessor
Process a CSV data line.
processDataLine(int, List<String>) - Method in interface net.sf.csv4j.CSVLineProcessor
Process a CSV data line.
processDataLine(int, SortedMap<String, String>) - Method in interface net.sf.csv4j.CSVSortedFieldMapProcessor
Process a CSV data line.
processFile(String, CSVLineProcessor) - Method in class net.sf.csv4j.CSVFileProcessor
Processes the CSV file using the provided processor
processFile(String, CSVFieldMapProcessor) - Method in class net.sf.csv4j.CSVFileProcessor
Processes the CSV file using the provided processor.
processFile(String, CSVSortedFieldMapProcessor) - Method in class net.sf.csv4j.CSVFileProcessor
Processes the CSV file using the provided processor.
processHeaderLine(int, List<String>) - Method in interface net.sf.csv4j.CSVLineProcessor
Process the CSV header line.
ProcessingException - Exception in net.sf.csv4j
This exception indicates an error occurred during processing of a CSV file.
ProcessingException(Throwable, int) - Constructor for exception net.sf.csv4j.ProcessingException
Constructor.
processStream(InputStreamReader, CSVLineProcessor) - Method in class net.sf.csv4j.CSVStreamProcessor
Processes the CSV file using the provided processor.
processStream(InputStreamReader, CSVFieldMapProcessor) - Method in class net.sf.csv4j.CSVStreamProcessor
Processes the CSV file using the provided processor.
processStream(InputStreamReader, CSVSortedFieldMapProcessor) - Method in class net.sf.csv4j.CSVStreamProcessor
Processes the CSV file using the provided processor.

R

readLine() - Method in class net.sf.csv4j.CSVReader
Reads and parses the next CSV line from the input.
remove() - Method in class net.sf.csv4j.CSVTokenizer
Not supported.
reset() - Method in class net.sf.csv4j.CSVTokenizer
Reset the iterator back to the beginning.

S

setComment(char) - Method in class net.sf.csv4j.CSVFileProcessor
Sets the comment string value.
setComment(char) - Method in class net.sf.csv4j.CSVStreamProcessor
Sets the comment string value.
setHasHeader(boolean) - Method in class net.sf.csv4j.CSVFileProcessor
Sets the hasHeader value.
setHasHeader(boolean) - Method in class net.sf.csv4j.CSVStreamProcessor
Sets the hasHeader value.

T

tokenize(String) - Method in class net.sf.csv4j.CSVParser
Assumes this is one line of CSV text
Tokenizer<E> - Interface in net.sf.csv4j
Defines a generic StringTokenizer-style interface.
toString() - Method in exception net.sf.csv4j.ProcessingException

W

writeCommentLine(String) - Method in class net.sf.csv4j.CSVWriter
Output a CSV comment line.
writeDataLine(SortedMap<String, String>) - Method in class net.sf.csv4j.CSVWriter
Output the CSV data line which contains the field values
writeHeaderLine(SortedMap<String, String>) - Method in class net.sf.csv4j.CSVWriter
Output the CSV header line which contains the names of the fields.
writeLine(List<String>) - Method in class net.sf.csv4j.CSVWriter
Output a line of CSV fields.
writeLine(String[]) - Method in class net.sf.csv4j.CSVWriter
Output a line of CSV fields.

C E G H I N P R S T W
-bottom