A C E F G I L M N O P R S T U V W 

A

AbstractCsvScanner<T> - Class in org.bufio
 
AbstractCsvScanner(Reader) - Constructor for class org.bufio.AbstractCsvScanner
Creates a "standard" CSV reader (separator is comma and quoted mode active)
AbstractCsvScanner(Reader, char, boolean) - Constructor for class org.bufio.AbstractCsvScanner
 
advance(int) - Method in class org.bufio.Scanner
Used by SplitFunc.split(char[], int, int, boolean) function to advance the input.
atEndOfFile() - Method in class org.bufio.Scanner
 
atEndOfRow() - Method in class org.bufio.AbstractCsvScanner
Returns `true` when the most recent field has been terminated by a newline (not a separator).

C

charAt(int) - Method in class org.bufio.Scanner
 
close() - Method in class org.bufio.CsvColWriter
 
close() - Method in class org.bufio.CsvReader
 
close() - Method in class org.bufio.CsvWriter
 
close() - Method in class org.bufio.Scanner
 
column() - Method in class org.bufio.AbstractCsvScanner
Returns current column (first column is 1).
CsvColWriter - Class in org.bufio
CsvColWriter provides an interface for writing CSV data by row (compatible with rfc4180 and extended with the option of having a separator other than ",").
CsvColWriter(Writer) - Constructor for class org.bufio.CsvColWriter
 
CsvColWriter(Writer, char, boolean) - Constructor for class org.bufio.CsvColWriter
 
CsvReader - Class in org.bufio
Provides an interface for reading CSV data by row (compatible with rfc4180 and extended with the option of having a separator other than ",").
CsvReader(Reader) - Constructor for class org.bufio.CsvReader
Creates a "standard" CSV reader (separator is comma and quoted mode active)
CsvReader(Reader, char, boolean) - Constructor for class org.bufio.CsvReader
Returns a new CSV scanner to read from `r`.
CsvScanner - Class in org.bufio
Provides an interface for reading CSV data by field (compatible with rfc4180 and extended with the option of having a separator other than ",").
CsvScanner(Reader) - Constructor for class org.bufio.CsvScanner
Creates a "standard" CSV reader (separator is comma and quoted mode active)
CsvScanner(Reader, char, boolean) - Constructor for class org.bufio.CsvScanner
Returns a new CSV scanner to read from `r`.
CsvWriter - Class in org.bufio
CsvWriter provides an interface for writing CSV data in accordance with the columns order (compatible with rfc4180 and extended with the option of having a separator other than ",").
CsvWriter(Writer) - Constructor for class org.bufio.CsvWriter
Creates a "standard" CSV writer (separator is comma and quoted mode active)
CsvWriter(Writer, char, boolean) - Constructor for class org.bufio.CsvWriter
Returns a new CSV writer

E

endOfRow() - Method in class org.bufio.CsvColWriter
Tells when a line break must be inserted.
endOfRow() - Method in class org.bufio.CsvWriter
Tells when a line break must be inserted.

F

findColumn(String) - Method in class org.bufio.CsvColWriter
 
findColumn(String) - Method in class org.bufio.CsvReader
 
flush() - Method in class org.bufio.CsvColWriter
 
flush() - Method in class org.bufio.CsvWriter
 

G

getByte(int) - Method in class org.bufio.CsvReader
 
getByte(String) - Method in class org.bufio.CsvReader
 
getColumnCount() - Method in class org.bufio.CsvReader
 
getColumnLabel(int) - Method in class org.bufio.CsvColWriter
 
getColumnLabel(int) - Method in class org.bufio.CsvReader
 
getDouble(int) - Method in class org.bufio.CsvReader
 
getDouble(String) - Method in class org.bufio.CsvReader
 
getFloat(int) - Method in class org.bufio.CsvReader
 
getFloat(String) - Method in class org.bufio.CsvReader
 
getInt(int) - Method in class org.bufio.CsvReader
 
getInt(String) - Method in class org.bufio.CsvReader
 
getLong(int) - Method in class org.bufio.CsvReader
 
getLong(String) - Method in class org.bufio.CsvReader
 
getObject(int, Class<T>) - Method in class org.bufio.CsvReader
 
getObject(String, Class<T>) - Method in class org.bufio.CsvReader
 
getRow() - Method in class org.bufio.CsvReader
Returns current line number.
getShort(int) - Method in class org.bufio.CsvReader
 
getShort(String) - Method in class org.bufio.CsvReader
 
getString(int) - Method in class org.bufio.CsvReader
 
getString(String) - Method in class org.bufio.CsvReader
 

I

init(Reader) - Method in class org.bufio.AbstractCsvScanner
 
init(Reader) - Method in class org.bufio.Scanner
 
iterator() - Method in class org.bufio.CsvReader
Iterates on rows.
iterator() - Method in class org.bufio.CsvScanner
Iterates on fields.

L

length() - Method in class org.bufio.Scanner
 
lineno() - Method in class org.bufio.AbstractCsvScanner
Returns current line number

M

marshal(Object) - Method in interface org.bufio.Marshaler
 
Marshaler - Interface in org.bufio
Component called by CsvWriter.writeValue(java.lang.Object) to marshall value to text.

N

newToken(char[], int, int) - Method in class org.bufio.AbstractCsvScanner
 
newToken(char[], int, int) - Method in class org.bufio.CsvScanner
 
next() - Method in class org.bufio.CsvReader
 

O

org.bufio - package org.bufio
 

P

peek() - Method in class org.bufio.Scanner
 
position() - Method in class org.bufio.Scanner
 

R

reset(Reader) - Method in class org.bufio.AbstractCsvScanner
 
reset(Reader) - Method in class org.bufio.CsvReader
Reuse this component with a new content.
reset(Reader) - Method in class org.bufio.Scanner
Reuse this scanner with a new content.

S

scan() - Method in class org.bufio.Scanner
Advances the Scanner to the next token, which will then be available through the token method.
scanBool(String) - Method in class org.bufio.CsvScanner
Reads bool until next separator or eol/eof.
scanChar() - Method in class org.bufio.CsvScanner
Reads char until next separator or eol/eof.
scanDouble() - Method in class org.bufio.CsvScanner
Reads double until next separator or eol/eof.
ScanException - Exception in org.bufio
 
scanFloat() - Method in class org.bufio.CsvScanner
Reads float until next separator or eol/eof.
scanHeaders(boolean) - Method in class org.bufio.CsvReader
 
scanInt() - Method in class org.bufio.CsvScanner
Reads int until next separator or eol/eof.
scanLong() - Method in class org.bufio.CsvScanner
Reads long until next separator or eol/eof.
Scanner<T> - Class in org.bufio
Port of Go Scanner in Java.
Scanner(Reader) - Constructor for class org.bufio.Scanner
 
scanRow(String[]) - Method in class org.bufio.CsvScanner
Extra fields are skipped (when the number of fields is greater than `values` size).
scanText() - Method in class org.bufio.CsvScanner
Reads text until next separator or eol/eof.
setByte(int, byte) - Method in class org.bufio.CsvColWriter
 
setByte(String, byte) - Method in class org.bufio.CsvColWriter
 
setCommentMarker(char) - Method in class org.bufio.AbstractCsvScanner
Sets the character marking the start of a line comment.
setCommentMarker(char) - Method in class org.bufio.CsvColWriter
Sets the character marking the start of a line comment.
setCommentMarker(char) - Method in class org.bufio.CsvReader
Sets the character marking the start of a line comment.
setCommentMarker(char) - Method in class org.bufio.CsvWriter
Sets the character marking the start of a line comment.
setDouble(int, double) - Method in class org.bufio.CsvColWriter
 
setDouble(String, double) - Method in class org.bufio.CsvColWriter
 
setEmptyIsNull(boolean) - Method in class org.bufio.CsvReader
Treats empty value as `null` value
setFloat(int, float) - Method in class org.bufio.CsvColWriter
 
setFloat(String, float) - Method in class org.bufio.CsvColWriter
 
setInt(int, int) - Method in class org.bufio.CsvColWriter
 
setInt(String, int) - Method in class org.bufio.CsvColWriter
 
setLong(int, long) - Method in class org.bufio.CsvColWriter
 
setLong(String, long) - Method in class org.bufio.CsvColWriter
 
setMarshaler(Marshaler) - Method in class org.bufio.CsvColWriter
Sets the component called by CsvColWriter.setObject(int, java.lang.Object) to marshall value to text.
setMarshaler(Marshaler) - Method in class org.bufio.CsvWriter
Sets the component called by CsvWriter.writeValue(java.lang.Object) to marshall value to text.
setObject(int, Object) - Method in class org.bufio.CsvColWriter
 
setObject(String, Object) - Method in class org.bufio.CsvColWriter
 
setShort(int, short) - Method in class org.bufio.CsvColWriter
 
setShort(String, short) - Method in class org.bufio.CsvColWriter
 
setSkipEmptyLines(boolean) - Method in class org.bufio.AbstractCsvScanner
 
setSkipEmptyLines(boolean) - Method in class org.bufio.CsvReader
 
setSplitFunc(SplitFunc<T>) - Method in class org.bufio.Scanner
 
setString(int, String) - Method in class org.bufio.CsvColWriter
 
setString(String, String) - Method in class org.bufio.CsvColWriter
 
setTrim(boolean) - Method in class org.bufio.AbstractCsvScanner
Trims spaces (only on not-quoted fields).
setTrim(boolean) - Method in class org.bufio.CsvReader
Trims spaces (only on not-quoted values).
setUnmarshaler(Unmarshaler) - Method in class org.bufio.CsvReader
Sets the component used by CsvReader.getObject(int, java.lang.Class<T>) to transform text to object.
skipRows(int) - Method in class org.bufio.AbstractCsvScanner
Skips `n` rows
skipRows(int) - Method in class org.bufio.CsvReader
Skips `n` rows
split(char[], int, int, boolean) - Method in interface org.bufio.SplitFunc
 
SplitFunc<T> - Interface in org.bufio
Split function used to tokenize the input
stream() - Method in class org.bufio.CsvReader
 
subSequence(int, int) - Method in class org.bufio.Scanner
 

T

token() - Method in class org.bufio.Scanner
 
toString() - Method in class org.bufio.Scanner
 

U

unmarshal(String, Class<T>) - Method in interface org.bufio.Unmarshaler
 
Unmarshaler - Interface in org.bufio
Component used by CsvReader.getObject(int, java.lang.Class<T>) to transform text to object.
useCRLF() - Method in class org.bufio.CsvColWriter
Use \r\n as the line terminator.
useCRLF() - Method in class org.bufio.CsvWriter
Use \r\n as the line terminator.

V

value() - Method in class org.bufio.CsvScanner
Returns the most recent value generated by a call to scan.
values() - Method in class org.bufio.CsvReader
 

W

wasNull() - Method in class org.bufio.CsvReader
Reports whether the last column read had an empty value.
withHeaders(Iterable<String>) - Method in class org.bufio.CsvReader
 
withHeaders(Collection<String>) - Method in class org.bufio.CsvColWriter
 
write(char[]) - Method in class org.bufio.CsvWriter
Ensures that value is quoted when needed.
write(char[], int, int) - Method in class org.bufio.CsvWriter
Ensures that value is quoted when needed.
write(String) - Method in class org.bufio.CsvWriter
Ensures that value is quoted when needed.
write(String, int, int) - Method in class org.bufio.CsvWriter
 
writeComment(String...) - Method in class org.bufio.CsvWriter
 
writeResultSet(ResultSet, boolean) - Method in class org.bufio.CsvWriter
 
writerHeaders(boolean) - Method in class org.bufio.CsvColWriter
 
writeRow(Iterable<?>) - Method in class org.bufio.CsvWriter
 
writeRow(String...) - Method in class org.bufio.CsvWriter
 
writeValue(Object) - Method in class org.bufio.CsvWriter
 
A C E F G I L M N O P R S T U V W 
Skip navigation links

Copyright © 2018. All rights reserved.