A B C D E F G H I L M N O P Q R S T U V W 
All Classes All Packages

A

addRecordValue(boolean) - Method in class org.apache.commons.csv.CSVParser
 
ALL - org.apache.commons.csv.QuoteMode
Quotes all fields.
allowMissingColumnNames - Variable in class org.apache.commons.csv.CSVFormat
 
Assertions - Class in org.apache.commons.csv
Utility class for input parameter validation.
Assertions() - Constructor for class org.apache.commons.csv.Assertions
 

B

BACKSLASH - Static variable in class org.apache.commons.csv.Constants
 
BACKSPACE - Static variable in class org.apache.commons.csv.Constants
 

C

characterOffset - Variable in class org.apache.commons.csv.CSVParser
Lexer offset when the parser does not start parsing at the beginning of the source.
characterPosition - Variable in class org.apache.commons.csv.CSVRecord
 
close() - Method in class org.apache.commons.csv.CSVParser
Closes resources.
close() - Method in class org.apache.commons.csv.CSVPrinter
 
close() - Method in class org.apache.commons.csv.ExtendedBufferedReader
Closes the stream.
close() - Method in class org.apache.commons.csv.Lexer
Closes resources.
closed - Variable in class org.apache.commons.csv.ExtendedBufferedReader
 
COMMA - Static variable in class org.apache.commons.csv.Constants
 
comment - Variable in class org.apache.commons.csv.CSVRecord
The accumulated comments (if any)
COMMENT - org.apache.commons.csv.Token.Type
Token is a comment line.
COMMENT - Static variable in class org.apache.commons.csv.Constants
Starts a comment, the remainder of the line is the comment.
commentMarker - Variable in class org.apache.commons.csv.CSVFormat
 
commentStart - Variable in class org.apache.commons.csv.Lexer
 
Constants - Class in org.apache.commons.csv
Constants for this package.
Constants() - Constructor for class org.apache.commons.csv.Constants
 
content - Variable in class org.apache.commons.csv.Token
The content buffer.
CR - Static variable in class org.apache.commons.csv.Constants
 
CRLF - Static variable in class org.apache.commons.csv.Constants
RFC 4180 defines line breaks as CRLF
CSVFormat - Class in org.apache.commons.csv
Specifies the format of a CSV file and parses input.
CSVFormat(char, Character, QuoteMode, Character, Character, boolean, boolean, String, String, Object[], String[], boolean, boolean, boolean, boolean, boolean) - Constructor for class org.apache.commons.csv.CSVFormat
Creates a customized CSV format.
CSVFormat.Predefined - Enum in org.apache.commons.csv
Predefines formats.
CSVParser - Class in org.apache.commons.csv
Parses CSV files according to the specified format.
CSVParser(Reader, CSVFormat) - Constructor for class org.apache.commons.csv.CSVParser
Customized CSV parser using the given CSVFormat
CSVParser(Reader, CSVFormat, long, long) - Constructor for class org.apache.commons.csv.CSVParser
Customized CSV parser using the given CSVFormat
CSVPrinter - Class in org.apache.commons.csv
Prints values in a CSV format.
CSVPrinter(Appendable, CSVFormat) - Constructor for class org.apache.commons.csv.CSVPrinter
Creates a printer that will print values to the given stream following the CSVFormat.
CSVRecord - Class in org.apache.commons.csv
A CSV record parsed from a CSV file.
CSVRecord(String[], Map<String, Integer>, String, long, long) - Constructor for class org.apache.commons.csv.CSVRecord
 

D

Default - org.apache.commons.csv.CSVFormat.Predefined
 
DEFAULT - Static variable in class org.apache.commons.csv.CSVFormat
Standard comma separated format, as for CSVFormat.RFC4180 but allowing empty lines.
delimiter - Variable in class org.apache.commons.csv.CSVFormat
 
delimiter - Variable in class org.apache.commons.csv.Lexer
 
DISABLED - Static variable in class org.apache.commons.csv.Lexer
Constant char to use for disabling comments, escapes and encapsulation.
DOUBLE_QUOTE_CHAR - Static variable in class org.apache.commons.csv.Constants
 

E

EMPTY - Static variable in class org.apache.commons.csv.Constants
 
EMPTY_STRING_ARRAY - Static variable in class org.apache.commons.csv.CSVRecord
 
END_OF_STREAM - Static variable in class org.apache.commons.csv.Constants
The end of stream symbol
EOF - org.apache.commons.csv.Token.Type
Token (which can have content) when the end of file is reached.
eolCounter - Variable in class org.apache.commons.csv.ExtendedBufferedReader
The count of EOLs (CR/LF/CRLF) seen so far
EORECORD - org.apache.commons.csv.Token.Type
Token with content when the end of a line is reached.
equals(Object) - Method in class org.apache.commons.csv.CSVFormat
 
escape - Variable in class org.apache.commons.csv.Lexer
 
escapeCharacter - Variable in class org.apache.commons.csv.CSVFormat
 
Excel - org.apache.commons.csv.CSVFormat.Predefined
 
EXCEL - Static variable in class org.apache.commons.csv.CSVFormat
Excel file format (using a comma as the value delimiter).
ExtendedBufferedReader - Class in org.apache.commons.csv
A special buffered reader which supports sophisticated read access.
ExtendedBufferedReader(Reader) - Constructor for class org.apache.commons.csv.ExtendedBufferedReader
Created extended buffered reader using default buffer-size

F

FF - Static variable in class org.apache.commons.csv.Constants
 
flush() - Method in class org.apache.commons.csv.CSVPrinter
Flushes the underlying stream.
format - Variable in enum org.apache.commons.csv.CSVFormat.Predefined
 
format - Variable in class org.apache.commons.csv.CSVParser
 
format - Variable in class org.apache.commons.csv.CSVPrinter
 
format(Object...) - Method in class org.apache.commons.csv.CSVFormat
Formats the specified values.

G

get(int) - Method in class org.apache.commons.csv.CSVRecord
Returns a value by index.
get(Enum<?>) - Method in class org.apache.commons.csv.CSVRecord
Returns a value by Enum.
get(String) - Method in class org.apache.commons.csv.CSVRecord
Returns a value by name.
getAllowMissingColumnNames() - Method in class org.apache.commons.csv.CSVFormat
Specifies whether missing column names are allowed when parsing the header line.
getCharacterPosition() - Method in class org.apache.commons.csv.CSVRecord
Returns the start position of this record as a character position in the source stream.
getCharacterPosition() - Method in class org.apache.commons.csv.Lexer
Returns the current character position
getComment() - Method in class org.apache.commons.csv.CSVRecord
Returns the comment for this record, if any.
getCommentMarker() - Method in class org.apache.commons.csv.CSVFormat
Returns the character marking the start of a line comment.
getCurrentLineNumber() - Method in class org.apache.commons.csv.CSVParser
Returns the current line number in the input stream.
getCurrentLineNumber() - Method in class org.apache.commons.csv.ExtendedBufferedReader
Returns the current line number
getCurrentLineNumber() - Method in class org.apache.commons.csv.Lexer
Returns the current line number
getDelimiter() - Method in class org.apache.commons.csv.CSVFormat
Returns the character delimiting the values (typically ';', ',' or '\t').
getEscapeCharacter() - Method in class org.apache.commons.csv.CSVFormat
Returns the escape character.
getFormat() - Method in enum org.apache.commons.csv.CSVFormat.Predefined
Gets the format.
getHeader() - Method in class org.apache.commons.csv.CSVFormat
Returns a copy of the header array.
getHeaderComments() - Method in class org.apache.commons.csv.CSVFormat
Returns a copy of the header comment array.
getHeaderMap() - Method in class org.apache.commons.csv.CSVParser
Returns a copy of the header map that iterates in column order.
getIgnoreEmptyLines() - Method in class org.apache.commons.csv.CSVFormat
Specifies whether empty lines between records are ignored when parsing input.
getIgnoreHeaderCase() - Method in class org.apache.commons.csv.CSVFormat
Specifies whether header names will be accessed ignoring case.
getIgnoreSurroundingSpaces() - Method in class org.apache.commons.csv.CSVFormat
Specifies whether spaces around values are ignored when parsing input.
getLastChar() - Method in class org.apache.commons.csv.ExtendedBufferedReader
Returns the last character that was read as an integer (0 to 65535).
getNullString() - Method in class org.apache.commons.csv.CSVFormat
Gets the String to convert to and from null.
getOut() - Method in class org.apache.commons.csv.CSVPrinter
Gets the target Appendable.
getPosition() - Method in class org.apache.commons.csv.ExtendedBufferedReader
Gets the character position in the reader.
getQuoteCharacter() - Method in class org.apache.commons.csv.CSVFormat
Returns the character used to encapsulate values containing special characters.
getQuoteMode() - Method in class org.apache.commons.csv.CSVFormat
Returns the quote policy output fields.
getRecordNumber() - Method in class org.apache.commons.csv.CSVParser
Returns the current record number in the input stream.
getRecordNumber() - Method in class org.apache.commons.csv.CSVRecord
Returns the number of this record in the parsed CSV file.
getRecords() - Method in class org.apache.commons.csv.CSVParser
Parses the CSV input according to the given format and returns the content as a list of CSVRecords.
getRecordSeparator() - Method in class org.apache.commons.csv.CSVFormat
Returns the record separator delimiting output records.
getSkipHeaderRecord() - Method in class org.apache.commons.csv.CSVFormat
Returns whether to skip the header record.
getTrailingDelimiter() - Method in class org.apache.commons.csv.CSVFormat
Returns whether to add a trailing delimiter.
getTrim() - Method in class org.apache.commons.csv.CSVFormat
Returns whether to trim leading and trailing blanks.

H

hasComment() - Method in class org.apache.commons.csv.CSVRecord
Checks whether this record has a comment, false otherwise.
hashCode() - Method in class org.apache.commons.csv.CSVFormat
 
header - Variable in class org.apache.commons.csv.CSVFormat
 
headerComments - Variable in class org.apache.commons.csv.CSVFormat
 
headerMap - Variable in class org.apache.commons.csv.CSVParser
A mapping of column names to column indices

I

ignoreEmptyLines - Variable in class org.apache.commons.csv.CSVFormat
 
ignoreEmptyLines - Variable in class org.apache.commons.csv.Lexer
 
ignoreHeaderCase - Variable in class org.apache.commons.csv.CSVFormat
 
ignoreSurroundingSpaces - Variable in class org.apache.commons.csv.CSVFormat
 
ignoreSurroundingSpaces - Variable in class org.apache.commons.csv.Lexer
 
INFORMIX_UNLOAD - Static variable in class org.apache.commons.csv.CSVFormat
Default Informix CSV UNLOAD format used by the UNLOAD TO file_name operation.
INFORMIX_UNLOAD_CSV - Static variable in class org.apache.commons.csv.CSVFormat
Default Informix CSV UNLOAD format used by the UNLOAD TO file_name operation (escaping is disabled.)
InformixUnload - org.apache.commons.csv.CSVFormat.Predefined
 
InformixUnloadCsv - org.apache.commons.csv.CSVFormat.Predefined
 
INITIAL_TOKEN_LENGTH - Static variable in class org.apache.commons.csv.Token
length of the initial token (content-)buffer
initializeHeader() - Method in class org.apache.commons.csv.CSVParser
Initializes the name to index mapping if the format defines a header.
INVALID - org.apache.commons.csv.Token.Type
Token has no valid content, i.e.
isClosed() - Method in class org.apache.commons.csv.CSVParser
Gets whether this parser is closed.
isClosed() - Method in class org.apache.commons.csv.ExtendedBufferedReader
 
isClosed() - Method in class org.apache.commons.csv.Lexer
 
isCommentMarkerSet() - Method in class org.apache.commons.csv.CSVFormat
Specifies whether comments are supported by this format.
isCommentStart(int) - Method in class org.apache.commons.csv.Lexer
 
isConsistent() - Method in class org.apache.commons.csv.CSVRecord
Tells whether the record size matches the header size.
isDelimiter(int) - Method in class org.apache.commons.csv.Lexer
 
isEndOfFile(int) - Method in class org.apache.commons.csv.Lexer
 
isEscape(int) - Method in class org.apache.commons.csv.Lexer
 
isEscapeCharacterSet() - Method in class org.apache.commons.csv.CSVFormat
Returns whether escape are being processed.
isLineBreak(char) - Static method in class org.apache.commons.csv.CSVFormat
Returns true if the given character is a line break character.
isLineBreak(Character) - Static method in class org.apache.commons.csv.CSVFormat
Returns true if the given character is a line break character.
isMapped(String) - Method in class org.apache.commons.csv.CSVRecord
Checks whether a given column is mapped, i.e.
isMetaChar(int) - Method in class org.apache.commons.csv.Lexer
 
isNullStringSet() - Method in class org.apache.commons.csv.CSVFormat
Returns whether a nullString has been defined.
isQuoteChar(int) - Method in class org.apache.commons.csv.Lexer
 
isQuoteCharacterSet() - Method in class org.apache.commons.csv.CSVFormat
Returns whether a quoteChar has been defined.
isReady - Variable in class org.apache.commons.csv.Token
Token ready flag: indicates a valid token with content (ready for the parser).
isSet(String) - Method in class org.apache.commons.csv.CSVRecord
Checks whether a given columns is mapped and has a value.
isStartOfLine(int) - Method in class org.apache.commons.csv.Lexer
Checks if the current character represents the start of a line: a CR, LF or is at the start of the file.
isWhitespace(int) - Method in class org.apache.commons.csv.Lexer
 
iterator() - Method in class org.apache.commons.csv.CSVParser
Returns an iterator on the records.
iterator() - Method in class org.apache.commons.csv.CSVRecord
Returns an iterator over the values of this record.

L

lastChar - Variable in class org.apache.commons.csv.ExtendedBufferedReader
The last char returned
lexer - Variable in class org.apache.commons.csv.CSVParser
 
Lexer - Class in org.apache.commons.csv
Lexical analyzer.
Lexer(CSVFormat, ExtendedBufferedReader) - Constructor for class org.apache.commons.csv.Lexer
 
LF - Static variable in class org.apache.commons.csv.Constants
 
LINE_SEPARATOR - Static variable in class org.apache.commons.csv.Constants
Unicode line separator.
lookAhead() - Method in class org.apache.commons.csv.ExtendedBufferedReader
Returns the next character in the current reader without consuming it.

M

mapNullToDisabled(Character) - Method in class org.apache.commons.csv.Lexer
 
mapping - Variable in class org.apache.commons.csv.CSVRecord
The column name to index mapping.
MINIMAL - org.apache.commons.csv.QuoteMode
Quotes fields which contain special characters such as a delimiter, quotes character or any of the characters in line separator.
MySQL - org.apache.commons.csv.CSVFormat.Predefined
 
MYSQL - Static variable in class org.apache.commons.csv.CSVFormat
Default MySQL format used by the SELECT INTO OUTFILE and LOAD DATA INFILE operations.

N

newFormat(char) - Static method in class org.apache.commons.csv.CSVFormat
Creates a new CSV format with the specified delimiter.
newRecord - Variable in class org.apache.commons.csv.CSVPrinter
True if we just began a new record.
NEXT_LINE - Static variable in class org.apache.commons.csv.Constants
Unicode next line.
nextRecord() - Method in class org.apache.commons.csv.CSVParser
Parses the next record from the current point in the stream.
nextToken(Token) - Method in class org.apache.commons.csv.Lexer
Returns the next token.
NON_NUMERIC - org.apache.commons.csv.QuoteMode
Quotes all non-numeric fields.
NONE - org.apache.commons.csv.QuoteMode
Never quotes fields.
notNull(Object, String) - Static method in class org.apache.commons.csv.Assertions
 
nullString - Variable in class org.apache.commons.csv.CSVFormat
 

O

org.apache.commons.csv - package org.apache.commons.csv
Apache Commons CSV Format Support.
out - Variable in class org.apache.commons.csv.CSVPrinter
The place that the values get written.

P

PARAGRAPH_SEPARATOR - Static variable in class org.apache.commons.csv.Constants
Unicode paragraph separator.
parse(File, Charset, CSVFormat) - Static method in class org.apache.commons.csv.CSVParser
Creates a parser for the given File.
parse(Reader) - Method in class org.apache.commons.csv.CSVFormat
Parses the specified content.
parse(String, CSVFormat) - Static method in class org.apache.commons.csv.CSVParser
Creates a parser for the given String.
parse(URL, Charset, CSVFormat) - Static method in class org.apache.commons.csv.CSVParser
Creates a parser for the given URL.
parseEncapsulatedToken(Token) - Method in class org.apache.commons.csv.Lexer
Parses an encapsulated token.
parseSimpleToken(Token, int) - Method in class org.apache.commons.csv.Lexer
Parses a simple token.
PIPE - Static variable in class org.apache.commons.csv.Constants
 
position - Variable in class org.apache.commons.csv.ExtendedBufferedReader
The position, which is number of characters read so far
Predefined(CSVFormat) - Constructor for enum org.apache.commons.csv.CSVFormat.Predefined
 
print(Appendable) - Method in class org.apache.commons.csv.CSVFormat
Prints to the specified output.
print(Object) - Method in class org.apache.commons.csv.CSVPrinter
Prints the string as the next value on the line.
print(Object, Appendable, boolean) - Method in class org.apache.commons.csv.CSVFormat
Prints the value as the next value on the line to out.
print(Object, CharSequence, int, int, Appendable, boolean) - Method in class org.apache.commons.csv.CSVFormat
 
printAndEscape(CharSequence, int, int, Appendable) - Method in class org.apache.commons.csv.CSVFormat
 
printAndQuote(Object, CharSequence, int, int, Appendable, boolean) - Method in class org.apache.commons.csv.CSVFormat
 
printComment(String) - Method in class org.apache.commons.csv.CSVPrinter
Prints a comment on a new line among the delimiter separated values.
println() - Method in class org.apache.commons.csv.CSVPrinter
Outputs the record separator.
println(Appendable) - Method in class org.apache.commons.csv.CSVFormat
Outputs the record separator.
printRecord(Appendable, Object...) - Method in class org.apache.commons.csv.CSVFormat
Prints the given values to out as a single record of delimiter separated values followed by the record separator.
printRecord(Iterable<?>) - Method in class org.apache.commons.csv.CSVPrinter
Prints the given values a single record of delimiter separated values followed by the record separator.
printRecord(Object...) - Method in class org.apache.commons.csv.CSVPrinter
Prints the given values a single record of delimiter separated values followed by the record separator.
printRecords(Iterable<?>) - Method in class org.apache.commons.csv.CSVPrinter
Prints all the objects in the given collection handling nested collections/arrays as records.
printRecords(Object...) - Method in class org.apache.commons.csv.CSVPrinter
Prints all the objects in the given array handling nested collections/arrays as records.
printRecords(ResultSet) - Method in class org.apache.commons.csv.CSVPrinter
Prints all the objects in the given JDBC result set.
putIn(M) - Method in class org.apache.commons.csv.CSVRecord
Puts all values of this record into the given Map.

Q

quoteChar - Variable in class org.apache.commons.csv.Lexer
 
quoteCharacter - Variable in class org.apache.commons.csv.CSVFormat
 
quoteMode - Variable in class org.apache.commons.csv.CSVFormat
 
QuoteMode - Enum in org.apache.commons.csv
Defines quote behavior when printing.
QuoteMode() - Constructor for enum org.apache.commons.csv.QuoteMode
 

R

read() - Method in class org.apache.commons.csv.ExtendedBufferedReader
 
read(char[], int, int) - Method in class org.apache.commons.csv.ExtendedBufferedReader
 
readEndOfLine(int) - Method in class org.apache.commons.csv.Lexer
Greedily accepts \n, \r and \r\n This checker consumes silently the second control-character...
reader - Variable in class org.apache.commons.csv.Lexer
The input stream
readEscape() - Method in class org.apache.commons.csv.Lexer
Handle an escape sequence.
readLine() - Method in class org.apache.commons.csv.ExtendedBufferedReader
Calls BufferedReader.readLine() which drops the line terminator(s).
record - Variable in class org.apache.commons.csv.CSVParser
A record buffer for getRecord().
recordNumber - Variable in class org.apache.commons.csv.CSVParser
The next record number to assign.
recordNumber - Variable in class org.apache.commons.csv.CSVRecord
The record number.
recordSeparator - Variable in class org.apache.commons.csv.CSVFormat
 
reset() - Method in class org.apache.commons.csv.Token
 
reusableToken - Variable in class org.apache.commons.csv.CSVParser
 
RFC4180 - org.apache.commons.csv.CSVFormat.Predefined
 
RFC4180 - Static variable in class org.apache.commons.csv.CSVFormat
Comma separated format as defined by RFC 4180.
RS - Static variable in class org.apache.commons.csv.Constants
ASCII record separator

S

serialVersionUID - Static variable in class org.apache.commons.csv.CSVFormat
 
serialVersionUID - Static variable in class org.apache.commons.csv.CSVRecord
 
size() - Method in class org.apache.commons.csv.CSVRecord
Returns the number of values in this record.
skipHeaderRecord - Variable in class org.apache.commons.csv.CSVFormat
 
SP - Static variable in class org.apache.commons.csv.Constants
 

T

TAB - Static variable in class org.apache.commons.csv.Constants
 
TDF - org.apache.commons.csv.CSVFormat.Predefined
 
TDF - Static variable in class org.apache.commons.csv.CSVFormat
Tab-delimited format.
Token - Class in org.apache.commons.csv
Internal token representation.
Token() - Constructor for class org.apache.commons.csv.Token
 
TOKEN - org.apache.commons.csv.Token.Type
Token with content, at beginning or in the middle of a line.
Token.Type - Enum in org.apache.commons.csv
 
toList() - Method in class org.apache.commons.csv.CSVRecord
Converts the values to a List.
toMap() - Method in class org.apache.commons.csv.CSVRecord
Copies this record into a new Map.
toString() - Method in class org.apache.commons.csv.CSVFormat
 
toString() - Method in class org.apache.commons.csv.CSVRecord
Returns a string representation of the contents of this record.
toString() - Method in class org.apache.commons.csv.Token
Eases IDE debugging.
toStringArray(Object[]) - Method in class org.apache.commons.csv.CSVFormat
 
trailingDelimiter - Variable in class org.apache.commons.csv.CSVFormat
 
trim - Variable in class org.apache.commons.csv.CSVFormat
 
trim(CharSequence) - Method in class org.apache.commons.csv.CSVFormat
 
trimTrailingSpaces(StringBuilder) - Method in class org.apache.commons.csv.Lexer
 
type - Variable in class org.apache.commons.csv.Token
Token type
Type() - Constructor for enum org.apache.commons.csv.Token.Type
 

U

UNDEFINED - Static variable in class org.apache.commons.csv.Constants
Undefined state for the lookahead char
US - Static variable in class org.apache.commons.csv.Constants
ASCII unit separator

V

validate() - Method in class org.apache.commons.csv.CSVFormat
Verifies the consistency of the parameters and throws an IllegalArgumentException if necessary.
valueOf(String) - Static method in enum org.apache.commons.csv.CSVFormat.Predefined
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in class org.apache.commons.csv.CSVFormat
Gets one of the predefined formats from CSVFormat.Predefined.
valueOf(String) - Static method in enum org.apache.commons.csv.QuoteMode
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum org.apache.commons.csv.Token.Type
Returns the enum constant of this type with the specified name.
values - Variable in class org.apache.commons.csv.CSVRecord
The values of the record
values() - Static method in enum org.apache.commons.csv.CSVFormat.Predefined
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Method in class org.apache.commons.csv.CSVRecord
 
values() - Static method in enum org.apache.commons.csv.QuoteMode
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum org.apache.commons.csv.Token.Type
Returns an array containing the constants of this enum type, in the order they are declared.

W

withAllowMissingColumnNames() - Method in class org.apache.commons.csv.CSVFormat
Returns a new CSVFormat with the missing column names behavior of the format set to true
withAllowMissingColumnNames(boolean) - Method in class org.apache.commons.csv.CSVFormat
Returns a new CSVFormat with the missing column names behavior of the format set to the given value.
withCommentMarker(char) - Method in class org.apache.commons.csv.CSVFormat
Returns a new CSVFormat with the comment start marker of the format set to the specified character.
withCommentMarker(Character) - Method in class org.apache.commons.csv.CSVFormat
Returns a new CSVFormat with the comment start marker of the format set to the specified character.
withDelimiter(char) - Method in class org.apache.commons.csv.CSVFormat
Returns a new CSVFormat with the delimiter of the format set to the specified character.
withEscape(char) - Method in class org.apache.commons.csv.CSVFormat
Returns a new CSVFormat with the escape character of the format set to the specified character.
withEscape(Character) - Method in class org.apache.commons.csv.CSVFormat
Returns a new CSVFormat with the escape character of the format set to the specified character.
withFirstRecordAsHeader() - Method in class org.apache.commons.csv.CSVFormat
Returns a new CSVFormat using the first record as header.
withHeader(Class<? extends Enum<?>>) - Method in class org.apache.commons.csv.CSVFormat
Returns a new CSVFormat with the header of the format defined by the enum class.
withHeader(String...) - Method in class org.apache.commons.csv.CSVFormat
Returns a new CSVFormat with the header of the format set to the given values.
withHeader(ResultSet) - Method in class org.apache.commons.csv.CSVFormat
Returns a new CSVFormat with the header of the format set from the result set metadata.
withHeader(ResultSetMetaData) - Method in class org.apache.commons.csv.CSVFormat
Returns a new CSVFormat with the header of the format set from the result set metadata.
withHeaderComments(Object...) - Method in class org.apache.commons.csv.CSVFormat
Returns a new CSVFormat with the header comments of the format set to the given values.
withIgnoreEmptyLines() - Method in class org.apache.commons.csv.CSVFormat
Returns a new CSVFormat with the empty line skipping behavior of the format set to true.
withIgnoreEmptyLines(boolean) - Method in class org.apache.commons.csv.CSVFormat
Returns a new CSVFormat with the empty line skipping behavior of the format set to the given value.
withIgnoreHeaderCase() - Method in class org.apache.commons.csv.CSVFormat
Returns a new CSVFormat with the header ignore case behavior set to true.
withIgnoreHeaderCase(boolean) - Method in class org.apache.commons.csv.CSVFormat
Returns a new CSVFormat with whether header names should be accessed ignoring case.
withIgnoreSurroundingSpaces() - Method in class org.apache.commons.csv.CSVFormat
Returns a new CSVFormat with the trimming behavior of the format set to true.
withIgnoreSurroundingSpaces(boolean) - Method in class org.apache.commons.csv.CSVFormat
Returns a new CSVFormat with the trimming behavior of the format set to the given value.
withNullString(String) - Method in class org.apache.commons.csv.CSVFormat
Returns a new CSVFormat with conversions to and from null for strings on input and output.
withQuote(char) - Method in class org.apache.commons.csv.CSVFormat
Returns a new CSVFormat with the quoteChar of the format set to the specified character.
withQuote(Character) - Method in class org.apache.commons.csv.CSVFormat
Returns a new CSVFormat with the quoteChar of the format set to the specified character.
withQuoteMode(QuoteMode) - Method in class org.apache.commons.csv.CSVFormat
Returns a new CSVFormat with the output quote policy of the format set to the specified value.
withRecordSeparator(char) - Method in class org.apache.commons.csv.CSVFormat
Returns a new CSVFormat with the record separator of the format set to the specified character.
withRecordSeparator(String) - Method in class org.apache.commons.csv.CSVFormat
Returns a new CSVFormat with the record separator of the format set to the specified String.
withSkipHeaderRecord() - Method in class org.apache.commons.csv.CSVFormat
Returns a new CSVFormat with skipping the header record set to true.
withSkipHeaderRecord(boolean) - Method in class org.apache.commons.csv.CSVFormat
Returns a new CSVFormat with whether to skip the header record.
withTrailingDelimiter() - Method in class org.apache.commons.csv.CSVFormat
Returns a new CSVFormat to add a trailing delimiter.
withTrailingDelimiter(boolean) - Method in class org.apache.commons.csv.CSVFormat
Returns a new CSVFormat with whether to add a trailing delimiter.
withTrim() - Method in class org.apache.commons.csv.CSVFormat
Returns a new CSVFormat to trim leading and trailing blanks.
withTrim(boolean) - Method in class org.apache.commons.csv.CSVFormat
Returns a new CSVFormat with whether to trim leading and trailing blanks.
A B C D E F G H I L M N O P Q R S T U V W 
All Classes All Packages