Uses of Interface
org.csveed.row.RowInstructions
Packages that use RowInstructions
Package
Description
The package responsible for converting Rows to Beans.
The package responsible for converting a group of tokens into Header and Rows.
-
Uses of RowInstructions in org.csveed.bean
Methods in org.csveed.bean that return RowInstructionsModifier and TypeMethodDescriptionBeanInstructions.getRowInstructions()
Returns the instructions for processing rows.BeanInstructionsImpl.getRowInstructions()
-
Uses of RowInstructions in org.csveed.row
Classes in org.csveed.row that implement RowInstructionsMethods in org.csveed.row that return RowInstructionsModifier and TypeMethodDescriptionRowReader.getRowInstructions()
The set of instructions for dealing with rows.RowReaderImpl.getRowInstructions()
RowWriter.getRowInstructions()
The set of instructions for dealing with rows.RowWriterImpl.getRowInstructions()
RowInstructions.setComment
(char symbol) Sets the character that will be interpreted as a comment field on the first position of a row.RowInstructionsImpl.setComment
(char symbol) RowInstructions.setEndOfLine
(char[] symbols) Sets the characters (plural) that will be interpreted as end-of-line markers (unless within a quoted field).RowInstructionsImpl.setEndOfLine
(char[] symbols) RowInstructions.setEscape
(char symbol) Sets the character that will be interpreted as an escape symbol while within a quoted field.RowInstructionsImpl.setEscape
(char symbol) RowInstructions.setQuote
(char symbol) Sets the character that will be interpreted as a quote symbol, signifying either the start or the end of a quoted field.RowInstructionsImpl.setQuote
(char symbol) RowInstructions.setQuotingEnabled
(boolean enabled) Sets whether or not quotes are written around the field values.RowInstructionsImpl.setQuotingEnabled
(boolean quoteFields) RowInstructions.setSeparator
(char symbol) Sets the character that will be interpreted as a separator between cells.RowInstructionsImpl.setSeparator
(char symbol) RowInstructions.setStartRow
(int startRow) Sets the start row of the CSV file.RowInstructionsImpl.setStartRow
(int startRow) RowInstructions.setUseHeader
(boolean useHeader) Makes sure that the first readable line is interpreted as the header line.RowInstructionsImpl.setUseHeader
(boolean useHeader) RowInstructions.skipCommentLines
(boolean skip) Determines whether comment lines must be skipped.RowInstructionsImpl.skipCommentLines
(boolean skip) RowInstructions.skipEmptyLines
(boolean skip) Determines whether empty lines must be skipped or treated as single-column rows.RowInstructionsImpl.skipEmptyLines
(boolean skip) Constructors in org.csveed.row with parameters of type RowInstructionsModifierConstructorDescriptionRowReaderImpl
(Reader reader, RowInstructions instructionsInterface) Instantiates a new row reader impl.RowWriterImpl
(Writer writer, RowInstructions rowInstructions) Instantiates a new row writer impl.