A B C D F G H I L M N P R S T W 

A

allowLine(String[]) - Method in interface com.opencsv.bean.CsvToBeanFilter
Determines if a line from the CSV file will be included in the output of CsvToBean.

B

BeanToCsv<T> - Class in com.opencsv.bean
Allows to export Java beans content to a new CSV spreadsheet file.
BeanToCsv() - Constructor for class com.opencsv.bean.BeanToCsv
default constructor.

C

captureHeader(CSVReader) - Method in class com.opencsv.bean.ColumnPositionMappingStrategy
Captures the header from the reader - required by the MappingStrategy interface and is a do nothing method for the ColumnPositionMappingStrategy.
captureHeader(CSVReader) - Method in class com.opencsv.bean.HeaderColumnNameMappingStrategy
Retrieves the header from the CSVReader.
captureHeader(CSVReader) - Method in interface com.opencsv.bean.MappingStrategy
Implementation of this method can grab the header line before parsing begins to use to map columns to bean properties.
checkError() - Method in class com.opencsv.CSVWriter
Checks to see if the there has been an error in the printstream.
CLOBBUFFERSIZE - Static variable in class com.opencsv.ResultSetHelperService
 
close() - Method in class com.opencsv.CSVReader
Closes the underlying reader.
close() - Method in class com.opencsv.CSVWriter
Close the underlying stream writer flushing any buffered content.
ColumnPositionMappingStrategy<T> - Class in com.opencsv.bean
Allows for the mapping of columns with their positions.
ColumnPositionMappingStrategy() - Constructor for class com.opencsv.bean.ColumnPositionMappingStrategy
Default Constructor.
com.opencsv - package com.opencsv
A very simple CSV parser for Java released under a commercial-friendly license.
com.opencsv.bean - package com.opencsv.bean
A simple bean binding interface for use with opencsv.
convertValue(String, PropertyDescriptor) - Method in class com.opencsv.bean.CsvToBean
Convert a string value to its Object value.
createBean() - Method in class com.opencsv.bean.HeaderColumnNameMappingStrategy
Creates an object to be mapped.
createBean() - Method in interface com.opencsv.bean.MappingStrategy
Implementation will return a bean of the type of object you are mapping.
createIndexLookup(String[]) - Method in class com.opencsv.bean.HeaderColumnNameMappingStrategy
Creates an index map of column names to column position.
CSVIterator - Class in com.opencsv
Provides an Iterator over the data found in opencsv.
CSVIterator(CSVReader) - Constructor for class com.opencsv.CSVIterator
 
CSVParser - Class in com.opencsv
A very simple CSV parser released under a commercial-friendly license.
CSVParser() - Constructor for class com.opencsv.CSVParser
Constructs CSVParser using a comma for the separator.
CSVParser(char) - Constructor for class com.opencsv.CSVParser
Constructs CSVParser with supplied separator.
CSVParser(char, char) - Constructor for class com.opencsv.CSVParser
Constructs CSVParser with supplied separator and quote char.
CSVParser(char, char, char) - Constructor for class com.opencsv.CSVParser
Constructs CSVReader with supplied separator and quote char.
CSVParser(char, char, char, boolean) - Constructor for class com.opencsv.CSVParser
Constructs CSVParser with supplied separator and quote char.
CSVParser(char, char, char, boolean, boolean) - Constructor for class com.opencsv.CSVParser
Constructs CSVParser with supplied separator and quote char.
CSVParser(char, char, char, boolean, boolean, boolean) - Constructor for class com.opencsv.CSVParser
Constructs CSVParser with supplied separator and quote char.
CSVParserBuilder - Class in com.opencsv
Builder for creating a CSVParser.
CSVParserBuilder() - Constructor for class com.opencsv.CSVParserBuilder
Default constructor.
CSVReader - Class in com.opencsv
A very simple CSV reader released under a commercial-friendly license.
CSVReader(Reader) - Constructor for class com.opencsv.CSVReader
Constructs CSVReader using a comma for the separator.
CSVReader(Reader, char) - Constructor for class com.opencsv.CSVReader
Constructs CSVReader with supplied separator.
CSVReader(Reader, char, char) - Constructor for class com.opencsv.CSVReader
Constructs CSVReader with supplied separator and quote char.
CSVReader(Reader, char, char, boolean) - Constructor for class com.opencsv.CSVReader
Constructs CSVReader with supplied separator, quote char and quote handling behavior.
CSVReader(Reader, char, char, char) - Constructor for class com.opencsv.CSVReader
Constructs CSVReader with supplied separator and quote char.
CSVReader(Reader, char, char, int) - Constructor for class com.opencsv.CSVReader
Constructs CSVReader with supplied separator and quote char.
CSVReader(Reader, char, char, char, int) - Constructor for class com.opencsv.CSVReader
Constructs CSVReader with supplied separator and quote char.
CSVReader(Reader, char, char, char, int, boolean) - Constructor for class com.opencsv.CSVReader
Constructs CSVReader with supplied separator and quote char.
CSVReader(Reader, char, char, char, int, boolean, boolean) - Constructor for class com.opencsv.CSVReader
Constructs CSVReader with supplied separator and quote char.
CSVReader(Reader, int, CSVParser) - Constructor for class com.opencsv.CSVReader
Constructs CSVReader with supplied separator and quote char.
CSVReaderBuilder - Class in com.opencsv
Builder for creating a CSVReader.
CsvToBean<T> - Class in com.opencsv.bean
Converts CSV data to objects.
CsvToBean() - Constructor for class com.opencsv.bean.CsvToBean
Default constructor.
CsvToBeanFilter - Interface in com.opencsv.bean
Here's an example showing how to use CsvToBean with a column name mapping and line filtering.
CSVWriter - Class in com.opencsv
A very simple CSV writer released under a commercial-friendly license.
CSVWriter(Writer) - Constructor for class com.opencsv.CSVWriter
Constructs CSVWriter using a comma for the separator.
CSVWriter(Writer, char) - Constructor for class com.opencsv.CSVWriter
Constructs CSVWriter with supplied separator.
CSVWriter(Writer, char, char) - Constructor for class com.opencsv.CSVWriter
Constructs CSVWriter with supplied separator and quote char.
CSVWriter(Writer, char, char, char) - Constructor for class com.opencsv.CSVWriter
Constructs CSVWriter with supplied separator and quote char.
CSVWriter(Writer, char, char, String) - Constructor for class com.opencsv.CSVWriter
Constructs CSVWriter with supplied separator and quote char.
CSVWriter(Writer, char, char, char, String) - Constructor for class com.opencsv.CSVWriter
Constructs CSVWriter with supplied separator, quote char, escape char and line ending.

D

DEFAULT_ESCAPE_CHARACTER - Static variable in class com.opencsv.CSVParser
The default escape character to use if none is supplied to the constructor.
DEFAULT_ESCAPE_CHARACTER - Static variable in class com.opencsv.CSVWriter
The character used for escaping quotes.
DEFAULT_IGNORE_LEADING_WHITESPACE - Static variable in class com.opencsv.CSVParser
The default leading whitespace behavior to use if none is supplied to the constructor.
DEFAULT_IGNORE_QUOTATIONS - Static variable in class com.opencsv.CSVParser
If the quote character is set to null then there is no quote character.
DEFAULT_LINE_END - Static variable in class com.opencsv.CSVWriter
Default line terminator uses platform encoding.
DEFAULT_QUOTE_CHARACTER - Static variable in class com.opencsv.CSVParser
The default quote character to use if none is supplied to the constructor.
DEFAULT_QUOTE_CHARACTER - Static variable in class com.opencsv.CSVWriter
The default quote character to use if none is supplied to the constructor.
DEFAULT_SEPARATOR - Static variable in class com.opencsv.CSVParser
The default separator to use if none is supplied to the constructor.
DEFAULT_SEPARATOR - Static variable in class com.opencsv.CSVWriter
The default separator to use if none is supplied to the constructor.
DEFAULT_SKIP_LINES - Static variable in class com.opencsv.CSVReader
The default line to start reading.
DEFAULT_STRICT_QUOTES - Static variable in class com.opencsv.CSVParser
The default strict quote behavior to use if none is supplied to the constructor.
descriptorMap - Variable in class com.opencsv.bean.HeaderColumnNameMappingStrategy
 

F

findDescriptor(int) - Method in class com.opencsv.bean.HeaderColumnNameMappingStrategy
Gets the property descriptor for a given column position.
findDescriptor(String) - Method in class com.opencsv.bean.HeaderColumnNameMappingStrategy
Find the property descriptor for a given column.
findDescriptor(int) - Method in interface com.opencsv.bean.MappingStrategy
Implementation will have to return a property descriptor from a bean based on the current column.
flush() - Method in class com.opencsv.CSVWriter
Flush underlying stream to writer.
flushQuietly() - Method in class com.opencsv.CSVWriter
flushes the writer without throwing any exceptions.

G

getColumnIndex(String) - Method in class com.opencsv.bean.ColumnPositionMappingStrategy
gets the column position for a given column name.
getColumnIndex(String) - Method in class com.opencsv.bean.HeaderColumnNameMappingStrategy
Gets the column index that corresponds to a specific colum name.
getColumnIndex(String) - Method in interface com.opencsv.bean.MappingStrategy
Gets the column index that corresponds to a specific colum name.
getColumnMapping() - Method in class com.opencsv.bean.ColumnPositionMappingStrategy
Retrieves the column mappings.
getColumnMapping() - Method in class com.opencsv.bean.HeaderColumnNameTranslateMappingStrategy
retrieves the column mappings of the strategy.
getColumnName(int) - Method in class com.opencsv.bean.ColumnPositionMappingStrategy
gets a column name.
getColumnName(int) - Method in class com.opencsv.bean.HeaderColumnNameMappingStrategy
Get the column name for a given column position.
getColumnName(int) - Method in class com.opencsv.bean.HeaderColumnNameTranslateMappingStrategy
Retrieves the column name for a given column position
getColumnNames(ResultSet) - Method in interface com.opencsv.ResultSetHelper
Returns the column Names from the ResultSet.
getColumnNames(ResultSet) - Method in class com.opencsv.ResultSetHelperService
Returns the column names from the result set.
getColumnValues(ResultSet) - Method in interface com.opencsv.ResultSetHelper
Returns the column values from the result set.
getColumnValues(ResultSet, boolean) - Method in interface com.opencsv.ResultSetHelper
Returns the column values from the result set with the values trimmed if desired.
getColumnValues(ResultSet, boolean, String, String) - Method in interface com.opencsv.ResultSetHelper
Returns the column values from the result set with the values trimmed if desired.
getColumnValues(ResultSet) - Method in class com.opencsv.ResultSetHelperService
Get all the column values from the result set.
getColumnValues(ResultSet, boolean) - Method in class com.opencsv.ResultSetHelperService
Get all the column values from the result set.
getColumnValues(ResultSet, boolean, String, String) - Method in class com.opencsv.ResultSetHelperService
Get all the column values from the result set.
getCsvParser() - Method in class com.opencsv.CSVReaderBuilder
used by unit tests.
getEscape() - Method in class com.opencsv.CSVParser
 
getEscapeChar() - Method in class com.opencsv.CSVParserBuilder
 
getParser() - Method in class com.opencsv.CSVReader
 
getPropertyEditor(PropertyDescriptor) - Method in class com.opencsv.bean.CsvToBean
Attempt to find custom property editor on descriptor first, else try the propery editor manager.
getQuotechar() - Method in class com.opencsv.CSVParser
 
getQuoteChar() - Method in class com.opencsv.CSVParserBuilder
 
getReader() - Method in class com.opencsv.CSVReaderBuilder
Used by unit tests.
getSeparator() - Method in class com.opencsv.CSVParser
 
getSeparator() - Method in class com.opencsv.CSVParserBuilder
 
getSkipLines() - Method in class com.opencsv.CSVReader
Returns the number of lines in the csv file to skip before processing.
getSkipLines() - Method in class com.opencsv.CSVReaderBuilder
used by unit tests.
getType() - Method in class com.opencsv.bean.HeaderColumnNameMappingStrategy
Deprecated.

H

handleBigDecimal(BigDecimal) - Method in class com.opencsv.ResultSetHelperService
changes a BigDecimal to String.
handleDate(ResultSet, int, String) - Method in class com.opencsv.ResultSetHelperService
Retrieves a date from the result set.
handleInteger(ResultSet, int) - Method in class com.opencsv.ResultSetHelperService
Retrieves the string representation of an Integer value from the result set.
handleLong(ResultSet, int) - Method in class com.opencsv.ResultSetHelperService
Retrieves the string representation of an Long value from the result set.
handleObject(Object) - Method in class com.opencsv.ResultSetHelperService
changes an object to a String.
handleTime(Time) - Method in class com.opencsv.ResultSetHelperService
Return time read from ResultSet.
handleTimestamp(Timestamp, String) - Method in class com.opencsv.ResultSetHelperService
The formatted timestamp.
hasNext() - Method in class com.opencsv.CSVIterator
Returns true if the iteration has more elements.
header - Variable in class com.opencsv.bean.HeaderColumnNameMappingStrategy
 
HeaderColumnNameMappingStrategy<T> - Class in com.opencsv.bean
Maps data to objects using the column names in the first row of the csv file as reference.
HeaderColumnNameMappingStrategy() - Constructor for class com.opencsv.bean.HeaderColumnNameMappingStrategy
Default constructor.
HeaderColumnNameTranslateMappingStrategy<T> - Class in com.opencsv.bean
Expands on HeaderColumnNameMappingStrategy by allowing the user to pass in a map of column names to bean names.
HeaderColumnNameTranslateMappingStrategy() - Constructor for class com.opencsv.bean.HeaderColumnNameTranslateMappingStrategy
Default constructor.

I

indexLookup - Variable in class com.opencsv.bean.HeaderColumnNameMappingStrategy
 
INITIAL_READ_SIZE - Static variable in class com.opencsv.CSVParser
The average size of a line read by openCSV (used for setting the size of StringBuilders).
INITIAL_STRING_SIZE - Static variable in class com.opencsv.CSVWriter
 
isAllWhiteSpace(CharSequence) - Method in class com.opencsv.CSVParser
Checks if every element is the character sequence is whitespace.
isIgnoreLeadingWhiteSpace() - Method in class com.opencsv.CSVParser
 
isIgnoreLeadingWhiteSpace() - Method in class com.opencsv.CSVParserBuilder
 
isIgnoreQuotations() - Method in class com.opencsv.CSVParser
 
isIgnoreQuotations() - Method in class com.opencsv.CSVParserBuilder
 
isNextCharacterEscapable(String, boolean, int) - Method in class com.opencsv.CSVParser
Checks to see if the character after the current index in a String is an escapable character.
isPending() - Method in class com.opencsv.CSVParser
 
isStrictQuotes() - Method in class com.opencsv.CSVParser
 
isStrictQuotes() - Method in class com.opencsv.CSVParserBuilder
 
iterator() - Method in class com.opencsv.CSVReader
Creates an Iterator for processing the csv data.

L

loadDescriptorMap() - Method in class com.opencsv.bean.HeaderColumnNameMappingStrategy
builds a map of property descriptors for the Bean.

M

MappingStrategy<T> - Interface in com.opencsv.bean
The interface for the classes that handle translating between the columns in the csv file to an actual object.
matches(String, PropertyDescriptor) - Method in class com.opencsv.bean.HeaderColumnNameMappingStrategy
Determines if the name of a property descriptor matches the column name.

N

next() - Method in class com.opencsv.CSVIterator
Returns the next elenebt in the iterator.
NO_ESCAPE_CHARACTER - Static variable in class com.opencsv.CSVWriter
The escape constant to use when you wish to suppress all escaping.
NO_QUOTE_CHARACTER - Static variable in class com.opencsv.CSVWriter
The quote constant to use when you wish to suppress all quoting.
NULL_CHARACTER - Static variable in class com.opencsv.CSVParser
This is the "null" character - if a value is set to this then it is ignored.

P

parse(MappingStrategy<T>, Reader) - Method in class com.opencsv.bean.CsvToBean
parse the values from a csvReader constructed from the passed in Reader.
parse(MappingStrategy<T>, Reader, CsvToBeanFilter) - Method in class com.opencsv.bean.CsvToBean
parse the values from a csvReader constructed from the passed in Reader.
parse(MappingStrategy<T>, CSVReader) - Method in class com.opencsv.bean.CsvToBean
parse the values from the csvReader.
parse(MappingStrategy<T>, CSVReader, CsvToBeanFilter) - Method in class com.opencsv.bean.CsvToBean
parse the values from the csvReader.
parseLine(String) - Method in class com.opencsv.CSVParser
Parses an incoming String and returns an array of elements.
parseLineMulti(String) - Method in class com.opencsv.CSVParser
Parses an incoming String and returns an array of elements.
processHeader(MappingStrategy<T>) - Method in class com.opencsv.bean.BeanToCsv
Processes the header for the bean.
processLine(MappingStrategy<T>, String[]) - Method in class com.opencsv.bean.CsvToBean
Creates a single object from a line from the csv file.
processLine(String) - Method in class com.opencsv.CSVWriter
Processes all the characters in a line.
processObject(List<Method>, Object) - Method in class com.opencsv.bean.BeanToCsv
Retrieve all the information out of an object.

R

readAll() - Method in class com.opencsv.CSVReader
Reads the entire file into a List with each element being a String[] of tokens.
readNext() - Method in class com.opencsv.CSVReader
Reads the next line from the buffer and converts to a string array.
remove() - Method in class com.opencsv.CSVIterator
This method is not supported by openCSV and will throw a UnsupportedOperationException if called.
resetIndexMap() - Method in class com.opencsv.bean.HeaderColumnNameMappingStrategy
Resets index map of column names to column position.
ResultSetHelper - Interface in com.opencsv
Interface for the ResultSetHelperService.
ResultSetHelperService - Class in com.opencsv
helper class for processing JDBC ResultSet objects.
ResultSetHelperService() - Constructor for class com.opencsv.ResultSetHelperService
Default Constructor.

S

setColumnMapping(String...) - Method in class com.opencsv.bean.ColumnPositionMappingStrategy
Setter for the ColumnMappings.
setColumnMapping(Map<String, String>) - Method in class com.opencsv.bean.HeaderColumnNameTranslateMappingStrategy
Sets the column mapping to those passed in.
setResultService(ResultSetHelper) - Method in class com.opencsv.CSVWriter
Sets the result service.
setType(Class<T>) - Method in class com.opencsv.bean.HeaderColumnNameMappingStrategy
Deprecated.

T

type - Variable in class com.opencsv.bean.HeaderColumnNameMappingStrategy
 

W

write(MappingStrategy<T>, Writer, List<?>) - Method in class com.opencsv.bean.BeanToCsv
Writes all the objects, one at a time, to a created csvWriter using the passed in Strategy.
write(MappingStrategy<T>, CSVWriter, List<?>) - Method in class com.opencsv.bean.BeanToCsv
Writes all the objects, one at a time, to the csvWriter using the passed in Strategy.
writeAll(List<String[]>, boolean) - Method in class com.opencsv.CSVWriter
Writes the entire list to a CSV file.
writeAll(List<String[]>) - Method in class com.opencsv.CSVWriter
Writes the entire list to a CSV file.
writeAll(ResultSet, boolean) - Method in class com.opencsv.CSVWriter
Writes the entire ResultSet to a CSV file.
writeAll(ResultSet, boolean, boolean) - Method in class com.opencsv.CSVWriter
Writes the entire ResultSet to a CSV file.
writeColumnNames(ResultSet) - Method in class com.opencsv.CSVWriter
Writes the column names.
writeNext(String[], boolean) - Method in class com.opencsv.CSVWriter
Writes the next line to the file.
writeNext(String[]) - Method in class com.opencsv.CSVWriter
Writes the next line to the file.
A B C D F G H I L M N P R S T W 

Copyright © 2015. All rights reserved.