- get(Enum<?>) - Method in class org.apache.commons.csv.CSVRecord
-
- 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.
- 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.
- 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.
- 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.
- 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.
- getIgnoreSurroundingSpaces() - Method in class org.apache.commons.csv.CSVFormat
-
Specifies whether spaces around values are ignored when parsing input.
- 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.
- 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.
- withAllowMissingColumnNames() - Method in class org.apache.commons.csv.CSVFormat
-
Sets the missing column names behavior of the format to true
- withAllowMissingColumnNames(boolean) - Method in class org.apache.commons.csv.CSVFormat
-
Sets the missing column names behavior of the format.
- withCommentMarker(char) - Method in class org.apache.commons.csv.CSVFormat
-
Sets the comment start marker of the format to the specified character.
- withCommentMarker(Character) - Method in class org.apache.commons.csv.CSVFormat
-
Sets the comment start marker of the format to the specified character.
- withDelimiter(char) - Method in class org.apache.commons.csv.CSVFormat
-
Sets the delimiter of the format to the specified character.
- withEscape(char) - Method in class org.apache.commons.csv.CSVFormat
-
Sets the escape character of the format to the specified character.
- withEscape(Character) - Method in class org.apache.commons.csv.CSVFormat
-
Sets the escape character of the format to the specified character.
- withHeader(String...) - Method in class org.apache.commons.csv.CSVFormat
-
Sets the header of the format.
- withHeader(ResultSet) - Method in class org.apache.commons.csv.CSVFormat
-
Sets the header of the format.
- withHeader(ResultSetMetaData) - Method in class org.apache.commons.csv.CSVFormat
-
Sets the header of the format.
- withHeaderComments(Object...) - Method in class org.apache.commons.csv.CSVFormat
-
Sets the header comments of the format.
- withIgnoreEmptyLines() - Method in class org.apache.commons.csv.CSVFormat
-
Sets the empty line skipping behavior of the format to true
.
- withIgnoreEmptyLines(boolean) - Method in class org.apache.commons.csv.CSVFormat
-
Sets the empty line skipping behavior of the format.
- withIgnoreSurroundingSpaces() - Method in class org.apache.commons.csv.CSVFormat
-
Sets the trimming behavior of the format to true
.
- withIgnoreSurroundingSpaces(boolean) - Method in class org.apache.commons.csv.CSVFormat
-
Sets the trimming behavior of the format.
- withNullString(String) - Method in class org.apache.commons.csv.CSVFormat
-
Performs conversions to and from null for strings on input and output.
- withQuote(char) - Method in class org.apache.commons.csv.CSVFormat
-
Sets the quoteChar of the format to the specified character.
- withQuote(Character) - Method in class org.apache.commons.csv.CSVFormat
-
Sets the quoteChar of the format to the specified character.
- withQuoteMode(QuoteMode) - Method in class org.apache.commons.csv.CSVFormat
-
Sets the output quote policy of the format to the specified value.
- withRecordSeparator(char) - Method in class org.apache.commons.csv.CSVFormat
-
Sets the record separator of the format to the specified character.
- withRecordSeparator(String) - Method in class org.apache.commons.csv.CSVFormat
-
Sets the record separator of the format to the specified String.
- withSkipHeaderRecord() - Method in class org.apache.commons.csv.CSVFormat
-
Sets skipping the header record to true
.
- withSkipHeaderRecord(boolean) - Method in class org.apache.commons.csv.CSVFormat
-
Sets whether to skip the header record.