- 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
- 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
-
- setMarshaler(Marshaler) - Method in class org.bufio.CsvWriter
-
- 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
-
- 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
-