Package
Class
Use
Tree
Deprecated
Index
Help
PREV NEXT
FRAMES
NO FRAMES
All Classes
B
C
D
E
F
G
H
I
M
N
O
P
Q
R
S
T
V
W
B
build()
- Method in class org.apache.commons.csv.
CSVFormat.CSVFormatBuilder
Builds a new CSVFormat configured with the values from this builder.
C
close()
- Method in class org.apache.commons.csv.
CSVPrinter
CSVFormat
- Class in
org.apache.commons.csv
Specifies the format of a CSV file and parses input.
CSVFormat.CSVFormatBuilder
- Class in
org.apache.commons.csv
Builds CSVFormat objects.
CSVParser
- Class in
org.apache.commons.csv
Parses CSV files according to the specified configuration.
CSVParser(Reader)
- Constructor for class org.apache.commons.csv.
CSVParser
CSV parser using the default
CSVFormat
.
CSVParser(Reader, CSVFormat)
- Constructor for class org.apache.commons.csv.
CSVParser
Customized CSV parser using the given
CSVFormat
CSVParser(String, CSVFormat)
- 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.
D
DEFAULT
- Static variable in class org.apache.commons.csv.
CSVFormat
Standard comma separated format, as for
CSVFormat.RFC4180
but allowing empty lines.
E
equals(Object)
- Method in class org.apache.commons.csv.
CSVFormat
EXCEL
- Static variable in class org.apache.commons.csv.
CSVFormat
Excel file format (using a comma as the value delimiter).
F
flush()
- Method in class org.apache.commons.csv.
CSVPrinter
Flushes the underlying stream.
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(String)
- Method in class org.apache.commons.csv.
CSVRecord
Returns a value by name.
getComment()
- Method in class org.apache.commons.csv.
CSVRecord
Returns the comment for this record, if any.
getCommentStart()
- Method in class org.apache.commons.csv.
CSVFormat
Returns the character marking the start of a line comment.
getDelimiter()
- Method in class org.apache.commons.csv.
CSVFormat
Returns the character delimiting the values (typically ';', ',' or '\t').
getEscape()
- Method in class org.apache.commons.csv.
CSVFormat
Returns the escape character.
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.
getIgnoreSurroundingSpaces()
- Method in class org.apache.commons.csv.
CSVFormat
Specifies whether spaces around values are ignored when parsing input.
getLineNumber()
- Method in class org.apache.commons.csv.
CSVParser
Returns the current line number in the input stream.
getQuoteChar()
- Method in class org.apache.commons.csv.
CSVFormat
Returns the character used to encapsulate values containing special characters.
getQuotePolicy()
- 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 an array of
CSVRecord
entries.
getRecordSeparator()
- Method in class org.apache.commons.csv.
CSVFormat
Returns the line separator delimiting output records.
H
hashCode()
- Method in class org.apache.commons.csv.
CSVFormat
I
isCommentingEnabled()
- Method in class org.apache.commons.csv.
CSVFormat
Specifies whether comments are supported by this format.
isEscaping()
- Method in class org.apache.commons.csv.
CSVFormat
Returns whether escape are being processed.
isMapped(String)
- Method in class org.apache.commons.csv.
CSVRecord
Checks whether a given column is mapped.
isQuoting()
- Method in class org.apache.commons.csv.
CSVFormat
Returns whether an quoteChar has been defined.
isSet(String)
- Method in class org.apache.commons.csv.
CSVRecord
Checks whether a given columns is mapped and has a value.
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.
M
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
newBuilder(char)
- Static method in class org.apache.commons.csv.
CSVFormat
Creates a new CSV format builder.
newBuilder(CSVFormat)
- Static method in class org.apache.commons.csv.
CSVFormat
Creates a CSVFormatBuilder, using the values of the given CSVFormat.
newBuilder()
- Static method in class org.apache.commons.csv.
CSVFormat
Creates a standard comma separated format builder, as for
CSVFormat.RFC4180
but allowing empty lines.
O
org.apache.commons.csv
- package org.apache.commons.csv
Apache Commons CSV Format Support.
P
parse(Reader)
- Method in class org.apache.commons.csv.
CSVFormat.CSVFormatBuilder
Parses the specified content.
parse(Reader)
- Method in class org.apache.commons.csv.
CSVFormat
Parses the specified content.
print(Object)
- Method in class org.apache.commons.csv.
CSVPrinter
Prints the string as the next value on the line.
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 line separator.
printRecord(Object...)
- Method in class org.apache.commons.csv.
CSVPrinter
Prints a single line of delimiter separated values.
printRecord(Iterable<?>)
- Method in class org.apache.commons.csv.
CSVPrinter
Prints a single line of delimiter separated values.
printRecords(Object[])
- Method in class org.apache.commons.csv.
CSVPrinter
Prints all the objects in the given array.
printRecords(Iterable<?>)
- Method in class org.apache.commons.csv.
CSVPrinter
Prints all the objects in the given collection.
printRecords(ResultSet)
- Method in class org.apache.commons.csv.
CSVPrinter
Prints all the objects in the given JDBC result set.
Q
Quote
- Enum in
org.apache.commons.csv
Defines quote behavior when printing.
R
RFC4180
- Static variable in class org.apache.commons.csv.
CSVFormat
Comma separated format as defined by
RFC 4180
.
S
size()
- Method in class org.apache.commons.csv.
CSVRecord
Returns the number of values in this record.
T
TDF
- Static variable in class org.apache.commons.csv.
CSVFormat
Tab-delimited format, with quote; leading and trailing spaces ignored.
toBuilder()
- Method in class org.apache.commons.csv.
CSVFormat
Creates a builder based on this format.
toString()
- Method in class org.apache.commons.csv.
CSVFormat
toString()
- Method in class org.apache.commons.csv.
CSVRecord
V
valueOf(String)
- Static method in enum org.apache.commons.csv.
Quote
Returns the enum constant of this type with the specified name.
values()
- Static method in enum org.apache.commons.csv.
Quote
Returns an array containing the constants of this enum type, in the order they are declared.
W
withCommentStart(char)
- Method in class org.apache.commons.csv.
CSVFormat.CSVFormatBuilder
Sets the comment start marker of the format to the specified character.
withCommentStart(Character)
- Method in class org.apache.commons.csv.
CSVFormat.CSVFormatBuilder
Sets the comment start marker of the format to the specified character.
withDelimiter(char)
- Method in class org.apache.commons.csv.
CSVFormat.CSVFormatBuilder
Sets the delimiter of the format to the specified character.
withEscape(char)
- Method in class org.apache.commons.csv.
CSVFormat.CSVFormatBuilder
Sets the escape character of the format to the specified character.
withEscape(Character)
- Method in class org.apache.commons.csv.
CSVFormat.CSVFormatBuilder
Sets the escape character of the format to the specified character.
withHeader(String...)
- Method in class org.apache.commons.csv.
CSVFormat.CSVFormatBuilder
Sets the header of the format.
withIgnoreEmptyLines(boolean)
- Method in class org.apache.commons.csv.
CSVFormat.CSVFormatBuilder
Sets the empty line skipping behavior of the format.
withIgnoreSurroundingSpaces(boolean)
- Method in class org.apache.commons.csv.
CSVFormat.CSVFormatBuilder
Sets the trimming behavior of the format.
withQuoteChar(char)
- Method in class org.apache.commons.csv.
CSVFormat.CSVFormatBuilder
Sets the quoteChar of the format to the specified character.
withQuoteChar(Character)
- Method in class org.apache.commons.csv.
CSVFormat.CSVFormatBuilder
Sets the quoteChar of the format to the specified character.
withQuotePolicy(Quote)
- Method in class org.apache.commons.csv.
CSVFormat.CSVFormatBuilder
Sets the output quote policy of the format to the specified value.
withRecordSeparator(char)
- Method in class org.apache.commons.csv.
CSVFormat.CSVFormatBuilder
Sets the record separator of the format to the specified character.
withRecordSeparator(String)
- Method in class org.apache.commons.csv.
CSVFormat.CSVFormatBuilder
Sets the record separator of the format to the specified String.
B
C
D
E
F
G
H
I
M
N
O
P
Q
R
S
T
V
W
Package
Class
Use
Tree
Deprecated
Index
Help
PREV NEXT
FRAMES
NO FRAMES
All Classes
Copyright © 2013
The Apache Software Foundation
. All Rights Reserved.