Index
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form
A
- AbstractBatchedColumnProcessor<T extends Context> - Class in com.univocity.parsers.common.processor.core
-
A
Processor
implementation that stores values of columns in batches. - AbstractBatchedColumnProcessor(int) - Constructor for class com.univocity.parsers.common.processor.core.AbstractBatchedColumnProcessor
-
Constructs a batched column processor configured to invoke the
AbstractBatchedColumnProcessor.batchesProcessed
method after a given number of rows has been processed. - AbstractBatchedObjectColumnProcessor<T extends Context> - Class in com.univocity.parsers.common.processor.core
-
A
Processor
implementation for converting batches of rows extracted from any implementation ofAbstractParser
into columns of objects. - AbstractBatchedObjectColumnProcessor(int) - Constructor for class com.univocity.parsers.common.processor.core.AbstractBatchedObjectColumnProcessor
-
Constructs a abstract batched column processor configured to invoke the
AbstractBatchedObjectColumnProcessor.batchesProcessed
method after a given number of rows has been processed. - AbstractBeanListProcessor<T,
C extends Context> - Class in com.univocity.parsers.common.processor.core -
A convenience
Processor
implementation for storing all java objects generated form the parsed input into a list. - AbstractBeanListProcessor(Class<T>) - Constructor for class com.univocity.parsers.common.processor.core.AbstractBeanListProcessor
-
Creates a processor that stores java beans of a given type into a list
- AbstractBeanListProcessor(Class<T>, int) - Constructor for class com.univocity.parsers.common.processor.core.AbstractBeanListProcessor
-
Creates a processor that stores java beans of a given type into a list
- AbstractBeanProcessor<T,
C extends Context> - Class in com.univocity.parsers.common.processor.core -
A
Processor
implementation for converting rows extracted from any implementation ofAbstractParser
into java objects. - AbstractBeanProcessor(Class<T>, MethodFilter) - Constructor for class com.univocity.parsers.common.processor.core.AbstractBeanProcessor
-
Creates a processor for java beans of a given type.
- AbstractCharInputReader - Class in com.univocity.parsers.common.input
-
The base class for implementing different flavours of
CharInputReader
. - AbstractCharInputReader(char[], char, int, boolean) - Constructor for class com.univocity.parsers.common.input.AbstractCharInputReader
-
Creates a new instance with the mandatory characters for handling newlines transparently.
- AbstractCharInputReader(char, int, boolean) - Constructor for class com.univocity.parsers.common.input.AbstractCharInputReader
-
Creates a new instance that attempts to detect the newlines used in the input automatically.
- AbstractColumnMapping<K> - Class in com.univocity.parsers.common.fields
-
Basic support operations for mapping attributes/methods to columns in a
ColumnMapper
- AbstractColumnMapping(String, AbstractColumnMapping) - Constructor for class com.univocity.parsers.common.fields.AbstractColumnMapping
-
Creates a mapping with a prefix.
- AbstractColumnProcessor<T extends Context> - Class in com.univocity.parsers.common.processor.core
-
A simple
Processor
implementation that stores values of columns. - AbstractColumnProcessor() - Constructor for class com.univocity.parsers.common.processor.core.AbstractColumnProcessor
-
Constructs a column processor, pre-allocating room for 1000 rows.
- AbstractColumnProcessor(int) - Constructor for class com.univocity.parsers.common.processor.core.AbstractColumnProcessor
-
Constructs a column processor pre-allocating room for the expected number of rows to be processed
- AbstractConcurrentProcessor<T extends Context> - Class in com.univocity.parsers.common.processor.core
-
A
Processor
implementation to perform row processing tasks in parallel. - AbstractConcurrentProcessor(Processor<T>) - Constructor for class com.univocity.parsers.common.processor.core.AbstractConcurrentProcessor
-
Creates a non-blocking
AbstractConcurrentProcessor
, to perform processing of rows parsed from the input in a separate thread. - AbstractConcurrentProcessor(Processor<T>, int) - Constructor for class com.univocity.parsers.common.processor.core.AbstractConcurrentProcessor
-
Creates a blocking
ConcurrentProcessor
, to perform processing of rows parsed from the input in a separate thread. - AbstractConcurrentProcessor.Node<T> - Class in com.univocity.parsers.common.processor.core
- AbstractConversionMapping<T> - Class in com.univocity.parsers.common.fields
-
Class responsible for managing field selections and any conversion sequence associated with each.
- AbstractConversionMapping(List<FieldSelector>) - Constructor for class com.univocity.parsers.common.fields.AbstractConversionMapping
- AbstractException - Exception in com.univocity.parsers.common
-
Parent class of the Exception classes thrown by univocity-parsers.
- AbstractException(String, Throwable) - Constructor for exception com.univocity.parsers.common.AbstractException
- AbstractInputValueSwitch<T extends Context> - Class in com.univocity.parsers.common.processor.core
- AbstractInputValueSwitch() - Constructor for class com.univocity.parsers.common.processor.core.AbstractInputValueSwitch
-
Creates a switch that will analyze the first column of rows found in the input to determine which
Processor
to use for each parsed row - AbstractInputValueSwitch(int) - Constructor for class com.univocity.parsers.common.processor.core.AbstractInputValueSwitch
-
Creates a switch that will analyze a column of rows parsed from the input to determine which
Processor
to use. - AbstractInputValueSwitch(String) - Constructor for class com.univocity.parsers.common.processor.core.AbstractInputValueSwitch
-
Creates a switch that will analyze a column in rows parsed from the input to determine which
Processor
to use. - AbstractInputValueSwitch.Switch<T extends Context> - Class in com.univocity.parsers.common.processor.core
- AbstractListProcessor<T extends Context> - Class in com.univocity.parsers.common.processor.core
-
A convenience
Processor
implementation for storing all rows parsed into a list. - AbstractListProcessor() - Constructor for class com.univocity.parsers.common.processor.core.AbstractListProcessor
-
Creates a new processor of
String[]
rows. - AbstractListProcessor(int) - Constructor for class com.univocity.parsers.common.processor.core.AbstractListProcessor
-
Creates a new processor of
String[]
rows. - AbstractMasterDetailListProcessor<T extends Context> - Class in com.univocity.parsers.common.processor.core
-
A convenience
Processor
implementation for storing allMasterDetailRecord
generated form the parsed input into a list. - AbstractMasterDetailListProcessor(AbstractObjectListProcessor) - Constructor for class com.univocity.parsers.common.processor.core.AbstractMasterDetailListProcessor
-
Creates a MasterDetailListProcessor assuming master records are positioned above its detail records in the input.
- AbstractMasterDetailListProcessor(RowPlacement, AbstractObjectListProcessor) - Constructor for class com.univocity.parsers.common.processor.core.AbstractMasterDetailListProcessor
-
Creates a MasterDetailListProcessor
- AbstractMasterDetailProcessor<T extends Context> - Class in com.univocity.parsers.common.processor.core
-
A
Processor
implementation for associating rows extracted from any implementation ofAbstractParser
intoMasterDetailRecord
instances. - AbstractMasterDetailProcessor(AbstractObjectListProcessor) - Constructor for class com.univocity.parsers.common.processor.core.AbstractMasterDetailProcessor
-
Creates a MasterDetailProcessor assuming master records are positioned above its detail records in the input.
- AbstractMasterDetailProcessor(RowPlacement, AbstractObjectListProcessor) - Constructor for class com.univocity.parsers.common.processor.core.AbstractMasterDetailProcessor
-
Creates a MasterDetailProcessor
- AbstractMultiBeanListProcessor<C extends Context> - Class in com.univocity.parsers.common.processor.core
-
A
Processor
implementation for converting rows extracted from any implementation ofAbstractParser
into java objects, storing them into lists. - AbstractMultiBeanListProcessor(int, Class...) - Constructor for class com.univocity.parsers.common.processor.core.AbstractMultiBeanListProcessor
-
Creates a processor for java beans of multiple types
- AbstractMultiBeanListProcessor(Class...) - Constructor for class com.univocity.parsers.common.processor.core.AbstractMultiBeanListProcessor
-
Creates a processor for java beans of multiple types
- AbstractMultiBeanProcessor<C extends Context> - Class in com.univocity.parsers.common.processor.core
-
A
Processor
implementation for converting rows extracted from any implementation ofAbstractParser
into java objects. - AbstractMultiBeanProcessor(Class...) - Constructor for class com.univocity.parsers.common.processor.core.AbstractMultiBeanProcessor
-
Creates a processor for java beans of multiple types
- AbstractMultiBeanRowProcessor<C extends Context> - Class in com.univocity.parsers.common.processor.core
-
A
Processor
implementation for converting rows extracted from any implementation ofAbstractParser
into java objects. - AbstractMultiBeanRowProcessor(Class...) - Constructor for class com.univocity.parsers.common.processor.core.AbstractMultiBeanRowProcessor
-
Creates a processor for java beans of multiple types
- AbstractObjectColumnProcessor<T extends Context> - Class in com.univocity.parsers.common.processor.core
-
A
Processor
implementation for converting rows extracted from any implementation ofAbstractParser
into columns of objects. - AbstractObjectColumnProcessor() - Constructor for class com.univocity.parsers.common.processor.core.AbstractObjectColumnProcessor
-
Constructs a column processor, pre-allocating room for 1000 rows.
- AbstractObjectColumnProcessor(int) - Constructor for class com.univocity.parsers.common.processor.core.AbstractObjectColumnProcessor
-
Constructs a column processor pre-allocating room for the expected number of rows to be processed
- AbstractObjectListProcessor<T extends Context> - Class in com.univocity.parsers.common.processor.core
-
A convenience
Processor
implementation for storing all rows parsed and converted to Object arrays into a list. - AbstractObjectListProcessor() - Constructor for class com.univocity.parsers.common.processor.core.AbstractObjectListProcessor
-
Creates a new processor of
Object[]
rows with varying types. - AbstractObjectListProcessor(int) - Constructor for class com.univocity.parsers.common.processor.core.AbstractObjectListProcessor
-
Creates a new processor of
Object[]
rows with varying types. - AbstractObjectProcessor<T extends Context> - Class in com.univocity.parsers.common.processor.core
-
A
Processor
implementation for converting rows extracted from any implementation ofAbstractParser
into arrays of objects. - AbstractObjectProcessor() - Constructor for class com.univocity.parsers.common.processor.core.AbstractObjectProcessor
- AbstractParser<T extends CommonParserSettings<?>> - Class in com.univocity.parsers.common
-
The AbstractParser class provides a common ground for all parsers in univocity-parsers.
- AbstractParser(T) - Constructor for class com.univocity.parsers.common.AbstractParser
-
All parsers must support, at the very least, the settings provided by
CommonParserSettings
. - AbstractProcessor<T extends Context> - Class in com.univocity.parsers.common.processor.core
-
A
Processor
implementation that just implements all methods defined by the interface. - AbstractProcessor() - Constructor for class com.univocity.parsers.common.processor.core.AbstractProcessor
- AbstractProcessorSwitch<T extends Context> - Class in com.univocity.parsers.common.processor.core
-
A special
Processor
implementation that combines and allows switching among different Processors. - AbstractProcessorSwitch() - Constructor for class com.univocity.parsers.common.processor.core.AbstractProcessorSwitch
- AbstractRecordFactory<R extends Record,
M extends RecordMetaData> - Class in com.univocity.parsers.common.record -
An abstract factory class which allows subclasses to provide implementations of
Record
- AbstractRecordFactory(Context) - Constructor for class com.univocity.parsers.common.record.AbstractRecordFactory
-
Creates a new factory of
Record
based the state of a parser - AbstractRoutines<P extends CommonParserSettings<?>,
W extends CommonWriterSettings<?>> - Class in com.univocity.parsers.common.routine -
Basic implementation of commonly used routines around parsing/writing of data that can be reused and extended by parsers/writers of any supported format.
- AbstractRoutines(String) - Constructor for class com.univocity.parsers.common.routine.AbstractRoutines
-
Creates a new instance of this routine class.
- AbstractRoutines(String, P) - Constructor for class com.univocity.parsers.common.routine.AbstractRoutines
-
Creates a new instance of this routine class.
- AbstractRoutines(String, P, W) - Constructor for class com.univocity.parsers.common.routine.AbstractRoutines
-
Creates a new instance of this routine class.
- AbstractRoutines(String, W) - Constructor for class com.univocity.parsers.common.routine.AbstractRoutines
-
Creates a new instance of this routine class.
- AbstractRowProcessor - Class in com.univocity.parsers.common.processor
-
A
RowProcessor
implementation that just implements all methods defined by the interface. - AbstractRowProcessor() - Constructor for class com.univocity.parsers.common.processor.AbstractRowProcessor
- AbstractWriter<S extends CommonWriterSettings<?>> - Class in com.univocity.parsers.common
-
The AbstractWriter class provides a common ground for all writers in univocity-parsers.
- AbstractWriter(File, String, S) - Constructor for class com.univocity.parsers.common.AbstractWriter
-
All writers must support, at the very least, the settings provided by
CommonWriterSettings
. - AbstractWriter(File, Charset, S) - Constructor for class com.univocity.parsers.common.AbstractWriter
-
All writers must support, at the very least, the settings provided by
CommonWriterSettings
. - AbstractWriter(File, S) - Constructor for class com.univocity.parsers.common.AbstractWriter
-
All writers must support, at the very least, the settings provided by
CommonWriterSettings
. - AbstractWriter(OutputStream, String, S) - Constructor for class com.univocity.parsers.common.AbstractWriter
-
All writers must support, at the very least, the settings provided by
CommonWriterSettings
. - AbstractWriter(OutputStream, Charset, S) - Constructor for class com.univocity.parsers.common.AbstractWriter
-
All writers must support, at the very least, the settings provided by
CommonWriterSettings
. - AbstractWriter(OutputStream, S) - Constructor for class com.univocity.parsers.common.AbstractWriter
-
All writers must support, at the very least, the settings provided by
CommonWriterSettings
. - AbstractWriter(Writer, S) - Constructor for class com.univocity.parsers.common.AbstractWriter
-
All writers must support, at the very least, the settings provided by
CommonWriterSettings
. - AbstractWriter(S) - Constructor for class com.univocity.parsers.common.AbstractWriter
-
All writers must support, at the very least, the settings provided by
CommonWriterSettings
. - accessible - Variable in class com.univocity.parsers.annotations.helpers.FieldMapping
- active - Variable in class com.univocity.parsers.common.input.concurrent.ConcurrentCharLoader
- activeExecution - Variable in class com.univocity.parsers.common.input.concurrent.ConcurrentCharLoader
- add(Collection<T>) - Method in class com.univocity.parsers.common.fields.FieldSet
-
Validates and adds multiple field references
- add(T...) - Method in class com.univocity.parsers.common.fields.FieldSet
-
Validates and adds multiple field references
- addConfiguration(Map<String, Object>) - Method in class com.univocity.parsers.common.CommonParserSettings
- addConfiguration(Map<String, Object>) - Method in class com.univocity.parsers.common.CommonSettings
- addConfiguration(Map<String, Object>) - Method in class com.univocity.parsers.common.CommonWriterSettings
- addConfiguration(Map<String, Object>) - Method in class com.univocity.parsers.csv.CsvParserSettings
- addConfiguration(Map<String, Object>) - Method in class com.univocity.parsers.csv.CsvWriterSettings
- addConfiguration(Map<String, Object>) - Method in class com.univocity.parsers.fixed.FixedWidthParserSettings
- addConfiguration(Map<String, Object>) - Method in class com.univocity.parsers.fixed.FixedWidthWriterSettings
- addConfiguration(Map<String, Object>) - Method in class com.univocity.parsers.tsv.TsvParserSettings
- addConfiguration(Map<String, Object>) - Method in class com.univocity.parsers.tsv.TsvWriterSettings
- addConversion(Conversion, FieldMapping) - Method in class com.univocity.parsers.common.processor.core.BeanConversionProcessor
-
Associates a conversion to a field of the java bean class.
- addElement(T) - Method in class com.univocity.parsers.common.fields.FieldSet
-
Validates and adds a reference to a field.
- addField(int) - Method in class com.univocity.parsers.fixed.FixedWidthFields
-
Adds the length of the next field in a fixed-width record.
- addField(int, char) - Method in class com.univocity.parsers.fixed.FixedWidthFields
-
Adds the length of the next field in a fixed-width record.
- addField(int, int) - Method in class com.univocity.parsers.fixed.FixedWidthFields
-
Adds the range of the next field in a fixed-width record.
- addField(int, int, char) - Method in class com.univocity.parsers.fixed.FixedWidthFields
-
Adds the range of the next field in a fixed-width record.
- addField(int, int, FieldAlignment) - Method in class com.univocity.parsers.fixed.FixedWidthFields
-
Adds the range of the next field in a fixed-width record.
- addField(int, int, FieldAlignment, char) - Method in class com.univocity.parsers.fixed.FixedWidthFields
-
Adds the range of the next field in a fixed-width record.
- addField(int, FieldAlignment) - Method in class com.univocity.parsers.fixed.FixedWidthFields
-
Adds the length of the next field in a fixed-width record.
- addField(int, FieldAlignment, char) - Method in class com.univocity.parsers.fixed.FixedWidthFields
-
Adds the length of the next field in a fixed-width record.
- addField(String, int) - Method in class com.univocity.parsers.fixed.FixedWidthFields
-
Adds the length of the next field in a fixed-width record.
- addField(String, int, char) - Method in class com.univocity.parsers.fixed.FixedWidthFields
-
Adds the length of the next field in a fixed-width record.
- addField(String, int, int) - Method in class com.univocity.parsers.fixed.FixedWidthFields
-
Adds the range of the next field in a fixed-width record.
- addField(String, int, int, char) - Method in class com.univocity.parsers.fixed.FixedWidthFields
-
Adds the range of the next field in a fixed-width record.
- addField(String, int, int, FieldAlignment) - Method in class com.univocity.parsers.fixed.FixedWidthFields
-
Adds the range of the next field in a fixed-width record.
- addField(String, int, int, FieldAlignment, char) - Method in class com.univocity.parsers.fixed.FixedWidthFields
-
Adds the range of the next field in a fixed-width record.
- addField(String, int, FieldAlignment) - Method in class com.univocity.parsers.fixed.FixedWidthFields
-
Adds the length of the next field in a fixed-width record.
- addField(String, int, FieldAlignment, char) - Method in class com.univocity.parsers.fixed.FixedWidthFields
-
Adds the length of the next field in a fixed-width record.
- addFormat(String, String...) - Method in class com.univocity.parsers.conversions.NumericConversion
-
Adds a new numeric pattern to be used to parse input Strings and convert them to numbers.
- addFormatForLookahead(String, FixedWidthFields) - Method in class com.univocity.parsers.fixed.FixedWidthParserSettings
-
Defines the format of records identified by a lookahead symbol.
- addFormatForLookahead(String, FixedWidthFields) - Method in class com.univocity.parsers.fixed.FixedWidthWriterSettings
-
Defines the format of records identified by a lookahead symbol.
- addFormatForLookbehind(String, FixedWidthFields) - Method in class com.univocity.parsers.fixed.FixedWidthParserSettings
-
Defines the format of records identified by a lookbehind symbol.
- addFormatForLookbehind(String, FixedWidthFields) - Method in class com.univocity.parsers.fixed.FixedWidthWriterSettings
-
Defines the format of records identified by a lookbehind symbol.
- addInputAnalysisProcess(InputAnalysisProcess) - Method in class com.univocity.parsers.common.CommonParserSettings
-
Provides a custom
InputAnalysisProcess
to analyze the input buffer and potentially discover configuration options such as column separators is CSV, data formats, etc. - addInputAnalysisProcess(InputAnalysisProcess) - Method in class com.univocity.parsers.common.input.AbstractCharInputReader
-
Submits a custom
InputAnalysisProcess
to analyze the input buffer and potentially discover configuration options such as column separators is CSV, data formats, etc. - addNullsFrom - Variable in class com.univocity.parsers.common.processor.core.ColumnSplitter
- addStringValues(Collection<String>) - Method in class com.univocity.parsers.common.AbstractWriter
-
Writes a sequence of Strings to a row in memory.
- addSwitch(OutputValueSwitch.Switch) - Method in class com.univocity.parsers.common.processor.OutputValueSwitch
- addSwitchForType(Class<T>) - Method in class com.univocity.parsers.common.processor.OutputValueSwitch
-
Associates a
RowWriterProcessor
implementation with an expected value to be matched in the column provided in the constructor of this class. - addSwitchForType(Class<T>, int...) - Method in class com.univocity.parsers.common.processor.OutputValueSwitch
-
Associates a
RowWriterProcessor
implementation with an expected value to be matched in the column provided in the constructor of this class. - addSwitchForType(Class<T>, String...) - Method in class com.univocity.parsers.common.processor.OutputValueSwitch
-
Associates a
RowWriterProcessor
implementation with an expected value to be matched in the column provided in the constructor of this class. - addSwitchForValue(CustomMatcher, Processor<T>) - Method in class com.univocity.parsers.common.processor.core.AbstractInputValueSwitch
-
Associates a
Processor
implementation with a custom matching algorithm to be executed in the column provided in the constructor of this class. - addSwitchForValue(CustomMatcher, Processor<T>, int...) - Method in class com.univocity.parsers.common.processor.core.AbstractInputValueSwitch
-
Associates a
Processor
implementation with a custom matching algorithm to be executed in the column provided in the constructor of this class. - addSwitchForValue(CustomMatcher, Processor<T>, String...) - Method in class com.univocity.parsers.common.processor.core.AbstractInputValueSwitch
-
Associates a
Processor
implementation with a custom matching algorithm to be executed in the column provided in the constructor of this class. - addSwitchForValue(Object, RowWriterProcessor<Object[]>) - Method in class com.univocity.parsers.common.processor.OutputValueSwitch
-
Associates a
RowWriterProcessor
implementation with an expected value to be matched in the column provided in the constructor of this class. - addSwitchForValue(Object, RowWriterProcessor<Object[]>, int...) - Method in class com.univocity.parsers.common.processor.OutputValueSwitch
-
Associates a
RowWriterProcessor
implementation with an expected value to be matched in the column provided in the constructor of this class. - addSwitchForValue(Object, RowWriterProcessor<Object[]>, String...) - Method in class com.univocity.parsers.common.processor.OutputValueSwitch
-
Associates a
RowWriterProcessor
implementation with an expected value to be matched in the column provided in the constructor of this class. - addSwitchForValue(String, Processor<T>) - Method in class com.univocity.parsers.common.processor.core.AbstractInputValueSwitch
-
Associates a
Processor
implementation with an expected value to be matched in the column provided in the constructor of this class. - addSwitchForValue(String, Processor<T>, int...) - Method in class com.univocity.parsers.common.processor.core.AbstractInputValueSwitch
-
Associates a
Processor
implementation with an expected value to be matched in the column provided in the constructor of this class. - addSwitchForValue(String, Processor<T>, String...) - Method in class com.univocity.parsers.common.processor.core.AbstractInputValueSwitch
-
Associates a
Processor
implementation with an expected value to be matched in the column provided in the constructor of this class. - addValue(int, Object) - Method in class com.univocity.parsers.common.AbstractWriter
-
Writes a value to a row in memory.
- addValue(NormalizedString[], NormalizedString, boolean, Object) - Method in class com.univocity.parsers.common.AbstractWriter
- addValue(Object) - Method in class com.univocity.parsers.common.AbstractWriter
-
Writes a value to a row in memory.
- addValue(String, Object) - Method in class com.univocity.parsers.common.AbstractWriter
-
Writes a value to a row in memory.
- addValues(Object...) - Method in class com.univocity.parsers.common.AbstractWriter
-
Writes a sequence of values to a row in memory.
- addValues(Collection<?>) - Method in class com.univocity.parsers.common.AbstractWriter
-
Writes a sequence of values to a row in memory.
- addValuesToColumns(T[], Context) - Method in class com.univocity.parsers.common.processor.core.ColumnSplitter
-
Splits the row and add stores the value of each column in its corresponding list in
ColumnSplitter.columnValues
- adjustColumnLengths(String[], int[]) - Method in class com.univocity.parsers.common.routine.AbstractRoutines
-
Allows writers of any given format to adjust its settings to take into account column headers and lengths prior to writing data in any routine.
- adjustColumnLengths(String[], int[]) - Method in class com.univocity.parsers.fixed.FixedWidthRoutines
- adjustRowLength(Object[]) - Method in class com.univocity.parsers.common.AbstractWriter
- alignment - Variable in class com.univocity.parsers.fixed.FixedWidthParser
- alignment - Variable in class com.univocity.parsers.fixed.FixedWidthWriter
- alignment() - Element in annotation interface com.univocity.parsers.annotations.FixedWidth
-
Sets the alignment of the fixed-width field
- alignments - Variable in class com.univocity.parsers.fixed.FixedWidthParser
- alignments - Variable in class com.univocity.parsers.fixed.Lookup
- allFieldsIndexBasedForParsing(Class<?>) - Static method in class com.univocity.parsers.annotations.helpers.AnnotationHelper
-
Runs through all annotations of a given class to identify whether all annotated fields and methods (with the
Parsed
annotation) are mapped to a column by index. - allFieldsIndexBasedForWriting(Class<?>) - Static method in class com.univocity.parsers.annotations.helpers.AnnotationHelper
-
Runs through all annotations of a given class to identify whether all annotated fields and methods (with the
Parsed
annotation) are mapped to a column by index. - allFieldsIndexOrNameBased(boolean, Class<?>, MethodFilter) - Static method in class com.univocity.parsers.annotations.helpers.AnnotationHelper
- allFieldsNameBasedForParsing(Class<?>) - Static method in class com.univocity.parsers.annotations.helpers.AnnotationHelper
-
Runs through all annotations of a given class to identify whether all annotated fields and methods (with the
Parsed
annotation) are mapped to a column by name. - allFieldsNameBasedForWriting(Class<?>) - Static method in class com.univocity.parsers.annotations.helpers.AnnotationHelper
-
Runs through all annotations of a given class to identify whether all annotated fields and methods (with the
Parsed
annotation) are mapped to a column by name. - AllIndexesSelector - Class in com.univocity.parsers.common.fields
-
A FieldSelector that selects all indexes of a record.
- AllIndexesSelector() - Constructor for class com.univocity.parsers.common.fields.AllIndexesSelector
- allocate() - Method in class com.univocity.parsers.common.input.concurrent.FixedInstancePool
-
Retrieves the next available entry in this instance pool.
- allowBlanks - Variable in class com.univocity.parsers.conversions.ValidatedConversion
- allowBlanks() - Element in annotation interface com.univocity.parsers.annotations.Validate
-
Indicates whether this field can be blank (i.e.
- allowedDelimiters - Variable in class com.univocity.parsers.csv.CsvFormatDetector
- allowTrim(int) - Method in class com.univocity.parsers.common.AbstractWriter
-
Checks whether the writer can remove trailing/leading whitespaces from a value being written.
- AnnotationAttributes() - Constructor for class com.univocity.parsers.annotations.helpers.AnnotationRegistry.AnnotationAttributes
- annotationHashes - Variable in class com.univocity.parsers.common.record.RecordMetaDataImpl
- AnnotationHelper - Class in com.univocity.parsers.annotations.helpers
-
Helper class to process fields annotated with
Parsed
- AnnotationHelper() - Constructor for class com.univocity.parsers.annotations.helpers.AnnotationHelper
- AnnotationHelper.NO_ANNOTATIONS - Class in com.univocity.parsers.annotations.helpers
- AnnotationRegistry - Class in com.univocity.parsers.annotations.helpers
-
An internal registry of annotated elements and their properties that have been set via a
Copy
annotation. - AnnotationRegistry() - Constructor for class com.univocity.parsers.annotations.helpers.AnnotationRegistry
- AnnotationRegistry.AnnotationAttributes - Class in com.univocity.parsers.annotations.helpers
- AnnotationRegistry.FieldAnnotations - Class in com.univocity.parsers.annotations.helpers
- annotations - Variable in class com.univocity.parsers.annotations.helpers.AnnotationRegistry.FieldAnnotations
- annotationType() - Method in class com.univocity.parsers.annotations.helpers.AnnotationHelper.NO_ANNOTATIONS
- append(char) - Method in interface com.univocity.parsers.common.input.CharAppender
-
Appends the given character.
- append(char) - Method in class com.univocity.parsers.common.input.DefaultCharAppender
- append(char) - Method in class com.univocity.parsers.common.input.ExpandingCharAppender
- append(char) - Method in class com.univocity.parsers.common.input.NoopCharAppender
-
Does nothing
- append(char) - Method in class com.univocity.parsers.common.input.WriterCharAppender
-
Appends the given character.
- append(char[]) - Method in interface com.univocity.parsers.common.input.CharAppender
-
Appends characters from an input array
- append(char[]) - Method in class com.univocity.parsers.common.input.DefaultCharAppender
- append(char[]) - Method in class com.univocity.parsers.common.input.NoopCharAppender
-
Does nothing
- append(char[], int, int) - Method in interface com.univocity.parsers.common.input.CharAppender
-
Appends characters from an input array
- append(char[], int, int) - Method in class com.univocity.parsers.common.input.DefaultCharAppender
- append(char[], int, int) - Method in class com.univocity.parsers.common.input.ExpandingCharAppender
- append(char[], int, int) - Method in class com.univocity.parsers.common.input.NoopCharAppender
-
Does nothing
- append(int) - Method in interface com.univocity.parsers.common.input.CharAppender
-
Appends the given codepoint.
- append(int) - Method in class com.univocity.parsers.common.input.DefaultCharAppender
- append(int) - Method in class com.univocity.parsers.common.input.NoopCharAppender
-
Does nothing
- append(int[]) - Method in interface com.univocity.parsers.common.input.CharAppender
-
Appends codepoints from an input array
- append(int[]) - Method in class com.univocity.parsers.common.input.DefaultCharAppender
- append(int[]) - Method in class com.univocity.parsers.common.input.NoopCharAppender
-
Does nothing
- append(int, boolean, boolean, String) - Method in class com.univocity.parsers.csv.CsvWriter
- append(DefaultCharAppender) - Method in class com.univocity.parsers.common.input.DefaultCharAppender
-
Appends the contents of another DefaultCharAppender, discarding any of its trailing whitespace characters
- append(DefaultCharAppender) - Method in class com.univocity.parsers.common.input.ExpandingCharAppender
- append(Object) - Method in interface com.univocity.parsers.common.input.CharAppender
-
Appends the
String
representation of a given object. - append(Object) - Method in class com.univocity.parsers.common.input.DefaultCharAppender
- append(Object) - Method in class com.univocity.parsers.common.input.NoopCharAppender
-
Does nothing
- append(String) - Method in interface com.univocity.parsers.common.input.CharAppender
-
Appends characters from an input
String
- append(String) - Method in class com.univocity.parsers.common.input.DefaultCharAppender
- append(String) - Method in class com.univocity.parsers.common.input.NoopCharAppender
-
Does nothing
- append(String, boolean) - Method in class com.univocity.parsers.fixed.FixedWidthWriter
- append(String, boolean) - Method in class com.univocity.parsers.tsv.TsvWriter
- append(String, int, int) - Method in interface com.univocity.parsers.common.input.CharAppender
-
Appends the contents of a String to this appender
- append(String, int, int) - Method in class com.univocity.parsers.common.input.DefaultCharAppender
- append(String, int, int) - Method in class com.univocity.parsers.common.input.ExpandingCharAppender
- append(String, int, int) - Method in class com.univocity.parsers.common.input.NoopCharAppender
-
Does nothing
- appender - Variable in class com.univocity.parsers.common.AbstractWriter
- appender - Variable in class com.univocity.parsers.common.ParserOutput
-
The appender available to parsers for accumulating characters read from the input.
- appenderInstance - Variable in class com.univocity.parsers.common.ParserOutput
- appenders - Variable in class com.univocity.parsers.common.ParserOutput
-
Stores (shared) references to
CharAppender
for each potential column (as given byCommonSettings.getMaxColumns()
). - appendIgnoringPadding(char, char) - Method in interface com.univocity.parsers.common.input.CharAppender
-
Appends the given character and marks it as ignored if it is a padding character (the definition of a padding character is implementation dependent.)
- appendIgnoringPadding(char, char) - Method in class com.univocity.parsers.common.input.DefaultCharAppender
- appendIgnoringPadding(char, char) - Method in class com.univocity.parsers.common.input.ExpandingCharAppender
- appendIgnoringPadding(char, char) - Method in class com.univocity.parsers.common.input.NoopCharAppender
-
Does nothing
- appendIgnoringPadding(char, char) - Method in class com.univocity.parsers.common.input.WriterCharAppender
-
Appends the given character and marks it as ignored if it is a padding character
- appendIgnoringWhitespace(char) - Method in interface com.univocity.parsers.common.input.CharAppender
-
Appends the given character and marks it as ignored if it is a whitespace (
ch <= ' '
) - appendIgnoringWhitespace(char) - Method in class com.univocity.parsers.common.input.DefaultCharAppender
- appendIgnoringWhitespace(char) - Method in class com.univocity.parsers.common.input.ExpandingCharAppender
- appendIgnoringWhitespace(char) - Method in class com.univocity.parsers.common.input.NoopCharAppender
-
Does nothing
- appendIgnoringWhitespace(char) - Method in class com.univocity.parsers.common.input.WriterCharAppender
-
Appends the given character and marks it as ignored if it is a whitespace (
ch <= ' '
) - appendIgnoringWhitespaceAndPadding(char, char) - Method in interface com.univocity.parsers.common.input.CharAppender
-
Appends the given character and marks it as ignored if it is a whitespace (
ch <= ' '
) or a padding character (the definition of a padding character is implementation dependent.) - appendIgnoringWhitespaceAndPadding(char, char) - Method in class com.univocity.parsers.common.input.DefaultCharAppender
- appendIgnoringWhitespaceAndPadding(char, char) - Method in class com.univocity.parsers.common.input.ExpandingCharAppender
- appendIgnoringWhitespaceAndPadding(char, char) - Method in class com.univocity.parsers.common.input.NoopCharAppender
-
Does nothing
- appendIgnoringWhitespaceAndPadding(char, char) - Method in class com.univocity.parsers.common.input.WriterCharAppender
-
Appends the given character and marks it as ignored if it is a whitespace (
ch <= ' '
) or a padding character - appendNewLine() - Method in class com.univocity.parsers.common.input.WriterCharAppender
-
Appends the newline character sequence specified in
Format.getLineSeparator()
- appendQuoted(int, boolean, String) - Method in class com.univocity.parsers.csv.CsvWriter
- appendToRow(char) - Method in class com.univocity.parsers.common.AbstractWriter
-
Appends the given character to the output row.
- appendToRow(char[]) - Method in class com.univocity.parsers.common.AbstractWriter
-
Appends the given character sequence to the output row
- appendUntil(char, CharInput, char) - Method in interface com.univocity.parsers.common.input.CharAppender
-
Appends characters from the input, until a stop character is found
- appendUntil(char, CharInput, char) - Method in class com.univocity.parsers.common.input.DefaultCharAppender
- appendUntil(char, CharInput, char) - Method in class com.univocity.parsers.common.input.ExpandingCharAppender
- appendUntil(char, CharInput, char) - Method in class com.univocity.parsers.common.input.NoopCharAppender
- appendUntil(char, CharInput, char, char) - Method in interface com.univocity.parsers.common.input.CharAppender
-
Appends characters from the input, until a stop character is found
- appendUntil(char, CharInput, char, char) - Method in class com.univocity.parsers.common.input.DefaultCharAppender
- appendUntil(char, CharInput, char, char) - Method in class com.univocity.parsers.common.input.ExpandingCharAppender
- appendUntil(char, CharInput, char, char) - Method in class com.univocity.parsers.common.input.NoopCharAppender
- appendUntil(char, CharInput, char, char, char) - Method in interface com.univocity.parsers.common.input.CharAppender
-
Appends characters from the input, until a stop character is found
- appendUntil(char, CharInput, char, char, char) - Method in class com.univocity.parsers.common.input.DefaultCharAppender
- appendUntil(char, CharInput, char, char, char) - Method in class com.univocity.parsers.common.input.ExpandingCharAppender
- appendUntil(char, CharInput, char, char, char) - Method in class com.univocity.parsers.common.input.NoopCharAppender
- appendUntilMultiDelimiter() - Method in class com.univocity.parsers.csv.CsvParser
- appendValueToRow() - Method in class com.univocity.parsers.common.AbstractWriter
-
Appends the processed sequence of characters in
AbstractWriter.appender
to the output row. - apply(char, char) - Method in class com.univocity.parsers.common.input.LineSeparatorDetector
- apply(char, char, char) - Method in class com.univocity.parsers.csv.CsvFormatDetector
-
Applies the discovered CSV format elements to the
CsvParser
- applyConversions(int, String, boolean[]) - Method in class com.univocity.parsers.common.fields.FieldConversionMapping
-
Applies a sequence of conversions associated with a String value parsed from a given index.
- applyConversions(String[], Context) - Method in class com.univocity.parsers.common.DefaultConversionProcessor
-
Executes the sequences of conversions defined using
DefaultConversionProcessor.convertFields(Conversion...)
,DefaultConversionProcessor.convertIndexes(Conversion...)
andDefaultConversionProcessor.convertAll(Conversion...)
, for every field in the given row. - applyConversionsByType(boolean, Object[], boolean[]) - Method in class com.univocity.parsers.common.DefaultConversionProcessor
- applyConversionsOnAllFields(Conversion<String, ?>...) - Method in class com.univocity.parsers.common.fields.FieldConversionMapping
-
Applies a sequence of conversions on all fields.
- applyConversionsOnFieldEnums(Conversion<String, ?>...) - Method in class com.univocity.parsers.common.fields.FieldConversionMapping
-
Applies a sequence of conversions on a selection of enumerations that represent fields
- applyConversionsOnFieldIndexes(Conversion<String, ?>...) - Method in class com.univocity.parsers.common.fields.FieldConversionMapping
-
Applies a sequence of conversions on a selection of field indexes
- applyConversionsOnFieldNames(Conversion<String, ?>...) - Method in class com.univocity.parsers.common.fields.FieldConversionMapping
-
Applies a sequence of conversions on a selection of field name
- applyDefault - Variable in class com.univocity.parsers.annotations.helpers.FieldMapping
- applyDefaultConversion() - Element in annotation interface com.univocity.parsers.annotations.Parsed
-
Flag to indicate whether the parsed field should be converted automatically based on the field type.
- applyDefaultConversion(Conversion, Conversion) - Method in class com.univocity.parsers.common.processor.core.BeanConversionProcessor
- applyFormatSettings(Object, String[]) - Static method in class com.univocity.parsers.annotations.helpers.AnnotationHelper
-
Applied the configuration of a formatter object (
SimpleDateFormat
,NumberFormat
and others). - applyTypeConversion(boolean, Object) - Method in class com.univocity.parsers.common.DefaultConversionProcessor
- args() - Element in annotation interface com.univocity.parsers.annotations.Convert
-
The arguments to use when invoking the constructor of the class given by
Convert.conversionClass()
. - args() - Element in annotation interface com.univocity.parsers.annotations.Nested
-
An optional sequence of arguments for creating an instance of the given
Nested.headerTransformer()
. - ArgumentUtils - Class in com.univocity.parsers.common
-
An utility class for validating inputs.
- ArgumentUtils() - Constructor for class com.univocity.parsers.common.ArgumentUtils
- attributeMapping - Variable in class com.univocity.parsers.common.fields.ColumnMapping
- attributes - Variable in class com.univocity.parsers.annotations.helpers.AnnotationRegistry.AnnotationAttributes
- attributesToColumnNames(Map<String, String>) - Method in interface com.univocity.parsers.common.fields.ColumnMapper
-
Maps multiple attributes to multiple column names.
- attributesToColumnNames(Map<String, String>) - Method in class com.univocity.parsers.common.fields.ColumnMapping
- attributesToColumns(Map<String, Enum<?>>) - Method in interface com.univocity.parsers.common.fields.ColumnMapper
-
Maps multiple attributes to multiple columns.
- attributesToColumns(Map<String, Enum<?>>) - Method in class com.univocity.parsers.common.fields.ColumnMapping
- attributesToIndexes(Map<String, Integer>) - Method in interface com.univocity.parsers.common.fields.ColumnMapper
-
Maps multiple attributes to multiple column positions.
- attributesToIndexes(Map<String, Integer>) - Method in class com.univocity.parsers.common.fields.ColumnMapping
- attributeToColumn(String, Enum<?>) - Method in interface com.univocity.parsers.common.fields.ColumnMapper
-
Maps an attribute to a column.
- attributeToColumn(String, Enum<?>) - Method in class com.univocity.parsers.common.fields.ColumnMapping
- attributeToColumnName(String, String) - Method in interface com.univocity.parsers.common.fields.ColumnMapper
-
Maps an attribute to a column name.
- attributeToColumnName(String, String) - Method in class com.univocity.parsers.common.fields.ColumnMapping
- attributeToIndex(String, int) - Method in interface com.univocity.parsers.common.fields.ColumnMapper
-
Maps an attribute to a column position.
- attributeToIndex(String, int) - Method in class com.univocity.parsers.common.fields.ColumnMapping
- autoClosingEnabled - Variable in class com.univocity.parsers.common.CommonParserSettings
- autoConfigurationEnabled - Variable in class com.univocity.parsers.common.CommonSettings
- autoConfigure() - Method in class com.univocity.parsers.common.CommonSettings
B
- BACK_TO_DELIMITER - Enum constant in enum class com.univocity.parsers.csv.UnescapedQuoteHandling
-
If unescaped quotes are found in the input, consider the value as an unquoted value.
- backToDelimiter - Variable in class com.univocity.parsers.csv.CsvParser
- batchCount - Variable in class com.univocity.parsers.common.processor.core.AbstractBatchedColumnProcessor
- batchCount - Variable in class com.univocity.parsers.common.processor.core.AbstractBatchedObjectColumnProcessor
- BatchedColumnProcessor - Class in com.univocity.parsers.common.processor
-
A
RowProcessor
implementation that stores values of columns in batches. - BatchedColumnProcessor(int) - Constructor for class com.univocity.parsers.common.processor.BatchedColumnProcessor
-
Constructs a batched column processor configured to invoke the
AbstractBatchedColumnProcessor.batchesProcessed
method after a given number of rows has been processed. - BatchedColumnReader<T> - Interface in com.univocity.parsers.common.processor.core
-
A common interface for
Processor
s that collect the values parsed from each column in a row and store values of columns in batches. - BatchedObjectColumnProcessor - Class in com.univocity.parsers.common.processor
-
A
RowProcessor
implementation for converting batches of rows extracted from any implementation ofAbstractParser
into columns of objects. - BatchedObjectColumnProcessor(int) - Constructor for class com.univocity.parsers.common.processor.BatchedObjectColumnProcessor
-
Constructs a batched column processor configured to invoke the
AbstractBatchedObjectColumnProcessor.batchesProcessed
method after a given number of rows has been processed. - batchesProcessed - Variable in class com.univocity.parsers.common.processor.core.AbstractBatchedColumnProcessor
- batchesProcessed - Variable in class com.univocity.parsers.common.processor.core.AbstractBatchedObjectColumnProcessor
- batchProcessed(int) - Method in class com.univocity.parsers.common.processor.core.AbstractBatchedColumnProcessor
- batchProcessed(int) - Method in class com.univocity.parsers.common.processor.core.AbstractBatchedObjectColumnProcessor
- batchProcessed(int) - Method in interface com.univocity.parsers.common.processor.core.BatchedColumnReader
-
Callback to the user, where the lists with values parsed for all columns can be accessed using the methods
ColumnReader.getColumnValuesAsList()
,ColumnReader.getColumnValuesAsMapOfIndexes()
andColumnReader.getColumnValuesAsMapOfNames()
. - beanClass - Variable in class com.univocity.parsers.annotations.helpers.FieldMapping
- beanClass - Variable in class com.univocity.parsers.common.processor.core.BeanConversionProcessor
- BeanConversionProcessor<T> - Class in com.univocity.parsers.common.processor.core
-
The base class for
Processor
andRowWriterProcessor
implementations that support java beans annotated with the annotations provided incom.univocity.parsers.annotations
. - BeanConversionProcessor(Class<T>) - Constructor for class com.univocity.parsers.common.processor.core.BeanConversionProcessor
-
Deprecated.
- BeanConversionProcessor(Class<T>, HeaderTransformer, MethodFilter) - Constructor for class com.univocity.parsers.common.processor.core.BeanConversionProcessor
- BeanConversionProcessor(Class<T>, MethodFilter) - Constructor for class com.univocity.parsers.common.processor.core.BeanConversionProcessor
-
Initializes the BeanConversionProcessor with the annotated bean class
- BeanHelper - Class in com.univocity.parsers.common.beans
-
Helper class used to obtain property descriptors from annotated java beans whose values are set via reflection.
- BeanHelper() - Constructor for class com.univocity.parsers.common.beans.BeanHelper
- beanInfoMethod - Static variable in class com.univocity.parsers.common.beans.BeanHelper
- BeanListProcessor<T> - Class in com.univocity.parsers.common.processor
-
A convenience
BeanProcessor
implementation for storing all java objects generated form the parsed input into a list. - BeanListProcessor(Class<T>) - Constructor for class com.univocity.parsers.common.processor.BeanListProcessor
-
Creates a processor that stores java beans of a given type into a list
- BeanListProcessor(Class<T>, int) - Constructor for class com.univocity.parsers.common.processor.BeanListProcessor
-
Creates a processor that stores java beans of a given type into a list
- beanProcessed(Class<?>, Object, C) - Method in class com.univocity.parsers.common.processor.core.AbstractMultiBeanProcessor
-
Invoked by the processor after all values of a valid record have been processed and converted into a java object.
- beanProcessed(Class<?>, Object, C) - Method in class com.univocity.parsers.common.processor.core.AbstractMultiBeanRowProcessor
- beanProcessed(T, C) - Method in class com.univocity.parsers.common.processor.core.AbstractBeanListProcessor
-
Stores the generated java bean produced with a parsed record into a list.
- beanProcessed(T, C) - Method in class com.univocity.parsers.common.processor.core.AbstractBeanProcessor
-
Invoked by the processor after all values of a valid record have been processed and converted into a java object.
- BeanProcessor<T> - Class in com.univocity.parsers.common.processor
-
A
RowProcessor
implementation for converting rows extracted from any implementation ofAbstractParser
into java objects. - BeanProcessor(Class<T>) - Constructor for class com.univocity.parsers.common.processor.BeanProcessor
-
Creates a processor for java beans of a given type.
- beanProcessors - Variable in class com.univocity.parsers.common.processor.core.AbstractMultiBeanProcessor
- beans - Variable in class com.univocity.parsers.common.processor.core.AbstractBeanListProcessor
- beans - Variable in class com.univocity.parsers.common.processor.core.AbstractMultiBeanListProcessor
- beanTypes - Variable in class com.univocity.parsers.common.processor.core.AbstractMultiBeanListProcessor
- BeanWriterProcessor<T> - Class in com.univocity.parsers.common.processor
-
A
RowWriterProcessor
implementation for converting annotated java objects into object arrays suitable for writing in any implementation ofAbstractWriter
. - BeanWriterProcessor(Class<T>) - Constructor for class com.univocity.parsers.common.processor.BeanWriterProcessor
-
Initializes the BeanWriterProcessor with the annotated bean class
- beginParseAll(boolean, Reader, int) - Method in class com.univocity.parsers.common.AbstractParser
- beginParsing() - Method in class com.univocity.parsers.common.iterators.ParserIterator
-
This method is called whenever the
iterator
is starting to iterate over the results. - beginParsing(File) - Method in class com.univocity.parsers.common.AbstractParser
-
Starts an iterator-style parsing cycle.
- beginParsing(File, String) - Method in class com.univocity.parsers.common.AbstractParser
-
Starts an iterator-style parsing cycle.
- beginParsing(File, Charset) - Method in class com.univocity.parsers.common.AbstractParser
-
Starts an iterator-style parsing cycle.
- beginParsing(InputStream) - Method in class com.univocity.parsers.common.AbstractParser
-
Starts an iterator-style parsing cycle.
- beginParsing(InputStream, String) - Method in class com.univocity.parsers.common.AbstractParser
-
Starts an iterator-style parsing cycle.
- beginParsing(InputStream, Charset) - Method in class com.univocity.parsers.common.AbstractParser
-
Starts an iterator-style parsing cycle.
- beginParsing(Reader) - Method in class com.univocity.parsers.common.AbstractParser
-
Starts an iterator-style parsing cycle.
- BigDecimalConversion - Class in com.univocity.parsers.conversions
-
Converts Strings to BigDecimals and vice versa
- BigDecimalConversion() - Constructor for class com.univocity.parsers.conversions.BigDecimalConversion
-
Creates a Conversion from String to BigDecimal with default values to return when the input is null.
- BigDecimalConversion(BigDecimal, String) - Constructor for class com.univocity.parsers.conversions.BigDecimalConversion
-
Creates a Conversion from String to BigDecimal with default values to return when the input is null.
- BigIntegerConversion - Class in com.univocity.parsers.conversions
-
Converts Strings to BigIntegers and vice versa
- BigIntegerConversion() - Constructor for class com.univocity.parsers.conversions.BigIntegerConversion
-
Creates a Conversion from String to BigInteger with default values to return when the input is null.
- BigIntegerConversion(BigInteger, String) - Constructor for class com.univocity.parsers.conversions.BigIntegerConversion
-
Creates a Conversion from String to BigInteger with default values to return when the input is null.
- BomInput - Class in com.univocity.parsers.common.input
-
A wrapper for an
InputStream
that attempts to detect a Byte Order Mark (BOM) in the input and derive the character encoding that should be used to decode the incoming content. - BomInput(InputStream) - Constructor for class com.univocity.parsers.common.input.BomInput
-
Wraps an
InputStream
and reads the first bytes found on it to attempt to read a BOM. - BomInput.BytesProcessedNotification - Exception in com.univocity.parsers.common.input
-
Internal notification exception used to re-wrap the original
InputStream
into aReader
. - BooleanConversion - Class in com.univocity.parsers.conversions
-
Converts Strings to Booleans and vice versa
- BooleanConversion(Boolean, String, String[], String[]) - Constructor for class com.univocity.parsers.conversions.BooleanConversion
-
Creates a Conversion from String to Boolean with default values to return when the input is null.
- BooleanConversion(String[], String[]) - Constructor for class com.univocity.parsers.conversions.BooleanConversion
-
Creates conversions from String to Boolean.
- BooleanString - Annotation Interface in com.univocity.parsers.annotations
-
Indicates that parsed values such as "y", "No" or "null" should be interpreted as boolean values.
- BOTTOM - Enum constant in enum class com.univocity.parsers.common.processor.RowPlacement
-
Indicates a row is below other rows.
- bucketLoader - Variable in class com.univocity.parsers.common.input.concurrent.ConcurrentCharInputReader
- bucketQuantity - Variable in class com.univocity.parsers.common.input.concurrent.ConcurrentCharInputReader
- buckets - Variable in class com.univocity.parsers.common.input.concurrent.ConcurrentCharLoader
- bucketSize - Variable in class com.univocity.parsers.common.input.concurrent.ConcurrentCharInputReader
- buffer - Variable in class com.univocity.parsers.common.input.AbstractCharInputReader
-
The buffer itself
- buildAnnotation(Class<T>, String, String...) - Method in class com.univocity.parsers.common.record.RecordMetaDataImpl
- buildBooleanStringAnnotation(String[], String[]) - Static method in class com.univocity.parsers.common.record.RecordMetaDataImpl
- buildSelection(int[]) - Method in class com.univocity.parsers.common.record.RecordImpl
- buildSelection(Class<T>, T...) - Method in class com.univocity.parsers.common.record.RecordImpl
- buildSelection(String[]) - Method in class com.univocity.parsers.common.record.RecordImpl
- ByteConversion - Class in com.univocity.parsers.conversions
-
Converts Strings to Bytes and vice versa
- ByteConversion() - Constructor for class com.univocity.parsers.conversions.ByteConversion
-
Creates a Conversion from String to Byte with default values to return when the input is null.
- ByteConversion(Byte, String) - Constructor for class com.univocity.parsers.conversions.ByteConversion
-
Creates a Conversion from String to Byte with default values to return when the input is null.
- bytes - Variable in class com.univocity.parsers.common.input.BomInput
- BytesProcessedNotification(InputStream, String) - Constructor for exception com.univocity.parsers.common.input.BomInput.BytesProcessedNotification
- bytesRead - Variable in class com.univocity.parsers.common.input.BomInput
C
- calculateMaxFieldLengths() - Method in class com.univocity.parsers.fixed.FixedWidthParserSettings
- calculateMaxFieldLengths(FixedWidthFields, Map<String, FixedWidthFields>, Map<String, FixedWidthFields>) - Static method in class com.univocity.parsers.fixed.Lookup
- calculateMaxLookupLength(Lookup[]...) - Static method in class com.univocity.parsers.fixed.Lookup
- calculatePadding(int, int) - Method in enum class com.univocity.parsers.fixed.FieldAlignment
-
Calculates how many whites paces to introduce before a value so it is printed as specified by the alignment type.
- calculateTotals(List<Map<Character, Integer>>) - Method in class com.univocity.parsers.csv.CsvFormatDetector
- CalendarConversion - Class in com.univocity.parsers.conversions
-
Converts Strings to instances of
Calendar
and vice versa. - CalendarConversion(String...) - Constructor for class com.univocity.parsers.conversions.CalendarConversion
-
Defines a conversion from String to
Calendar
using a sequence of acceptable date patterns. - CalendarConversion(Calendar, String, String...) - Constructor for class com.univocity.parsers.conversions.CalendarConversion
-
Defines a conversion from String to
Calendar
using a sequence of acceptable date patterns. - CalendarConversion(Locale, String...) - Constructor for class com.univocity.parsers.conversions.CalendarConversion
-
Defines a conversion from String to
Calendar
using a sequence of acceptable date patterns. - CalendarConversion(Locale, Calendar, String, String...) - Constructor for class com.univocity.parsers.conversions.CalendarConversion
-
Defines a conversion from String to
Calendar
using a sequence of acceptable date patterns. - CalendarConversion(TimeZone, Locale, Calendar, String, String...) - Constructor for class com.univocity.parsers.conversions.CalendarConversion
-
Defines a conversion from String to
Calendar
using a sequence of acceptable date patterns. - canWrite(Object) - Method in class com.univocity.parsers.annotations.helpers.FieldMapping
-
Queries whether this field mapping can be applied over a given object instance.
- caseInsensitiveComparator - Static variable in class com.univocity.parsers.common.processor.core.AbstractInputValueSwitch
- caseSensitiveComparator - Static variable in class com.univocity.parsers.common.processor.core.AbstractInputValueSwitch
- CENTER - Enum constant in enum class com.univocity.parsers.fixed.FieldAlignment
-
Centralizes values
- ch - Variable in class com.univocity.parsers.common.AbstractParser
- ch - Variable in class com.univocity.parsers.common.input.AbstractCharInputReader
- CharacterConversion - Class in com.univocity.parsers.conversions
-
Converts Strings to Characters and vice versa
- CharacterConversion() - Constructor for class com.univocity.parsers.conversions.CharacterConversion
-
Creates a Conversion from String to Character with default values to return when the input is null.
- CharacterConversion(Character, String) - Constructor for class com.univocity.parsers.conversions.CharacterConversion
-
Creates a Conversion from String to Character with default values to return when the input is null.
- CharAppender - Interface in com.univocity.parsers.common.input
-
The general interface for classes responsible for appending characters efficiently while handling whitespaces and padding characters.
- charAt(int) - Method in class com.univocity.parsers.common.input.DefaultCharAppender
- charAt(int) - Method in class com.univocity.parsers.common.input.NoopCharAppender
-
Does nothing
- charAt(int) - Method in class com.univocity.parsers.common.NormalizedString
- CharBucket - Class in com.univocity.parsers.common.input.concurrent
-
A buffer of characters.
- CharBucket(int) - Constructor for class com.univocity.parsers.common.input.concurrent.CharBucket
-
Creates a bucket capable of holding a fixed number of characters
- CharBucket(int, char) - Constructor for class com.univocity.parsers.common.input.concurrent.CharBucket
-
Creates a bucket capable of holding a fixed number of characters
- charCount - Variable in class com.univocity.parsers.common.input.AbstractCharInputReader
- charCount() - Method in class com.univocity.parsers.common.input.AbstractCharInputReader
- charCount() - Method in interface com.univocity.parsers.common.input.CharInputReader
-
Returns the number of characters returned by
CharInputReader.nextChar()
at any given time. - charCount() - Method in class com.univocity.parsers.common.input.LookaheadCharInputReader
- charIndex - Variable in exception com.univocity.parsers.common.TextParsingException
- CharInput - Interface in com.univocity.parsers.common.input
-
A (very) basic character input definition.
- CharInputReader - Interface in com.univocity.parsers.common.input
-
The definition of a character input reader used by all univocity-parsers that extend
AbstractParser
. - chars - Variable in class com.univocity.parsers.common.input.DefaultCharAppender
- charToEscapeQuoteEscaping - Variable in class com.univocity.parsers.csv.CsvFormat
- clear() - Method in class com.univocity.parsers.common.processor.MasterDetailRecord
-
Empties the detail rows and sets the master row to null.
- clear() - Method in class com.univocity.parsers.common.StringCache
-
Removes all entries stored in this cache.
- clearInputSpecificSettings() - Method in class com.univocity.parsers.common.CommonParserSettings
- clearInputSpecificSettings() - Method in class com.univocity.parsers.common.CommonSettings
-
Clears settings that are likely to be specific to a given input.
- clearInputSpecificSettings() - Method in class com.univocity.parsers.common.CommonWriterSettings
- clearValues() - Method in class com.univocity.parsers.common.processor.core.ColumnSplitter
-
Removes any column values previously processed
- clone() - Method in class com.univocity.parsers.common.CommonParserSettings
- clone() - Method in class com.univocity.parsers.common.CommonSettings
-
Clones this configuration object.
- clone() - Method in class com.univocity.parsers.common.CommonWriterSettings
- clone() - Method in class com.univocity.parsers.common.fields.AbstractColumnMapping
-
Creates a deep copy of this mapping that is independent from the original.
- clone() - Method in class com.univocity.parsers.common.fields.AbstractConversionMapping
- clone() - Method in class com.univocity.parsers.common.fields.AllIndexesSelector
- clone() - Method in interface com.univocity.parsers.common.fields.ColumnMapper
-
Creates a deep copy of this object with all its mappings.
- clone() - Method in class com.univocity.parsers.common.fields.ColumnMapping
- clone() - Method in class com.univocity.parsers.common.fields.ExcludeFieldEnumSelector
- clone() - Method in class com.univocity.parsers.common.fields.FieldConversionMapping
- clone() - Method in class com.univocity.parsers.common.fields.FieldEnumSelector
- clone() - Method in interface com.univocity.parsers.common.fields.FieldSelector
-
Clones this field selector.
- clone() - Method in class com.univocity.parsers.common.fields.FieldSet
- clone() - Method in class com.univocity.parsers.common.Format
- clone() - Method in class com.univocity.parsers.common.processor.MasterDetailRecord
- clone() - Method in class com.univocity.parsers.csv.CsvFormat
- clone() - Method in class com.univocity.parsers.csv.CsvParserSettings
- clone() - Method in class com.univocity.parsers.csv.CsvWriterSettings
- clone() - Method in class com.univocity.parsers.fixed.FixedWidthFields
- clone() - Method in class com.univocity.parsers.fixed.FixedWidthFormat
- clone() - Method in class com.univocity.parsers.fixed.FixedWidthParserSettings
-
Clones this configuration object to reuse all user-provided settings, including the fixed-width field configuration.
- clone() - Method in class com.univocity.parsers.fixed.FixedWidthWriterSettings
-
Clones this configuration object to reuse all user-provided settings, including the fixed-width field configuration.
- clone() - Method in class com.univocity.parsers.tsv.TsvFormat
- clone() - Method in class com.univocity.parsers.tsv.TsvParserSettings
- clone() - Method in class com.univocity.parsers.tsv.TsvWriterSettings
- clone(boolean) - Method in class com.univocity.parsers.common.CommonParserSettings
- clone(boolean) - Method in class com.univocity.parsers.common.CommonSettings
-
Clones this configuration object to reuse user-provided settings.
- clone(boolean) - Method in class com.univocity.parsers.common.CommonWriterSettings
- clone(boolean) - Method in class com.univocity.parsers.csv.CsvParserSettings
- clone(boolean) - Method in class com.univocity.parsers.csv.CsvWriterSettings
- clone(boolean) - Method in class com.univocity.parsers.fixed.FixedWidthParserSettings
-
Deprecated.doesn't really make sense for fixed-width. Use alternative method
FixedWidthParserSettings.clone(FixedWidthFields)
. - clone(boolean) - Method in class com.univocity.parsers.fixed.FixedWidthWriterSettings
-
Deprecated.doesn't really make sense for fixed-width. . Use alternative method
FixedWidthWriterSettings.clone(FixedWidthFields)
. - clone(boolean) - Method in class com.univocity.parsers.tsv.TsvParserSettings
- clone(boolean) - Method in class com.univocity.parsers.tsv.TsvWriterSettings
- clone(boolean, FixedWidthFields) - Method in class com.univocity.parsers.fixed.FixedWidthParserSettings
- clone(boolean, FixedWidthFields) - Method in class com.univocity.parsers.fixed.FixedWidthWriterSettings
- clone(FixedWidthFields) - Method in class com.univocity.parsers.fixed.FixedWidthParserSettings
-
Clones this configuration object to reuse most user-provided settings.
- clone(FixedWidthFields) - Method in class com.univocity.parsers.fixed.FixedWidthWriterSettings
-
Clones this configuration object to reuse most user-provided settings.
- clone(Map<FieldSelector, FieldSelector>, List<FieldSelector>) - Method in class com.univocity.parsers.common.fields.AbstractConversionMapping
- cloneConversions() - Method in class com.univocity.parsers.common.processor.BeanWriterProcessor
- cloneConversions() - Method in class com.univocity.parsers.common.processor.core.BeanConversionProcessor
-
Creates a copy of the manually defined conversions to be applied over any columns.
- close() - Method in class com.univocity.parsers.common.AbstractWriter
-
Closes the
Writer
given in this class constructor. - close() - Method in class com.univocity.parsers.common.input.BomInput
- close() - Method in class com.univocity.parsers.common.LineReader
- close(AbstractWriter) - Method in class com.univocity.parsers.common.routine.AbstractRoutines
- closeOnStop - Variable in class com.univocity.parsers.common.input.AbstractCharInputReader
- closeOnStop - Variable in class com.univocity.parsers.common.input.concurrent.ConcurrentCharLoader
- collectComments - Variable in class com.univocity.parsers.common.AbstractParser
- column - Variable in class com.univocity.parsers.common.ParserOutput
-
Keeps track of the current column being parsed in the input.
- columnCount() - Method in class com.univocity.parsers.common.routine.InputDimension
-
Returns the maximum number of column the input contains.
- columnIndex - Variable in exception com.univocity.parsers.common.DataProcessingException
- columnIndex - Variable in class com.univocity.parsers.common.processor.core.AbstractInputValueSwitch
- columnIndex - Variable in class com.univocity.parsers.common.processor.OutputValueSwitch
- columnIndex - Variable in exception com.univocity.parsers.common.TextParsingException
- columnMap - Variable in class com.univocity.parsers.common.ColumnMap
- columnMap - Variable in class com.univocity.parsers.common.DefaultContext
- ColumnMap - Class in com.univocity.parsers.common
-
Class responsible for calculating and storing the position of fields parsed from the input.
- ColumnMap(Context, ParserOutput) - Constructor for class com.univocity.parsers.common.ColumnMap
- columnMapper - Variable in class com.univocity.parsers.common.processor.core.BeanConversionProcessor
- columnMapper - Variable in class com.univocity.parsers.common.routine.AbstractRoutines
- ColumnMapper - Interface in com.univocity.parsers.common.fields
-
A utility that allows users to manually define mappings from attributes/methods of a given class to columns to be parsed or written.
- ColumnMapping - Class in com.univocity.parsers.common.fields
-
Implementation the
ColumnMapper
interface which allows users to manually define mappings from attributes/methods of a given class to columns to be parsed or written. - ColumnMapping() - Constructor for class com.univocity.parsers.common.fields.ColumnMapping
-
Creates a new column mapping instance
- ColumnMapping(String, ColumnMapping) - Constructor for class com.univocity.parsers.common.fields.ColumnMapping
-
Creates a nested column mapping instance for handling nested attributes.
- ColumnMapping.MethodMapping - Class in com.univocity.parsers.common.fields
- ColumnMapping.NameMapping - Class in com.univocity.parsers.common.fields
- columnName - Variable in exception com.univocity.parsers.common.DataProcessingException
- columnName - Variable in class com.univocity.parsers.common.processor.core.AbstractInputValueSwitch
- ColumnOrderDependent - Interface in com.univocity.parsers.common.processor.core
-
A marker interface used by special implementations of
RowProcessor
to indicate columns should not be reordered by the parser. - ColumnProcessor - Class in com.univocity.parsers.common.processor
-
A simple
RowProcessor
implementation that stores values of columns. - ColumnProcessor() - Constructor for class com.univocity.parsers.common.processor.ColumnProcessor
-
Constructs a column processor, pre-allocating room for 1000 rows.
- ColumnProcessor(int) - Constructor for class com.univocity.parsers.common.processor.ColumnProcessor
-
Constructs a column processor pre-allocating room for the expected number of rows to be processed
- ColumnReader<T> - Interface in com.univocity.parsers.common.processor.core
-
A common interface for
Processor
s that collect the values parsed from each column in a row. - columnReorderingEnabled - Variable in class com.univocity.parsers.common.AbstractWriter
- columnReorderingEnabled - Variable in class com.univocity.parsers.common.CommonParserSettings
- columnReorderingEnabled - Variable in class com.univocity.parsers.common.CommonWriterSettings
- columnReorderingEnabledSetting - Variable in class com.univocity.parsers.common.ParserOutput
- columns - Variable in class com.univocity.parsers.common.routine.InputDimension
- ColumnSplitter<T> - Class in com.univocity.parsers.common.processor.core
-
A utility class used split and store values columns parsed from each row in a
Processor
. - ColumnSplitter(int) - Constructor for class com.univocity.parsers.common.processor.core.ColumnSplitter
-
Creates a splitter allocating a space for a give number of expected rows to be read
- columnsReordered - Variable in class com.univocity.parsers.common.ParserOutput
- columnsReordered() - Method in interface com.univocity.parsers.common.Context
-
Indicates whether selected fields are being reordered.
- columnsReordered() - Method in class com.univocity.parsers.common.ContextWrapper
- columnsReordered() - Method in class com.univocity.parsers.common.DefaultContext
- columnsReordered() - Method in class com.univocity.parsers.common.NoopParsingContext
- columnsReordered() - Method in interface com.univocity.parsers.common.ParsingContext
-
Indicates whether selected fields (using
CommonSettings.selectFields(java.lang.String...)
and friends) are being reordered. - columnsToExtractInitialized - Variable in class com.univocity.parsers.common.ParserOutput
- columnValues - Variable in class com.univocity.parsers.common.processor.core.ColumnSplitter
- com.univocity.parsers.annotations - package com.univocity.parsers.annotations
- com.univocity.parsers.annotations.helpers - package com.univocity.parsers.annotations.helpers
- com.univocity.parsers.common - package com.univocity.parsers.common
- com.univocity.parsers.common.beans - package com.univocity.parsers.common.beans
- com.univocity.parsers.common.fields - package com.univocity.parsers.common.fields
- com.univocity.parsers.common.input - package com.univocity.parsers.common.input
- com.univocity.parsers.common.input.concurrent - package com.univocity.parsers.common.input.concurrent
- com.univocity.parsers.common.iterators - package com.univocity.parsers.common.iterators
- com.univocity.parsers.common.processor - package com.univocity.parsers.common.processor
- com.univocity.parsers.common.processor.core - package com.univocity.parsers.common.processor.core
- com.univocity.parsers.common.record - package com.univocity.parsers.common.record
- com.univocity.parsers.common.routine - package com.univocity.parsers.common.routine
- com.univocity.parsers.conversions - package com.univocity.parsers.conversions
- com.univocity.parsers.csv - package com.univocity.parsers.csv
- com.univocity.parsers.fixed - package com.univocity.parsers.fixed
- com.univocity.parsers.tsv - package com.univocity.parsers.tsv
- comment - Variable in class com.univocity.parsers.common.AbstractParser
- comment - Variable in class com.univocity.parsers.common.AbstractWriter
- comment - Variable in class com.univocity.parsers.common.Format
- comment - Variable in class com.univocity.parsers.csv.CsvFormatDetector
- commentCollectionEnabled - Variable in class com.univocity.parsers.common.CommonParserSettings
- commentProcessing - Variable in class com.univocity.parsers.common.input.AbstractCharInputReader
- commentProcessingEnabled - Variable in class com.univocity.parsers.common.CommonParserSettings
- commentRow(String) - Method in class com.univocity.parsers.common.AbstractWriter
-
Writes a comment row to the output.
- commentRowToString(String) - Method in class com.univocity.parsers.common.AbstractWriter
-
Writes a comment row to a
String
- comments - Variable in class com.univocity.parsers.common.AbstractParser
- comments - Variable in class com.univocity.parsers.common.ParsingContextSnapshot
- comments() - Method in class com.univocity.parsers.common.DefaultParsingContext
- comments() - Method in class com.univocity.parsers.common.NoopParsingContext
- comments() - Method in interface com.univocity.parsers.common.ParsingContext
-
Returns all comments collected by the parser so far.
- comments() - Method in class com.univocity.parsers.common.ParsingContextSnapshot
- comments() - Method in class com.univocity.parsers.common.ParsingContextWrapper
- CommonParserSettings<F extends Format> - Class in com.univocity.parsers.common
-
This is the parent class for all configuration classes used by parsers (
AbstractParser
) - CommonParserSettings() - Constructor for class com.univocity.parsers.common.CommonParserSettings
- CommonSettings<F extends Format> - Class in com.univocity.parsers.common
-
This is the parent class for all configuration classes used by parsers (
AbstractParser
) and writers (AbstractWriter
) - CommonSettings() - Constructor for class com.univocity.parsers.common.CommonSettings
-
Creates a new instance of this settings object using the default format specified by the concrete class that inherits from
CommonSettings
- CommonWriterSettings<F extends Format> - Class in com.univocity.parsers.common
-
This is the parent class for all configuration classes used by writers (
AbstractWriter
) - CommonWriterSettings() - Constructor for class com.univocity.parsers.common.CommonWriterSettings
- comparator - Variable in class com.univocity.parsers.common.processor.core.AbstractInputValueSwitch
- comparator - Variable in class com.univocity.parsers.common.processor.OutputValueSwitch
- compareTo(NormalizedString) - Method in class com.univocity.parsers.common.NormalizedString
- compareTo(String) - Method in class com.univocity.parsers.common.NormalizedString
-
Compares a
NormalizedString
against aString
lexicographically. - CompositeProcessor<C extends Context> - Class in com.univocity.parsers.common.processor.core
- CompositeProcessor(Processor...) - Constructor for class com.univocity.parsers.common.processor.core.CompositeProcessor
-
Creates a new
CompositeProcessor
with the list ofProcessor
implementations to be used. - CompositeRowProcessor - Class in com.univocity.parsers.common.processor
-
A utility
RowProcessor
implementation that facilitates using multiple implementations ofRowProcessor
at the same time. - CompositeRowProcessor(Processor...) - Constructor for class com.univocity.parsers.common.processor.CompositeRowProcessor
-
Creates a new
CompositeProcessor
with the list ofProcessor
implementations to be used. - ConcurrentCharInputReader - Class in com.univocity.parsers.common.input.concurrent
-
A concurrent CharInputReader that loads batches of characters in a separate thread and assigns them to buffer in
AbstractCharInputReader
when requested. - ConcurrentCharInputReader(char[], char, int, int, int, boolean) - Constructor for class com.univocity.parsers.common.input.concurrent.ConcurrentCharInputReader
-
Creates a new instance with the mandatory characters for handling newlines transparently.
- ConcurrentCharInputReader(char, int, int, int, boolean) - Constructor for class com.univocity.parsers.common.input.concurrent.ConcurrentCharInputReader
-
Creates a new instance with the mandatory characters for handling newlines transparently.
- ConcurrentCharLoader - Class in com.univocity.parsers.common.input.concurrent
-
A concurrent character loader for loading a pool of
CharBucket
instances using aReader
in a separate thread - ConcurrentCharLoader(Reader, int, int, boolean) - Constructor for class com.univocity.parsers.common.input.concurrent.ConcurrentCharLoader
-
Creates a
FixedInstancePool
with a given amount ofCharBucket
instances and starts a thread to fill each one. - ConcurrentRowProcessor - Class in com.univocity.parsers.common.processor
-
A
RowProcessor
implementation to perform row processing tasks in parallel. - ConcurrentRowProcessor(RowProcessor) - Constructor for class com.univocity.parsers.common.processor.ConcurrentRowProcessor
-
Creates a non-blocking
ConcurrentRowProcessor
, to perform processing of rows parsed from the input in a separate thread. - ConcurrentRowProcessor(RowProcessor, int) - Constructor for class com.univocity.parsers.common.processor.ConcurrentRowProcessor
-
Creates a blocking
ConcurrentRowProcessor
, to perform processing of rows parsed from the input in a separate thread. - configureFormatter(DecimalFormat) - Method in class com.univocity.parsers.conversions.FormattedBigDecimalConversion
-
Configures the Decimal format instance created by the parent class to parse BigDecimals.
- configureFormatter(DecimalFormat) - Method in class com.univocity.parsers.conversions.NumericConversion
-
Method called by the constructor of this class to apply custom configurations to each formatter instantiated with the numeric formats provided.
- configureFromAnnotations(Class<?>) - Method in class com.univocity.parsers.common.CommonParserSettings
-
Configures the parser based on the annotations provided in a given class
- configureFromAnnotations(Class<?>) - Method in class com.univocity.parsers.common.CommonWriterSettings
-
Configures the writer based on the annotations provided in a given class
- configureFromAnnotations(Class<?>) - Method in class com.univocity.parsers.fixed.FixedWidthParserSettings
- configureFromAnnotations(Class<?>) - Method in class com.univocity.parsers.fixed.FixedWidthWriterSettings
- constructor - Variable in class com.univocity.parsers.common.processor.core.BeanConversionProcessor
- consumed - Variable in class com.univocity.parsers.common.input.BomInput
- consumeValueOnEOF() - Method in class com.univocity.parsers.common.AbstractParser
-
Allows the parser implementation to handle any value that was being consumed when the end of the input was reached
- consumeValueOnEOF() - Method in class com.univocity.parsers.csv.CsvParser
- containsColumn(String) - Method in interface com.univocity.parsers.common.record.RecordMetaData
-
Queries whether a given header name exists in the
Record
s parsed from the input - containsColumn(String) - Method in class com.univocity.parsers.common.record.RecordMetaDataImpl
- containsKey(String) - Method in class com.univocity.parsers.common.StringCache
-
Tests whether the cache contains the given key
- content - Variable in exception com.univocity.parsers.common.TextParsingException
- context - Variable in class com.univocity.parsers.common.AbstractParser
- context - Variable in class com.univocity.parsers.common.ColumnMap
- context - Variable in class com.univocity.parsers.common.ContextWrapper
- context - Variable in class com.univocity.parsers.common.DefaultConversionProcessor
- context - Variable in class com.univocity.parsers.common.processor.core.AbstractConcurrentProcessor.Node
- context - Variable in class com.univocity.parsers.common.record.RecordMetaDataImpl
- context - Variable in class com.univocity.parsers.fixed.Lookup
- Context - Interface in com.univocity.parsers.common
- contextCopyingEnabled - Variable in class com.univocity.parsers.common.processor.core.AbstractConcurrentProcessor
- contextForProcessor - Variable in class com.univocity.parsers.common.processor.core.AbstractProcessorSwitch
- ContextSnapshot<T extends Context> - Class in com.univocity.parsers.common
- ContextSnapshot(T) - Constructor for class com.univocity.parsers.common.ContextSnapshot
-
Creates a snapshot of a given
Context
- ContextWrapper<T extends Context> - Class in com.univocity.parsers.common
-
A simple a wrapper for a
Context
. - ContextWrapper(T) - Constructor for class com.univocity.parsers.common.ContextWrapper
-
Wraps a
Context
. - Conversion<I,
O> - Interface in com.univocity.parsers.conversions -
The interface that defines the conversion from one type of value to another, and vice versa.
- conversionByType - Variable in class com.univocity.parsers.common.record.RecordMetaDataImpl
- conversionClass() - Element in annotation interface com.univocity.parsers.annotations.Convert
-
A user provided implementation of
Conversion
which will be instantiated using the arguments provided byConvert.args()
- ConversionProcessor - Interface in com.univocity.parsers.common
-
A basic interface for classes that associate
Conversion
implementations with fields of a given input/output. - conversions - Variable in class com.univocity.parsers.common.DefaultConversionProcessor
- conversions - Variable in class com.univocity.parsers.common.record.MetaData
- conversions - Variable in class com.univocity.parsers.common.record.RecordMetaDataImpl
- conversions - Variable in class com.univocity.parsers.conversions.EnumConversion
- Conversions - Class in com.univocity.parsers.conversions
-
This class provides default instances of common implementations if
com.univocity.parsers.conversions.Conversion
, as well as useful methods for obtaining new instances of these. - Conversions() - Constructor for class com.univocity.parsers.conversions.Conversions
- conversionsByAnnotation - Variable in class com.univocity.parsers.common.record.RecordMetaDataImpl
- conversionsByIndex - Variable in class com.univocity.parsers.common.fields.FieldConversionMapping
-
This is the final sequence of conversions applied to each index in a record.
- conversionsByType - Variable in class com.univocity.parsers.common.DefaultConversionProcessor
- conversionSequence - Variable in class com.univocity.parsers.common.fields.AbstractConversionMapping
- conversionSequence - Variable in class com.univocity.parsers.common.fields.FieldConversionMapping
-
This list contains the sequence of conversions applied to sets of fields over multiple calls.
- conversionsInitialized - Variable in class com.univocity.parsers.common.DefaultConversionProcessor
- conversionsMap - Variable in class com.univocity.parsers.common.fields.AbstractConversionMapping
- convert(MetaData, String[], Conversion[]) - Static method in class com.univocity.parsers.common.record.RecordMetaDataImpl
- convert(MetaData, String[], Class<T>, Conversion[]) - Method in class com.univocity.parsers.common.record.RecordMetaDataImpl
- convert(MetaData, String[], Class<T>, T, Annotation) - Method in class com.univocity.parsers.common.record.RecordMetaDataImpl
- convert(MetaData, String[], Object, Conversion[]) - Method in class com.univocity.parsers.common.record.RecordMetaDataImpl
- convert(Object) - Method in class com.univocity.parsers.common.record.MetaData
- Convert - Annotation Interface in com.univocity.parsers.annotations
-
Assigns a custom implementation of
Conversion
to be executed (Conversion.execute(Object)
) when writing to the field and reverted (Conversion.revert(Object)
) when reading from the field. - convertAll(Conversion...) - Method in interface com.univocity.parsers.common.ConversionProcessor
-
Applies a set of
Conversion
objects over all elements of a record - convertAll(Conversion...) - Method in class com.univocity.parsers.common.DefaultConversionProcessor
- convertAll(Conversion...) - Method in class com.univocity.parsers.common.processor.core.AbstractMultiBeanProcessor
- convertAllMapping - Variable in class com.univocity.parsers.common.fields.FieldConversionMapping
- convertFields(Conversion...) - Method in interface com.univocity.parsers.common.ConversionProcessor
-
Applies a set of
Conversion
objects over fields of a record by name. - convertFields(Conversion...) - Method in class com.univocity.parsers.common.DefaultConversionProcessor
- convertFields(Conversion...) - Method in class com.univocity.parsers.common.processor.core.AbstractMultiBeanProcessor
- convertFields(Conversion...) - Method in interface com.univocity.parsers.common.record.RecordMetaData
-
Associates a sequence of
Conversion
s to fields of a given set of field names - convertFields(Conversion...) - Method in class com.univocity.parsers.common.record.RecordMetaDataImpl
- convertFields(Class<T>, Conversion...) - Method in interface com.univocity.parsers.common.record.RecordMetaData
-
Associates a sequence of
Conversion
s to fields of a given set of fields - convertFields(Class<T>, Conversion...) - Method in class com.univocity.parsers.common.record.RecordMetaDataImpl
- convertIndexes(Conversion...) - Method in interface com.univocity.parsers.common.ConversionProcessor
-
Applies a set of
Conversion
objects over indexes of a record. - convertIndexes(Conversion...) - Method in class com.univocity.parsers.common.DefaultConversionProcessor
- convertIndexes(Conversion...) - Method in class com.univocity.parsers.common.processor.core.AbstractMultiBeanProcessor
- convertIndexes(Conversion...) - Method in interface com.univocity.parsers.common.record.RecordMetaData
-
Associates a sequence of
Conversion
s to fields of a given set of column indexes - convertIndexes(Conversion...) - Method in class com.univocity.parsers.common.record.RecordMetaDataImpl
- convertType(Class<?>, Conversion...) - Method in interface com.univocity.parsers.common.ConversionProcessor
-
Applies a sequence of conversions over values of a given type.
- convertType(Class<?>, Conversion...) - Method in class com.univocity.parsers.common.DefaultConversionProcessor
- convertType(Class<?>, Conversion...) - Method in class com.univocity.parsers.common.processor.core.AbstractMultiBeanProcessor
- Copy - Annotation Interface in com.univocity.parsers.annotations
-
Allows copying values of meta-annotation properties into the properties of an annotation that composes it.
- copyContext(ParsingContext) - Method in class com.univocity.parsers.common.processor.ConcurrentRowProcessor
- copyContext(T) - Method in class com.univocity.parsers.common.processor.core.AbstractConcurrentProcessor
- count - Variable in class com.univocity.parsers.common.input.concurrent.FixedInstancePool
- createBean(String[], Context) - Method in class com.univocity.parsers.common.processor.core.BeanConversionProcessor
-
Converts a record with values extracted from the parser into a java bean instance.
- createDefaultEnumConversion(Class, String, String) - Static method in class com.univocity.parsers.annotations.helpers.AnnotationHelper
- createDefaultFormat() - Method in class com.univocity.parsers.common.CommonSettings
-
Extending classes must implement this method to return the default format settings for their parser/writer
- createDefaultFormat() - Method in class com.univocity.parsers.csv.CsvParserSettings
-
Returns the default CsvFormat configured to handle CSV inputs compliant to the RFC4180 standard.
- createDefaultFormat() - Method in class com.univocity.parsers.csv.CsvWriterSettings
-
Returns the default CsvFormat configured to produce CSV outputs compliant to the RFC4180 standard.
- createDefaultFormat() - Method in class com.univocity.parsers.fixed.FixedWidthParserSettings
-
Returns the default FixedWidthFormat configured to handle Fixed-Width inputs
- createDefaultFormat() - Method in class com.univocity.parsers.fixed.FixedWidthWriterSettings
-
Returns the default FixedWidthFormat configured to handle Fixed-Width outputs
- createDefaultFormat() - Method in class com.univocity.parsers.tsv.TsvParserSettings
-
Returns the default TsvFormat configured to handle TSV inputs
- createDefaultFormat() - Method in class com.univocity.parsers.tsv.TsvWriterSettings
-
Returns the default TsvFormat.
- createDefaultParserSettings() - Method in class com.univocity.parsers.common.routine.AbstractRoutines
-
Creates a default parser settings configuration
- createDefaultParserSettings() - Method in class com.univocity.parsers.csv.CsvRoutines
- createDefaultParserSettings() - Method in class com.univocity.parsers.fixed.FixedWidthRoutines
- createDefaultParserSettings() - Method in class com.univocity.parsers.tsv.TsvRoutines
- createDefaultWriterSettings() - Method in class com.univocity.parsers.common.routine.AbstractRoutines
-
Creates a default writer settings configuration
- createDefaultWriterSettings() - Method in class com.univocity.parsers.csv.CsvRoutines
- createDefaultWriterSettings() - Method in class com.univocity.parsers.fixed.FixedWidthRoutines
- createDefaultWriterSettings() - Method in class com.univocity.parsers.tsv.TsvRoutines
- createMetaData(Context) - Method in class com.univocity.parsers.common.record.AbstractRecordFactory
- createMetaData(Context) - Method in class com.univocity.parsers.common.record.RecordFactory
- createNestedProcessor(Annotation, Class, FieldMapping, HeaderTransformer) - Method in class com.univocity.parsers.common.processor.core.BeanConversionProcessor
- createParser(CsvParserSettings) - Method in class com.univocity.parsers.csv.CsvRoutines
- createParser(FixedWidthParserSettings) - Method in class com.univocity.parsers.fixed.FixedWidthRoutines
- createParser(TsvParserSettings) - Method in class com.univocity.parsers.tsv.TsvRoutines
- createParser(P) - Method in class com.univocity.parsers.common.routine.AbstractRoutines
-
Creates a new parser implementation using the given parser configuration
- createParsingContext() - Method in class com.univocity.parsers.common.AbstractParser
- createParsingContext() - Method in class com.univocity.parsers.fixed.FixedWidthParser
- createWriter(Writer, CsvWriterSettings) - Method in class com.univocity.parsers.csv.CsvRoutines
- createWriter(Writer, FixedWidthWriterSettings) - Method in class com.univocity.parsers.fixed.FixedWidthRoutines
- createWriter(Writer, TsvWriterSettings) - Method in class com.univocity.parsers.tsv.TsvRoutines
- createWriter(Writer, W) - Method in class com.univocity.parsers.common.routine.AbstractRoutines
-
Creates a new writer implementation using the given writer configuration
- createWritingRowProcessor(Writer) - Method in class com.univocity.parsers.common.routine.AbstractRoutines
- Csv - Class in com.univocity.parsers.csv
-
This class provides default configurations using CSV formats commonly used for parsing/writing.
- Csv() - Constructor for class com.univocity.parsers.csv.Csv
- CsvFormat - Class in com.univocity.parsers.csv
-
The CSV format configuration.
- CsvFormat() - Constructor for class com.univocity.parsers.csv.CsvFormat
- CsvFormatDetector - Class in com.univocity.parsers.csv
-
An
InputAnalysisProcess
to detect column delimiters, quotes and quote escapes in a CSV input. - CsvFormatDetector(int, CsvParserSettings, int) - Constructor for class com.univocity.parsers.csv.CsvFormatDetector
-
Builds a new
CsvFormatDetector
- CsvParser - Class in com.univocity.parsers.csv
-
A very fast CSV parser implementation.
- CsvParser(CsvParserSettings) - Constructor for class com.univocity.parsers.csv.CsvParser
-
The CsvParser supports all settings provided by
CsvParserSettings
, and requires this configuration to be properly initialized. - CsvParserSettings - Class in com.univocity.parsers.csv
-
This is the configuration class used by the CSV parser (
CsvParser
) - CsvParserSettings() - Constructor for class com.univocity.parsers.csv.CsvParserSettings
- CsvRoutines - Class in com.univocity.parsers.csv
-
A collection of common routines involving the processing of CSV data.
- CsvRoutines() - Constructor for class com.univocity.parsers.csv.CsvRoutines
-
Creates a new instance of the CSV routine class without any predefined parsing/writing configuration.
- CsvRoutines(CsvParserSettings) - Constructor for class com.univocity.parsers.csv.CsvRoutines
-
Creates a new instance of the CSV routine class.
- CsvRoutines(CsvParserSettings, CsvWriterSettings) - Constructor for class com.univocity.parsers.csv.CsvRoutines
-
Creates a new instance of the CSV routine class.
- CsvRoutines(CsvWriterSettings) - Constructor for class com.univocity.parsers.csv.CsvRoutines
-
Creates a new instance of the CSV routine class.
- CsvWriter - Class in com.univocity.parsers.csv
-
A powerful and flexible CSV writer implementation.
- CsvWriter(CsvWriterSettings) - Constructor for class com.univocity.parsers.csv.CsvWriter
-
The CsvWriter supports all settings provided by
CsvWriterSettings
, and requires this configuration to be properly initialized. - CsvWriter(File, CsvWriterSettings) - Constructor for class com.univocity.parsers.csv.CsvWriter
-
The CsvWriter supports all settings provided by
CsvWriterSettings
, and requires this configuration to be properly initialized. - CsvWriter(File, String, CsvWriterSettings) - Constructor for class com.univocity.parsers.csv.CsvWriter
-
The CsvWriter supports all settings provided by
CsvWriterSettings
, and requires this configuration to be properly initialized. - CsvWriter(File, Charset, CsvWriterSettings) - Constructor for class com.univocity.parsers.csv.CsvWriter
-
The CsvWriter supports all settings provided by
CsvWriterSettings
, and requires this configuration to be properly initialized. - CsvWriter(OutputStream, CsvWriterSettings) - Constructor for class com.univocity.parsers.csv.CsvWriter
-
The CsvWriter supports all settings provided by
CsvWriterSettings
, and requires this configuration to be properly initialized. - CsvWriter(OutputStream, String, CsvWriterSettings) - Constructor for class com.univocity.parsers.csv.CsvWriter
-
The CsvWriter supports all settings provided by
CsvWriterSettings
, and requires this configuration to be properly initialized. - CsvWriter(OutputStream, Charset, CsvWriterSettings) - Constructor for class com.univocity.parsers.csv.CsvWriter
-
The CsvWriter supports all settings provided by
CsvWriterSettings
, and requires this configuration to be properly initialized. - CsvWriter(Writer, CsvWriterSettings) - Constructor for class com.univocity.parsers.csv.CsvWriter
-
The CsvWriter supports all settings provided by
CsvWriterSettings
, and requires this configuration to be properly initialized. - CsvWriterSettings - Class in com.univocity.parsers.csv
-
This is the configuration class used by the CSV writer (
CsvWriter
) - CsvWriterSettings() - Constructor for class com.univocity.parsers.csv.CsvWriterSettings
- currentBucket - Variable in class com.univocity.parsers.common.input.concurrent.ConcurrentCharLoader
- currentChar - Variable in class com.univocity.parsers.common.ParsingContextSnapshot
- currentChar() - Method in class com.univocity.parsers.common.DefaultParsingContext
- currentChar() - Method in class com.univocity.parsers.common.NoopParsingContext
- currentChar() - Method in interface com.univocity.parsers.common.ParsingContext
-
Returns the index of the last char read from the input so far.
- currentChar() - Method in class com.univocity.parsers.common.ParsingContextSnapshot
- currentChar() - Method in class com.univocity.parsers.common.ParsingContextWrapper
- currentColumn - Variable in class com.univocity.parsers.common.ContextSnapshot
- currentColumn - Variable in class com.univocity.parsers.common.ParsingContextSnapshot
- currentColumn() - Method in interface com.univocity.parsers.common.Context
-
Returns the column index of the record being processed.
- currentColumn() - Method in class com.univocity.parsers.common.ContextSnapshot
- currentColumn() - Method in class com.univocity.parsers.common.ContextWrapper
- currentColumn() - Method in class com.univocity.parsers.common.DefaultContext
- currentColumn() - Method in class com.univocity.parsers.common.NoopParsingContext
- currentColumn() - Method in class com.univocity.parsers.common.ParsingContextSnapshot
- currentContext - Variable in class com.univocity.parsers.common.processor.core.AbstractConcurrentProcessor
- currentLine - Variable in class com.univocity.parsers.common.ParsingContextSnapshot
- currentLine() - Method in class com.univocity.parsers.common.DefaultParsingContext
- currentLine() - Method in class com.univocity.parsers.common.NoopParsingContext
- currentLine() - Method in interface com.univocity.parsers.common.ParsingContext
-
Returns the current line of text being processed by the parser
- currentLine() - Method in class com.univocity.parsers.common.ParsingContextSnapshot
- currentLine() - Method in class com.univocity.parsers.common.ParsingContextWrapper
- currentParsedContent - Variable in class com.univocity.parsers.common.ParsingContextSnapshot
- currentParsedContent() - Method in class com.univocity.parsers.common.DefaultParsingContext
- currentParsedContent() - Method in class com.univocity.parsers.common.input.AbstractCharInputReader
- currentParsedContent() - Method in interface com.univocity.parsers.common.input.CharInputReader
-
Returns a String with the input character sequence parsed to produce the current record.
- currentParsedContent() - Method in class com.univocity.parsers.common.input.LookaheadCharInputReader
- currentParsedContent() - Method in class com.univocity.parsers.common.NoopParsingContext
- currentParsedContent() - Method in interface com.univocity.parsers.common.ParsingContext
-
Returns a String with the input character sequence parsed to produce the current record.
- currentParsedContent() - Method in class com.univocity.parsers.common.ParsingContextSnapshot
- currentParsedContent() - Method in class com.univocity.parsers.common.ParsingContextWrapper
- currentParsedContentLength() - Method in class com.univocity.parsers.common.DefaultParsingContext
- currentParsedContentLength() - Method in class com.univocity.parsers.common.input.AbstractCharInputReader
- currentParsedContentLength() - Method in interface com.univocity.parsers.common.input.CharInputReader
-
Returns the length of the character sequence parsed to produce the current record.
- currentParsedContentLength() - Method in class com.univocity.parsers.common.input.LookaheadCharInputReader
- currentParsedContentLength() - Method in class com.univocity.parsers.common.NoopParsingContext
- currentParsedContentLength() - Method in interface com.univocity.parsers.common.ParsingContext
-
Returns the length of the character sequence parsed to produce the current record.
- currentParsedContentLength() - Method in class com.univocity.parsers.common.ParsingContextWrapper
- currentRecord - Variable in class com.univocity.parsers.common.ContextSnapshot
- currentRecord - Variable in class com.univocity.parsers.common.ParserOutput
- currentRecord - Variable in class com.univocity.parsers.common.ParsingContextSnapshot
- currentRecord() - Method in interface com.univocity.parsers.common.Context
-
Returns the index of the last valid record parsed from the input
- currentRecord() - Method in class com.univocity.parsers.common.ContextSnapshot
- currentRecord() - Method in class com.univocity.parsers.common.ContextWrapper
- currentRecord() - Method in class com.univocity.parsers.common.DefaultContext
- currentRecord() - Method in class com.univocity.parsers.common.NoopParsingContext
- currentRecord() - Method in class com.univocity.parsers.common.ParsingContextSnapshot
- CUSTOM_FIELD - Enum constant in enum class com.univocity.parsers.conversions.EnumSelector
-
Matches the value of a field of the annotated enumeration
- CUSTOM_METHOD - Enum constant in enum class com.univocity.parsers.conversions.EnumSelector
-
Matches the value of a method of the annotated enumeration
- customAnnotationTypes - Static variable in class com.univocity.parsers.annotations.helpers.AnnotationHelper
- customElement() - Element in annotation interface com.univocity.parsers.annotations.EnumOptions
-
Defines the name of a custom element (attribute or method) of the annotated enumeration.
- customEnumField - Variable in class com.univocity.parsers.conversions.EnumConversion
- customEnumMethod - Variable in class com.univocity.parsers.conversions.EnumConversion
- CustomMatcher - Interface in com.univocity.parsers.common.processor
-
Interface used by
InputValueSwitch
to allow users to to provide custom matching rules against input values.
D
- data - Variable in class com.univocity.parsers.common.input.concurrent.CharBucket
-
The bucket data
- data - Variable in class com.univocity.parsers.common.record.RecordImpl
- DataProcessingException - Exception in com.univocity.parsers.common
-
A
DataProcessingException
is an error thrown during the processing of a record successfully parsed. - DataProcessingException(String) - Constructor for exception com.univocity.parsers.common.DataProcessingException
-
Creates a new exception with an error message only.
- DataProcessingException(String, int) - Constructor for exception com.univocity.parsers.common.DataProcessingException
-
Creates a new exception with an error message and the column that could not be processed.
- DataProcessingException(String, int, Object[], Throwable) - Constructor for exception com.univocity.parsers.common.DataProcessingException
-
Creates a new exception with an error message, the column that could not be processed the row that could not be processed, and the error cause.
- DataProcessingException(String, Object[]) - Constructor for exception com.univocity.parsers.common.DataProcessingException
-
Creates a new exception with an error message and the row that could not be processed.
- DataProcessingException(String, Object[], Throwable) - Constructor for exception com.univocity.parsers.common.DataProcessingException
-
Creates a new exception with an error message, the row that could not be processed, and the error cause.
- DataProcessingException(String, Throwable) - Constructor for exception com.univocity.parsers.common.DataProcessingException
-
Creates a new exception with an error message and error cause
- DataValidationException - Exception in com.univocity.parsers.common
-
A
DataValidationException
is an error thrown during the processing of a record successfully parsed, but whose data failed to pass a validation defined by annotationValidate
- DataValidationException(String) - Constructor for exception com.univocity.parsers.common.DataValidationException
-
Creates a new validation exception with an error message only.
- DataValidationException(String, int) - Constructor for exception com.univocity.parsers.common.DataValidationException
-
Creates a new validation exception with an error message and the column that could not be validated.
- DataValidationException(String, Object[]) - Constructor for exception com.univocity.parsers.common.DataValidationException
-
Creates a new validation exception with an error message and the row that could not be validated.
- DataValidationException(String, Object[], Throwable) - Constructor for exception com.univocity.parsers.common.DataValidationException
-
Creates a new validation exception with an error message, the row that could not be validated, and the error cause.
- DataValidationException(String, Throwable) - Constructor for exception com.univocity.parsers.common.DataValidationException
-
Creates a new validation exception with an error message and error cause
- dateConversion - Variable in class com.univocity.parsers.conversions.CalendarConversion
- DateConversion - Class in com.univocity.parsers.conversions
-
Converts Strings to instances of
Date
and vice versa. - DateConversion(String...) - Constructor for class com.univocity.parsers.conversions.DateConversion
-
Defines a conversion from String to
Date
using a sequence of acceptable date patterns. - DateConversion(Date, String, String...) - Constructor for class com.univocity.parsers.conversions.DateConversion
-
Defines a conversion from String to
Date
using a sequence of acceptable date patterns. - DateConversion(Locale, String...) - Constructor for class com.univocity.parsers.conversions.DateConversion
-
Defines a conversion from String to
Date
using a sequence of acceptable date patterns. - DateConversion(Locale, Date, String, String...) - Constructor for class com.univocity.parsers.conversions.DateConversion
-
Defines a conversion from String to
Date
using a sequence of acceptable date patterns. - DateConversion(TimeZone, Locale, Date, String, String...) - Constructor for class com.univocity.parsers.conversions.DateConversion
-
Defines a conversion from String to
Date
using a sequence of acceptable date patterns. - dateFormat - Variable in class com.univocity.parsers.conversions.FormattedDateConversion
- DEFAULT_MAX_STRING_LENGTH - Static variable in class com.univocity.parsers.common.StringCache
- DEFAULT_SIZE_LIMIT - Static variable in class com.univocity.parsers.common.StringCache
- defaultAlignmentForHeaders - Variable in class com.univocity.parsers.fixed.FixedWidthWriterSettings
- DefaultCharAppender - Class in com.univocity.parsers.common.input
-
Default implementation of the
CharAppender
interface - DefaultCharAppender(int, String, int) - Constructor for class com.univocity.parsers.common.input.DefaultCharAppender
-
Creates a DefaultCharAppender with a maximum limit of characters to append and the default value to return when no characters have been accumulated.
- DefaultCharInputReader - Class in com.univocity.parsers.common.input
-
A default CharInputReader which only loads batches of characters when requested by the
AbstractCharInputReader
through theDefaultCharInputReader.reloadBuffer()
method. - DefaultCharInputReader(char[], char, int, int, boolean) - Constructor for class com.univocity.parsers.common.input.DefaultCharInputReader
-
Creates a new instance with the mandatory characters for handling newlines transparently.
- DefaultCharInputReader(char, int, int, boolean) - Constructor for class com.univocity.parsers.common.input.DefaultCharInputReader
-
Creates a new instance with the mandatory characters for handling newlines transparently.
- DefaultContext - Class in com.univocity.parsers.common
-
Default implementation of the
Context
interface with essential information about the output being produced. - DefaultContext(int) - Constructor for class com.univocity.parsers.common.DefaultContext
- DefaultContext(ParserOutput, int) - Constructor for class com.univocity.parsers.common.DefaultContext
- DefaultConversionProcessor - Class in com.univocity.parsers.common
-
The base class for
RowProcessor
andRowWriterProcessor
implementations that support value conversions provided byConversion
instances. - DefaultConversionProcessor() - Constructor for class com.univocity.parsers.common.DefaultConversionProcessor
- defaultForFalse - Variable in class com.univocity.parsers.conversions.BooleanConversion
- defaultForTrue - Variable in class com.univocity.parsers.conversions.BooleanConversion
- defaultHeaderAlignment - Variable in class com.univocity.parsers.fixed.FixedWidthWriter
- defaultHeaderPadding - Variable in class com.univocity.parsers.fixed.FixedWidthWriter
- defaultLength - Variable in class com.univocity.parsers.common.input.ElasticCharAppender
- defaultNullRead() - Element in annotation interface com.univocity.parsers.annotations.Parsed
-
The default value to assign to this field in the parsed value is null
- defaultNullString - Variable in class com.univocity.parsers.conversions.NullStringConversion
- defaultNullWrite() - Element in annotation interface com.univocity.parsers.annotations.Parsed
-
The default value to read from this field if it is null.
- defaultPadding - Variable in class com.univocity.parsers.fixed.FixedWidthParser
- defaultPadding - Variable in class com.univocity.parsers.fixed.FixedWidthWriter
- DefaultParsingContext - Class in com.univocity.parsers.common
-
The default
ParsingContext
implementation used internally byAbstractParser
to expose information about a parsing process in execution. - DefaultParsingContext(AbstractParser<?>, int) - Constructor for class com.univocity.parsers.common.DefaultParsingContext
- defaultPrimitiveValue - Variable in class com.univocity.parsers.annotations.helpers.FieldMapping
- defaultSwitch - Variable in class com.univocity.parsers.common.processor.core.AbstractInputValueSwitch
- defaultSwitch - Variable in class com.univocity.parsers.common.processor.OutputValueSwitch
- defaultValue - Variable in class com.univocity.parsers.common.record.MetaData
- defaultValue - Variable in class com.univocity.parsers.common.RetryableErrorHandler
- defaultValueOf(int) - Method in interface com.univocity.parsers.common.record.RecordMetaData
-
Returns the default value associated with a column (defined using
setDefaultValueOf(Column, Object)
) - defaultValueOf(int) - Method in class com.univocity.parsers.common.record.RecordMetaDataImpl
- defaultValueOf(Enum<?>) - Method in interface com.univocity.parsers.common.record.RecordMetaData
-
Returns the default value associated with a column (defined using
setDefaultValueOf(Column, Object)
) - defaultValueOf(Enum<?>) - Method in class com.univocity.parsers.common.record.RecordMetaDataImpl
- defaultValueOf(String) - Method in interface com.univocity.parsers.common.record.RecordMetaData
-
Returns the default value associated with a column (defined using
setDefaultValueOf(Column, Object)
) - defaultValueOf(String) - Method in class com.univocity.parsers.common.record.RecordMetaDataImpl
- delete(int) - Method in interface com.univocity.parsers.common.input.CharAppender
-
Deletes a given number of characters from the end of the appended content.
- delete(int) - Method in class com.univocity.parsers.common.input.DefaultCharAppender
- delete(int) - Method in class com.univocity.parsers.common.input.NoopCharAppender
-
Does nothing
- delimiter - Variable in class com.univocity.parsers.common.input.LookaheadCharInputReader
- delimiter - Variable in class com.univocity.parsers.csv.CsvFormat
- delimiter - Variable in class com.univocity.parsers.csv.CsvParser
- delimiter - Variable in class com.univocity.parsers.csv.CsvWriter
- delimiterDetectionEnabled - Variable in class com.univocity.parsers.csv.CsvParserSettings
- delimiterPreference - Variable in class com.univocity.parsers.csv.CsvFormatDetector
- delimiters - Variable in class com.univocity.parsers.csv.CsvParser
- delimitersForDetection - Variable in class com.univocity.parsers.csv.CsvParserSettings
- denormalizeLineEndings - Variable in class com.univocity.parsers.common.input.WriterCharAppender
- deriveHeaderNamesFromFields(Class<?>, MethodFilter) - Static method in class com.univocity.parsers.annotations.helpers.AnnotationHelper
-
Runs through all
Parsed
annotations of a given class to identify all header names associated with its fields - deriveHeadersFrom(Class<?>) - Method in class com.univocity.parsers.common.CommonSettings
-
Indicates whether headers should be derived from a given class.
- describe() - Method in class com.univocity.parsers.annotations.helpers.TransformedHeader
- describe() - Method in class com.univocity.parsers.common.fields.AllIndexesSelector
- describe() - Method in class com.univocity.parsers.common.fields.ExcludeFieldEnumSelector
- describe() - Method in class com.univocity.parsers.common.fields.ExcludeFieldIndexSelector
- describe() - Method in class com.univocity.parsers.common.fields.ExcludeFieldNameSelector
- describe() - Method in interface com.univocity.parsers.common.fields.FieldSelector
-
Returns a string that represents the current field selection
- describe() - Method in class com.univocity.parsers.common.fields.FieldSet
-
Returns a string that represents the current field selection
- describeElement(AnnotatedElement) - Static method in class com.univocity.parsers.annotations.helpers.AnnotationHelper
- describeField(AnnotatedElement) - Static method in class com.univocity.parsers.common.processor.core.BeanConversionProcessor
- describeSwitch() - Method in class com.univocity.parsers.common.processor.OutputValueSwitch
- describeSwitch() - Method in class com.univocity.parsers.common.processor.RowWriterProcessorSwitch
- descriptors - Static variable in class com.univocity.parsers.common.beans.BeanHelper
- detailProcessor - Variable in class com.univocity.parsers.common.processor.core.AbstractMasterDetailProcessor
- detailRows - Variable in class com.univocity.parsers.common.processor.MasterDetailRecord
- details - Variable in exception com.univocity.parsers.common.DataProcessingException
- detectFormatAutomatically() - Method in class com.univocity.parsers.csv.CsvParserSettings
-
Convenience method to turn on all format detection features in a single method call, namely:
CsvParserSettings.setDelimiterDetectionEnabled(boolean, char[])
CsvParserSettings.setQuoteDetectionEnabled(boolean)
CommonParserSettings.setLineSeparatorDetectionEnabled(boolean)
- detectFormatAutomatically(char...) - Method in class com.univocity.parsers.csv.CsvParserSettings
-
Convenience method to turn on all format detection features in a single method call, namely:
CsvParserSettings.setDelimiterDetectionEnabled(boolean, char[])
CsvParserSettings.setQuoteDetectionEnabled(boolean)
CommonParserSettings.setLineSeparatorDetectionEnabled(boolean)
- detectLineSeparator - Variable in class com.univocity.parsers.common.input.AbstractCharInputReader
- determineFieldMapping(HeaderTransformer, NormalizedString[]) - Method in class com.univocity.parsers.annotations.helpers.FieldMapping
- discardValues() - Method in class com.univocity.parsers.common.AbstractWriter
-
Discards the contents written to the internal in-memory row (using
or #writeValue()
. - discardValues() - Method in class com.univocity.parsers.common.ParserOutput
-
Discards the values parsed so far
- displayLineSeparators(String, boolean) - Static method in class com.univocity.parsers.common.ArgumentUtils
-
Displays line separators in a string by replacing all instances of `\r` and `\n` with `[cr]` and `[lf]`.
- doNotEscapeUnquotedValues - Variable in class com.univocity.parsers.csv.CsvParser
- dontProcessNormalizedNewLines - Variable in class com.univocity.parsers.csv.CsvWriter
- DoubleConversion - Class in com.univocity.parsers.conversions
-
Converts Strings to Doubles and vice versa
- DoubleConversion() - Constructor for class com.univocity.parsers.conversions.DoubleConversion
-
Creates a Conversion from String to Double with default values to return when the input is null.
- DoubleConversion(Double, String) - Constructor for class com.univocity.parsers.conversions.DoubleConversion
-
Creates a Conversion from String to Double with default values to return when the input is null.
- DummyFormat - Class in com.univocity.parsers.common
-
A concrete (dummy) implementation of
Format
. - DummyFormat() - Constructor for class com.univocity.parsers.common.DummyFormat
- dummyHeaderRow - Variable in class com.univocity.parsers.common.AbstractWriter
E
- ElasticCharAppender - Class in com.univocity.parsers.common.input
-
A character appender that restores its internal buffer size after expanding to accommodate larger contents.
- ElasticCharAppender(int, String) - Constructor for class com.univocity.parsers.common.input.ElasticCharAppender
- ElasticCharAppender(String) - Constructor for class com.univocity.parsers.common.input.ElasticCharAppender
- EMPTY - Static variable in class com.univocity.parsers.common.beans.BeanHelper
- EMPTY_CHAR_ARRAY - Static variable in class com.univocity.parsers.common.input.ElasticCharAppender
- EMPTY_CONVERSION_ARRAY - Static variable in class com.univocity.parsers.common.fields.FieldConversionMapping
- EMPTY_NORMALIZED_STRING_ARRAY - Static variable in class com.univocity.parsers.common.ArgumentUtils
- EMPTY_STRING_ARRAY - Static variable in class com.univocity.parsers.common.ArgumentUtils
-
An empty String array.
- emptyChars - Variable in class com.univocity.parsers.common.input.DefaultCharAppender
- emptyParsed() - Method in class com.univocity.parsers.common.ParserOutput
-
Adds a nullValue (as specified in
CommonSettings.getNullValue()
) to the output and prepares the next position in the record to receive more values. - emptyValue - Variable in class com.univocity.parsers.common.AbstractWriter
- emptyValue - Variable in class com.univocity.parsers.common.CommonWriterSettings
- emptyValue - Variable in class com.univocity.parsers.common.input.DefaultCharAppender
- emptyValue - Variable in class com.univocity.parsers.csv.CsvParser
- emptyValue - Variable in class com.univocity.parsers.csv.CsvParserSettings
- enableDenormalizedLineEndings(boolean) - Method in class com.univocity.parsers.common.input.WriterCharAppender
-
Configures the appender to allow line ending sequences to be appended as-is, without replacing them by the normalized line separator character.
- enableNewlineAfterRecord - Variable in class com.univocity.parsers.common.AbstractWriter
- enableNewlineAfterRecord(boolean) - Method in class com.univocity.parsers.common.AbstractWriter
- enableNormalizeLineEndings(boolean) - Method in class com.univocity.parsers.common.input.AbstractCharInputReader
- enableNormalizeLineEndings(boolean) - Method in interface com.univocity.parsers.common.input.CharInputReader
-
Indicates to the input reader that the parser is running in "escape" mode and new lines should be returned as-is to prevent modifying the content of the parsed value.
- enableNormalizeLineEndings(boolean) - Method in class com.univocity.parsers.common.input.LookaheadCharInputReader
- encoding - Variable in exception com.univocity.parsers.common.input.BomInput.BytesProcessedNotification
- encoding - Variable in class com.univocity.parsers.common.input.BomInput
- end - Variable in class com.univocity.parsers.common.input.concurrent.ConcurrentCharLoader
- ended - Variable in class com.univocity.parsers.common.processor.core.AbstractConcurrentProcessor
- entry - Variable in class com.univocity.parsers.common.input.concurrent.Entry
- Entry<T> - Class in com.univocity.parsers.common.input.concurrent
-
An entry used by the
FixedInstancePool
- Entry(T, int) - Constructor for class com.univocity.parsers.common.input.concurrent.Entry
-
Creates a new entry with an object and its position in the
FixedInstancePool
- EnumConversion<T extends Enum<T>> - Class in com.univocity.parsers.conversions
-
Converts Strings to enumeration constants and vice versa.
- EnumConversion(Class<T>) - Constructor for class com.univocity.parsers.conversions.EnumConversion
-
Defines a conversion for an enumeration type that will attempt to match Strings against the results of the output produced by (
Enum.name()
, (Enum.ordinal()
and (Enum.toString()
of each constant of the given enumeration (@linkClass.getEnumConstants()
). - EnumConversion(Class<T>, EnumSelector...) - Constructor for class com.univocity.parsers.conversions.EnumConversion
-
Defines a conversion for an enumeration type that will attempt to match Strings the list of
EnumSelector
s, in the specified order. - EnumConversion(Class<T>, String, EnumSelector...) - Constructor for class com.univocity.parsers.conversions.EnumConversion
-
Defines a conversion for an enumeration type that will attempt to match Strings the list of
EnumSelector
s, in the specified order. - EnumConversion(Class<T>, T, String, String, EnumSelector...) - Constructor for class com.univocity.parsers.conversions.EnumConversion
-
Defines a conversion for an enumeration type that will attempt to match Strings the list of
EnumSelector
s, in the specified order. - enumMap - Variable in class com.univocity.parsers.common.ColumnMap
- EnumOptions - Annotation Interface in com.univocity.parsers.annotations
-
The
EnumSelector
annotation is meant to be used in conjunction with enumeration attributes. - EnumSelector - Enum Class in com.univocity.parsers.conversions
-
Identifies a property of an enumeration that should be used by
EnumOptions
to identify an input value. - EnumSelector() - Constructor for enum class com.univocity.parsers.conversions.EnumSelector
- enumType - Variable in class com.univocity.parsers.conversions.EnumConversion
- EOFException - Exception in com.univocity.parsers.common.input
-
Internal exception marker to signalize the end of the input.
- EOFException() - Constructor for exception com.univocity.parsers.common.input.EOFException
-
Creates a new exception
- equals(Object) - Method in class com.univocity.parsers.annotations.helpers.FieldMapping
- equals(Object) - Method in class com.univocity.parsers.annotations.helpers.MethodDescriptor
- equals(Object) - Method in class com.univocity.parsers.common.NormalizedString
- equals(Object) - Method in class com.univocity.parsers.common.record.RecordImpl
- error - Variable in class com.univocity.parsers.common.input.concurrent.ConcurrentCharLoader
- errorContentLength - Variable in exception com.univocity.parsers.common.AbstractException
- errorContentLength - Variable in class com.univocity.parsers.common.AbstractParser
- errorContentLength - Variable in class com.univocity.parsers.common.AbstractWriter
- errorContentLength - Variable in class com.univocity.parsers.common.CommonSettings
- errorContentLength - Variable in class com.univocity.parsers.common.DefaultContext
- errorContentLength() - Method in interface com.univocity.parsers.common.Context
-
Returns the length limit of parsed contents appearing in exception messages when an error occurs
- errorContentLength() - Method in class com.univocity.parsers.common.ContextWrapper
- errorContentLength() - Method in class com.univocity.parsers.common.DefaultContext
- errorContentLength() - Method in class com.univocity.parsers.common.NoopParsingContext
- errorHandler - Variable in class com.univocity.parsers.common.AbstractParser
- errorHandler - Variable in class com.univocity.parsers.common.CommonSettings
- errorHandler - Variable in class com.univocity.parsers.common.DefaultConversionProcessor
- escapeChar - Variable in class com.univocity.parsers.csv.CsvWriter
- escapeChar - Variable in class com.univocity.parsers.tsv.TsvFormat
- escapeChar - Variable in class com.univocity.parsers.tsv.TsvParser
- escapeChar - Variable in class com.univocity.parsers.tsv.TsvWriter
- escapedTabChar - Variable in class com.univocity.parsers.tsv.TsvFormat
- escapedTabChar - Variable in class com.univocity.parsers.tsv.TsvParser
- escapedTabChar - Variable in class com.univocity.parsers.tsv.TsvWriter
- escapeEscape - Variable in class com.univocity.parsers.csv.CsvParser
- escapeEscape - Variable in class com.univocity.parsers.csv.CsvWriter
- escapeUnquoted - Variable in class com.univocity.parsers.csv.CsvWriter
- escapeUnquotedValues - Variable in class com.univocity.parsers.csv.CsvParserSettings
- escapeUnquotedValues - Variable in class com.univocity.parsers.csv.CsvWriterSettings
- exception - Variable in class com.univocity.parsers.common.input.BomInput
- ExcludeFieldEnumSelector - Class in com.univocity.parsers.common.fields
-
A FieldSelector capable of deselecting fields in a record.
- ExcludeFieldEnumSelector() - Constructor for class com.univocity.parsers.common.fields.ExcludeFieldEnumSelector
- ExcludeFieldIndexSelector - Class in com.univocity.parsers.common.fields
-
A FieldSelector capable of deselecting fields by their position in a record.
- ExcludeFieldIndexSelector() - Constructor for class com.univocity.parsers.common.fields.ExcludeFieldIndexSelector
- ExcludeFieldNameSelector - Class in com.univocity.parsers.common.fields
-
A FieldSelector capable of deselecting fields by their name in a record.
- ExcludeFieldNameSelector() - Constructor for class com.univocity.parsers.common.fields.ExcludeFieldNameSelector
- excludeFields(Enum...) - Method in class com.univocity.parsers.common.CommonSettings
-
Selects columns which will not be read/written, by their names
- excludeFields(String...) - Method in class com.univocity.parsers.common.CommonSettings
-
Selects fields which will not be read/written, by their names
- excludeIndexes(Integer...) - Method in class com.univocity.parsers.common.CommonSettings
-
Selects columns which will not be read/written, by their positions
- execute(char[], int) - Method in interface com.univocity.parsers.common.input.InputAnalysisProcess
-
A sequence of characters of the input buffer to be analyzed.
- execute(char[], int) - Method in class com.univocity.parsers.common.input.LineSeparatorDetector
- execute(char[], int) - Method in class com.univocity.parsers.csv.CsvFormatDetector
- execute(I) - Method in interface com.univocity.parsers.conversions.Conversion
-
Converts a value of type I to a value of type O.
- execute(I) - Method in class com.univocity.parsers.conversions.NullConversion
-
Converts the given instance of type I to an instance of O
- execute(Object) - Method in class com.univocity.parsers.conversions.FormattedDateConversion
- execute(Object) - Method in class com.univocity.parsers.conversions.NullStringConversion
-
Converts an Object to null.
- execute(Object) - Method in class com.univocity.parsers.conversions.ValidatedConversion
- execute(String) - Method in class com.univocity.parsers.conversions.LowerCaseConversion
-
Applies the toLowerCase operation in the input and returns the result.
- execute(String) - Method in class com.univocity.parsers.conversions.ObjectConversion
-
Converts the given String to an instance of T
- execute(String) - Method in class com.univocity.parsers.conversions.RegexConversion
-
Executes the regular expression provided in the constructor of this class against the input and replaces any matched content with the replacement String.
- execute(String) - Method in class com.univocity.parsers.conversions.TrimConversion
-
Removes leading and trailing white spaces from the input and returns the result.
- execute(String) - Method in class com.univocity.parsers.conversions.UpperCaseConversion
-
Applies the toUpperCase operation in the input and returns the result.
- executeValidations(int, Object) - Method in class com.univocity.parsers.common.fields.FieldConversionMapping
-
Applies any validations associated with a field at a given index in a record
- executor - Variable in class com.univocity.parsers.common.processor.core.AbstractConcurrentProcessor
- expand() - Method in class com.univocity.parsers.common.input.ExpandingCharAppender
- expand(int) - Method in class com.univocity.parsers.common.input.ExpandingCharAppender
- expand(int, double) - Method in class com.univocity.parsers.common.input.ExpandingCharAppender
- expand(Object[], int, Integer) - Method in class com.univocity.parsers.common.AbstractWriter
- expandAndRetry() - Method in class com.univocity.parsers.common.input.ExpandingCharAppender
- expandIncompleteRows - Variable in class com.univocity.parsers.common.CommonWriterSettings
- ExpandingCharAppender - Class in com.univocity.parsers.common.input
-
An implementation
CharAppender
that expands the internal buffer of characters as required. - ExpandingCharAppender(int, String, int) - Constructor for class com.univocity.parsers.common.input.ExpandingCharAppender
-
Creates an
ExpandingCharAppender
a the default value to return when no characters have been accumulated. - ExpandingCharAppender(String, int) - Constructor for class com.univocity.parsers.common.input.ExpandingCharAppender
-
Creates an
ExpandingCharAppender
a the default value to return when no characters have been accumulated. - expandRows - Variable in class com.univocity.parsers.common.AbstractWriter
- expectedBeanCount - Variable in class com.univocity.parsers.common.processor.core.AbstractBeanListProcessor
- expectedBeanCount - Variable in class com.univocity.parsers.common.processor.core.AbstractMultiBeanListProcessor
- expectedRowCount - Variable in class com.univocity.parsers.common.processor.core.AbstractListProcessor
- expectedRowCount - Variable in class com.univocity.parsers.common.processor.core.AbstractObjectListProcessor
- expectedRowCount - Variable in class com.univocity.parsers.common.processor.core.ColumnSplitter
- expression() - Element in annotation interface com.univocity.parsers.annotations.Replace
-
The regular expression to be executed against the String value of the annotated field
- extract() - Element in annotation interface com.univocity.parsers.annotations.Headers
-
Indicates whether the first row of on the input should be extracted as a header row.
- extractedFieldIndexes() - Method in interface com.univocity.parsers.common.Context
-
Returns the indexes of each field extracted from the input when fields are selected.
- extractedFieldIndexes() - Method in class com.univocity.parsers.common.ContextWrapper
- extractedFieldIndexes() - Method in class com.univocity.parsers.common.DefaultContext
- extractedFieldIndexes() - Method in class com.univocity.parsers.common.NoopParsingContext
- extractedFieldIndexes() - Method in interface com.univocity.parsers.common.ParsingContext
-
Returns the indexes of each field extracted from the input when fields are selected in the parser settings (i.e.
- extractedIndexes - Variable in class com.univocity.parsers.common.ColumnMap
- extractedIndexes - Variable in exception com.univocity.parsers.common.TextParsingException
- extractHeaders - Variable in class com.univocity.parsers.common.AbstractParser
- extractHeadersIfRequired() - Method in class com.univocity.parsers.common.AbstractParser
- extractingHeaders - Variable in class com.univocity.parsers.common.AbstractParser
- extractLocale(String[]) - Static method in class com.univocity.parsers.annotations.helpers.AnnotationHelper
- extractOption(String[], String) - Static method in class com.univocity.parsers.annotations.helpers.AnnotationHelper
- extractPrefixes(Set<String>) - Method in class com.univocity.parsers.common.fields.AbstractColumnMapping
-
Returns all prefixes used by the keys in this mapping.
- extractTimeZone(String[]) - Static method in class com.univocity.parsers.annotations.helpers.AnnotationHelper
F
- falseStrings() - Element in annotation interface com.univocity.parsers.annotations.BooleanString
-
A set of Strings that represent the boolean value
false
(e.g. - falseValues - Variable in class com.univocity.parsers.conversions.BooleanConversion
- fatal - Variable in exception com.univocity.parsers.common.DataProcessingException
- field - Variable in class com.univocity.parsers.annotations.helpers.TransformedHeader
- field() - Element in annotation interface com.univocity.parsers.annotations.Parsed
-
The possible field names of a record.
- fieldAlignment - Variable in class com.univocity.parsers.fixed.FixedWidthFields
- FieldAlignment - Enum Class in com.univocity.parsers.fixed
-
Alignment of text in a fixed-width field.
- FieldAlignment() - Constructor for enum class com.univocity.parsers.fixed.FieldAlignment
- fieldAlignments - Variable in class com.univocity.parsers.fixed.FixedWidthWriter
- FieldAnnotations() - Constructor for class com.univocity.parsers.annotations.helpers.AnnotationRegistry.FieldAnnotations
- fieldContentOnError() - Method in class com.univocity.parsers.common.DefaultParsingContext
- fieldContentOnError() - Method in class com.univocity.parsers.common.NoopParsingContext
- fieldContentOnError() - Method in interface com.univocity.parsers.common.ParsingContext
-
Returns a String with the input character sequence accumulated on a field before
TextParsingException
occurred. - fieldContentOnError() - Method in class com.univocity.parsers.common.ParsingContextWrapper
- FieldConversionMapping - Class in com.univocity.parsers.common.fields
-
A class for mapping field selections to sequences of
Conversion
objects - FieldConversionMapping() - Constructor for class com.univocity.parsers.common.fields.FieldConversionMapping
- fieldEnumConversionMapping - Variable in class com.univocity.parsers.common.fields.FieldConversionMapping
- FieldEnumSelector - Class in com.univocity.parsers.common.fields
-
A FieldSelector capable of selecting fields represented by values of an enumeration type.
- FieldEnumSelector() - Constructor for class com.univocity.parsers.common.fields.FieldEnumSelector
- fieldIndexConversionMapping - Variable in class com.univocity.parsers.common.fields.FieldConversionMapping
- fieldIndexes - Variable in class com.univocity.parsers.common.DefaultConversionProcessor
- FieldIndexSelector - Class in com.univocity.parsers.common.fields
-
A FieldSelector capable of selecting fields by their position in a record.
- FieldIndexSelector() - Constructor for class com.univocity.parsers.common.fields.FieldIndexSelector
- fieldLengths - Variable in class com.univocity.parsers.fixed.FixedWidthFields
- fieldLengths - Variable in class com.univocity.parsers.fixed.FixedWidthParserSettings
- fieldLengths - Variable in class com.univocity.parsers.fixed.FixedWidthWriter
- fieldLengths - Variable in class com.univocity.parsers.fixed.FixedWidthWriterSettings
- FieldMapping - Class in com.univocity.parsers.annotations.helpers
-
A helper class with information about the location of an field annotated with
Parsed
in a record. - FieldMapping(Class<?>, AnnotatedElement, PropertyWrapper, HeaderTransformer, NormalizedString[]) - Constructor for class com.univocity.parsers.annotations.helpers.FieldMapping
-
Creates the mapping and identifies how it is mapped (by name or by index)
- fieldName - Variable in class com.univocity.parsers.annotations.helpers.FieldMapping
- fieldNameConversionMapping - Variable in class com.univocity.parsers.common.fields.FieldConversionMapping
- fieldNames - Variable in class com.univocity.parsers.fixed.FixedWidthFields
- fieldNames - Variable in class com.univocity.parsers.fixed.Lookup
- FieldNameSelector - Class in com.univocity.parsers.common.fields
-
A FieldSelector capable of selecting fields by their name.
- FieldNameSelector() - Constructor for class com.univocity.parsers.common.fields.FieldNameSelector
- fieldPadding - Variable in class com.univocity.parsers.fixed.FixedWidthFields
- fieldPaddings - Variable in class com.univocity.parsers.fixed.FixedWidthWriter
- fields - Variable in class com.univocity.parsers.common.fields.FieldSet
- fieldSelector - Variable in class com.univocity.parsers.common.CommonSettings
- FieldSelector - Interface in com.univocity.parsers.common.fields
-
Interface used to identify classes capable of selecting fields and returning their positions in a given sequence.
- FieldSet<T> - Class in com.univocity.parsers.common.fields
-
A set of selected fields.
- FieldSet() - Constructor for class com.univocity.parsers.common.fields.FieldSet
-
Creates am empty field set.
- FieldSet(List<FieldSet<T>>) - Constructor for class com.univocity.parsers.common.fields.FieldSet
-
Creates a field set that wraps a collection of other field sets.
- fieldsReordered - Variable in class com.univocity.parsers.common.DefaultConversionProcessor
- fieldsToIgnore - Variable in class com.univocity.parsers.fixed.FixedWidthFields
- fieldType - Variable in class com.univocity.parsers.annotations.helpers.FieldMapping
- fill(char, int) - Method in interface com.univocity.parsers.common.input.CharAppender
-
Adds a sequence of repeated characters to the input.
- fill(char, int) - Method in class com.univocity.parsers.common.input.DefaultCharAppender
- fill(char, int) - Method in class com.univocity.parsers.common.input.ExpandingCharAppender
- fill(char, int) - Method in class com.univocity.parsers.common.input.NoopCharAppender
-
Does nothing
- fill(Reader) - Method in class com.univocity.parsers.common.input.concurrent.CharBucket
-
Fills the bucket with the characters take from a
Reader
- fillEnumMap(Map<T, String>, T...) - Method in interface com.univocity.parsers.common.record.Record
-
Fills a map with the
String
values of this record. - fillEnumMap(Map<T, String>, T...) - Method in class com.univocity.parsers.common.record.RecordImpl
- fillEnumObjectMap(Map<T, Object>, T...) - Method in interface com.univocity.parsers.common.record.Record
-
Fills a map with the converted
Object
values of this record. - fillEnumObjectMap(Map<T, Object>, T...) - Method in class com.univocity.parsers.common.record.RecordImpl
- fillFieldMap(Map<String, String>, String...) - Method in interface com.univocity.parsers.common.record.Record
-
Fills a map with the
String
values of this record. - fillFieldMap(Map<String, String>, String...) - Method in class com.univocity.parsers.common.record.RecordImpl
- fillFieldObjectMap(Map<String, Object>, String...) - Method in interface com.univocity.parsers.common.record.Record
-
Fills a map with the converted
Object
values of this record. - fillFieldObjectMap(Map<String, Object>, String...) - Method in class com.univocity.parsers.common.record.RecordImpl
- fillIndexMap(Map<Integer, String>, int...) - Method in interface com.univocity.parsers.common.record.Record
-
Fills a map with the
String
values of this record. - fillIndexMap(Map<Integer, String>, int...) - Method in class com.univocity.parsers.common.record.RecordImpl
- fillIndexObjectMap(Map<Integer, Object>, int...) - Method in interface com.univocity.parsers.common.record.Record
-
Fills a map with the converted
Object
values of this record. - fillIndexObjectMap(Map<Integer, Object>, int...) - Method in class com.univocity.parsers.common.record.RecordImpl
- fillInStackTrace() - Method in exception com.univocity.parsers.common.input.BomInput.BytesProcessedNotification
- fillInStackTrace() - Method in exception com.univocity.parsers.common.input.EOFException
- fillOutputRow(T[]) - Method in class com.univocity.parsers.common.AbstractWriter
-
Used when fields were selected and the input rows have a different order than the output.
- fillPartialLineToMatchHeaders() - Method in class com.univocity.parsers.common.AbstractWriter
- filter - Variable in enum class com.univocity.parsers.annotations.helpers.MethodFilter
- findAllAnnotationsInPackage(AnnotatedElement, Package) - Static method in class com.univocity.parsers.annotations.helpers.AnnotationHelper
-
Returns all annotations applied to an element, excluding the ones not in a given package.
- findAllAnnotationsInPackage(AnnotatedElement, Package, ArrayList<? super Annotation>, Set<Annotation>) - Static method in class com.univocity.parsers.annotations.helpers.AnnotationHelper
- findAnnotation(AnnotatedElement, Class<A>) - Static method in class com.univocity.parsers.annotations.helpers.AnnotationHelper
-
Searches for an annotation of a given type that's been applied to an element either directly (as a regular annotation) or indirectly (as a meta-annotations, i.e.
- findAnnotation(AnnotatedElement, Class<A>, Set<Annotation>, Stack<Annotation>) - Static method in class com.univocity.parsers.annotations.helpers.AnnotationHelper
- findAnnotationInClass(Class<?>, Class<T>) - Static method in class com.univocity.parsers.annotations.helpers.AnnotationHelper
-
Searches for a given annotation in the hierarchy of a class
- findAnnotationMethodType(Class<? extends Annotation>, String) - Static method in class com.univocity.parsers.annotations.helpers.AnnotationHelper
- findDuplicates(T[]) - Static method in class com.univocity.parsers.common.ArgumentUtils
-
Identifies duplicate values in a given array and returns them
- findHeadersAnnotation(Class<?>) - Static method in class com.univocity.parsers.annotations.helpers.AnnotationHelper
-
Searches for the
Headers
annotation in the hierarchy of a class - findIntrospectorImplementationClass() - Static method in class com.univocity.parsers.common.beans.BeanHelper
- findKey(String) - Method in class com.univocity.parsers.common.fields.AbstractColumnMapping
-
Locates a given key based on an attribute or method name.
- findKey(String) - Method in class com.univocity.parsers.common.fields.ColumnMapping.MethodMapping
- findKey(String) - Method in class com.univocity.parsers.common.fields.ColumnMapping.NameMapping
- findMissingElements(Object[], Object[]) - Static method in class com.univocity.parsers.common.ArgumentUtils
-
Searches for elements in a given array and returns the elements not found.
- findMissingElements(Object[], Collection<?>) - Static method in class com.univocity.parsers.common.ArgumentUtils
-
Searches for elements in a given array and returns the elements not found.
- finished - Variable in class com.univocity.parsers.common.input.concurrent.ConcurrentCharLoader
- FixedInstancePool<T> - Class in com.univocity.parsers.common.input.concurrent
-
A very simple object instance pool with a fixed size.
- FixedInstancePool(int) - Constructor for class com.univocity.parsers.common.input.concurrent.FixedInstancePool
-
Creates a new instance pool with the given size.
- FixedWidth - Annotation Interface in com.univocity.parsers.annotations
-
The
@FixedWidth
annotation, along with theParsed
annotation, allows users to configure the length, alignment and padding of fields parsed/written using theFixedWidthParser
andFixedWidthWriter
- FixedWidthFieldLengths - Class in com.univocity.parsers.fixed
-
Deprecated.This class has been modified over time and its name became misleading. Use
FixedWidthFields
instead. - FixedWidthFieldLengths(int...) - Constructor for class com.univocity.parsers.fixed.FixedWidthFieldLengths
-
Deprecated.Creates a new instance initialized with the lengths of all fields in a fixed-width record.
- FixedWidthFieldLengths(String[], int[]) - Constructor for class com.univocity.parsers.fixed.FixedWidthFieldLengths
-
Deprecated.Defines a sequence of field names used to refer to columns in the input/output text of an entity, along with their lengths.
- FixedWidthFieldLengths(LinkedHashMap<String, Integer>) - Constructor for class com.univocity.parsers.fixed.FixedWidthFieldLengths
-
Deprecated.Defines a sequence of field names used to refer to columns in the input/output text of an entity, along with their lengths.
- FixedWidthFields - Class in com.univocity.parsers.fixed
-
This class provides the name, length, alignment and padding of each field in a fixed-width record.
- FixedWidthFields(int...) - Constructor for class com.univocity.parsers.fixed.FixedWidthFields
-
Creates a new instance initialized with the lengths of all fields in a fixed-width record.
- FixedWidthFields(Class) - Constructor for class com.univocity.parsers.fixed.FixedWidthFields
-
Deprecated.use
FixedWidthFields.forParsing(Class)
andFixedWidthFields.forWriting(Class)
to initialize the fields from the given class and filter out getters and setters that target the same field. If the given class has any annotated methods only the setters will be used, making it usable only for parsing. - FixedWidthFields(Class, MethodFilter) - Constructor for class com.univocity.parsers.fixed.FixedWidthFields
-
Creates a new instance initialized from
FixedWidth
annotations in the fields of a given class. - FixedWidthFields(String[], int[]) - Constructor for class com.univocity.parsers.fixed.FixedWidthFields
-
Defines a sequence of field names used to refer to columns in the input/output text of an entity, along with their lengths.
- FixedWidthFields(LinkedHashMap<String, Integer>) - Constructor for class com.univocity.parsers.fixed.FixedWidthFields
-
Defines a sequence of field names used to refer to columns in the input/output text of an entity, along with their lengths.
- FixedWidthFormat - Class in com.univocity.parsers.fixed
-
The Fixed-Width format configuration.
- FixedWidthFormat() - Constructor for class com.univocity.parsers.fixed.FixedWidthFormat
- FixedWidthParser - Class in com.univocity.parsers.fixed
-
A fast and flexible fixed-with parser implementation.
- FixedWidthParser(FixedWidthParserSettings) - Constructor for class com.univocity.parsers.fixed.FixedWidthParser
-
The FixedWidthParser supports all settings provided by
FixedWidthParserSettings
, and requires this configuration to be properly initialized. - FixedWidthParserSettings - Class in com.univocity.parsers.fixed
-
This is the configuration class used by the Fixed-Width parser (
FixedWidthParser
) - FixedWidthParserSettings() - Constructor for class com.univocity.parsers.fixed.FixedWidthParserSettings
-
Creates a basic configuration object for the Fixed-Width parser with no field length configuration.
- FixedWidthParserSettings(FixedWidthFields) - Constructor for class com.univocity.parsers.fixed.FixedWidthParserSettings
-
You can only create an instance of this class by providing a definition of the field lengths of each record in the input.
- FixedWidthRoutines - Class in com.univocity.parsers.fixed
-
A collection of common routines involving the processing of Fixed-Width data.
- FixedWidthRoutines() - Constructor for class com.univocity.parsers.fixed.FixedWidthRoutines
-
Creates a new instance of the Fixed-width routine class without any predefined parsing/writing configuration.
- FixedWidthRoutines(FixedWidthParserSettings) - Constructor for class com.univocity.parsers.fixed.FixedWidthRoutines
-
Creates a new instance of the Fixed-width routine class.
- FixedWidthRoutines(FixedWidthParserSettings, FixedWidthWriterSettings) - Constructor for class com.univocity.parsers.fixed.FixedWidthRoutines
-
Creates a new instance of the Fixed-width routine class.
- FixedWidthRoutines(FixedWidthWriterSettings) - Constructor for class com.univocity.parsers.fixed.FixedWidthRoutines
-
Creates a new instance of the Fixed-width routine class.
- FixedWidthWriter - Class in com.univocity.parsers.fixed
-
A fast and flexible fixed-with writer implementation.
- FixedWidthWriter(FixedWidthWriterSettings) - Constructor for class com.univocity.parsers.fixed.FixedWidthWriter
-
The FixedWidthWriter supports all settings provided by
FixedWidthWriterSettings
, and requires this configuration to be properly initialized. - FixedWidthWriter(File, FixedWidthWriterSettings) - Constructor for class com.univocity.parsers.fixed.FixedWidthWriter
-
The FixedWidthWriter supports all settings provided by
FixedWidthWriterSettings
, and requires this configuration to be properly initialized. - FixedWidthWriter(File, String, FixedWidthWriterSettings) - Constructor for class com.univocity.parsers.fixed.FixedWidthWriter
-
The FixedWidthWriter supports all settings provided by
FixedWidthWriterSettings
, and requires this configuration to be properly initialized. - FixedWidthWriter(File, Charset, FixedWidthWriterSettings) - Constructor for class com.univocity.parsers.fixed.FixedWidthWriter
-
The FixedWidthWriter supports all settings provided by
FixedWidthWriterSettings
, and requires this configuration to be properly initialized. - FixedWidthWriter(OutputStream, FixedWidthWriterSettings) - Constructor for class com.univocity.parsers.fixed.FixedWidthWriter
-
The FixedWidthWriter supports all settings provided by
FixedWidthWriterSettings
, and requires this configuration to be properly initialized. - FixedWidthWriter(OutputStream, String, FixedWidthWriterSettings) - Constructor for class com.univocity.parsers.fixed.FixedWidthWriter
-
The FixedWidthWriter supports all settings provided by
FixedWidthWriterSettings
, and requires this configuration to be properly initialized. - FixedWidthWriter(OutputStream, Charset, FixedWidthWriterSettings) - Constructor for class com.univocity.parsers.fixed.FixedWidthWriter
-
The FixedWidthWriter supports all settings provided by
FixedWidthWriterSettings
, and requires this configuration to be properly initialized. - FixedWidthWriter(Writer, FixedWidthWriterSettings) - Constructor for class com.univocity.parsers.fixed.FixedWidthWriter
-
The FixedWidthWriter supports all settings provided by
FixedWidthWriterSettings
, and requires this configuration to be properly initialized. - FixedWidthWriterSettings - Class in com.univocity.parsers.fixed
-
This is the configuration class used by the Fixed-Width writer (
FixedWidthWriter
) - FixedWidthWriterSettings() - Constructor for class com.univocity.parsers.fixed.FixedWidthWriterSettings
-
Creates a basic configuration object for the Fixed-Width writer with no field length configuration.
- FixedWidthWriterSettings(FixedWidthFields) - Constructor for class com.univocity.parsers.fixed.FixedWidthWriterSettings
-
You can only create an instance of this class by providing a definition of the field lengths of each record in the input.
- FloatConversion - Class in com.univocity.parsers.conversions
-
Converts Strings to Floats and vice versa
- FloatConversion() - Constructor for class com.univocity.parsers.conversions.FloatConversion
-
Creates a Conversion from String to Float with default values to return when the input is null.
- FloatConversion(Float, String) - Constructor for class com.univocity.parsers.conversions.FloatConversion
-
Creates a Conversion from String to Float with default values to return when the input is null.
- flush() - Method in class com.univocity.parsers.common.AbstractWriter
-
Flushes the
Writer
given in this class constructor. - format - Variable in class com.univocity.parsers.common.CommonSettings
- Format - Class in com.univocity.parsers.common
-
This is the parent class for all configuration classes that define a text format.
- Format - Annotation Interface in com.univocity.parsers.annotations
-
Indicates that a parsed value is formatted and must be parsed before being assigned.
- Format() - Constructor for class com.univocity.parsers.common.Format
- formatDetectorRowSampleCount - Variable in class com.univocity.parsers.csv.CsvParser
- formatDetectorRowSampleCount - Variable in class com.univocity.parsers.csv.CsvParserSettings
- formats - Variable in class com.univocity.parsers.conversions.DateConversion
- formats - Variable in class com.univocity.parsers.conversions.NumericConversion
- formats() - Element in annotation interface com.univocity.parsers.annotations.Format
-
Formats that define how a value can be formatted.
- FormattedBigDecimalConversion - Class in com.univocity.parsers.conversions
-
Converts formatted Strings to instances of
BigDecimal
and vice versa. - FormattedBigDecimalConversion() - Constructor for class com.univocity.parsers.conversions.FormattedBigDecimalConversion
-
Defines a conversion from String to
BigDecimal
using a sequence of acceptable numeric patterns. - FormattedBigDecimalConversion(String...) - Constructor for class com.univocity.parsers.conversions.FormattedBigDecimalConversion
-
Defines a conversion from String to
BigDecimal
using a sequence of acceptable numeric patterns. - FormattedBigDecimalConversion(BigDecimal, String) - Constructor for class com.univocity.parsers.conversions.FormattedBigDecimalConversion
-
Defines a conversion from String to
BigDecimal
using a sequence of acceptable numeric patterns. - FormattedBigDecimalConversion(BigDecimal, String, String...) - Constructor for class com.univocity.parsers.conversions.FormattedBigDecimalConversion
-
Defines a conversion from String to
BigDecimal
using a sequence of acceptable numeric patterns. - FormattedBigDecimalConversion(DecimalFormat...) - Constructor for class com.univocity.parsers.conversions.FormattedBigDecimalConversion
-
Defines a conversion from String to
BigDecimal
using a sequence of acceptable numeric patterns. - FormattedConversion<T> - Interface in com.univocity.parsers.conversions
-
This interface identifies conversions associated with the
Format
annotation. - FormattedDateConversion - Class in com.univocity.parsers.conversions
-
Converts objects of different date types (
java.util.Date
andjava.util.Calendar
) to a formatted dateString
. - FormattedDateConversion(String, Locale, String) - Constructor for class com.univocity.parsers.conversions.FormattedDateConversion
- formatters - Variable in class com.univocity.parsers.conversions.NumericConversion
- formatToBigDecimal(String...) - Static method in class com.univocity.parsers.conversions.Conversions
-
Returns a new instance of
FormattedBigDecimalConversion
- formatToBigDecimal(BigDecimal, String...) - Static method in class com.univocity.parsers.conversions.Conversions
-
Returns a new instance of
FormattedBigDecimalConversion
- formatToBigDecimal(BigDecimal, String, String...) - Static method in class com.univocity.parsers.conversions.Conversions
-
Returns a new instance of
FormattedBigDecimalConversion
- formatToNumber(Class<T>, String...) - Static method in class com.univocity.parsers.conversions.Conversions
-
Returns a new instance of
NumericConversion
- formatToNumber(String...) - Static method in class com.univocity.parsers.conversions.Conversions
-
Returns a new instance of
NumericConversion
- forParsing(Class) - Static method in class com.univocity.parsers.fixed.FixedWidthFields
-
Creates a new instance initialized from
FixedWidth
annotations in the fields and methods of a given class. - forWriting(Class) - Static method in class com.univocity.parsers.fixed.FixedWidthFields
-
Creates a new instance initialized from
FixedWidth
annotations in the fields and methods of a given class. - from() - Element in annotation interface com.univocity.parsers.annotations.FixedWidth
-
Defines the starting position of the fixed-width field
- fromInput(I) - Method in class com.univocity.parsers.conversions.NullConversion
-
Creates an instance of O from a I object
- fromInput(Object) - Method in class com.univocity.parsers.conversions.ToStringConversion
- fromInput(String) - Method in class com.univocity.parsers.conversions.ObjectConversion
-
Creates an instance of T from a String representation.
- fromString(String) - Method in class com.univocity.parsers.conversions.BigDecimalConversion
-
Converts a String to BigDecimal.
- fromString(String) - Method in class com.univocity.parsers.conversions.BigIntegerConversion
-
Converts a String to BigInteger.
- fromString(String) - Method in class com.univocity.parsers.conversions.BooleanConversion
-
Converts a String to a Boolean
- fromString(String) - Method in class com.univocity.parsers.conversions.ByteConversion
-
Converts a String to Byte.
- fromString(String) - Method in class com.univocity.parsers.conversions.CalendarConversion
-
Converts a formatted date String to an instance of Calendar.
- fromString(String) - Method in class com.univocity.parsers.conversions.CharacterConversion
-
Converts a String to a Character.
- fromString(String) - Method in class com.univocity.parsers.conversions.DateConversion
-
Converts a formatted date String to an instance of Date.
- fromString(String) - Method in class com.univocity.parsers.conversions.DoubleConversion
-
Converts a String to Double.
- fromString(String) - Method in class com.univocity.parsers.conversions.EnumConversion
- fromString(String) - Method in class com.univocity.parsers.conversions.FloatConversion
-
Converts a String to Float.
- fromString(String) - Method in class com.univocity.parsers.conversions.IntegerConversion
-
Converts a String to Integer.
- fromString(String) - Method in class com.univocity.parsers.conversions.LongConversion
-
Converts a String to Long.
- fromString(String) - Method in class com.univocity.parsers.conversions.NumericConversion
-
Converts a formatted numeric String to an instance of Number.
- fromString(String) - Method in class com.univocity.parsers.conversions.ObjectConversion
-
Creates an instance of T from a String representation.
- fromString(String) - Method in class com.univocity.parsers.conversions.ShortConversion
-
Converts a String to Short.
G
- generateString() - Method in class com.univocity.parsers.annotations.helpers.MethodDescriptor
- get() - Method in class com.univocity.parsers.common.fields.FieldSet
-
Returns a copy of the fields in this set
- get() - Method in class com.univocity.parsers.common.input.concurrent.Entry
-
Returns the object stored in this
FixedInstancePool
entry. - get(String) - Method in class com.univocity.parsers.common.StringCache
-
Returns the value associated with the given string.
- getAlignment(int) - Method in class com.univocity.parsers.fixed.FixedWidthFields
-
Returns the alignment of a given field.
- getAlignment(String) - Method in class com.univocity.parsers.fixed.FixedWidthFields
-
Returns the alignment of a given field.
- getAllFields(Class<?>) - Static method in class com.univocity.parsers.annotations.helpers.AnnotationHelper
-
Returns all fields available from a given class.
- getAllLengths() - Method in class com.univocity.parsers.fixed.FixedWidthFields
- getAllLengths() - Method in class com.univocity.parsers.fixed.FixedWidthParserSettings
- getAllLengths() - Method in class com.univocity.parsers.fixed.FixedWidthWriterSettings
-
Returns the sequence of field lengths to be written to form a record.
- getAllMethods(Class<?>, MethodFilter) - Static method in class com.univocity.parsers.annotations.helpers.AnnotationHelper
-
Returns all methods available from a given class
- getAndReset() - Method in interface com.univocity.parsers.common.input.CharAppender
-
Returns the accumulated value as a String, discarding any trailing whitespace characters identified when using
CharAppender.appendIgnoringWhitespace(char)
,CharAppender.appendIgnoringPadding(char, char)
orCharAppender.appendIgnoringWhitespaceAndPadding(char, char)
- getAndReset() - Method in class com.univocity.parsers.common.input.DefaultCharAppender
-
Returns the accumulated value as a String, discarding any trailing whitespace characters identified when using
DefaultCharAppender.appendIgnoringWhitespace(char)
,DefaultCharAppender.appendIgnoringPadding(char, char)
orDefaultCharAppender.appendIgnoringWhitespaceAndPadding(char, char)
- getAndReset() - Method in class com.univocity.parsers.common.input.ElasticCharAppender
- getAndReset() - Method in class com.univocity.parsers.common.input.NoopCharAppender
-
Returns null as this appender does nothing.
- getAnnotatedFields(Class<?>) - Static method in class com.univocity.parsers.annotations.helpers.AnnotationHelper
-
Returns all attributes available from a given class that have an annotation.
- getAnnotatedFields(Class<?>, Class<A>) - Static method in class com.univocity.parsers.annotations.helpers.AnnotationHelper
-
Returns all attributes available from a given class that have an annotation.
- getAnnotatedMethods(Class<?>, MethodFilter) - Static method in class com.univocity.parsers.annotations.helpers.AnnotationHelper
-
Returns all methods available from a given class that have an annotation.
- getAnnotatedMethods(Class<?>, MethodFilter, Class<A>) - Static method in class com.univocity.parsers.annotations.helpers.AnnotationHelper
-
Returns all methods available from a given class that have a specific annotation.
- getAttribute(String) - Method in class com.univocity.parsers.annotations.helpers.AnnotationRegistry.AnnotationAttributes
- getBatchesProcessed() - Method in class com.univocity.parsers.common.processor.core.AbstractBatchedColumnProcessor
- getBatchesProcessed() - Method in class com.univocity.parsers.common.processor.core.AbstractBatchedObjectColumnProcessor
- getBatchesProcessed() - Method in interface com.univocity.parsers.common.processor.core.BatchedColumnReader
-
Returns the number of batches already processed
- getBeanClass() - Method in class com.univocity.parsers.common.processor.core.BeanConversionProcessor
-
Returns the class of the annotated java bean instances that will be manipulated by this processor.
- getBeanClasses() - Method in class com.univocity.parsers.common.processor.core.AbstractMultiBeanProcessor
- getBeanInfoMethod() - Static method in class com.univocity.parsers.common.beans.BeanHelper
- getBeans() - Method in class com.univocity.parsers.common.processor.core.AbstractBeanListProcessor
-
Returns the list of generated java beans at the end of the parsing process.
- getBeans() - Method in class com.univocity.parsers.common.processor.core.AbstractMultiBeanListProcessor
-
Returns a map of all beans processed from the input.
- getBeans(Class<T>) - Method in class com.univocity.parsers.common.processor.core.AbstractMultiBeanListProcessor
-
Returns the beans of a given type processed from the input.
- getBigDecimal(int) - Method in interface com.univocity.parsers.common.record.Record
-
Converts the
String
value in the given column to aBigDecimal
and returns the result. - getBigDecimal(int) - Method in class com.univocity.parsers.common.record.RecordImpl
- getBigDecimal(int, String, String...) - Method in interface com.univocity.parsers.common.record.Record
-
Converts the
String
value in the given column to aBigDecimal
and returns the result. - getBigDecimal(int, String, String...) - Method in class com.univocity.parsers.common.record.RecordImpl
- getBigDecimal(Enum<?>) - Method in interface com.univocity.parsers.common.record.Record
-
Converts the
String
value in the given column to aBigDecimal
and returns the result. - getBigDecimal(Enum<?>) - Method in class com.univocity.parsers.common.record.RecordImpl
- getBigDecimal(Enum<?>, String, String...) - Method in interface com.univocity.parsers.common.record.Record
-
Converts the
String
value in the given column to aBigDecimal
and returns the result. - getBigDecimal(Enum<?>, String, String...) - Method in class com.univocity.parsers.common.record.RecordImpl
- getBigDecimal(String) - Method in interface com.univocity.parsers.common.record.Record
-
Converts the
String
value in the given column to aBigDecimal
and returns the result. - getBigDecimal(String) - Method in class com.univocity.parsers.common.record.RecordImpl
- getBigDecimal(String, String, String...) - Method in interface com.univocity.parsers.common.record.Record
-
Converts the
String
value in the given column to aBigDecimal
and returns the result. - getBigDecimal(String, String, String...) - Method in class com.univocity.parsers.common.record.RecordImpl
- getBigInteger(int) - Method in interface com.univocity.parsers.common.record.Record
-
Converts the
String
value in the given column to aBigInteger
and returns the result. - getBigInteger(int) - Method in class com.univocity.parsers.common.record.RecordImpl
- getBigInteger(int, String, String...) - Method in interface com.univocity.parsers.common.record.Record
-
Converts the
String
value in the given column to aBigInteger
and returns the result. - getBigInteger(int, String, String...) - Method in class com.univocity.parsers.common.record.RecordImpl
- getBigInteger(Enum<?>) - Method in interface com.univocity.parsers.common.record.Record
-
Converts the
String
value in the given column to aBigInteger
and returns the result. - getBigInteger(Enum<?>) - Method in class com.univocity.parsers.common.record.RecordImpl
- getBigInteger(Enum<?>, String, String...) - Method in interface com.univocity.parsers.common.record.Record
-
Converts the
String
value in the given column to aBigInteger
and returns the result. - getBigInteger(Enum<?>, String, String...) - Method in class com.univocity.parsers.common.record.RecordImpl
- getBigInteger(String) - Method in interface com.univocity.parsers.common.record.Record
-
Converts the
String
value in the given column to aBigInteger
and returns the result. - getBigInteger(String) - Method in class com.univocity.parsers.common.record.RecordImpl
- getBigInteger(String, String, String...) - Method in interface com.univocity.parsers.common.record.Record
-
Converts the
String
value in the given column to aBigInteger
and returns the result. - getBigInteger(String, String, String...) - Method in class com.univocity.parsers.common.record.RecordImpl
- getBoolean(int) - Method in interface com.univocity.parsers.common.record.Record
-
Converts the
String
value in the given column to aBoolean
and returns the result. - getBoolean(int) - Method in class com.univocity.parsers.common.record.RecordImpl
- getBoolean(int, String, String) - Method in interface com.univocity.parsers.common.record.Record
-
Converts the
String
value in the given column to aBoolean
and returns the result. - getBoolean(int, String, String) - Method in class com.univocity.parsers.common.record.RecordImpl
- getBoolean(Enum<?>) - Method in interface com.univocity.parsers.common.record.Record
-
Converts the
String
value in the given column to aBoolean
and returns the result. - getBoolean(Enum<?>) - Method in class com.univocity.parsers.common.record.RecordImpl
- getBoolean(Enum<?>, String, String) - Method in interface com.univocity.parsers.common.record.Record
-
Converts the
String
value in the given column to aBoolean
and returns the result. - getBoolean(Enum<?>, String, String) - Method in class com.univocity.parsers.common.record.RecordImpl
- getBoolean(String) - Method in interface com.univocity.parsers.common.record.Record
-
Converts the
String
value in the given column to aBoolean
and returns the result. - getBoolean(String) - Method in class com.univocity.parsers.common.record.RecordImpl
- getBoolean(String, String[], String[]) - Static method in class com.univocity.parsers.conversions.BooleanConversion
-
Returns the
Boolean
value represented by aString
, as defined by sets of Strings that representtrue
andfalse
values. - getBoolean(String, String, String) - Method in interface com.univocity.parsers.common.record.Record
-
Converts the
String
value in the given column to aBoolean
and returns the result. - getBoolean(String, String, String) - Method in class com.univocity.parsers.common.record.RecordImpl
- getBoolean(String, Set<String>, Set<String>) - Static method in class com.univocity.parsers.conversions.BooleanConversion
- getByte(int) - Method in interface com.univocity.parsers.common.record.Record
-
Converts the
String
value in the given column to aByte
and returns the result. - getByte(int) - Method in class com.univocity.parsers.common.record.RecordImpl
- getByte(int, String, String...) - Method in interface com.univocity.parsers.common.record.Record
-
Converts the
String
value in the given column to aByte
and returns the result. - getByte(int, String, String...) - Method in class com.univocity.parsers.common.record.RecordImpl
- getByte(Enum<?>) - Method in interface com.univocity.parsers.common.record.Record
-
Converts the
String
value in the given column to aByte
and returns the result. - getByte(Enum<?>) - Method in class com.univocity.parsers.common.record.RecordImpl
- getByte(Enum<?>, String, String...) - Method in interface com.univocity.parsers.common.record.Record
-
Converts the
String
value in the given column to aByte
and returns the result. - getByte(Enum<?>, String, String...) - Method in class com.univocity.parsers.common.record.RecordImpl
- getByte(String) - Method in interface com.univocity.parsers.common.record.Record
-
Converts the
String
value in the given column to aByte
and returns the result. - getByte(String) - Method in class com.univocity.parsers.common.record.RecordImpl
- getByte(String, String, String...) - Method in interface com.univocity.parsers.common.record.Record
-
Converts the
String
value in the given column to aByte
and returns the result. - getByte(String, String, String...) - Method in class com.univocity.parsers.common.record.RecordImpl
- getCache() - Static method in class com.univocity.parsers.common.NormalizedString
-
Returns the internal string cache to allow users to tweak its size limit or clear it when appropriate
- getCalendar(int) - Method in interface com.univocity.parsers.common.record.Record
-
Converts the
String
value in the given column to aCalendar
and returns the result. - getCalendar(int) - Method in class com.univocity.parsers.common.record.RecordImpl
- getCalendar(int, String, String...) - Method in interface com.univocity.parsers.common.record.Record
-
Converts the
String
value in the given column to aCalendar
and returns the result. - getCalendar(int, String, String...) - Method in class com.univocity.parsers.common.record.RecordImpl
- getCalendar(Enum<?>) - Method in interface com.univocity.parsers.common.record.Record
-
Converts the
String
value in the given column to aCalendar
and returns the result. - getCalendar(Enum<?>) - Method in class com.univocity.parsers.common.record.RecordImpl
- getCalendar(Enum<?>, String, String...) - Method in interface com.univocity.parsers.common.record.Record
-
Converts the
String
value in the given column to aCalendar
and returns the result. - getCalendar(Enum<?>, String, String...) - Method in class com.univocity.parsers.common.record.RecordImpl
- getCalendar(String) - Method in interface com.univocity.parsers.common.record.Record
-
Converts the
String
value in the given column to aCalendar
and returns the result. - getCalendar(String) - Method in class com.univocity.parsers.common.record.RecordImpl
- getCalendar(String, String, String...) - Method in interface com.univocity.parsers.common.record.Record
-
Converts the
String
value in the given column to aCalendar
and returns the result. - getCalendar(String, String, String...) - Method in class com.univocity.parsers.common.record.RecordImpl
- getChar() - Method in class com.univocity.parsers.common.input.AbstractCharInputReader
- getChar() - Method in interface com.univocity.parsers.common.input.CharInput
-
Returns the last character returned by the
CharInput.nextChar()
method. - getChar() - Method in interface com.univocity.parsers.common.input.CharInputReader
-
Returns the last character returned by the
CharInputReader.nextChar()
method. - getChar() - Method in class com.univocity.parsers.common.input.LookaheadCharInputReader
- getChar(int) - Method in interface com.univocity.parsers.common.record.Record
-
Converts the
String
value in the given column to aCharacter
and returns the result. - getChar(int) - Method in class com.univocity.parsers.common.record.RecordImpl
- getChar(Enum<?>) - Method in interface com.univocity.parsers.common.record.Record
-
Converts the
String
value in the given column to aCharacter
and returns the result. - getChar(Enum<?>) - Method in class com.univocity.parsers.common.record.RecordImpl
- getChar(String) - Method in interface com.univocity.parsers.common.record.Record
-
Converts the
String
value in the given column to aCharacter
and returns the result. - getChar(String) - Method in class com.univocity.parsers.common.record.RecordImpl
- getChar(Map<Character, Integer>, Map<Character, Integer>, char, boolean) - Method in class com.univocity.parsers.csv.CsvFormatDetector
-
Returns the character with the highest or lowest associated number.
- getCharIndex() - Method in exception com.univocity.parsers.common.TextParsingException
-
Returns the location of the last character read from before the error occurred.
- getChars() - Method in interface com.univocity.parsers.common.input.CharAppender
-
Returns the internal character array.
- getChars() - Method in class com.univocity.parsers.common.input.DefaultCharAppender
- getChars() - Method in class com.univocity.parsers.common.input.NoopCharAppender
-
Does nothing
- getCharsAndReset() - Method in interface com.univocity.parsers.common.input.CharAppender
-
Returns the accumulated characters, discarding any trailing whitespace characters identified when using
CharAppender.appendIgnoringWhitespace(char)
,CharAppender.appendIgnoringPadding(char, char)
orCharAppender.appendIgnoringWhitespaceAndPadding(char, char)
- getCharsAndReset() - Method in class com.univocity.parsers.common.input.DefaultCharAppender
-
Returns the accumulated characters, discarding any trailing whitespace characters identified when using
DefaultCharAppender.appendIgnoringWhitespace(char)
,DefaultCharAppender.appendIgnoringPadding(char, char)
orDefaultCharAppender.appendIgnoringWhitespaceAndPadding(char, char)
- getCharsAndReset() - Method in class com.univocity.parsers.common.input.ElasticCharAppender
- getCharsAndReset() - Method in class com.univocity.parsers.common.input.NoopCharAppender
-
Returns null as this appender does nothing.
- getCharset() - Method in class com.univocity.parsers.common.input.BomInput
-
Returns the detected
Charset
determined by the Byte Order Mark (BOM) available in the input provided in the constructor of this class. - getCharToEscapeQuoteEscaping() - Method in class com.univocity.parsers.csv.CsvFormat
-
Returns the character used to escape the character used for escaping quotes defined by
CsvFormat.getQuoteEscape()
. - getCollection(T, NormalizedString...) - Static method in class com.univocity.parsers.common.NormalizedString
- getCollection(T, String...) - Static method in class com.univocity.parsers.common.NormalizedString
- getCollection(T, Collection<String>) - Static method in class com.univocity.parsers.common.NormalizedString
- getColumn(int) - Method in class com.univocity.parsers.common.processor.core.AbstractBatchedColumnProcessor
- getColumn(int) - Method in class com.univocity.parsers.common.processor.core.AbstractBatchedObjectColumnProcessor
- getColumn(int) - Method in class com.univocity.parsers.common.processor.core.AbstractColumnProcessor
- getColumn(int) - Method in class com.univocity.parsers.common.processor.core.AbstractObjectColumnProcessor
- getColumn(int) - Method in interface com.univocity.parsers.common.processor.core.ColumnReader
-
Returns the values of a given column.
- getColumn(int, Class<V>) - Method in class com.univocity.parsers.common.processor.core.AbstractBatchedObjectColumnProcessor
-
Returns the values of a given column.
- getColumn(int, Class<V>) - Method in class com.univocity.parsers.common.processor.core.AbstractObjectColumnProcessor
-
Returns the values of a given column.
- getColumn(String) - Method in class com.univocity.parsers.common.processor.core.AbstractBatchedColumnProcessor
- getColumn(String) - Method in class com.univocity.parsers.common.processor.core.AbstractBatchedObjectColumnProcessor
- getColumn(String) - Method in class com.univocity.parsers.common.processor.core.AbstractColumnProcessor
- getColumn(String) - Method in class com.univocity.parsers.common.processor.core.AbstractObjectColumnProcessor
- getColumn(String) - Method in interface com.univocity.parsers.common.processor.core.ColumnReader
-
Returns the values of a given column.
- getColumn(String, Class<V>) - Method in class com.univocity.parsers.common.processor.core.AbstractBatchedObjectColumnProcessor
-
Returns the values of a given column.
- getColumn(String, Class<V>) - Method in class com.univocity.parsers.common.processor.core.AbstractObjectColumnProcessor
-
Returns the values of a given column.
- getColumnIndex() - Method in exception com.univocity.parsers.common.DataProcessingException
-
Returns the index of the column from where the error occurred, if available.
- getColumnIndex() - Method in class com.univocity.parsers.common.processor.OutputValueSwitch
-
Returns the column index whose values will be used to switching from a row processor to another.
- getColumnIndex() - Method in exception com.univocity.parsers.common.TextParsingException
-
Returns the column index where the exception occurred.
- getColumnMapper() - Method in class com.univocity.parsers.common.processor.core.BeanConversionProcessor
-
Returns a mapper that allows users to manually define mappings from attributes/methods of a given class to columns to be parsed or written.
- getColumnMapper() - Method in class com.univocity.parsers.common.routine.AbstractRoutines
-
Returns a mapper that allows users to manually define mappings from attributes/methods of a given class to columns to be parsed or written in routines that manipulate java beans.
- getColumnName() - Method in exception com.univocity.parsers.common.DataProcessingException
-
Returns the name of the column from where the error occurred, if available.
- getColumnValues() - Method in class com.univocity.parsers.common.processor.core.ColumnSplitter
-
Returns the values processed for each column
- getColumnValues(int, Class<V>) - Method in class com.univocity.parsers.common.processor.core.ColumnSplitter
-
Returns the values of a given column.
- getColumnValues(String, Class<V>) - Method in class com.univocity.parsers.common.processor.core.ColumnSplitter
-
Returns the values of a given column.
- getColumnValuesAsList() - Method in class com.univocity.parsers.common.processor.core.AbstractBatchedColumnProcessor
- getColumnValuesAsList() - Method in class com.univocity.parsers.common.processor.core.AbstractBatchedObjectColumnProcessor
- getColumnValuesAsList() - Method in class com.univocity.parsers.common.processor.core.AbstractColumnProcessor
- getColumnValuesAsList() - Method in class com.univocity.parsers.common.processor.core.AbstractObjectColumnProcessor
- getColumnValuesAsList() - Method in interface com.univocity.parsers.common.processor.core.ColumnReader
-
Returns the values processed for each column
- getColumnValuesAsMapOfIndexes() - Method in class com.univocity.parsers.common.processor.core.AbstractBatchedColumnProcessor
- getColumnValuesAsMapOfIndexes() - Method in class com.univocity.parsers.common.processor.core.AbstractBatchedObjectColumnProcessor
- getColumnValuesAsMapOfIndexes() - Method in class com.univocity.parsers.common.processor.core.AbstractColumnProcessor
- getColumnValuesAsMapOfIndexes() - Method in class com.univocity.parsers.common.processor.core.AbstractObjectColumnProcessor
- getColumnValuesAsMapOfIndexes() - Method in interface com.univocity.parsers.common.processor.core.ColumnReader
-
Returns a map of column indexes and their respective list of values parsed from the input.
- getColumnValuesAsMapOfIndexes() - Method in class com.univocity.parsers.common.processor.core.ColumnSplitter
-
Returns a map of column indexes and their respective list of values parsed from the input.
- getColumnValuesAsMapOfNames() - Method in class com.univocity.parsers.common.processor.core.AbstractBatchedColumnProcessor
- getColumnValuesAsMapOfNames() - Method in class com.univocity.parsers.common.processor.core.AbstractBatchedObjectColumnProcessor
- getColumnValuesAsMapOfNames() - Method in class com.univocity.parsers.common.processor.core.AbstractColumnProcessor
- getColumnValuesAsMapOfNames() - Method in class com.univocity.parsers.common.processor.core.AbstractObjectColumnProcessor
- getColumnValuesAsMapOfNames() - Method in interface com.univocity.parsers.common.processor.core.ColumnReader
-
Returns a map of column names and their respective list of values parsed from the input.
- getColumnValuesAsMapOfNames() - Method in class com.univocity.parsers.common.processor.core.ColumnSplitter
-
Returns a map of column names and their respective list of values parsed from the input.
- getComment() - Method in class com.univocity.parsers.common.Format
-
Returns the character that represents a line comment.
- getComments() - Method in class com.univocity.parsers.common.AbstractParser
-
Returns all comments collected by the parser so far.
- getConfiguration() - Method in class com.univocity.parsers.common.DummyFormat
- getConfiguration() - Method in class com.univocity.parsers.common.Format
- getConfiguration() - Method in class com.univocity.parsers.csv.CsvFormat
- getConfiguration() - Method in class com.univocity.parsers.fixed.FixedWidthFormat
- getConfiguration() - Method in class com.univocity.parsers.tsv.TsvFormat
- getContent(CharSequence) - Method in class com.univocity.parsers.common.AbstractWriter
- getContent(Object[]) - Method in class com.univocity.parsers.common.AbstractWriter
- getContext() - Method in class com.univocity.parsers.common.AbstractParser
-
Returns the current parsing context with information about the status of the parser at any given time.
- getContext() - Method in interface com.univocity.parsers.common.IterableResult
-
Returns the current parsing
Context
, if available - getContext() - Method in class com.univocity.parsers.common.iterators.ParserIterator
- getContext() - Method in interface com.univocity.parsers.common.ResultIterator
-
Returns the current parsing
Context
, if available - getConversion(Class, Annotation) - Static method in class com.univocity.parsers.annotations.helpers.AnnotationHelper
-
Identifies the proper conversion for a given type and an annotation from the package
com.univocity.parsers.annotations
- getConversion(Class, AnnotatedElement, Annotation, String, String) - Static method in class com.univocity.parsers.annotations.helpers.AnnotationHelper
- getConversionMethod(Conversion, String) - Method in class com.univocity.parsers.common.processor.core.BeanConversionProcessor
- getConversions() - Method in class com.univocity.parsers.common.DefaultConversionProcessor
- getConversions() - Method in class com.univocity.parsers.common.record.MetaData
- getConversions() - Method in class com.univocity.parsers.common.record.RecordMetaDataImpl
- getConversions(int, Class<?>) - Method in class com.univocity.parsers.common.fields.FieldConversionMapping
-
Returns the sequence of conversions to be applied at a given column index
- getCurrentAttributePrefix(String, String) - Static method in class com.univocity.parsers.common.fields.ColumnMapping
- getCurrentColumn() - Method in class com.univocity.parsers.common.ParserOutput
-
Returns the position of the current parsed value
- getCurrentRecord() - Method in class com.univocity.parsers.common.ParserOutput
-
Returns the current record index.
- getDate(int) - Method in interface com.univocity.parsers.common.record.Record
-
Converts the
String
value in the given column to aDate
and returns the result. - getDate(int) - Method in class com.univocity.parsers.common.record.RecordImpl
- getDate(int, String, String...) - Method in interface com.univocity.parsers.common.record.Record
-
Converts the
String
value in the given column to aDate
and returns the result. - getDate(int, String, String...) - Method in class com.univocity.parsers.common.record.RecordImpl
- getDate(Enum<?>) - Method in interface com.univocity.parsers.common.record.Record
-
Converts the
String
value in the given column to aDate
and returns the result. - getDate(Enum<?>) - Method in class com.univocity.parsers.common.record.RecordImpl
- getDate(Enum<?>, String, String...) - Method in interface com.univocity.parsers.common.record.Record
-
Converts the
String
value in the given column to aDate
and returns the result. - getDate(Enum<?>, String, String...) - Method in class com.univocity.parsers.common.record.RecordImpl
- getDate(String) - Method in interface com.univocity.parsers.common.record.Record
-
Converts the
String
value in the given column to aDate
and returns the result. - getDate(String) - Method in class com.univocity.parsers.common.record.RecordImpl
- getDate(String, String, String...) - Method in interface com.univocity.parsers.common.record.Record
-
Converts the
String
value in the given column to aDate
and returns the result. - getDate(String, String, String...) - Method in class com.univocity.parsers.common.record.RecordImpl
- getDeclaringClass(AnnotatedElement) - Static method in class com.univocity.parsers.annotations.helpers.AnnotationHelper
- getDefaultAlignmentForHeaders() - Method in class com.univocity.parsers.fixed.FixedWidthWriterSettings
-
Returns the default alignment to use when writing headers.
- getDefaultConversion(Class, AnnotatedElement, Parsed) - Static method in class com.univocity.parsers.annotations.helpers.AnnotationHelper
-
Identifies the proper conversion for a given type
- getDefaultConversion(AnnotatedElement) - Static method in class com.univocity.parsers.annotations.helpers.AnnotationHelper
-
Returns the default
Conversion
that should be applied to the field based on its type. - getDefaultPrimitiveValue(Class) - Static method in class com.univocity.parsers.annotations.helpers.AnnotationHelper
-
Returns Java's default value for a given type, in a primitive type wrapper.
- getDefaultValue() - Method in class com.univocity.parsers.common.RetryableErrorHandler
-
Returns the default value to be assigned to the problematic column that raised the current
DataProcessingException
. - getDelimiter() - Method in class com.univocity.parsers.csv.CsvFormat
-
Returns the field delimiter character.
- getDelimitersForDetection() - Method in class com.univocity.parsers.csv.CsvParserSettings
-
Returns the sequence of possible delimiters for detection when
CsvParserSettings.isDelimiterDetectionEnabled()
evaluates totrue
, in order of priority. - getDelimiterString() - Method in class com.univocity.parsers.csv.CsvFormat
-
Returns the field delimiter sequence.
- getDetailRows() - Method in class com.univocity.parsers.common.processor.MasterDetailRecord
-
Returns the detail rows which are associated with the master row
- getDetails() - Method in exception com.univocity.parsers.common.AbstractException
-
Subclasses must implement this method to return as much information as possible about the internal state of the parser/writer.
- getDetails() - Method in exception com.univocity.parsers.common.DataProcessingException
- getDetails() - Method in exception com.univocity.parsers.common.TextParsingException
- getDetails() - Method in exception com.univocity.parsers.common.TextWritingException
- getDetectedFormat() - Method in class com.univocity.parsers.csv.CsvParser
-
Returns the CSV format detected when one of the following settings is enabled:
CommonParserSettings.isLineSeparatorDetectionEnabled()
CsvParserSettings.isDelimiterDetectionEnabled()
CsvParserSettings.isQuoteDetectionEnabled()
The detected format will be available once the parsing process is initialized (i.e. - getDouble(int) - Method in interface com.univocity.parsers.common.record.Record
-
Converts the
String
value in the given column to aDouble
and returns the result. - getDouble(int) - Method in class com.univocity.parsers.common.record.RecordImpl
- getDouble(int, String, String...) - Method in interface com.univocity.parsers.common.record.Record
-
Converts the
String
value in the given column to aDouble
and returns the result. - getDouble(int, String, String...) - Method in class com.univocity.parsers.common.record.RecordImpl
- getDouble(Enum<?>) - Method in interface com.univocity.parsers.common.record.Record
-
Converts the
String
value in the given column to aDouble
and returns the result. - getDouble(Enum<?>) - Method in class com.univocity.parsers.common.record.RecordImpl
- getDouble(Enum<?>, String, String...) - Method in interface com.univocity.parsers.common.record.Record
-
Converts the
String
value in the given column to aDouble
and returns the result. - getDouble(Enum<?>, String, String...) - Method in class com.univocity.parsers.common.record.RecordImpl
- getDouble(String) - Method in interface com.univocity.parsers.common.record.Record
-
Converts the
String
value in the given column to aDouble
and returns the result. - getDouble(String) - Method in class com.univocity.parsers.common.record.RecordImpl
- getDouble(String, String, String...) - Method in interface com.univocity.parsers.common.record.Record
-
Converts the
String
value in the given column to aDouble
and returns the result. - getDouble(String, String, String...) - Method in class com.univocity.parsers.common.record.RecordImpl
- getEmptyValue() - Method in class com.univocity.parsers.common.CommonWriterSettings
-
Returns the String representation of an empty value (defaults to null)
- getEmptyValue() - Method in class com.univocity.parsers.csv.CsvParserSettings
-
Returns the String representation of an empty value (defaults to null)
- getEncoding() - Method in class com.univocity.parsers.common.input.BomInput
-
Returns the detected encoding name determined by the Byte Order Mark (BOM) available in the input provided in the constructor of this class.
- getErrorContentLength() - Method in class com.univocity.parsers.common.CommonSettings
-
Configures the parser/writer to limit the length of displayed contents being parsed/written in the exception message when an error occurs
- getErrorDescription() - Method in exception com.univocity.parsers.common.AbstractException
-
Returns a generic description of the error.
- getErrorDescription() - Method in exception com.univocity.parsers.common.DataProcessingException
- getErrorDescription() - Method in exception com.univocity.parsers.common.DataValidationException
- getErrorDescription() - Method in exception com.univocity.parsers.common.TextParsingException
- getErrorDescription() - Method in exception com.univocity.parsers.common.TextWritingException
- getEscapeChar() - Method in class com.univocity.parsers.tsv.TsvFormat
-
Returns the character used for escaping special characters in TSV inputs: \t, \n, \r and \
- getEscapedTabChar() - Method in class com.univocity.parsers.tsv.TsvFormat
-
Returns the character that should be used to represent an escaped tab, i.e.
- getExpandIncompleteRows() - Method in class com.univocity.parsers.common.CommonWriterSettings
-
Indicates whether the writer should expand records with less columns than the number of headers.
- getExtractedColumnIndex() - Method in exception com.univocity.parsers.common.DataProcessingException
- getFieldAlignments() - Method in class com.univocity.parsers.fixed.FixedWidthFields
-
Returns a copy of the sequence of alignment settings to apply over each field in the fixed-width record.
- getFieldAlignments() - Method in class com.univocity.parsers.fixed.FixedWidthParserSettings
-
Returns the sequence of alignments to consider for each field of each record.
- getFieldAlignments() - Method in class com.univocity.parsers.fixed.FixedWidthWriterSettings
-
Returns the sequence of field alignments to apply to each field in the record.
- getFieldIndex(NormalizedString[], NormalizedString, boolean) - Method in class com.univocity.parsers.common.AbstractWriter
-
Calculates the index of a header name in relation to the original
AbstractWriter.headers
array defined in this writer - getFieldIndex(Enum) - Method in class com.univocity.parsers.common.fields.FieldEnumSelector
-
Returns the position of a given column represented by an enumeration value.
- getFieldIndex(String) - Method in class com.univocity.parsers.common.fields.FieldNameSelector
-
Returns the position of a given header
- getFieldIndexes(NormalizedString[]) - Method in class com.univocity.parsers.common.fields.AllIndexesSelector
- getFieldIndexes(NormalizedString[]) - Method in class com.univocity.parsers.common.fields.ExcludeFieldEnumSelector
-
Returns the indexes of any that are part of a sequence of headers but not part of the selection.
- getFieldIndexes(NormalizedString[]) - Method in class com.univocity.parsers.common.fields.ExcludeFieldIndexSelector
-
Returns the indexes of any that are part of a sequence of headers but not part of the selection.
- getFieldIndexes(NormalizedString[]) - Method in class com.univocity.parsers.common.fields.ExcludeFieldNameSelector
-
Returns the indexes of any that are part of a sequence of headers but not part of the selection.
- getFieldIndexes(NormalizedString[]) - Method in class com.univocity.parsers.common.fields.FieldEnumSelector
- getFieldIndexes(NormalizedString[]) - Method in class com.univocity.parsers.common.fields.FieldIndexSelector
- getFieldIndexes(NormalizedString[]) - Method in class com.univocity.parsers.common.fields.FieldNameSelector
- getFieldIndexes(NormalizedString[]) - Method in interface com.univocity.parsers.common.fields.FieldSelector
-
Returns the indexes of any selected fields that are part of a sequence of headers.
- getFieldIndexes(String[]) - Method in class com.univocity.parsers.common.fields.AllIndexesSelector
- getFieldIndexes(String[]) - Method in class com.univocity.parsers.common.fields.ExcludeFieldEnumSelector
- getFieldIndexes(String[]) - Method in class com.univocity.parsers.common.fields.ExcludeFieldIndexSelector
- getFieldIndexes(String[]) - Method in class com.univocity.parsers.common.fields.ExcludeFieldNameSelector
- getFieldIndexes(String[]) - Method in class com.univocity.parsers.common.fields.FieldEnumSelector
- getFieldIndexes(String[]) - Method in class com.univocity.parsers.common.fields.FieldIndexSelector
- getFieldIndexes(String[]) - Method in class com.univocity.parsers.common.fields.FieldNameSelector
- getFieldIndexes(String[]) - Method in interface com.univocity.parsers.common.fields.FieldSelector
-
Returns the indexes of any selected fields that are part of a sequence of headers.
- getFieldLengths() - Method in class com.univocity.parsers.fixed.FixedWidthFields
-
Returns a copy of the sequence of field lengths of a fixed-width record
- getFieldLengths() - Method in class com.univocity.parsers.fixed.FixedWidthParserSettings
-
Returns the sequence of lengths to be read by the parser to form a record.
- getFieldLengths() - Method in class com.univocity.parsers.fixed.FixedWidthWriterSettings
-
Returns the sequence of field lengths to be written to form a record.
- getFieldName() - Method in class com.univocity.parsers.annotations.helpers.FieldMapping
-
Returns the column name against which this field is mapped.
- getFieldNames() - Method in class com.univocity.parsers.fixed.FixedWidthFields
-
Returns the name of each field in a fixed-width record, if any
- getFieldPaddings() - Method in class com.univocity.parsers.fixed.FixedWidthFields
-
Returns a copy of the sequence of padding characters to apply over each field in the fixed-width record.
- getFieldPaddings() - Method in class com.univocity.parsers.fixed.FixedWidthParserSettings
-
Returns the sequence of paddings used by each field of each record.
- getFieldPaddings() - Method in class com.univocity.parsers.fixed.FixedWidthWriterSettings
-
Returns the sequence of paddings used by each field of each record.
- getFieldPaddings(FixedWidthFormat) - Method in class com.univocity.parsers.fixed.FixedWidthFields
- getFieldParent() - Method in class com.univocity.parsers.annotations.helpers.FieldMapping
-
Returns the parent class that contains the mapped field.
- getFieldSelector() - Method in class com.univocity.parsers.common.CommonParserSettings
-
Returns the FieldSelector object, which handles selected fields.
- getFieldSelector() - Method in class com.univocity.parsers.common.CommonSettings
-
Returns the FieldSelector object, which handles selected fields.
- getFieldSelector() - Method in class com.univocity.parsers.common.ParserOutput
- getFieldSequence(Class, boolean, HeaderTransformer, MethodFilter) - Static method in class com.univocity.parsers.annotations.helpers.AnnotationHelper
-
Returns a list of fields with
Parsed
annotations in the sequence they should be processed for parsing or writing. - getFieldSequence(Class, boolean, List<Integer>, HeaderTransformer, MethodFilter) - Static method in class com.univocity.parsers.annotations.helpers.AnnotationHelper
- getFieldSet() - Method in class com.univocity.parsers.common.CommonParserSettings
-
Returns the set of selected fields, if any
- getFieldSet() - Method in class com.univocity.parsers.common.CommonSettings
-
Returns the set of selected fields, if any
- getFieldsPerRecord() - Method in class com.univocity.parsers.fixed.FixedWidthFields
-
Returns the number of fields in a fixed-width record
- getFieldsToIgnore() - Method in class com.univocity.parsers.fixed.FixedWidthFields
-
Returns the sequence of fields to ignore.
- getFieldsToIgnore() - Method in class com.univocity.parsers.fixed.FixedWidthParserSettings
-
Returns the sequence of fields to ignore.
- getFieldsToIgnore() - Method in class com.univocity.parsers.fixed.FixedWidthWriterSettings
-
Returns the sequence of fields to ignore.
- getFieldType() - Method in class com.univocity.parsers.annotations.helpers.FieldMapping
-
Returns the type of the mapped field
- getFloat(int) - Method in interface com.univocity.parsers.common.record.Record
-
Converts the
String
value in the given column to aFloat
and returns the result. - getFloat(int) - Method in class com.univocity.parsers.common.record.RecordImpl
- getFloat(int, String, String...) - Method in interface com.univocity.parsers.common.record.Record
-
Converts the
String
value in the given column to aFloat
and returns the result. - getFloat(int, String, String...) - Method in class com.univocity.parsers.common.record.RecordImpl
- getFloat(Enum<?>) - Method in interface com.univocity.parsers.common.record.Record
-
Converts the
String
value in the given column to aFloat
and returns the result. - getFloat(Enum<?>) - Method in class com.univocity.parsers.common.record.RecordImpl
- getFloat(Enum<?>, String, String...) - Method in interface com.univocity.parsers.common.record.Record
-
Converts the
String
value in the given column to aFloat
and returns the result. - getFloat(Enum<?>, String, String...) - Method in class com.univocity.parsers.common.record.RecordImpl
- getFloat(String) - Method in interface com.univocity.parsers.common.record.Record
-
Converts the
String
value in the given column to aFloat
and returns the result. - getFloat(String) - Method in class com.univocity.parsers.common.record.RecordImpl
- getFloat(String, String, String...) - Method in interface com.univocity.parsers.common.record.Record
-
Converts the
String
value in the given column to aLong
and returns the result. - getFloat(String, String, String...) - Method in class com.univocity.parsers.common.record.RecordImpl
- getFormat() - Method in class com.univocity.parsers.common.CommonSettings
-
The format of the file to be parsed/written (returns the format's defaults).
- getFormatDetectorRowSampleCount() - Method in class com.univocity.parsers.csv.CsvParserSettings
-
Returns the number of sample rows used in the CSV format auto-detection process (defaults to 20)
- getFormattedValue(Object) - Static method in class com.univocity.parsers.common.Format
- getFormatterObjects() - Method in class com.univocity.parsers.conversions.CalendarConversion
- getFormatterObjects() - Method in class com.univocity.parsers.conversions.DateConversion
- getFormatterObjects() - Method in interface com.univocity.parsers.conversions.FormattedConversion
-
Returns the formatter objects
- getFormatterObjects() - Method in class com.univocity.parsers.conversions.NumericConversion
- getHeader(int) - Method in class com.univocity.parsers.common.processor.core.ColumnSplitter
-
Returns the header of a particular column
- getHeaderAsStringArray() - Method in class com.univocity.parsers.common.ParserOutput
- getHeaderIndex() - Method in class com.univocity.parsers.annotations.helpers.TransformedHeader
-
Returns the index that determines which column the current field represents, as specified by
Parsed.index()
- getHeaderName() - Method in class com.univocity.parsers.annotations.helpers.TransformedHeader
-
Returns the name to be used as a header based on a given field and its
Parsed
annotation. - getHeaders() - Method in class com.univocity.parsers.common.CommonSettings
-
Returns the field names in the input/output, in the sequence they occur (defaults to null).
- getHeaders() - Method in class com.univocity.parsers.common.ParserOutput
-
Returns the sequence of values that represent the headers each field in the input.
- getHeaders() - Method in class com.univocity.parsers.common.processor.core.AbstractBatchedColumnProcessor
- getHeaders() - Method in class com.univocity.parsers.common.processor.core.AbstractBatchedObjectColumnProcessor
- getHeaders() - Method in class com.univocity.parsers.common.processor.core.AbstractBeanListProcessor
-
Returns the record headers.
- getHeaders() - Method in class com.univocity.parsers.common.processor.core.AbstractColumnProcessor
- getHeaders() - Method in class com.univocity.parsers.common.processor.core.AbstractInputValueSwitch
- getHeaders() - Method in class com.univocity.parsers.common.processor.core.AbstractListProcessor
-
Returns the record headers.
- getHeaders() - Method in class com.univocity.parsers.common.processor.core.AbstractMasterDetailListProcessor
-
Returns the record headers.
- getHeaders() - Method in class com.univocity.parsers.common.processor.core.AbstractMultiBeanListProcessor
-
Returns the record headers.
- getHeaders() - Method in class com.univocity.parsers.common.processor.core.AbstractObjectColumnProcessor
- getHeaders() - Method in class com.univocity.parsers.common.processor.core.AbstractObjectListProcessor
-
Returns the record headers.
- getHeaders() - Method in class com.univocity.parsers.common.processor.core.AbstractProcessorSwitch
-
Returns the headers in use by the current row processor implementation, which can vary among row processors.
- getHeaders() - Method in interface com.univocity.parsers.common.processor.core.ColumnReader
-
Returns the column headers.
- getHeaders() - Method in class com.univocity.parsers.common.processor.core.ColumnSplitter
-
Returns the headers of the input.
- getHeaders() - Method in class com.univocity.parsers.common.processor.OutputValueSwitch
- getHeaders() - Method in class com.univocity.parsers.common.processor.RowWriterProcessorSwitch
-
Returns the headers in use by the current row writer processor implementation, which can vary among row writer processors.
- getHeaders() - Method in exception com.univocity.parsers.common.TextParsingException
-
Returns the headers processed from the input, if any.
- getHeaders(Object) - Method in class com.univocity.parsers.common.processor.OutputValueSwitch
- getHeaders(Object) - Method in class com.univocity.parsers.common.processor.RowWriterProcessorSwitch
-
Returns the sequence of headers to use for processing an input record.
- getHeaders(Map, Map) - Method in class com.univocity.parsers.common.processor.OutputValueSwitch
- getHeaders(Map, Map) - Method in class com.univocity.parsers.common.processor.RowWriterProcessorSwitch
-
Returns the sequence of headers to use for processing an input record represented by a map A map of headers can be optionally provided to assign a name to the keys of the input map.
- getHeadersFromSwitch(Object) - Method in class com.univocity.parsers.common.processor.OutputValueSwitch
- getIgnoreLeadingWhitespaces() - Method in class com.univocity.parsers.common.CommonSettings
-
Returns whether or not leading whitespaces from values being read/written should be skipped (defaults to true)
- getIgnoreLeadingWhitespacesInQuotes() - Method in class com.univocity.parsers.csv.CsvParserSettings
-
Returns whether or not leading whitespaces from quoted values should be skipped (defaults to false) Note: if
CsvParserSettings.keepQuotes
evaluates totrue
, values won't be trimmed. - getIgnoreTrailingWhitespaces() - Method in class com.univocity.parsers.common.CommonSettings
-
Returns whether or not trailing whitespaces from values being read/written should be skipped (defaults to true)
- getIgnoreTrailingWhitespacesInQuotes() - Method in class com.univocity.parsers.csv.CsvParserSettings
-
Returns whether or not trailing whitespaces from within quoted values should be skipped (defaults to false) Note: if
CsvParserSettings.keepQuotes
evaluates totrue
, values won't be trimmed. - getIndex() - Method in class com.univocity.parsers.annotations.helpers.FieldMapping
-
Returns the column index against which this field is mapped.
- getIndexes() - Method in class com.univocity.parsers.common.processor.core.AbstractInputValueSwitch
- getIndexes() - Method in class com.univocity.parsers.common.processor.core.AbstractProcessorSwitch
-
Returns the indexes in use by the current row processor implementation, which can vary among row processors.
- getIndexes() - Method in class com.univocity.parsers.common.processor.OutputValueSwitch
- getIndexes() - Method in class com.univocity.parsers.common.processor.RowWriterProcessorSwitch
-
Returns the indexes in use by the current row writer processor implementation, which can vary among row writer processors.
- getInputAnalysisProcess() - Method in class com.univocity.parsers.common.AbstractParser
-
Allows the parser implementation to traverse the input buffer before the parsing process starts, in order to enable automatic configuration and discovery of data formats.
- getInputAnalysisProcess() - Method in class com.univocity.parsers.csv.CsvParser
- getInputAnalysisProcesses() - Method in class com.univocity.parsers.common.CommonParserSettings
-
Returns the sequence of
InputAnalysisProcess
to be used for analyzing the input buffer and potentially discover configuration options such as column separators is CSV, data formats, etc. - getInputBufferSize() - Method in class com.univocity.parsers.common.CommonParserSettings
-
Informs the number of characters held by the parser's buffer when processing the input (defaults to 1024*1024 characters).
- getInputDimension(File) - Method in class com.univocity.parsers.common.routine.AbstractRoutines
-
Calculates the dimensions of a file (row and column count).
- getInputDimension(File, String) - Method in class com.univocity.parsers.common.routine.AbstractRoutines
-
Calculates the dimensions of a file (row and column count).
- getInputDimension(InputStream) - Method in class com.univocity.parsers.common.routine.AbstractRoutines
-
Calculates the dimensions of a given input (row and column count).
- getInputDimension(InputStream, String) - Method in class com.univocity.parsers.common.routine.AbstractRoutines
-
Calculates the dimensions of a given input (row and column count).
- getInputDimension(Reader) - Method in class com.univocity.parsers.common.routine.AbstractRoutines
-
Calculates the dimensions of a given input (row and column count).
- getInstance() - Static method in class com.univocity.parsers.common.input.NoopCharAppender
-
Returns the singleton instance of NoopCharAppender
- getInt(int) - Method in interface com.univocity.parsers.common.record.Record
-
Converts the
String
value in the given column to aInteger
and returns the result. - getInt(int) - Method in class com.univocity.parsers.common.record.RecordImpl
- getInt(int, String, String...) - Method in interface com.univocity.parsers.common.record.Record
-
Converts the
String
value in the given column to aInteger
and returns the result. - getInt(int, String, String...) - Method in class com.univocity.parsers.common.record.RecordImpl
- getInt(Enum<?>) - Method in interface com.univocity.parsers.common.record.Record
-
Converts the
String
value in the given column to aInteger
and returns the result. - getInt(Enum<?>) - Method in class com.univocity.parsers.common.record.RecordImpl
- getInt(Enum<?>, String, String...) - Method in interface com.univocity.parsers.common.record.Record
-
Converts the
String
value in the given column to aInteger
and returns the result. - getInt(Enum<?>, String, String...) - Method in class com.univocity.parsers.common.record.RecordImpl
- getInt(String) - Method in interface com.univocity.parsers.common.record.Record
-
Converts the
String
value in the given column to aInteger
and returns the result. - getInt(String) - Method in class com.univocity.parsers.common.record.RecordImpl
- getInt(String, String, String...) - Method in interface com.univocity.parsers.common.record.Record
-
Converts the
String
value in the given column to aInteger
and returns the result. - getInt(String, String, String...) - Method in class com.univocity.parsers.common.record.RecordImpl
- getKeepPadding() - Method in class com.univocity.parsers.fixed.FixedWidthParserSettings
-
Indicate the padding character should be kept in the parsed value (defaults to
false
) This setting can be overridden for individual fields throughFixedWidthFields.stripPaddingFrom(String, String...)
andFixedWidthFields.keepPaddingOn(String, String...)
- getKeepPaddingFlags() - Method in class com.univocity.parsers.fixed.FixedWidthFields
-
Returns the sequence of fields whose padding character must/must not be retained in the parsed value
- getKeepPaddingFlags() - Method in class com.univocity.parsers.fixed.FixedWidthParserSettings
-
Returns the sequence of fields whose padding character must/must not be retained in the parsed value
- getKeepQuotes() - Method in class com.univocity.parsers.csv.CsvParserSettings
-
Flag indicating whether the parser should keep enclosing quote characters in the values parsed from the input.
- getKeepResourcesOpen() - Method in class com.univocity.parsers.common.routine.AbstractRoutines
-
Returns a flag indicating whether resources used for writing should be kept open after being used by the routines available from this object, when applicable.
- getKey(T, EnumSelector) - Method in class com.univocity.parsers.conversions.EnumConversion
- getKeyPrefix(String, MethodDescriptor) - Method in class com.univocity.parsers.common.fields.ColumnMapping.MethodMapping
- getKeyPrefix(String, String) - Method in class com.univocity.parsers.common.fields.ColumnMapping.NameMapping
- getKeyPrefix(String, K) - Method in class com.univocity.parsers.common.fields.AbstractColumnMapping
-
Returns the prefix of a given key, i.e.
- getLastComment() - Method in class com.univocity.parsers.common.AbstractParser
-
Returns the last comment found in the input.
- getLineIndex() - Method in exception com.univocity.parsers.common.TextParsingException
-
Returns the line number where the exception occurred.
- getLineSeparator() - Method in class com.univocity.parsers.common.Format
-
Returns the current line separator character sequence, which can contain 1 to 2 characters.
- getLineSeparator() - Method in class com.univocity.parsers.common.input.AbstractCharInputReader
- getLineSeparator() - Method in interface com.univocity.parsers.common.input.CharInputReader
-
Returns the line separator by this character input reader.
- getLineSeparator() - Method in class com.univocity.parsers.common.input.LookaheadCharInputReader
- getLineSeparatorString() - Method in class com.univocity.parsers.common.Format
-
Returns the current line separator sequence as a String of 1 to 2 characters.
- getLong(int) - Method in interface com.univocity.parsers.common.record.Record
-
Converts the
String
value in the given column to aLong
and returns the result. - getLong(int) - Method in class com.univocity.parsers.common.record.RecordImpl
- getLong(int, String, String...) - Method in interface com.univocity.parsers.common.record.Record
-
Converts the
String
value in the given column to aLong
and returns the result. - getLong(int, String, String...) - Method in class com.univocity.parsers.common.record.RecordImpl
- getLong(Enum<?>) - Method in interface com.univocity.parsers.common.record.Record
-
Converts the
String
value in the given column to aLong
and returns the result. - getLong(Enum<?>) - Method in class com.univocity.parsers.common.record.RecordImpl
- getLong(Enum<?>, String, String...) - Method in interface com.univocity.parsers.common.record.Record
-
Converts the
String
value in the given column to aLong
and returns the result. - getLong(Enum<?>, String, String...) - Method in class com.univocity.parsers.common.record.RecordImpl
- getLong(String) - Method in interface com.univocity.parsers.common.record.Record
-
Converts the
String
value in the given column to aLong
and returns the result. - getLong(String) - Method in class com.univocity.parsers.common.record.RecordImpl
- getLong(String, String, String...) - Method in interface com.univocity.parsers.common.record.Record
-
Converts the
String
value in the given column to aLong
and returns the result. - getLong(String, String, String...) - Method in class com.univocity.parsers.common.record.RecordImpl
- getLookahead() - Method in class com.univocity.parsers.common.input.LookaheadCharInputReader
-
Returns the current lookahead value.
- getLookahead(char) - Method in class com.univocity.parsers.common.input.LookaheadCharInputReader
-
Returns the lookahead value prepended with the current character
- getLookaheadFormats() - Method in class com.univocity.parsers.fixed.FixedWidthParserSettings
- getLookaheadFormats() - Method in class com.univocity.parsers.fixed.FixedWidthWriterSettings
- getLookbehindFormats() - Method in class com.univocity.parsers.fixed.FixedWidthParserSettings
- getLookbehindFormats() - Method in class com.univocity.parsers.fixed.FixedWidthWriterSettings
- getLookupFormats(Map<String, FixedWidthFields>, FixedWidthFormat) - Static method in class com.univocity.parsers.fixed.Lookup
- getLookupWildcard() - Method in class com.univocity.parsers.fixed.FixedWidthFormat
-
Returns the lookup wildcard character to accept any character in look-ahead or look-behind patterns defined using
FixedWidthParserSettings.addFormatForLookahead(String, FixedWidthFields)
orFixedWidthParserSettings.addFormatForLookbehind(String, FixedWidthFields)
. - getMappedColumn(K) - Method in class com.univocity.parsers.common.fields.AbstractColumnMapping
- getMasterRow() - Method in class com.univocity.parsers.common.processor.MasterDetailRecord
-
Returns the master row as identified by a
MasterDetailProcessor
- getMaxCharsPerColumn() - Method in class com.univocity.parsers.common.CommonSettings
-
The maximum number of characters allowed for any given value being written/read.
- getMaxCharsPerColumn() - Method in class com.univocity.parsers.fixed.FixedWidthParserSettings
-
The maximum number of characters allowed for any given value being written/read.
- getMaxColumns() - Method in class com.univocity.parsers.common.CommonSettings
-
Returns the hard limit of how many columns a record can have (defaults to 512).
- getMaxColumns() - Method in class com.univocity.parsers.fixed.FixedWidthParserSettings
-
Returns the hard limit of how many columns a record can have (defaults to a maximum of 512).
- getMaxColumns() - Method in class com.univocity.parsers.fixed.FixedWidthWriterSettings
- getMaxStringLength() - Method in class com.univocity.parsers.common.StringCache
-
Returns the maximum length a
String
key can have to be used as a key in this cache. - getMessage() - Method in exception com.univocity.parsers.common.AbstractException
-
Returns a detailed message describing the error, and the internal state of the parser/writer.
- getMetaData() - Method in interface com.univocity.parsers.common.record.Record
-
Returns the
RecordMetaData
associated with all records parsed from the input. - getMetaData() - Method in class com.univocity.parsers.common.record.RecordImpl
- getMetaData(int) - Method in class com.univocity.parsers.common.record.RecordMetaDataImpl
- getMetaData(Enum<?>) - Method in class com.univocity.parsers.common.record.RecordMetaDataImpl
- getMetaData(String) - Method in class com.univocity.parsers.common.record.RecordMetaDataImpl
- getMethod(String, Method, boolean) - Static method in class com.univocity.parsers.common.beans.BeanHelper
- getMinimumRowLength() - Method in class com.univocity.parsers.common.processor.RowWriterProcessorSwitch
-
Returns the minimum row length based on the number of headers and index sizes
- getName() - Method in class com.univocity.parsers.annotations.helpers.MethodDescriptor
-
Returns the method name, without the prefix
- getName() - Method in class com.univocity.parsers.common.beans.PropertyWrapper
-
Returns the name of a property of a Java bean.
- getName(AnnotatedElement) - Static method in class com.univocity.parsers.annotations.helpers.AnnotationHelper
- getNestedAttributeNames() - Method in class com.univocity.parsers.common.fields.ColumnMapping
-
Returns the first-level names of all nested members whose attributes or methods have been mapped
- getNestedAttributes() - Method in class com.univocity.parsers.common.processor.core.BeanConversionProcessor
- getNormalizedNewline() - Method in class com.univocity.parsers.common.Format
-
Returns the normalized newline character, which is automatically replaced by
Format.lineSeparator
when reading/writing. - getNullMethod() - Static method in class com.univocity.parsers.common.beans.PropertyWrapper
- getNullReadValue(AnnotatedElement, Parsed) - Static method in class com.univocity.parsers.annotations.helpers.AnnotationHelper
- getNullValue() - Method in class com.univocity.parsers.common.CommonSettings
-
Returns the String representation of a null value (defaults to null)
- getNullValue(String) - Static method in class com.univocity.parsers.annotations.helpers.AnnotationHelper
-
Converts the special "null" strings that might be provided by
and Parsed#defaultNullWrite()
- getNullWriteValue(AnnotatedElement, Parsed) - Static method in class com.univocity.parsers.annotations.helpers.AnnotationHelper
- getNumberOfRecordsToRead() - Method in class com.univocity.parsers.common.CommonParserSettings
-
The number of valid records to be parsed before the process is stopped.
- getNumberOfRowsToSkip() - Method in class com.univocity.parsers.common.CommonParserSettings
-
Returns the number of rows to skip from the input before the parser can begin to execute.
- getNumberType() - Method in class com.univocity.parsers.conversions.NumericConversion
-
Returns the implementation of
Number
that should be used when converting numeric data. - getObjectValue(String[], int, Class<T>, T) - Method in class com.univocity.parsers.common.record.RecordMetaDataImpl
- getObjectValue(String[], int, Class<T>, T, String, String...) - Method in class com.univocity.parsers.common.record.RecordMetaDataImpl
- getObjectValue(String[], Enum<?>, Class<T>, T) - Method in class com.univocity.parsers.common.record.RecordMetaDataImpl
- getObjectValue(String[], Enum<?>, Class<T>, T, String, String...) - Method in class com.univocity.parsers.common.record.RecordMetaDataImpl
- getObjectValue(String[], String, Class<T>, T) - Method in class com.univocity.parsers.common.record.RecordMetaDataImpl
- getObjectValue(String[], String, Class<T>, T, String, String...) - Method in class com.univocity.parsers.common.record.RecordMetaDataImpl
- getPadding() - Method in class com.univocity.parsers.fixed.FixedWidthFormat
-
Returns the padding character used to represent unwritten spaces.
- getParameterType() - Method in class com.univocity.parsers.annotations.helpers.MethodDescriptor
-
Returns the parameter type associated with a method, if available
- getParsedContent() - Method in exception com.univocity.parsers.common.TextParsingException
-
Returns the last chunk of content parsed before the error took place
- getParsedContent(CharSequence) - Method in class com.univocity.parsers.common.AbstractParser
- getParsedHeaders() - Method in class com.univocity.parsers.common.AbstractParser
-
Returns the headers parsed from the input, if and only if
CommonParserSettings.headerExtractionEnabled
istrue
. - getParserSettings() - Method in class com.univocity.parsers.common.routine.AbstractRoutines
-
Returns the parser configuration (if any) used by the routines of this utility class.
- getPrefix() - Method in class com.univocity.parsers.annotations.helpers.MethodDescriptor
-
Returns the prefix: a dot separated string denoting a path of nested object names (e.g.
- getPrefix() - Method in class com.univocity.parsers.common.fields.ColumnMapping
-
Returns object the nesting path associated with the current mapping.
- getPrefixedName() - Method in class com.univocity.parsers.annotations.helpers.MethodDescriptor
-
Returns full path to a method, (e.g.
- getProcessor() - Method in class com.univocity.parsers.common.CommonParserSettings
-
Returns the callback implementation of the interface
Processor
which handles the lifecycle of the parsing process and processes each record extracted from the input - getProcessorErrorHandler() - Method in class com.univocity.parsers.common.CommonSettings
-
Returns the custom error handler to be used to capture and handle errors that might happen while processing records with a
Processor
or aRowWriterProcessor
(i.e. - getProcessorOfType(Class<T>) - Method in class com.univocity.parsers.common.processor.core.AbstractMultiBeanProcessor
-
Returns the
BeanProcessor
responsible for processing a given class - getPropertyDescriptors(Class<?>) - Static method in class com.univocity.parsers.common.beans.BeanHelper
-
Returns the property descriptors of all properties available from a class
- getQuotationTriggers() - Method in class com.univocity.parsers.csv.CsvWriterSettings
-
Returns the list of characters that when present in a value to be written, will force the output value to be enclosed in quotes.
- getQuote() - Method in class com.univocity.parsers.csv.CsvFormat
-
Returns the character used for escaping values where the field delimiter is part of the value.
- getQuoteAllFields() - Method in class com.univocity.parsers.csv.CsvWriterSettings
-
Indicates that all written values should be enclosed within quotes (as defined in
CsvFormat
) - getQuotedFieldSelector() - Method in class com.univocity.parsers.csv.CsvWriterSettings
-
Returns the current selection of quoted fields (if any)
- getQuotedString(char, char, char, int, char, char, boolean, boolean, boolean, boolean) - Method in class com.univocity.parsers.common.input.AbstractCharInputReader
- getQuotedString(char, char, char, int, char, char, boolean, boolean, boolean, boolean) - Method in interface com.univocity.parsers.common.input.CharInputReader
-
Attempts to collect a quoted
String
from the current position until a closing quote or stop character is found on the input, or a line ending is reached. - getQuotedString(char, char, char, int, char, char, boolean, boolean, boolean, boolean) - Method in class com.univocity.parsers.common.input.LookaheadCharInputReader
- getQuoteEscape() - Method in class com.univocity.parsers.csv.CsvFormat
-
Returns the character used for escaping quotes inside an already quoted value.
- getQuoteNulls() - Method in class com.univocity.parsers.csv.CsvWriterSettings
-
Flag whether to quote
null
values sent to theCsvWriter
when the corresponding column is configured to be quoted viaCsvWriterSettings.quoteFields(String...)
, orCsvWriterSettings.getQuoteAllFields()
evaluates totrue
. - getReadInputOnSeparateThread() - Method in class com.univocity.parsers.common.CommonParserSettings
-
Indicates whether or not a separate thread will be used to read characters from the input while parsing (defaults true if the number of available processors at runtime is greater than 1)
- getReadMethod() - Method in class com.univocity.parsers.common.beans.PropertyWrapper
-
Returns the method that should be used to read the value of a property of a Java bean.
- getRecordCharacters() - Method in exception com.univocity.parsers.common.TextWritingException
-
Returns the character data that failed to be written
- getRecordCount() - Method in class com.univocity.parsers.common.AbstractWriter
-
Returns the number of records written to the output so far
- getRecordCount() - Method in exception com.univocity.parsers.common.TextWritingException
-
Returns the number of records written before the exception occurred.
- getRecordData() - Method in exception com.univocity.parsers.common.TextWritingException
-
Returns the data that failed to be written
- getRecordEndsOnNewline() - Method in class com.univocity.parsers.fixed.FixedWidthParserSettings
-
Indicates whether or not a record is considered parsed when a newline is reached.
- getRecordMetadata() - Method in class com.univocity.parsers.common.AbstractParser
-
Returns the metadata associated with
Record
s parsed from the input usingAbstractParser.parseAllRecords(File)
orAbstractParser.parseNextRecord()
. - getRecordMetaData() - Method in class com.univocity.parsers.common.record.AbstractRecordFactory
-
Returns the metadata information associated with the records generated by this factory class
- getRecordNumber() - Method in exception com.univocity.parsers.common.TextParsingException
-
Returns the record number when the exception occurred.
- getRecords() - Method in class com.univocity.parsers.common.processor.core.AbstractMasterDetailListProcessor
-
Returns the list of generated MasterDetailRecords at the end of the parsing process.
- getReturnType() - Method in class com.univocity.parsers.annotations.helpers.MethodDescriptor
-
Returns the return type associated with a method, if available
- getRow() - Method in exception com.univocity.parsers.common.DataProcessingException
-
Returns the record being processed when the error occurred, if available.
- getRowCount() - Method in class com.univocity.parsers.common.processor.core.AbstractConcurrentProcessor
- getRowProcessor() - Method in class com.univocity.parsers.common.CommonParserSettings
-
Deprecated.Use the
CommonParserSettings.getProcessor()
method as it allows format-specific processors to be built to work with different implementations ofContext
. Implementations based onRowProcessor
allow only parsers who provide aParsingContext
to be used. - getRowProcessorErrorHandler() - Method in class com.univocity.parsers.common.CommonSettings
-
Deprecated.Use the
CommonSettings.getProcessorErrorHandler()
method as it allows format-specific error handlers to be built to work with different implementations ofContext
. Implementations based onRowProcessorErrorHandler
allow only parsers who provide aParsingContext
to be used. - getRowProcessorHeaders() - Method in class com.univocity.parsers.common.AbstractWriter
- getRows() - Method in class com.univocity.parsers.common.processor.core.AbstractListProcessor
-
The list of parsed records
- getRows() - Method in class com.univocity.parsers.common.processor.core.AbstractObjectListProcessor
-
Returns the list of parsed and converted records
- getRowsPerBatch() - Method in class com.univocity.parsers.common.processor.core.AbstractBatchedColumnProcessor
- getRowsPerBatch() - Method in class com.univocity.parsers.common.processor.core.AbstractBatchedObjectColumnProcessor
- getRowsPerBatch() - Method in interface com.univocity.parsers.common.processor.core.BatchedColumnReader
-
Returns the number of rows processed in each batch
- getRowWriterProcessor() - Method in class com.univocity.parsers.common.CommonWriterSettings
-
Returns the implementation of the interface
RowWriterProcessor
which processes input objects into a manageable format for writing. - getSelectedElements(List<T>) - Method in class com.univocity.parsers.fixed.FixedWidthFields
- getSelectedIndexes() - Method in class com.univocity.parsers.common.ParserOutput
-
Returns the selected indexes of all fields as defined in
CommonSettings
. - getSelectedIndexes(Class<?>, MethodFilter) - Static method in class com.univocity.parsers.annotations.helpers.AnnotationHelper
-
Runs through all
Parsed
annotations of a given class to identify all indexes associated with its fields - getShort(int) - Method in interface com.univocity.parsers.common.record.Record
-
Converts the
String
value in the given column to aShort
and returns the result. - getShort(int) - Method in class com.univocity.parsers.common.record.RecordImpl
- getShort(int, String, String...) - Method in interface com.univocity.parsers.common.record.Record
-
Converts the
String
value in the given column to aShort
and returns the result. - getShort(int, String, String...) - Method in class com.univocity.parsers.common.record.RecordImpl
- getShort(Enum<?>) - Method in interface com.univocity.parsers.common.record.Record
-
Converts the
String
value in the given column to aShort
and returns the result. - getShort(Enum<?>) - Method in class com.univocity.parsers.common.record.RecordImpl
- getShort(Enum<?>, String, String...) - Method in interface com.univocity.parsers.common.record.Record
-
Converts the
String
value in the given column to aShort
and returns the result. - getShort(Enum<?>, String, String...) - Method in class com.univocity.parsers.common.record.RecordImpl
- getShort(String) - Method in interface com.univocity.parsers.common.record.Record
-
Converts the
String
value in the given column to aShort
and returns the result. - getShort(String) - Method in class com.univocity.parsers.common.record.RecordImpl
- getShort(String, String, String...) - Method in interface com.univocity.parsers.common.record.Record
-
Converts the
String
value in the given column to aShort
and returns the result. - getShort(String, String, String...) - Method in class com.univocity.parsers.common.record.RecordImpl
- getSizeLimit() - Method in class com.univocity.parsers.common.StringCache
-
Returns the size limit of this string cache.
- getSkipBitsAsWhitespace() - Method in class com.univocity.parsers.common.CommonSettings
-
Returns a flag indicating whether the parser/writer should skip bit values as whitespace.
- getSkipEmptyLines() - Method in class com.univocity.parsers.common.CommonSettings
-
Returns whether or not empty lines should be ignored (defaults to true)
- getSkipTrailingCharsUntilNewline() - Method in class com.univocity.parsers.fixed.FixedWidthParserSettings
-
Indicates whether or not any trailing characters beyond the record's length should be skipped until the newline is reached (defaults to
false
) - getString(char, char, boolean, String, int) - Method in class com.univocity.parsers.common.input.AbstractCharInputReader
- getString(char, char, boolean, String, int) - Method in interface com.univocity.parsers.common.input.CharInputReader
-
Attempts to collect a
String
from the current position until a stop character is found on the input, or a line ending is reached. - getString(char, char, boolean, String, int) - Method in class com.univocity.parsers.common.input.LookaheadCharInputReader
- getString(int) - Method in interface com.univocity.parsers.common.record.Record
-
Returns the
String
value in the given column - getString(int) - Method in class com.univocity.parsers.common.record.RecordImpl
- getString(int, int) - Method in interface com.univocity.parsers.common.record.Record
-
Returns the
String
value in the given column, truncating it to a given maximum length - getString(int, int) - Method in class com.univocity.parsers.common.record.RecordImpl
- getString(Enum<?>) - Method in interface com.univocity.parsers.common.record.Record
-
Returns the
String
value in the given column,null
or the default value specified inRecordMetaData.defaultValueOf(String)
- getString(Enum<?>) - Method in class com.univocity.parsers.common.record.RecordImpl
- getString(Enum<?>, int) - Method in interface com.univocity.parsers.common.record.Record
-
Returns the
String
value in the given column, truncating it to a given maximum length - getString(Enum<?>, int) - Method in class com.univocity.parsers.common.record.RecordImpl
- getString(String) - Method in interface com.univocity.parsers.common.record.Record
-
Returns the
String
value in the given column - getString(String) - Method in class com.univocity.parsers.common.record.RecordImpl
- getString(String, int) - Method in interface com.univocity.parsers.common.record.Record
-
Returns the
String
value in the given column, truncating it to a given maximum length - getString(String, int) - Method in class com.univocity.parsers.common.record.RecordImpl
- getStringCollection(T, Collection<NormalizedString>) - Static method in class com.univocity.parsers.common.NormalizedString
- getStringValue(Object) - Method in class com.univocity.parsers.common.AbstractWriter
-
Converts a given object to its String representation for writing to a
String
If the object is null, thenAbstractWriter.nullValue
is returned. If the String representation of this object is an empty String, thenAbstractWriter.emptyValue
is returned - getSwitch(Object) - Method in class com.univocity.parsers.common.processor.OutputValueSwitch
- getSwitchValues() - Method in class com.univocity.parsers.common.processor.OutputValueSwitch
- getSystemLineSeparator() - Static method in class com.univocity.parsers.common.Format
-
Returns the system's line separator sequence, which can contain 1 to 2 characters.
- getTarget() - Method in class com.univocity.parsers.annotations.helpers.FieldMapping
-
Returns the
Field
mapped to a column - getTarget() - Method in class com.univocity.parsers.annotations.helpers.TransformedHeader
-
Returns the
AnnotatedElement
used to read/write values from/to. - getTargetName() - Method in class com.univocity.parsers.annotations.helpers.TransformedHeader
-
Returns the original attribute name of the field in its containing class.
- getter(String, Class<?>) - Static method in class com.univocity.parsers.annotations.helpers.MethodDescriptor
-
Creates a descriptor for a getter method
- getter(String, Method) - Static method in class com.univocity.parsers.annotations.helpers.MethodDescriptor
-
Creates a descriptor for a getter method
- getTimeZone() - Method in class com.univocity.parsers.conversions.DateConversion
- getTrimmedCharsAndReset() - Method in class com.univocity.parsers.common.input.ElasticCharAppender
- getTrimmedStringAndReset() - Method in class com.univocity.parsers.common.input.ElasticCharAppender
- getType(AnnotatedElement) - Static method in class com.univocity.parsers.annotations.helpers.AnnotationHelper
- getUnescapedQuoteHandling() - Method in class com.univocity.parsers.csv.CsvParserSettings
-
Returns the method of handling values with unescaped quotes.
- getUseDefaultPaddingForHeaders() - Method in class com.univocity.parsers.fixed.FixedWidthParserSettings
-
Indicates whether headers should be parsed using the default padding specified in
FixedWidthFormat.getPadding()
instead of any custom padding associated with a given field (inFixedWidthFields.setPadding(char, int...)
) Defaults totrue
- getUseDefaultPaddingForHeaders() - Method in class com.univocity.parsers.fixed.FixedWidthWriterSettings
-
Indicates whether headers should be written using the default padding specified in
FixedWidthFormat.getPadding()
instead of any custom padding associated with a given field (inFixedWidthFields.setPadding(char, int...)
) Defaults totrue
- getValidatedHeaderName(String) - Method in class com.univocity.parsers.common.processor.OutputValueSwitch
- getValidatedHeaders() - Method in class com.univocity.parsers.common.record.RecordMetaDataImpl
- getValidatedIndex(int) - Method in class com.univocity.parsers.common.processor.OutputValueSwitch
- getValue() - Method in exception com.univocity.parsers.common.DataProcessingException
-
Returns the value being processed when the error occurred, if available.
- getValue(int, Class<T>) - Method in interface com.univocity.parsers.common.record.Record
-
Returns the value contained in the given column.
- getValue(int, Class<T>) - Method in class com.univocity.parsers.common.record.RecordImpl
- getValue(int, Class<T>, Conversion...) - Method in interface com.univocity.parsers.common.record.Record
-
Returns the value contained in the given column, after applying a sequence of conversion over it.
- getValue(int, Class<T>, Conversion...) - Method in class com.univocity.parsers.common.record.RecordImpl
- getValue(int, T) - Method in interface com.univocity.parsers.common.record.Record
-
Returns the value contained in the given column, or a default value if the column contains
null
- getValue(int, T) - Method in class com.univocity.parsers.common.record.RecordImpl
- getValue(int, T, Conversion...) - Method in interface com.univocity.parsers.common.record.Record
-
Returns the value contained in a given column, after applying a sequence of conversions over it.
- getValue(int, T, Conversion...) - Method in class com.univocity.parsers.common.record.RecordImpl
- getValue(Annotation, String) - Method in class com.univocity.parsers.annotations.helpers.AnnotationRegistry.FieldAnnotations
- getValue(Enum<?>, Class<T>) - Method in interface com.univocity.parsers.common.record.Record
-
Returns the value contained in the given column.
- getValue(Enum<?>, Class<T>) - Method in class com.univocity.parsers.common.record.RecordImpl
- getValue(Enum<?>, Class<T>, Conversion...) - Method in interface com.univocity.parsers.common.record.Record
-
Returns the value contained in the given column, after applying a sequence of conversion over it.
- getValue(Enum<?>, Class<T>, Conversion...) - Method in class com.univocity.parsers.common.record.RecordImpl
- getValue(Enum<?>, T) - Method in interface com.univocity.parsers.common.record.Record
-
Returns the value contained in the given column, or a default value if the column contains
null
- getValue(Enum<?>, T) - Method in class com.univocity.parsers.common.record.RecordImpl
- getValue(Enum<?>, T, Conversion...) - Method in interface com.univocity.parsers.common.record.Record
-
Returns the value contained in a given column, after applying a sequence of conversions over it.
- getValue(Enum<?>, T, Conversion...) - Method in class com.univocity.parsers.common.record.RecordImpl
- getValue(AnnotatedElement, Annotation, String) - Static method in class com.univocity.parsers.annotations.helpers.AnnotationRegistry
-
Returns the a value to a given annotation attribute that might have been modified by a
Copy
annotation - getValue(AnnotatedElement, Annotation, String, T) - Static method in class com.univocity.parsers.annotations.helpers.AnnotationRegistry
-
Returns the a value to a given annotation attribute that might have been modified by a
Copy
annotation - getValue(String[], int) - Method in class com.univocity.parsers.common.record.RecordMetaDataImpl
- getValue(String[], int, Class<T>, Conversion[]) - Method in class com.univocity.parsers.common.record.RecordMetaDataImpl
- getValue(String[], int, T, Conversion[]) - Method in class com.univocity.parsers.common.record.RecordMetaDataImpl
- getValue(String[], Enum<?>) - Method in class com.univocity.parsers.common.record.RecordMetaDataImpl
- getValue(String[], Enum<?>, Class<T>, Conversion[]) - Method in class com.univocity.parsers.common.record.RecordMetaDataImpl
- getValue(String[], Enum<?>, T, Conversion[]) - Method in class com.univocity.parsers.common.record.RecordMetaDataImpl
- getValue(String[], String) - Method in class com.univocity.parsers.common.record.RecordMetaDataImpl
- getValue(String[], String, Class<T>, Conversion[]) - Method in class com.univocity.parsers.common.record.RecordMetaDataImpl
- getValue(String[], String, T, Conversion[]) - Method in class com.univocity.parsers.common.record.RecordMetaDataImpl
- getValue(String, Class<T>) - Method in interface com.univocity.parsers.common.record.Record
-
Returns the value contained in the given column.
- getValue(String, Class<T>) - Method in class com.univocity.parsers.common.record.RecordImpl
- getValue(String, Class<T>, Conversion...) - Method in interface com.univocity.parsers.common.record.Record
-
Returns the value contained in the given column, after applying a sequence of conversion over it.
- getValue(String, Class<T>, Conversion...) - Method in class com.univocity.parsers.common.record.RecordImpl
- getValue(String, T) - Method in interface com.univocity.parsers.common.record.Record
-
Returns the value contained in the given column, or a default value if the column contains
null
- getValue(String, T) - Method in class com.univocity.parsers.common.record.RecordImpl
- getValue(String, T, Conversion...) - Method in interface com.univocity.parsers.common.record.Record
-
Returns the value contained in a given column, after applying a sequence of conversions over it.
- getValue(String, T, Conversion...) - Method in class com.univocity.parsers.common.record.RecordImpl
- getValue(Map<?, V>, int) - Method in class com.univocity.parsers.common.processor.OutputValueSwitch
- getValueIfObjectIsNull() - Method in class com.univocity.parsers.conversions.ObjectConversion
-
returns default String value to be returned when an input of type T is null.
- getValueIfStringIsNull() - Method in class com.univocity.parsers.conversions.ObjectConversion
-
returns a default value of type T to be returned when the input String is null.
- getValueOnNullInput() - Method in class com.univocity.parsers.conversions.NullConversion
-
returns a default value of type O to be returned when the input of type I is null.
- getValueOnNullOutput() - Method in class com.univocity.parsers.conversions.NullConversion
-
returns default instance of I to be returned when an input of type O is null.
- getValues() - Method in interface com.univocity.parsers.common.record.Record
-
Returns the plain values obtained from a record parsed from the input.
- getValues() - Method in class com.univocity.parsers.common.record.RecordImpl
- getValues(int...) - Method in interface com.univocity.parsers.common.record.Record
-
Returns a selection of plain values obtained from a record parsed from the input.
- getValues(int...) - Method in class com.univocity.parsers.common.record.RecordImpl
- getValues(Enum<?>...) - Method in interface com.univocity.parsers.common.record.Record
-
Returns a selection of plain values obtained from a record parsed from the input.
- getValues(Enum<?>...) - Method in class com.univocity.parsers.common.record.RecordImpl
- getValues(String...) - Method in interface com.univocity.parsers.common.record.Record
-
Returns a selection of plain values obtained from a record parsed from the input.
- getValues(String...) - Method in class com.univocity.parsers.common.record.RecordImpl
- getWhitespaceRangeStart() - Method in class com.univocity.parsers.common.CommonSettings
-
Returns the starting decimal range for
characters <= ' '
that should be skipped as whitespace, as determined byCommonSettings.getSkipBitsAsWhitespace()
- getWriteLineSeparatorAfterRecord() - Method in class com.univocity.parsers.fixed.FixedWidthWriterSettings
-
Returns a flag indicating whether each record, when written, should be followed by a line separator (as specified in
Format.getLineSeparator()
. - getWriteMethod() - Method in class com.univocity.parsers.common.beans.PropertyWrapper
-
Returns the method that should be used to write a value to a property of a Java bean.
- getWriterSettings() - Method in class com.univocity.parsers.common.routine.AbstractRoutines
-
Returns the writer configuration (if any) used by the routines of this utility class.
- grabContext(T) - Method in class com.univocity.parsers.common.processor.core.AbstractConcurrentProcessor
H
- handleConversionError(Throwable, Object[], int) - Method in class com.univocity.parsers.common.DefaultConversionProcessor
-
Handles an error that occurred when applying conversions over a value.
- handled - Variable in exception com.univocity.parsers.common.DataProcessingException
- handleEOF() - Method in class com.univocity.parsers.common.AbstractParser
- handleError(DataProcessingException, Object[], ParsingContext) - Method in class com.univocity.parsers.common.NoopRowProcessorErrorHandler
-
Rethrows the
DataProcessingException
- handleError(DataProcessingException, Object[], T) - Method in class com.univocity.parsers.common.NoopProcessorErrorHandler
-
Rethrows the
DataProcessingException
- handleError(DataProcessingException, Object[], T) - Method in interface com.univocity.parsers.common.ProcessorErrorHandler
-
Handles non-fatal instances of
DataProcessingException
that are thrown by aProcessor
while processing a record parsed from the input, or from aRowWriterProcessor
when processing records for writing. - handleException(Throwable) - Method in class com.univocity.parsers.common.AbstractParser
- handleUnescapedQuote() - Method in class com.univocity.parsers.csv.CsvParser
- handleUnescapedQuoteInValue() - Method in class com.univocity.parsers.csv.CsvParser
- handleValueSkipping(boolean) - Method in class com.univocity.parsers.csv.CsvParser
- hasBytesStored() - Method in class com.univocity.parsers.common.input.BomInput
-
Returns a flag indicating whether or not all bytes read from the wrapped input stream have been consumed.
- hasDefaultSwitch() - Method in class com.univocity.parsers.common.processor.core.AbstractInputValueSwitch
-
Returns a flag indicating whether this switch contains a default
Processor
implementation to use when no matching value is found in the input row. - hashCode - Variable in class com.univocity.parsers.common.NormalizedString
- hashCode() - Method in class com.univocity.parsers.annotations.helpers.FieldMapping
- hashCode() - Method in class com.univocity.parsers.annotations.helpers.MethodDescriptor
- hashCode() - Method in class com.univocity.parsers.common.NormalizedString
- hashCode() - Method in class com.univocity.parsers.common.record.RecordImpl
- head - Variable in class com.univocity.parsers.common.input.concurrent.FixedInstancePool
- headerExtractionEnabled - Variable in class com.univocity.parsers.common.CommonParserSettings
- headerIndexes - Variable in class com.univocity.parsers.common.AbstractWriter
- headerName - Variable in class com.univocity.parsers.common.processor.OutputValueSwitch
- headers - Variable in class com.univocity.parsers.common.AbstractWriter
- headers - Variable in class com.univocity.parsers.common.CommonSettings
- headers - Variable in class com.univocity.parsers.common.DefaultContext
- headers - Variable in class com.univocity.parsers.common.ParserOutput
- headers - Variable in class com.univocity.parsers.common.processor.core.AbstractBeanListProcessor
- headers - Variable in class com.univocity.parsers.common.processor.core.AbstractInputValueSwitch
- headers - Variable in class com.univocity.parsers.common.processor.core.AbstractInputValueSwitch.Switch
- headers - Variable in class com.univocity.parsers.common.processor.core.AbstractListProcessor
- headers - Variable in class com.univocity.parsers.common.processor.core.AbstractMasterDetailListProcessor
- headers - Variable in class com.univocity.parsers.common.processor.core.AbstractMultiBeanListProcessor
- headers - Variable in class com.univocity.parsers.common.processor.core.AbstractObjectListProcessor
- headers - Variable in class com.univocity.parsers.common.processor.core.ColumnSplitter
- headers - Variable in class com.univocity.parsers.common.processor.OutputValueSwitch.Switch
- headers - Variable in exception com.univocity.parsers.common.TextParsingException
- headers() - Method in interface com.univocity.parsers.common.Context
-
Returns the file headers that identify each parsed record.
- headers() - Method in class com.univocity.parsers.common.ContextWrapper
- headers() - Method in class com.univocity.parsers.common.DefaultContext
- headers() - Method in class com.univocity.parsers.common.NoopParsingContext
- headers() - Method in interface com.univocity.parsers.common.ParsingContext
-
Returns the file headers that identify each parsed record.
- headers() - Method in interface com.univocity.parsers.common.record.RecordMetaData
-
Returns the column names of the
Record
s parsed from the input. - headers() - Method in class com.univocity.parsers.common.record.RecordMetaDataImpl
- Headers - Annotation Interface in com.univocity.parsers.annotations
-
The
Headers
annotation allows java beans to configure how to handle field names in a given input/output - headerSourceClass - Variable in class com.univocity.parsers.common.CommonSettings
- headerStrings - Variable in class com.univocity.parsers.common.ParserOutput
- headerTransformer() - Element in annotation interface com.univocity.parsers.annotations.Nested
-
Provides a
HeaderTransformer
for reassigning header names/positions of the nested class. - HeaderTransformer - Class in com.univocity.parsers.annotations
-
A transformer of headers used in
Nested
attributes. - HeaderTransformer() - Constructor for class com.univocity.parsers.annotations.HeaderTransformer
- headerTrimFlags - Variable in class com.univocity.parsers.common.AbstractWriter
- headerWritingEnabled - Variable in class com.univocity.parsers.common.CommonWriterSettings
I
- i - Variable in class com.univocity.parsers.common.input.AbstractCharInputReader
-
Current position in the buffer
- identifyLiterals() - Method in class com.univocity.parsers.common.processor.core.BeanConversionProcessor
- identifyLiterals(NormalizedString[]) - Static method in class com.univocity.parsers.common.NormalizedString
-
Analyzes a group of NormalizedString to identify any instances whose normalized content will generate clashes.
- identifyLiterals(NormalizedString[], boolean, boolean) - Static method in class com.univocity.parsers.common.NormalizedString
-
Analyzes a group of NormalizedString to identify any instances whose normalized content will generate clashes.
- ignore - Variable in class com.univocity.parsers.fixed.FixedWidthParser
- ignore - Variable in class com.univocity.parsers.fixed.FixedWidthWriter
- ignore - Variable in class com.univocity.parsers.fixed.Lookup
- ignore(int) - Method in interface com.univocity.parsers.common.input.CharAppender
-
Ignores the given number of characters at the end of the appended content, effectively marking these as whitespace.
- ignore(int) - Method in class com.univocity.parsers.common.input.DefaultCharAppender
- ignore(int) - Method in class com.univocity.parsers.common.input.NoopCharAppender
-
Does nothing
- ignoreCount - Variable in class com.univocity.parsers.fixed.FixedWidthWriter
- ignoreLeading - Variable in class com.univocity.parsers.common.AbstractWriter
- ignoreLeadingWhitespace - Variable in class com.univocity.parsers.common.AbstractParser
- ignoreLeadingWhitespaces - Variable in class com.univocity.parsers.common.CommonSettings
- ignoreLeadingWhitespacesInQuotes - Variable in class com.univocity.parsers.csv.CsvParserSettings
- ignoreTrailing - Variable in class com.univocity.parsers.common.AbstractWriter
- ignoreTrailingWhitespace - Variable in class com.univocity.parsers.common.AbstractParser
- ignoreTrailingWhitespaces - Variable in class com.univocity.parsers.common.CommonSettings
- ignoreTrailingWhitespacesInQuotes - Variable in class com.univocity.parsers.csv.CsvParserSettings
- inComment() - Method in class com.univocity.parsers.common.AbstractParser
- increment(Map<Character, Integer>, char) - Method in class com.univocity.parsers.csv.CsvFormatDetector
-
Increments the number associated with a character in a map by 1
- increment(Map<Character, Integer>, char, int) - Method in class com.univocity.parsers.csv.CsvFormatDetector
-
Increments the number associated with a character in a map
- incrementLineCount - Variable in class com.univocity.parsers.common.input.AbstractCharInputReader
- index - Variable in class com.univocity.parsers.annotations.helpers.FieldMapping
- index - Variable in class com.univocity.parsers.annotations.helpers.TransformedHeader
- index - Variable in class com.univocity.parsers.common.input.concurrent.Entry
- index - Variable in class com.univocity.parsers.common.input.DefaultCharAppender
- index - Variable in class com.univocity.parsers.common.record.MetaData
- index() - Element in annotation interface com.univocity.parsers.annotations.Parsed
-
Field position in a parsed record
- indexes - Variable in class com.univocity.parsers.common.processor.core.AbstractInputValueSwitch
- indexes - Variable in class com.univocity.parsers.common.processor.core.AbstractInputValueSwitch.Switch
- indexes - Variable in class com.univocity.parsers.common.processor.OutputValueSwitch.Switch
- indexesOf(Object[], Object) - Static method in class com.univocity.parsers.common.ArgumentUtils
-
Returns the indexes of an element in a given array.
- indexesToWrite - Variable in class com.univocity.parsers.common.AbstractWriter
- indexMap - Variable in class com.univocity.parsers.common.record.RecordMetaDataImpl
- indexOf(char[], char, int) - Static method in class com.univocity.parsers.common.ArgumentUtils
-
Returns the index of a character in a given array.
- indexOf(char[], int) - Method in interface com.univocity.parsers.common.input.CharAppender
-
Returns first the position of a given character sequence
- indexOf(char[], int) - Method in class com.univocity.parsers.common.input.DefaultCharAppender
- indexOf(char[], int) - Method in class com.univocity.parsers.common.input.NoopCharAppender
-
Does nothing
- indexOf(char, int) - Method in interface com.univocity.parsers.common.input.CharAppender
-
Returns first the position of a given character
- indexOf(char, int) - Method in class com.univocity.parsers.common.input.DefaultCharAppender
- indexOf(char, int) - Method in class com.univocity.parsers.common.input.NoopCharAppender
-
Does nothing
- indexOf(NormalizedString[], NormalizedString, FieldSelector) - Static method in class com.univocity.parsers.common.ArgumentUtils
-
Returns the index of a header, when headers are selected using a
FieldSelector
. - indexOf(CharSequence, int) - Method in interface com.univocity.parsers.common.input.CharAppender
-
Returns first the position of a given character sequence
- indexOf(CharSequence, int) - Method in class com.univocity.parsers.common.input.DefaultCharAppender
- indexOf(CharSequence, int) - Method in class com.univocity.parsers.common.input.NoopCharAppender
-
Does nothing
- indexOf(Enum<?>) - Method in class com.univocity.parsers.common.ColumnMap
-
Returns the position of a header (0 based).
- indexOf(Enum<?>) - Method in interface com.univocity.parsers.common.Context
-
Returns the position of a header (0 based).
- indexOf(Enum<?>) - Method in class com.univocity.parsers.common.ContextWrapper
- indexOf(Enum<?>) - Method in class com.univocity.parsers.common.DefaultContext
- indexOf(Enum<?>) - Method in class com.univocity.parsers.common.NoopParsingContext
- indexOf(Enum<?>) - Method in interface com.univocity.parsers.common.record.RecordMetaData
-
Returns the index of a given column
- indexOf(Enum<?>) - Method in class com.univocity.parsers.common.record.RecordMetaDataImpl
- indexOf(Object[], Object) - Static method in class com.univocity.parsers.common.ArgumentUtils
-
Returns the index of an element in a given array.
- indexOf(Object[], Object, int) - Static method in class com.univocity.parsers.common.ArgumentUtils
-
Returns the index of an element in a given array.
- indexOf(String) - Method in class com.univocity.parsers.common.ColumnMap
-
Returns the position of a header (0 based).
- indexOf(String) - Method in interface com.univocity.parsers.common.Context
-
Returns the position of a header (0 based).
- indexOf(String) - Method in class com.univocity.parsers.common.ContextWrapper
- indexOf(String) - Method in class com.univocity.parsers.common.DefaultContext
- indexOf(String) - Method in class com.univocity.parsers.common.NoopParsingContext
- indexOf(String) - Method in interface com.univocity.parsers.common.record.RecordMetaData
-
Returns the index of a given column
- indexOf(String) - Method in class com.univocity.parsers.common.record.RecordMetaDataImpl
- indexOf(String) - Method in class com.univocity.parsers.fixed.FixedWidthFields
-
Returns the index of a field name.
- indexOfAny(char[], int) - Method in interface com.univocity.parsers.common.input.CharAppender
-
Returns the first position of any given character
- indexOfAny(char[], int) - Method in class com.univocity.parsers.common.input.DefaultCharAppender
- indexOfAny(char[], int) - Method in class com.univocity.parsers.common.input.NoopCharAppender
-
Does nothing
- initialize() - Method in class com.univocity.parsers.common.AbstractParser
- initialize() - Method in class com.univocity.parsers.common.processor.core.BeanConversionProcessor
-
Identifies and extracts fields annotated with the
Parsed
annotation - initialize() - Method in class com.univocity.parsers.tsv.TsvParser
- initialize(Context) - Method in class com.univocity.parsers.common.processor.core.ColumnSplitter
-
Initializes the list of column values, the headers of each column and which columns to read if fields have been selected using
CommonSettings.selectFields(String...)
orCommonSettings.selectIndexes(Integer...)
- initialize(NormalizedString[]) - Method in class com.univocity.parsers.common.processor.core.BeanConversionProcessor
-
Identifies and extracts fields annotated with the
Parsed
annotation - initialize(CsvWriterSettings) - Method in class com.univocity.parsers.csv.CsvWriter
-
Initializes the CSV writer with CSV-specific configuration
- initialize(FixedWidthWriterSettings) - Method in class com.univocity.parsers.fixed.FixedWidthWriter
-
Initializes the Fixed-Width writer with CSV-specific configuration
- initialize(TsvWriterSettings) - Method in class com.univocity.parsers.tsv.TsvWriter
-
Initializes the TSV writer with TSV-specific configuration
- initialize(String[]) - Method in class com.univocity.parsers.common.processor.core.BeanConversionProcessor
-
Identifies and extracts fields annotated with the
Parsed
annotation - initialize(S) - Method in class com.univocity.parsers.common.AbstractWriter
-
Initializes the concrete implementation of this class with format-specific settings.
- initializeColumnsToExtract(NormalizedString[]) - Method in class com.univocity.parsers.common.ParserOutput
-
Initializes the sequence of selected fields, if any.
- initializeConversions(String[], Context) - Method in class com.univocity.parsers.common.DefaultConversionProcessor
- initialized - Variable in class com.univocity.parsers.common.processor.core.BeanConversionProcessor
- initializeHeaders() - Method in class com.univocity.parsers.common.ParserOutput
- initializeLookaheadInput - Variable in class com.univocity.parsers.fixed.FixedWidthParser
- initializeLookupContext(ParsingContext, NormalizedString[]) - Method in class com.univocity.parsers.fixed.Lookup
- initializeMappings(Set<EnumSelector>) - Method in class com.univocity.parsers.conversions.EnumConversion
- initializeMetadataConversions(String[], MetaData) - Method in class com.univocity.parsers.common.record.RecordMetaDataImpl
- initializeValuesForMissing() - Method in class com.univocity.parsers.common.processor.core.BeanConversionProcessor
- input - Variable in class com.univocity.parsers.common.AbstractParser
- input - Variable in class com.univocity.parsers.common.DefaultParsingContext
- input - Variable in exception com.univocity.parsers.common.input.BomInput.BytesProcessedNotification
- input - Variable in class com.univocity.parsers.common.input.BomInput
- input - Variable in class com.univocity.parsers.common.processor.core.AbstractConcurrentProcessor
- InputAnalysisProcess - Interface in com.univocity.parsers.common.input
-
A process to be executed over a sample of data being parsed.
- inputAnalysisProcesses - Variable in class com.univocity.parsers.common.CommonParserSettings
- inputAnalysisProcesses - Variable in class com.univocity.parsers.common.input.AbstractCharInputReader
- inputBufferSize - Variable in class com.univocity.parsers.common.CommonParserSettings
- InputDimension - Class in com.univocity.parsers.common.routine
-
A simple class to hold information about the dimensions of a given input, which are calculated using
AbstractRoutines.getInputDimension(File)
- InputDimension() - Constructor for class com.univocity.parsers.common.routine.InputDimension
- inputNotEscaped - Variable in class com.univocity.parsers.csv.CsvWriter
- inputQueue - Variable in class com.univocity.parsers.common.processor.core.AbstractConcurrentProcessor
- InputValueSwitch - Class in com.univocity.parsers.common.processor
-
A concrete implementation of
RowProcessorSwitch
that allows switching among different implementations ofRowProcessor
based on values found on the rows parsed from the input. - InputValueSwitch() - Constructor for class com.univocity.parsers.common.processor.InputValueSwitch
-
Creates a switch that will analyze the first column of rows found in the input to determine which
RowProcessor
to use for each parsed row - InputValueSwitch(int) - Constructor for class com.univocity.parsers.common.processor.InputValueSwitch
-
Creates a switch that will analyze a column of rows parsed from the input to determine which
RowProcessor
to use. - InputValueSwitch(String) - Constructor for class com.univocity.parsers.common.processor.InputValueSwitch
-
Creates a switch that will analyze a column in rows parsed from the input to determine which
RowProcessor
to use. - instance - Static variable in class com.univocity.parsers.common.DummyFormat
- instance - Static variable in class com.univocity.parsers.common.input.NoopCharAppender
- instance - Static variable in class com.univocity.parsers.common.NoopParsingContext
- instance - Static variable in class com.univocity.parsers.common.NoopProcessorErrorHandler
- instance - Static variable in class com.univocity.parsers.common.NoopRowProcessorErrorHandler
- instance - Static variable in class com.univocity.parsers.common.processor.core.NoopProcessor
-
The singleton instance of the no-op
Processor
- instance - Static variable in class com.univocity.parsers.common.processor.NoopRowProcessor
-
The singleton instance of the no-op
RowProcessor
- instanceIndexes - Variable in class com.univocity.parsers.common.input.concurrent.FixedInstancePool
- instancePool - Variable in class com.univocity.parsers.common.input.concurrent.FixedInstancePool
- instances - Variable in class com.univocity.parsers.common.input.concurrent.ConcurrentCharLoader
- instantiateValidators(Class[]) - Method in class com.univocity.parsers.conversions.ValidatedConversion
- IntegerConversion - Class in com.univocity.parsers.conversions
-
Converts Strings to Integers and vice versa
- IntegerConversion() - Constructor for class com.univocity.parsers.conversions.IntegerConversion
-
Creates a Conversion from String to Integer with default values to return when the input is null.
- IntegerConversion(Integer, String) - Constructor for class com.univocity.parsers.conversions.IntegerConversion
-
Creates a Conversion from String to Integer with default values to return when the input is null.
- Internal - Class in com.univocity.parsers.common
-
Internal class to keep common internal functions that are used in multiple places.
- Internal() - Constructor for class com.univocity.parsers.common.Internal
- internalParseAll(boolean, Reader, int) - Method in class com.univocity.parsers.common.AbstractParser
- internalParseAllRecords(boolean, Reader, int) - Method in class com.univocity.parsers.common.AbstractParser
- internalSettings - Variable in class com.univocity.parsers.common.AbstractWriter
- internalWriteRow() - Method in class com.univocity.parsers.common.AbstractWriter
-
Writes the accumulated value of a record to the output, followed by a newline, and increases the record count.
- internalWriteRowToString() - Method in class com.univocity.parsers.common.AbstractWriter
-
Writes the accumulated value of a record to the output, followed by a newline, and increases the record count.
- introspectorClass - Static variable in class com.univocity.parsers.common.beans.BeanHelper
- invoke(Annotation, Method) - Static method in class com.univocity.parsers.annotations.helpers.AnnotationHelper
- invoke(Object, Method) - Static method in class com.univocity.parsers.common.beans.PropertyWrapper
- invokeSetter(Object, PropertyWrapper, String) - Static method in class com.univocity.parsers.annotations.helpers.AnnotationHelper
- isAllowedDelimiter(char) - Method in class com.univocity.parsers.csv.CsvFormatDetector
- isAutoClosingEnabled() - Method in class com.univocity.parsers.common.CommonParserSettings
-
Indicates whether automatic closing of the input (reader, stream, etc) is enabled.
- isAutoConfigurationEnabled() - Method in class com.univocity.parsers.common.CommonSettings
-
Indicates whether this settings object can automatically derive configuration options.
- isCharToEscapeQuoteEscaping(char) - Method in class com.univocity.parsers.csv.CsvFormat
-
Identifies whether or not a given character is used to escape the character used for escaping quotes defined by
CsvFormat.getQuoteEscape()
. - isColumnReorderingEnabled() - Method in class com.univocity.parsers.common.CommonParserSettings
-
Indicates whether fields selected using the field selection methods (defined by the parent class
CommonSettings
) should be reordered (defaults to true). - isColumnReorderingEnabled() - Method in class com.univocity.parsers.common.CommonWriterSettings
-
Indicates whether fields selected using the field selection methods (defined by the parent class
CommonSettings
) should be reordered (defaults to false). - isColumnReorderingEnabled() - Method in class com.univocity.parsers.common.ParserOutput
-
Indicates whether fields selected using the field selection methods (in
CommonSettings
) are being reordered. - isComment(char) - Method in class com.univocity.parsers.common.Format
-
Identifies whether or not a given character represents a comment
- isCommentCollectionEnabled() - Method in class com.univocity.parsers.common.CommonParserSettings
-
Indicates that comments found in the input must be collected (disabled by default).
- isCommentProcessingEnabled() - Method in class com.univocity.parsers.common.CommonParserSettings
-
Indicates whether code will check for comment line in the data file is enabled.
- isContextCopyingEnabled() - Method in class com.univocity.parsers.common.processor.core.AbstractConcurrentProcessor
- isCustomAnnotation(Annotation) - Static method in class com.univocity.parsers.annotations.helpers.AnnotationHelper
- isDelimiter(char) - Method in class com.univocity.parsers.csv.CsvFormat
-
Identifies whether or not a given character represents a field delimiter
- isDelimiter(String) - Method in class com.univocity.parsers.csv.CsvFormat
-
Identifies whether or not a given character represents a field delimiter
- isDelimiterDetectionEnabled() - Method in class com.univocity.parsers.csv.CsvParserSettings
-
Returns a flag indicating whether the parser should analyze the input to discover the column delimiter character.
- isEmpty() - Method in class com.univocity.parsers.common.fields.AbstractConversionMapping
-
Queries if any conversions were associated with any field
- isEmpty() - Method in interface com.univocity.parsers.common.input.CharAppender
-
Indicates whether this appender represents an empty
String
. - isEmpty() - Method in class com.univocity.parsers.common.input.concurrent.CharBucket
-
Returns true if the bucket is empty (i.e.
- isEmpty() - Method in class com.univocity.parsers.common.input.DefaultCharAppender
- isEmpty() - Method in class com.univocity.parsers.common.input.NoopCharAppender
-
Returns
true
as it's always empty. - isEscapeChar(char) - Method in class com.univocity.parsers.tsv.TsvFormat
-
Identifies whether or not a given character is used for escaping special characters in TSV (\t, \n, \r and \).
- isEscapeUnquotedValues() - Method in class com.univocity.parsers.csv.CsvParserSettings
-
Indicates whether escape sequences should be processed in unquoted values.
- isEscapeUnquotedValues() - Method in class com.univocity.parsers.csv.CsvWriterSettings
-
Indicates whether escape sequences should be written in unquoted values.
- isFatal() - Method in exception com.univocity.parsers.common.DataProcessingException
-
Returns a flag indicating whether this error is fatal and the process must stop as it is impossible to proceed.
- isHandled() - Method in exception com.univocity.parsers.common.DataProcessingException
-
Returns a flag indicating this exception has been handled by a user-provided
ProcessorErrorHandler
- isHeaderExtractionEnabled() - Method in class com.univocity.parsers.common.CommonParserSettings
-
Indicates whether or not the first valid record parsed from the input should be considered as the row containing the names of each column
- isHeaderWritingEnabled - Variable in class com.univocity.parsers.common.AbstractWriter
- isHeaderWritingEnabled() - Method in class com.univocity.parsers.common.CommonWriterSettings
-
Returns a flag indicating whether automatic writing of headers is enabled.
- isInputEscaped - Variable in class com.univocity.parsers.csv.CsvWriterSettings
- isInputEscaped() - Method in class com.univocity.parsers.csv.CsvWriterSettings
-
Indicates that the user will provide escaped input, and the writer will not try to introduce escape sequences.
- isKeepEscapeSequences() - Method in class com.univocity.parsers.csv.CsvParserSettings
-
Indicates whether the parser should keep any escape sequences if they are present in the input (i.e.
- isLineJoiningEnabled() - Method in class com.univocity.parsers.tsv.TsvParserSettings
-
Identifies whether or lines ending with the escape character (defined by
TsvFormat.getEscapeChar()
and followed by a line separator character should be joined with the following line. - isLineJoiningEnabled() - Method in class com.univocity.parsers.tsv.TsvWriterSettings
-
Identifies whether values containing line endings should have the line separator written using the escape character (defined by
TsvFormat.getEscapeChar()
followed by the actual line separator character instead of other characters such as the standard letters 'n' and 'r' When line joining is disabled (the default), theTsvWriter
will convert new line characters into sequences containing the escape character (typically '\') followed by characters 'n' or 'r'. - isLineSeparatorDetectionEnabled() - Method in class com.univocity.parsers.common.CommonParserSettings
-
Indicates whether the parser should detect the line separator automatically.
- isLiteral() - Method in class com.univocity.parsers.common.NormalizedString
- isMapped(MethodDescriptor, String) - Method in class com.univocity.parsers.common.fields.ColumnMapping
-
Tests whether a method or attribute has been mapped to a column.
- isMapped(K) - Method in class com.univocity.parsers.common.fields.AbstractColumnMapping
-
Tests whether a given attribute or method is mapped to a column
- isMappedToField() - Method in class com.univocity.parsers.annotations.helpers.FieldMapping
-
Returns
true
if the field is mapped to a column name, otherwisefalse
- isMappedToIndex() - Method in class com.univocity.parsers.annotations.helpers.FieldMapping
-
Returns
true
if the field is mapped to a column index, otherwisefalse
- isMasterRecord(String[], T) - Method in class com.univocity.parsers.common.processor.core.AbstractMasterDetailProcessor
-
Queries whether or not the given row is a master record.
- isMasterRowAboveDetail - Variable in class com.univocity.parsers.common.processor.core.AbstractMasterDetailProcessor
- isNewLine(char) - Method in class com.univocity.parsers.common.Format
-
Compares the given character against the
Format.normalizedNewline
character. - isNormalizeLineEndingsWithinQuotes() - Method in class com.univocity.parsers.csv.CsvParserSettings
-
Flag indicating whether the parser should replace line separators, specified in
Format.getLineSeparator()
by the normalized line separator character specified inFormat.getNormalizedNewline()
, even on quoted values. - isNormalizeLineEndingsWithinQuotes() - Method in class com.univocity.parsers.csv.CsvWriterSettings
-
Flag indicating whether the writer should replace the the normalized line separator character specified in
Format.getNormalizedNewline()
by the sequence specified inFormat.getLineSeparator()
, when the value is enclosed within quotes. - isPadding(char) - Method in class com.univocity.parsers.fixed.FixedWidthFormat
-
Identifies whether or not a given character represents a padding character
- isParseUnescapedQuotes() - Method in class com.univocity.parsers.csv.CsvParserSettings
-
Deprecated.use
CsvParserSettings.getUnescapedQuoteHandling()
instead. The configuration returned byCsvParserSettings.getUnescapedQuoteHandling()
will override this setting if not null. - isParseUnescapedQuotesUntilDelimiter() - Method in class com.univocity.parsers.csv.CsvParserSettings
-
Deprecated.use
CsvParserSettings.getUnescapedQuoteHandling()
instead. The configuration returned byCsvParserSettings.getUnescapedQuoteHandling()
will override this setting if not null. - isProcessorErrorHandlerDefined() - Method in class com.univocity.parsers.common.CommonSettings
-
Returns a flag indicating whether or not a
ProcessorErrorHandler
has been defined through the use of methodCommonSettings.setProcessorErrorHandler(ProcessorErrorHandler)
- isQuotationTrigger(char) - Method in class com.univocity.parsers.csv.CsvWriterSettings
-
Queries if a given character is a quotation trigger, i.e.
- isQuote(char) - Method in class com.univocity.parsers.csv.CsvFormat
-
Identifies whether or not a given character is used for escaping values where the field delimiter is part of the value
- isQuoteDetectionEnabled() - Method in class com.univocity.parsers.csv.CsvParserSettings
-
Returns a flag indicating whether the parser should analyze the input to discover the quote character.
- isQuoteEscape(char) - Method in class com.univocity.parsers.csv.CsvFormat
-
Identifies whether or not a given character is used for escaping quotes inside an already quoted value.
- isQuoteEscapingEnabled() - Method in class com.univocity.parsers.csv.CsvWriterSettings
-
Indicates whether the CSV writer should escape values that contain the quote character, by enclosing the entire value in quotes.
- isReadOly() - Method in class com.univocity.parsers.annotations.helpers.TransformedHeader
-
Returns
true
if thisAnnotatedElement
is aMethod
with no parameters and a return type which can only be used for reading values from the java bean. - isRecordSkipped() - Method in class com.univocity.parsers.common.RetryableErrorHandler
-
Flag indicating whether the current record will be skipped.
- isStopped() - Method in interface com.univocity.parsers.common.Context
-
Identifies whether the parser is running.
- isStopped() - Method in class com.univocity.parsers.common.ContextWrapper
- isStopped() - Method in class com.univocity.parsers.common.DefaultContext
- isStopped() - Method in class com.univocity.parsers.common.NoopParsingContext
- isStrictHeaderValidationEnabled() - Method in class com.univocity.parsers.common.processor.core.BeanConversionProcessor
-
Returns a flag indicating whether all headers declared in the annotated class must be present in the input.
- isSymbol(char) - Method in class com.univocity.parsers.csv.CsvFormatDetector
- isWriteOnly() - Method in class com.univocity.parsers.annotations.helpers.TransformedHeader
-
Returns
true
if thisAnnotatedElement
is aMethod
with parameters and can only be used for writing values into the java bean. - IterableResult<T,
C extends Context> - Interface in com.univocity.parsers.common -
An
Iterable
result that provides the current parsing context through theIterableResult.getContext()
method - iterate(File) - Method in class com.univocity.parsers.common.AbstractParser
-
Provides an
IterableResult
for iterating rows parsed from the input. - iterate(File, String) - Method in class com.univocity.parsers.common.AbstractParser
-
Provides an
IterableResult
for iterating rows parsed from the input. - iterate(File, Charset) - Method in class com.univocity.parsers.common.AbstractParser
-
Provides an
IterableResult
for iterating rows parsed from the input. - iterate(InputStream) - Method in class com.univocity.parsers.common.AbstractParser
-
Provides an
IterableResult
for iterating rows parsed from the input. - iterate(InputStream, String) - Method in class com.univocity.parsers.common.AbstractParser
-
Provides an
IterableResult
for iterating rows parsed from the input. - iterate(InputStream, Charset) - Method in class com.univocity.parsers.common.AbstractParser
-
Provides an
IterableResult
for iterating rows parsed from the input. - iterate(Reader) - Method in class com.univocity.parsers.common.AbstractParser
-
Provides an
IterableResult
for iterating rows parsed from the input. - iterate(Class<T>, File) - Method in class com.univocity.parsers.common.routine.AbstractRoutines
-
Iterates over a file to produce instances of annotated java beans on demand.
- iterate(Class<T>, File, String) - Method in class com.univocity.parsers.common.routine.AbstractRoutines
-
Iterates over a file to produce instances of annotated java beans on demand.
- iterate(Class<T>, File, Charset) - Method in class com.univocity.parsers.common.routine.AbstractRoutines
-
Iterates over a file to produce instances of annotated java beans on demand.
- iterate(Class<T>, InputStream) - Method in class com.univocity.parsers.common.routine.AbstractRoutines
-
Iterates over an input stream to produce instances of annotated java beans on demand.
- iterate(Class<T>, InputStream, String) - Method in class com.univocity.parsers.common.routine.AbstractRoutines
-
Iterates over an input stream to produce instances of annotated java beans on demand.
- iterate(Class<T>, InputStream, Charset) - Method in class com.univocity.parsers.common.routine.AbstractRoutines
-
Iterates over an input stream to produce instances of annotated java beans on demand.
- iterate(Class<T>, Reader) - Method in class com.univocity.parsers.common.routine.AbstractRoutines
-
Iterates over an input to produce instances of annotated java beans on demand.
- iterateRecords(File) - Method in class com.univocity.parsers.common.AbstractParser
-
Provides an
IterableResult
for iterating records parsed from the input. - iterateRecords(File, String) - Method in class com.univocity.parsers.common.AbstractParser
-
Provides an
IterableResult
for iterating records parsed from the input. - iterateRecords(File, Charset) - Method in class com.univocity.parsers.common.AbstractParser
-
Provides an
IterableResult
for iterating records parsed from the input. - iterateRecords(InputStream) - Method in class com.univocity.parsers.common.AbstractParser
-
Provides an
IterableResult
for iterating records parsed from the input. - iterateRecords(InputStream, String) - Method in class com.univocity.parsers.common.AbstractParser
-
Provides an
IterableResult
for iterating records parsed from the input. - iterateRecords(InputStream, Charset) - Method in class com.univocity.parsers.common.AbstractParser
-
Provides an
IterableResult
for iterating records parsed from the input. - iterateRecords(Reader) - Method in class com.univocity.parsers.common.AbstractParser
-
Provides an
IterableResult
for iterating records parsed from the input. - iterator() - Method in interface com.univocity.parsers.common.IterableResult
- iterator() - Method in class com.univocity.parsers.common.iterators.ParserIterator
J
- javaLangAnnotationTypes - Static variable in class com.univocity.parsers.annotations.helpers.AnnotationHelper
- joinLines - Variable in class com.univocity.parsers.tsv.TsvParser
- joinLines - Variable in class com.univocity.parsers.tsv.TsvWriter
K
- keepEscape - Variable in class com.univocity.parsers.csv.CsvParser
- keepEscapeSequences - Variable in class com.univocity.parsers.csv.CsvParserSettings
- keepPadding - Variable in class com.univocity.parsers.fixed.FixedWidthParser
- keepPadding - Variable in class com.univocity.parsers.fixed.FixedWidthParserSettings
- keepPadding() - Element in annotation interface com.univocity.parsers.annotations.FixedWidth
-
Configures whether to retain the padding character when parsing values for this field (defaults to
false
) - keepPaddingFlags - Variable in class com.univocity.parsers.fixed.FixedWidthParser
- keepPaddingFlags - Variable in class com.univocity.parsers.fixed.Lookup
- keepPaddingOn(int, int...) - Method in class com.univocity.parsers.fixed.FixedWidthFields
-
Configures a given list of fields to retain the padding character in any parsed values, overriding the any default set for the whole input in
FixedWidthParserSettings.getKeepPadding()
- keepPaddingOn(String, String...) - Method in class com.univocity.parsers.fixed.FixedWidthFields
-
Configures a given list of fields to retain the padding character in any parsed values, overriding the any default set for the whole input in
FixedWidthParserSettings.getKeepPadding()
- keepQuotes - Variable in class com.univocity.parsers.csv.CsvParser
- keepQuotes - Variable in class com.univocity.parsers.csv.CsvParserSettings
- keepRecord() - Method in class com.univocity.parsers.common.RetryableErrorHandler
-
Ignores the
DataProcessingException
and instructs the parser/writer to continue processing the record. - keepResourcesOpen - Variable in class com.univocity.parsers.common.routine.AbstractRoutines
L
- largestRowLength - Variable in class com.univocity.parsers.common.AbstractWriter
- lastAnnotationFound - Static variable in class com.univocity.parsers.annotations.helpers.AnnotationHelper
- lastComment - Variable in class com.univocity.parsers.common.AbstractParser
- lastComment - Variable in class com.univocity.parsers.common.ParsingContextSnapshot
- lastComment() - Method in class com.univocity.parsers.common.DefaultParsingContext
- lastComment() - Method in class com.univocity.parsers.common.NoopParsingContext
- lastComment() - Method in interface com.univocity.parsers.common.ParsingContext
-
Returns the last comment found in the input.
- lastComment() - Method in class com.univocity.parsers.common.ParsingContextSnapshot
- lastComment() - Method in class com.univocity.parsers.common.ParsingContextWrapper
- lastFieldIndexMapped - Variable in class com.univocity.parsers.common.processor.core.BeanConversionProcessor
- lastIndexOf(char) - Method in class com.univocity.parsers.common.input.AbstractCharInputReader
- lastIndexOf(char) - Method in interface com.univocity.parsers.common.input.CharAppender
-
Returns the last index of a given character in the current appended (characters that have been marked as whitespace will be ignored)
- lastIndexOf(char) - Method in interface com.univocity.parsers.common.input.CharInputReader
-
Returns the last index of a given character in the current parsed content
- lastIndexOf(char) - Method in class com.univocity.parsers.common.input.DefaultCharAppender
- lastIndexOf(char) - Method in class com.univocity.parsers.common.input.LookaheadCharInputReader
- lastIndexOf(char) - Method in class com.univocity.parsers.common.input.NoopCharAppender
- lastInstanceIndex - Variable in class com.univocity.parsers.common.input.concurrent.FixedInstancePool
- lastProcessedAnnotationType - Static variable in class com.univocity.parsers.annotations.helpers.AnnotationHelper
- lastProcessedElement - Static variable in class com.univocity.parsers.annotations.helpers.AnnotationHelper
- LEFT - Enum constant in enum class com.univocity.parsers.fixed.FieldAlignment
-
Aligns values to the left
- length - Variable in class com.univocity.parsers.common.input.AbstractCharInputReader
-
Number of characters available in the buffer.
- length - Variable in class com.univocity.parsers.common.input.concurrent.CharBucket
-
The number of characters this bucket contain.
- length - Variable in class com.univocity.parsers.common.input.LookaheadCharInputReader
- length - Variable in class com.univocity.parsers.common.LineReader
- length - Variable in class com.univocity.parsers.conversions.TrimConversion
- length - Variable in class com.univocity.parsers.fixed.FixedWidthParser
- length - Variable in class com.univocity.parsers.fixed.FixedWidthWriter
- length() - Element in annotation interface com.univocity.parsers.annotations.Trim
- length() - Method in interface com.univocity.parsers.common.input.CharAppender
-
Returns the current accumulated value length (the sum of all appended characters - whitespaceCount).
- length() - Method in class com.univocity.parsers.common.input.DefaultCharAppender
- length() - Method in class com.univocity.parsers.common.input.NoopCharAppender
-
Returns -1 as this appender does nothing.
- length() - Method in class com.univocity.parsers.common.NormalizedString
- lengths - Variable in class com.univocity.parsers.fixed.FixedWidthParser
- lengths - Variable in class com.univocity.parsers.fixed.Lookup
- limit - Variable in class com.univocity.parsers.common.processor.core.AbstractConcurrentProcessor
- line - Variable in class com.univocity.parsers.common.LineReader
- lineCount - Variable in class com.univocity.parsers.common.input.AbstractCharInputReader
- lineCount() - Method in class com.univocity.parsers.common.input.AbstractCharInputReader
- lineCount() - Method in interface com.univocity.parsers.common.input.CharInputReader
-
Returns the number of newlines read so far.
- lineCount() - Method in class com.univocity.parsers.common.input.LookaheadCharInputReader
- lineIndex - Variable in exception com.univocity.parsers.common.TextParsingException
- lineJoiningEnabled - Variable in class com.univocity.parsers.tsv.TsvParserSettings
- lineJoiningEnabled - Variable in class com.univocity.parsers.tsv.TsvWriterSettings
- lineReader - Variable in class com.univocity.parsers.common.AbstractParser
- LineReader - Class in com.univocity.parsers.common
-
A simple Reader implementation to enable parsers to process lines on demand, via
AbstractParser.parseLine(String)
- LineReader() - Constructor for class com.univocity.parsers.common.LineReader
- lineSeparator - Variable in class com.univocity.parsers.common.AbstractWriter
- lineSeparator - Variable in class com.univocity.parsers.common.Format
- lineSeparator() - Method in class com.univocity.parsers.common.DefaultParsingContext
- lineSeparator() - Method in class com.univocity.parsers.common.NoopParsingContext
- lineSeparator() - Method in interface com.univocity.parsers.common.ParsingContext
-
Returns the line separator characters used to separate individual records when parsing.
- lineSeparator() - Method in class com.univocity.parsers.common.ParsingContextWrapper
- lineSeparator1 - Variable in class com.univocity.parsers.common.input.AbstractCharInputReader
- lineSeparator1 - Variable in class com.univocity.parsers.common.input.WriterCharAppender
- lineSeparator2 - Variable in class com.univocity.parsers.common.input.AbstractCharInputReader
- lineSeparator2 - Variable in class com.univocity.parsers.common.input.WriterCharAppender
- lineSeparatorDetected - Variable in class com.univocity.parsers.common.input.AbstractCharInputReader
- lineSeparatorDetectionEnabled - Variable in class com.univocity.parsers.common.CommonParserSettings
- LineSeparatorDetector - Class in com.univocity.parsers.common.input
-
An
InputAnalysisProcess
to detect the line separators used in the input. - LineSeparatorDetector() - Constructor for class com.univocity.parsers.common.input.LineSeparatorDetector
- lineSeparatorString - Variable in class com.univocity.parsers.common.Format
- literal - Variable in class com.univocity.parsers.common.NormalizedString
- literalValueOf(String) - Static method in class com.univocity.parsers.common.NormalizedString
-
Creates a literal
NormalizedString
, meaning it will only match with otherString
orNormalizedString
if they have the exact same content including character case and surrounding whitespaces. - locale - Variable in class com.univocity.parsers.conversions.DateConversion
- lock - Variable in class com.univocity.parsers.common.processor.core.AbstractConcurrentProcessor
- LongConversion - Class in com.univocity.parsers.conversions
-
Converts Strings to Longs and vice versa
- LongConversion() - Constructor for class com.univocity.parsers.conversions.LongConversion
-
Creates a Conversion from String to Long with default values to return when the input is null.
- LongConversion(Long, String) - Constructor for class com.univocity.parsers.conversions.LongConversion
-
Creates a Conversion from String to Long with default values to return when the input is null.
- lookahead - Variable in class com.univocity.parsers.common.input.LookaheadCharInputReader
- lookahead(int) - Method in class com.univocity.parsers.common.input.LookaheadCharInputReader
-
Fills the lookahead buffer with a given number of characters that will be extracted from the wrapped
CharInputReader
- LookaheadCharInputReader - Class in com.univocity.parsers.common.input
-
A special implementation of
CharInputReader
that wraps anotherCharInputReader
and collects a sequence of characters from the wrapped input, in order to analyze what the buffer contains ahead of the current position. - LookaheadCharInputReader(CharInputReader, char, int) - Constructor for class com.univocity.parsers.common.input.LookaheadCharInputReader
-
Creates a lookahead input reader by wrapping a given
CharInputReader
implementation - lookaheadFormats - Variable in class com.univocity.parsers.fixed.FixedWidthParser
- lookaheadFormats - Variable in class com.univocity.parsers.fixed.FixedWidthParserSettings
- lookaheadFormats - Variable in class com.univocity.parsers.fixed.FixedWidthWriter
- lookaheadFormats - Variable in class com.univocity.parsers.fixed.FixedWidthWriterSettings
- lookaheadInput - Variable in class com.univocity.parsers.fixed.FixedWidthParser
- lookbehindFormat - Variable in class com.univocity.parsers.fixed.FixedWidthParser
- lookbehindFormat - Variable in class com.univocity.parsers.fixed.FixedWidthWriter
- lookbehindFormats - Variable in class com.univocity.parsers.fixed.FixedWidthParser
- lookbehindFormats - Variable in class com.univocity.parsers.fixed.FixedWidthParserSettings
- lookbehindFormats - Variable in class com.univocity.parsers.fixed.FixedWidthWriter
- lookbehindFormats - Variable in class com.univocity.parsers.fixed.FixedWidthWriterSettings
- Lookup - Class in com.univocity.parsers.fixed
- Lookup(String, FixedWidthFields, FixedWidthFormat) - Constructor for class com.univocity.parsers.fixed.Lookup
- lookupChars - Variable in class com.univocity.parsers.fixed.FixedWidthWriter
- lookupFormat - Variable in class com.univocity.parsers.fixed.FixedWidthParser
- lookupWildcard - Variable in class com.univocity.parsers.fixed.FixedWidthFormat
- lowerCase - Static variable in class com.univocity.parsers.conversions.Conversions
- LowerCase - Annotation Interface in com.univocity.parsers.annotations
-
Indicates the String value of a field must be converted to lower case using
LowerCaseConversion
. - LowerCaseConversion - Class in com.univocity.parsers.conversions
-
Converts an input String to its lower case representation The
LowerCaseConversion.revert(String)
implements the same behavior ofLowerCaseConversion.execute(String)
. - LowerCaseConversion() - Constructor for class com.univocity.parsers.conversions.LowerCaseConversion
M
- mapFieldIndexes(Context, Object[], NormalizedString[], int[], boolean) - Method in class com.univocity.parsers.common.processor.core.BeanConversionProcessor
-
Identifies which fields are associated with which columns in a row.
- mapFieldsToValues(T, Object[], NormalizedString[], int[], boolean) - Method in class com.univocity.parsers.common.processor.core.BeanConversionProcessor
-
Iterates over all fields in the java bean instance and extracts its values.
- mapping - Variable in class com.univocity.parsers.common.fields.AbstractColumnMapping
- mappingsForWritingValidated - Variable in class com.univocity.parsers.common.processor.core.BeanConversionProcessor
- mapToColumn(K, Enum<?>) - Method in class com.univocity.parsers.common.fields.AbstractColumnMapping
-
Maps a attribute or method to a column name
- mapToColumnIndex(K, int) - Method in class com.univocity.parsers.common.fields.AbstractColumnMapping
-
Maps a attribute or method to a column name
- mapToColumnIndexes(Map<K, Integer>) - Method in class com.univocity.parsers.common.fields.AbstractColumnMapping
-
Maps multiple attributes or methods to multiple column names
- mapToColumnName(K, String) - Method in class com.univocity.parsers.common.fields.AbstractColumnMapping
-
Maps a attribute or method to a column name
- mapToColumnNames(Map<K, String>) - Method in class com.univocity.parsers.common.fields.AbstractColumnMapping
-
Maps multiple attributes or methods to multiple column names
- mapToColumns(Map<K, Enum<?>>) - Method in class com.univocity.parsers.common.fields.AbstractColumnMapping
-
Maps multiple attributes or methods to multiple column names
- mapValuesToFields(T, Object[], Context) - Method in class com.univocity.parsers.common.processor.core.BeanConversionProcessor
-
Goes through a list of objects and associates each value to a particular field of a java bean instance
- markAsHandled(ProcessorErrorHandler) - Method in exception com.univocity.parsers.common.DataProcessingException
-
Marks the error as handled so it doesn't trigger a
ProcessorErrorHandler
again. - markAsNonFatal() - Method in exception com.univocity.parsers.common.DataProcessingException
-
Marks the error as non fatal and the parsing process might proceed.
- markRecordStart() - Method in class com.univocity.parsers.common.input.AbstractCharInputReader
- markRecordStart() - Method in interface com.univocity.parsers.common.input.CharInputReader
-
Marks the start of a new record in the input, used internally to calculate the result of
CharInputReader.currentParsedContent()
- markRecordStart() - Method in class com.univocity.parsers.common.input.LookaheadCharInputReader
- markSupported() - Method in class com.univocity.parsers.common.LineReader
- MasterDetailListProcessor - Class in com.univocity.parsers.common.processor
-
A convenience
MasterDetailProcessor
implementation for storing allMasterDetailRecord
generated form the parsed input into a list. - MasterDetailListProcessor(AbstractObjectListProcessor) - Constructor for class com.univocity.parsers.common.processor.MasterDetailListProcessor
- MasterDetailListProcessor(RowPlacement, AbstractObjectListProcessor) - Constructor for class com.univocity.parsers.common.processor.MasterDetailListProcessor
- MasterDetailProcessor - Class in com.univocity.parsers.common.processor
-
A
RowProcessor
implementation for associating rows extracted from any implementation ofAbstractParser
intoMasterDetailRecord
instances. - MasterDetailProcessor(ObjectRowListProcessor) - Constructor for class com.univocity.parsers.common.processor.MasterDetailProcessor
- MasterDetailProcessor(RowPlacement, ObjectRowListProcessor) - Constructor for class com.univocity.parsers.common.processor.MasterDetailProcessor
-
Creates a MasterDetailProcessor
- MasterDetailRecord - Class in com.univocity.parsers.common.processor
-
An utility class to store data of a master row and its detail records.
- MasterDetailRecord() - Constructor for class com.univocity.parsers.common.processor.MasterDetailRecord
- masterDetailRecordProcessed(MasterDetailRecord, T) - Method in class com.univocity.parsers.common.processor.core.AbstractMasterDetailListProcessor
-
Stores the generated
MasterDetailRecord
with the set of associated parsed records into a list. - masterDetailRecordProcessed(MasterDetailRecord, T) - Method in class com.univocity.parsers.common.processor.core.AbstractMasterDetailProcessor
-
Invoked by the processor after a master row and all associated detail rows have been processed.
- masterRow - Variable in class com.univocity.parsers.common.processor.MasterDetailRecord
- match - Variable in class com.univocity.parsers.csv.CsvParser
- matchDelimiter() - Method in class com.univocity.parsers.csv.CsvParser
- matchDelimiterAfterQuote() - Method in class com.univocity.parsers.csv.CsvParser
- matcher - Variable in class com.univocity.parsers.common.processor.core.AbstractInputValueSwitch.Switch
- matcher - Variable in class com.univocity.parsers.conversions.ValidatedConversion
- matches() - Element in annotation interface com.univocity.parsers.annotations.Validate
-
Ensures that the value of this field matches a given regular expression.
- matches(char[]) - Method in class com.univocity.parsers.fixed.Lookup
- matches(char[], char) - Method in class com.univocity.parsers.common.input.LookaheadCharInputReader
-
Matches a sequence of characters against the current lookahead buffer.
- matches(char, char[], char) - Method in class com.univocity.parsers.common.input.LookaheadCharInputReader
-
Matches a sequence of characters against the current lookahead buffer.
- matches(String) - Method in interface com.univocity.parsers.common.processor.CustomMatcher
-
Matches a parsed value against a user provided rule (implementation provided by the user)
- matchMultiDelimiter(String, int) - Method in class com.univocity.parsers.csv.CsvWriter
- max(Map<Character, Integer>, Map<Character, Integer>, char) - Method in class com.univocity.parsers.csv.CsvFormatDetector
-
Returns the character with the highest associated number.
- MAX_ARRAY_LENGTH - Static variable in class com.univocity.parsers.common.input.ExpandingCharAppender
- MAX_ROW_SAMPLES - Variable in class com.univocity.parsers.csv.CsvFormatDetector
- maxCharsPerColumn - Variable in class com.univocity.parsers.common.CommonSettings
- maxColumnLength - Variable in class com.univocity.parsers.csv.CsvParser
- maxColumns - Variable in class com.univocity.parsers.common.CommonSettings
- maxLookupLength - Variable in class com.univocity.parsers.fixed.FixedWidthParser
- maxStringLength - Variable in class com.univocity.parsers.common.StringCache
- maxTrigger - Variable in class com.univocity.parsers.csv.CsvWriter
- metaData - Variable in class com.univocity.parsers.common.record.AbstractRecordFactory
- metaData - Variable in class com.univocity.parsers.common.record.RecordImpl
- MetaData - Class in com.univocity.parsers.common.record
- MetaData(int) - Constructor for class com.univocity.parsers.common.record.MetaData
- metadataOf(int) - Method in class com.univocity.parsers.common.record.RecordMetaDataImpl
- metadataOf(Enum<?>) - Method in class com.univocity.parsers.common.record.RecordMetaDataImpl
- metadataOf(String) - Method in class com.univocity.parsers.common.record.RecordMetaDataImpl
- method - Variable in class com.univocity.parsers.annotations.helpers.TransformedHeader
- MethodDescriptor - Class in com.univocity.parsers.annotations.helpers
-
A very basic descriptor or getter/setter methods
- MethodDescriptor(String, Class<?>, Class<?>) - Constructor for class com.univocity.parsers.annotations.helpers.MethodDescriptor
- MethodDescriptor(String, String, Class<?>, Class<?>) - Constructor for class com.univocity.parsers.annotations.helpers.MethodDescriptor
- methodFilter - Variable in class com.univocity.parsers.common.processor.core.BeanConversionProcessor
- MethodFilter - Enum Class in com.univocity.parsers.annotations.helpers
-
A filter for annotated methods.
- MethodFilter(MethodFilter.Filter) - Constructor for enum class com.univocity.parsers.annotations.helpers.MethodFilter
- MethodFilter.Filter - Interface in com.univocity.parsers.annotations.helpers
- methodMapping - Variable in class com.univocity.parsers.common.fields.ColumnMapping
- MethodMapping(String, ColumnMapping.MethodMapping) - Constructor for class com.univocity.parsers.common.fields.ColumnMapping.MethodMapping
- methodNameMapping - Variable in class com.univocity.parsers.common.fields.ColumnMapping
- methodsToColumnNames(Map<String, String>) - Method in interface com.univocity.parsers.common.fields.ColumnMapper
-
Maps multiple methods to multiple column names.
- methodsToColumnNames(Map<String, String>) - Method in class com.univocity.parsers.common.fields.ColumnMapping
- methodsToColumns(Map<String, Enum<?>>) - Method in interface com.univocity.parsers.common.fields.ColumnMapper
-
Maps multiple methods to multiple columns.
- methodsToColumns(Map<String, Enum<?>>) - Method in class com.univocity.parsers.common.fields.ColumnMapping
- methodsToIndexes(Map<String, Integer>) - Method in interface com.univocity.parsers.common.fields.ColumnMapper
-
Maps multiple methods to multiple column positions.
- methodsToIndexes(Map<String, Integer>) - Method in class com.univocity.parsers.common.fields.ColumnMapping
- methodToColumn(MethodDescriptor, Enum<?>) - Method in class com.univocity.parsers.common.fields.ColumnMapping
- methodToColumn(String, Class<?>, Enum<?>) - Method in interface com.univocity.parsers.common.fields.ColumnMapper
-
Maps a setter method to a column.
- methodToColumn(String, Class<?>, Enum<?>) - Method in class com.univocity.parsers.common.fields.ColumnMapping
- methodToColumn(String, Enum<?>) - Method in interface com.univocity.parsers.common.fields.ColumnMapper
-
Maps a method to a column.
- methodToColumn(String, Enum<?>) - Method in class com.univocity.parsers.common.fields.ColumnMapping
- methodToColumnName(MethodDescriptor, String) - Method in class com.univocity.parsers.common.fields.ColumnMapping
- methodToColumnName(String, Class<?>, String) - Method in interface com.univocity.parsers.common.fields.ColumnMapper
-
Maps a setter method to a column name.
- methodToColumnName(String, Class<?>, String) - Method in class com.univocity.parsers.common.fields.ColumnMapping
- methodToColumnName(String, String) - Method in interface com.univocity.parsers.common.fields.ColumnMapper
-
Maps a method to a column name.
- methodToColumnName(String, String) - Method in class com.univocity.parsers.common.fields.ColumnMapping
- methodToIndex(MethodDescriptor, int) - Method in class com.univocity.parsers.common.fields.ColumnMapping
- methodToIndex(String, int) - Method in interface com.univocity.parsers.common.fields.ColumnMapper
-
Maps a method to a column position.
- methodToIndex(String, int) - Method in class com.univocity.parsers.common.fields.ColumnMapping
- methodToIndex(String, Class<?>, int) - Method in interface com.univocity.parsers.common.fields.ColumnMapper
-
Maps a setter method to a column position.
- methodToIndex(String, Class<?>, int) - Method in class com.univocity.parsers.common.fields.ColumnMapping
- min(Map<Character, Integer>, Map<Character, Integer>, char) - Method in class com.univocity.parsers.csv.CsvFormatDetector
-
Returns the character with the lowest associated number.
- minimumRowLength - Variable in class com.univocity.parsers.common.processor.RowWriterProcessorSwitch
- missing - Variable in class com.univocity.parsers.common.processor.core.BeanConversionProcessor
- modifiedAnnotations - Static variable in class com.univocity.parsers.annotations.helpers.AnnotationRegistry
- MultiBeanListProcessor - Class in com.univocity.parsers.common.processor
-
A
RowProcessor
implementation for converting rows extracted from any implementation ofAbstractParser
into java objects, storing them into lists. - MultiBeanListProcessor(int, Class...) - Constructor for class com.univocity.parsers.common.processor.MultiBeanListProcessor
-
Creates a processor for java beans of multiple types
- MultiBeanListProcessor(Class...) - Constructor for class com.univocity.parsers.common.processor.MultiBeanListProcessor
-
Creates a processor for java beans of multiple types
- MultiBeanProcessor - Class in com.univocity.parsers.common.processor
-
A
RowProcessor
implementation for converting rows extracted from any implementation ofAbstractParser
into java objects. - MultiBeanProcessor(Class...) - Constructor for class com.univocity.parsers.common.processor.MultiBeanProcessor
-
Creates a processor for java beans of multiple types
- MultiBeanRowProcessor - Class in com.univocity.parsers.common.processor
-
A
RowProcessor
implementation for converting rows extracted from any implementation ofAbstractParser
into java objects. - MultiBeanRowProcessor(Class...) - Constructor for class com.univocity.parsers.common.processor.MultiBeanRowProcessor
-
Creates a processor for java beans of multiple types
- multiDelimiter - Variable in class com.univocity.parsers.csv.CsvParser
- multiDelimiter - Variable in class com.univocity.parsers.csv.CsvWriter
N
- name - Variable in class com.univocity.parsers.annotations.helpers.MethodDescriptor
- name - Variable in class com.univocity.parsers.common.beans.PropertyWrapper
- NAME - Enum constant in enum class com.univocity.parsers.conversions.EnumSelector
-
Matches the result of
Enum.name()
- NameMapping(String, ColumnMapping.NameMapping) - Constructor for class com.univocity.parsers.common.fields.ColumnMapping.NameMapping
- names - Variable in class com.univocity.parsers.common.fields.ExcludeFieldEnumSelector
- names - Variable in class com.univocity.parsers.common.fields.FieldEnumSelector
- Nested - Annotation Interface in com.univocity.parsers.annotations
-
Marks a field as a nested object to be constructed with the values of the current row.
- nestedAttributes - Variable in class com.univocity.parsers.common.processor.core.BeanConversionProcessor
- newCharAppender() - Method in class com.univocity.parsers.common.CommonParserSettings
-
Returns an instance of CharAppender with the configured limit of maximum characters per column and the default value used to represent a null value (when the String parsed from the input is empty)
- newCharAppender() - Method in class com.univocity.parsers.csv.CsvParserSettings
-
Returns an instance of CharAppender with the configured limit of maximum characters per column and the default value used to represent an empty value (when the String parsed from the input, within quotes, is empty)
- newCharAppender() - Method in class com.univocity.parsers.fixed.FixedWidthParserSettings
-
Returns an instance of CharAppender with the configured limit of maximum characters per column and, default value used to represent a null value (when the String parsed from the input is empty), and the padding character to handle unwritten positions
- newCharInputReader(int) - Method in class com.univocity.parsers.common.CommonParserSettings
-
An implementation of
CharInputReader
which loads the parser buffer in parallel or sequentially, as defined by the readInputOnSeparateThread property - newFieldSelector() - Method in class com.univocity.parsers.common.fields.AbstractConversionMapping
-
Creates a FieldSelector instance of the desired type.
- newFormatAnnotation(String, String...) - Static method in class com.univocity.parsers.common.record.RecordMetaDataImpl
- newInstance() - Method in class com.univocity.parsers.common.input.concurrent.FixedInstancePool
-
Creates a new instance of the given type of objects stored as entries of this instance pool This method is called in the constructor of this class for initialization of the instance array and must always return a new instance.
- newInstance(Class, Class<T>, String[]) - Static method in class com.univocity.parsers.annotations.helpers.AnnotationHelper
- newLine - Variable in class com.univocity.parsers.common.input.LookaheadCharInputReader
- newLine - Variable in class com.univocity.parsers.common.input.WriterCharAppender
- newLine - Variable in class com.univocity.parsers.csv.CsvParser
- newLine - Variable in class com.univocity.parsers.csv.CsvWriter
- newLine - Variable in class com.univocity.parsers.fixed.FixedWidthParser
- newLine - Variable in class com.univocity.parsers.tsv.TsvParser
- newLine - Variable in class com.univocity.parsers.tsv.TsvWriter
- newReader(File) - Static method in class com.univocity.parsers.common.ArgumentUtils
-
Creates a
Reader
for a given a file - newReader(File, String) - Static method in class com.univocity.parsers.common.ArgumentUtils
-
Creates a
Reader
for a given a file - newReader(File, Charset) - Static method in class com.univocity.parsers.common.ArgumentUtils
-
Creates a
Reader
for a given a file - newReader(InputStream) - Static method in class com.univocity.parsers.common.ArgumentUtils
-
Creates a
Reader
from an input stream - newReader(InputStream, String) - Static method in class com.univocity.parsers.common.ArgumentUtils
-
Creates a
Reader
from an input stream - newReader(InputStream, Charset) - Static method in class com.univocity.parsers.common.ArgumentUtils
-
Creates a
Reader
from an input stream - newRecord(String[]) - Method in class com.univocity.parsers.common.record.AbstractRecordFactory
-
Creates a new
Record
with a row parsed from the input - newRecord(String[]) - Method in class com.univocity.parsers.common.record.RecordFactory
-
Creates a new
Record
with a row parsed from the input - newWriter(File) - Static method in class com.univocity.parsers.common.ArgumentUtils
-
Creates a
Writer
from a file - newWriter(File, String) - Static method in class com.univocity.parsers.common.ArgumentUtils
-
Creates a
Writer
from a file - newWriter(File, Charset) - Static method in class com.univocity.parsers.common.ArgumentUtils
-
Creates a
Writer
from a file - newWriter(OutputStream) - Static method in class com.univocity.parsers.common.ArgumentUtils
-
Creates a
Writer
from an output stream - newWriter(OutputStream, String) - Static method in class com.univocity.parsers.common.ArgumentUtils
-
Creates a
Writer
from an output stream - newWriter(OutputStream, Charset) - Static method in class com.univocity.parsers.common.ArgumentUtils
-
Creates a
Writer
from an output stream - next - Variable in class com.univocity.parsers.common.LineReader
- next - Variable in class com.univocity.parsers.common.processor.core.AbstractConcurrentProcessor.Node
- next() - Method in class com.univocity.parsers.common.input.BomInput
- nextBucket() - Method in class com.univocity.parsers.common.input.concurrent.ConcurrentCharLoader
-
Returns the next available bucket.
- nextChar() - Method in class com.univocity.parsers.common.input.AbstractCharInputReader
- nextChar() - Method in interface com.univocity.parsers.common.input.CharInput
-
Returns the next character in the input.
- nextChar() - Method in interface com.univocity.parsers.common.input.CharInputReader
-
Returns the next character in the input provided by the active
Reader
. - nextChar() - Method in class com.univocity.parsers.common.input.LookaheadCharInputReader
- nextDelimiter() - Method in class com.univocity.parsers.csv.CsvParser
- nextResult() - Method in class com.univocity.parsers.common.iterators.ParserIterator
-
Returns the next record (either a String[] or a
Record
) - nextResult() - Method in class com.univocity.parsers.common.iterators.RecordIterator
- nextResult() - Method in class com.univocity.parsers.common.iterators.RowIterator
- NO_ANNOTATIONS() - Constructor for class com.univocity.parsers.annotations.helpers.AnnotationHelper.NO_ANNOTATIONS
- NO_METHOD - Static variable in class com.univocity.parsers.common.beans.PropertyWrapper
- NO_NAME - Static variable in class com.univocity.parsers.common.beans.PropertyWrapper
- Node(String[], T) - Constructor for class com.univocity.parsers.common.processor.core.AbstractConcurrentProcessor.Node
- noNames - Variable in class com.univocity.parsers.fixed.FixedWidthFields
- noneOf - Variable in class com.univocity.parsers.conversions.ValidatedConversion
- noneOf() - Element in annotation interface com.univocity.parsers.annotations.Validate
-
Ensures that the value of this field does is not an unwanted value.
- noneOf(String...) - Static method in class com.univocity.parsers.conversions.Conversions
-
Returns a new instance of
ValidatedConversion
to validate values of a record Nulls and blanks are not be allowed by default. - nonNullReadOrderLength() - Method in class com.univocity.parsers.common.processor.core.BeanConversionProcessor
- noNulls(String, T...) - Static method in class com.univocity.parsers.common.ArgumentUtils
-
Throws an IllegalArgumentException if the given array is null,empty, or contains null values
- NoopCharAppender - Class in com.univocity.parsers.common.input
-
An implementation of
CharAppender
that does nothing. - NoopCharAppender() - Constructor for class com.univocity.parsers.common.input.NoopCharAppender
-
This is a singleton class and cannot be instantiated.
- NoopParsingContext - Class in com.univocity.parsers.common
-
A
ParsingContext
implementation that does nothing. - NoopParsingContext() - Constructor for class com.univocity.parsers.common.NoopParsingContext
- NoopProcessor - Class in com.univocity.parsers.common.processor.core
-
A singleton instance of a
Processor
that does nothing. - NoopProcessor() - Constructor for class com.univocity.parsers.common.processor.core.NoopProcessor
- NoopProcessorErrorHandler<T extends Context> - Class in com.univocity.parsers.common
-
An (singleton) implementation of
ProcessorErrorHandler
that simply rethrows anyDataProcessingException
that comes into itsNoopProcessorErrorHandler.handleError(DataProcessingException, Object[], Context)
} method - NoopProcessorErrorHandler() - Constructor for class com.univocity.parsers.common.NoopProcessorErrorHandler
- NoopRowProcessor - Class in com.univocity.parsers.common.processor
-
A singleton instance of a
RowProcessor
that does nothing. - NoopRowProcessor() - Constructor for class com.univocity.parsers.common.processor.NoopRowProcessor
- NoopRowProcessorErrorHandler - Class in com.univocity.parsers.common
-
An (singleton) implementation of
RowProcessorErrorHandler
that simply rethrows anyDataProcessingException
that comes into itsNoopRowProcessorErrorHandler.handleError(DataProcessingException, Object[], ParsingContext)
method - NoopRowProcessorErrorHandler() - Constructor for class com.univocity.parsers.common.NoopRowProcessorErrorHandler
- normalize(Object) - Method in class com.univocity.parsers.common.NormalizedString
- normalize(String) - Static method in class com.univocity.parsers.conversions.BooleanConversion
-
Normalizes a given String by trimming whitespaces and converting it to lower case.
- normalize(Collection<String>) - Static method in class com.univocity.parsers.conversions.BooleanConversion
-
Normalizes the Strings in a given collection by trimming all elements and converting them to lower case.
- normalized - Variable in class com.univocity.parsers.common.NormalizedString
- normalizedHeaders - Variable in class com.univocity.parsers.common.processor.BeanWriterProcessor
- normalizedHeaders - Variable in class com.univocity.parsers.common.processor.ObjectRowWriterProcessor
- normalizedHeaders - Variable in class com.univocity.parsers.common.processor.RowWriterProcessorSwitch
- normalizedLineSeparator - Variable in class com.univocity.parsers.common.input.AbstractCharInputReader
- normalizedNewline - Variable in class com.univocity.parsers.common.Format
- normalizedNewLine - Variable in class com.univocity.parsers.csv.CsvFormatDetector
- NormalizedString - Class in com.univocity.parsers.common
-
A
NormalizedString
allows representing text in a normalized fashion. - NormalizedString(String) - Constructor for class com.univocity.parsers.common.NormalizedString
- normalizeLineEndings - Variable in class com.univocity.parsers.common.input.AbstractCharInputReader
- normalizeLineEndingsInQuotes - Variable in class com.univocity.parsers.csv.CsvParser
- normalizeLineEndingsWithinQuotes - Variable in class com.univocity.parsers.csv.CsvParserSettings
- normalizeLineEndingsWithinQuotes - Variable in class com.univocity.parsers.csv.CsvWriterSettings
- notBlank() - Static method in class com.univocity.parsers.conversions.Conversions
-
Returns a
ValidatedConversion
that doesn't allow null or blank values - notBlank(String) - Static method in class com.univocity.parsers.conversions.Conversions
-
Returns a
ValidatedConversion
that verifies the format of a given value - notEmpty(String, T...) - Static method in class com.univocity.parsers.common.ArgumentUtils
-
Throws an IllegalArgumentException if the given array is null or empty.
- notNull() - Static method in class com.univocity.parsers.conversions.Conversions
-
Returns a
ValidatedConversion
that doesn't allow null values - nullable - Variable in class com.univocity.parsers.conversions.ValidatedConversion
- nullable() - Element in annotation interface com.univocity.parsers.annotations.Validate
-
Indicates whether this field can be
null
- NullConversion<I,
O> - Class in com.univocity.parsers.conversions -
Default implementation for conversions from input Objects of type I to output Objects of type O
- NullConversion() - Constructor for class com.univocity.parsers.conversions.NullConversion
-
Creates a Conversion from an object to another object of a different type, with default values to return when the input is null.
- NullConversion(O, I) - Constructor for class com.univocity.parsers.conversions.NullConversion
-
Creates a Conversion from an object to another object of a different type, with default values to return when the input is null.
- nulls() - Element in annotation interface com.univocity.parsers.annotations.NullString
-
A set of Strings that represent a null value instead of a valid String (e.g.
- NullString - Annotation Interface in com.univocity.parsers.annotations
-
Indicates that parsed values such as "", "?" or "null" should be interpreted as null.
- NullStringConversion - Class in com.univocity.parsers.conversions
-
Converts Strings to null and vice versa
- NullStringConversion(String...) - Constructor for class com.univocity.parsers.conversions.NullStringConversion
-
Creates conversions from Strings to null.
- nullStrings - Variable in class com.univocity.parsers.conversions.NullStringConversion
- nullValue - Variable in class com.univocity.parsers.common.AbstractWriter
- nullValue - Variable in class com.univocity.parsers.common.CommonSettings
- nullValue - Variable in class com.univocity.parsers.common.ParserOutput
- nullValue - Variable in class com.univocity.parsers.csv.CsvParser
- numberOfRecordsToRead - Variable in class com.univocity.parsers.common.CommonParserSettings
- numberOfRowsToSkip - Variable in class com.univocity.parsers.common.CommonParserSettings
- numberType - Variable in class com.univocity.parsers.conversions.NumericConversion
- NumericConversion<T extends Number> - Class in com.univocity.parsers.conversions
-
Converts Strings to instances of
Number
and vice versa. - NumericConversion() - Constructor for class com.univocity.parsers.conversions.NumericConversion
-
Defines a conversion from String to
Number
using a sequence of acceptable numeric patterns. - NumericConversion(String...) - Constructor for class com.univocity.parsers.conversions.NumericConversion
-
Defines a conversion from String to
Number
using a sequence of acceptable numeric patterns. - NumericConversion(DecimalFormat...) - Constructor for class com.univocity.parsers.conversions.NumericConversion
-
Defines a conversion from String to
Number
using a sequence of acceptable numeric patterns. - NumericConversion(T, String) - Constructor for class com.univocity.parsers.conversions.NumericConversion
-
Defines a conversion from String to
Number
using a sequence of acceptable numeric patterns. - NumericConversion(T, String, String...) - Constructor for class com.univocity.parsers.conversions.NumericConversion
-
Defines a conversion from String to
Number
using a sequence of acceptable numeric patterns. - NumericConversion(T, String, DecimalFormat...) - Constructor for class com.univocity.parsers.conversions.NumericConversion
-
Defines a conversion from String to
Number
using a sequence of acceptable numeric patterns.
O
- ObjectColumnProcessor - Class in com.univocity.parsers.common.processor
-
A
RowProcessor
implementation for converting rows extracted from any implementation ofAbstractParser
into columns of objects. - ObjectColumnProcessor() - Constructor for class com.univocity.parsers.common.processor.ObjectColumnProcessor
-
Constructs a column processor, pre-allocating room for 1000 rows.
- ObjectColumnProcessor(int) - Constructor for class com.univocity.parsers.common.processor.ObjectColumnProcessor
-
Constructs a column processor pre-allocating room for the expected number of rows to be processed
- ObjectConversion<T> - Class in com.univocity.parsers.conversions
-
Default implementation for conversions from an input String to Objects of a given type T
- ObjectConversion() - Constructor for class com.univocity.parsers.conversions.ObjectConversion
-
Creates a Conversion from String to an Object with default values to return when the input is null.
- ObjectConversion(T, String) - Constructor for class com.univocity.parsers.conversions.ObjectConversion
-
Creates a Conversion from String to an Object with default values to return when the input is null.
- ObjectRowListProcessor - Class in com.univocity.parsers.common.processor
-
A convenience
RowProcessor
implementation for storing all rows parsed and converted to Object arrays into a list. - ObjectRowListProcessor() - Constructor for class com.univocity.parsers.common.processor.ObjectRowListProcessor
-
Creates a new processor of
Object[]
rows with varying types. - ObjectRowListProcessor(int) - Constructor for class com.univocity.parsers.common.processor.ObjectRowListProcessor
-
Creates a new processor of
Object[]
rows with varying types. - ObjectRowProcessor - Class in com.univocity.parsers.common.processor
-
A
RowProcessor
implementation for converting rows extracted from any implementation ofAbstractParser
into arrays of objects. - ObjectRowProcessor() - Constructor for class com.univocity.parsers.common.processor.ObjectRowProcessor
- ObjectRowWriterProcessor - Class in com.univocity.parsers.common.processor
-
A
RowWriterProcessor
implementation for executing conversion sequences in object arrays before for writing them using any implementation ofAbstractWriter
. - ObjectRowWriterProcessor() - Constructor for class com.univocity.parsers.common.processor.ObjectRowWriterProcessor
- oneOf - Variable in class com.univocity.parsers.conversions.ValidatedConversion
- oneOf() - Element in annotation interface com.univocity.parsers.annotations.Validate
-
Ensures that the value of this field is one of a given set of alternatives
- oneOf(String...) - Static method in class com.univocity.parsers.conversions.Conversions
-
Returns a new instance of
ValidatedConversion
to validate values of a record Nulls and blanks are not be allowed by default. - ONLY_GETTERS - Enum constant in enum class com.univocity.parsers.annotations.helpers.MethodFilter
-
Rejects any method that returns
void
or has a parameter list. - ONLY_SETTERS - Enum constant in enum class com.univocity.parsers.annotations.helpers.MethodFilter
-
Rejects any method that doesn't accept a single parameter.
- options() - Element in annotation interface com.univocity.parsers.annotations.Format
-
Defines a sequence of properties and their values, used to configure the underlying formatter.
- ORDINAL - Enum constant in enum class com.univocity.parsers.conversions.EnumSelector
-
Matches the result of
Enum.ordinal()
- original - Variable in class com.univocity.parsers.common.NormalizedString
- output - Variable in class com.univocity.parsers.common.AbstractParser
- output - Variable in class com.univocity.parsers.common.ColumnMap
- output - Variable in class com.univocity.parsers.common.DefaultContext
- output - Variable in class com.univocity.parsers.common.processor.core.AbstractConcurrentProcessor
- outputQueue - Variable in class com.univocity.parsers.common.processor.core.AbstractConcurrentProcessor
- outputRow - Variable in class com.univocity.parsers.common.AbstractWriter
- OutputValueSwitch - Class in com.univocity.parsers.common.processor
-
A concrete implementation of
RowWriterProcessorSwitch
that allows switching among different implementations ofRowWriterProcessor
based on values found on rows to be written to an output - OutputValueSwitch() - Constructor for class com.univocity.parsers.common.processor.OutputValueSwitch
-
Creates a switch that will analyze the first column of output rows to determine which
RowWriterProcessor
to use for each output row - OutputValueSwitch(int) - Constructor for class com.univocity.parsers.common.processor.OutputValueSwitch
-
Creates a switch that will analyze a column of output rows to determine which
RowWriterProcessor
to use. - OutputValueSwitch(String) - Constructor for class com.univocity.parsers.common.processor.OutputValueSwitch
-
Creates a switch that will analyze a column of output rows to determine which
RowWriterProcessor
to use. - OutputValueSwitch(String, int) - Constructor for class com.univocity.parsers.common.processor.OutputValueSwitch
-
Creates a switch that will analyze a column of output rows to determine which
RowWriterProcessor
to use. - OutputValueSwitch.Switch - Class in com.univocity.parsers.common.processor
P
- padding - Variable in class com.univocity.parsers.fixed.FixedWidthFormat
- padding - Variable in class com.univocity.parsers.fixed.FixedWidthParser
- padding - Variable in class com.univocity.parsers.fixed.FixedWidthWriter
- padding() - Element in annotation interface com.univocity.parsers.annotations.FixedWidth
-
Sets the padding character of the fixed-width field
- paddings - Variable in class com.univocity.parsers.fixed.FixedWidthParser
- paddings - Variable in class com.univocity.parsers.fixed.Lookup
- paddingsToKeep - Variable in class com.univocity.parsers.fixed.FixedWidthFields
- parameterType - Variable in class com.univocity.parsers.annotations.helpers.MethodDescriptor
- parentClass - Variable in class com.univocity.parsers.annotations.helpers.FieldMapping
- parse(File) - Method in class com.univocity.parsers.common.AbstractParser
-
Parses the entirety of a given file and delegates each parsed row to an instance of
RowProcessor
, defined byCommonParserSettings.getRowProcessor()
. - parse(File, String) - Method in class com.univocity.parsers.common.AbstractParser
-
Parses the entirety of a given file and delegates each parsed row to an instance of
RowProcessor
, defined byCommonParserSettings.getRowProcessor()
. - parse(File, Charset) - Method in class com.univocity.parsers.common.AbstractParser
-
Parses the entirety of a given file and delegates each parsed row to an instance of
RowProcessor
, defined byCommonParserSettings.getRowProcessor()
. - parse(InputStream) - Method in class com.univocity.parsers.common.AbstractParser
-
Parses the entirety of a given input and delegates each parsed row to an instance of
RowProcessor
, defined byCommonParserSettings.getRowProcessor()
. - parse(InputStream, String) - Method in class com.univocity.parsers.common.AbstractParser
-
Parses the entirety of a given input and delegates each parsed row to an instance of
RowProcessor
, defined byCommonParserSettings.getRowProcessor()
. - parse(InputStream, Charset) - Method in class com.univocity.parsers.common.AbstractParser
-
Parses the entirety of a given input and delegates each parsed row to an instance of
RowProcessor
, defined byCommonParserSettings.getRowProcessor()
. - parse(Reader) - Method in class com.univocity.parsers.common.AbstractParser
-
Parses the entirety of a given input and delegates each parsed row to an instance of
RowProcessor
, defined byCommonParserSettings.getRowProcessor()
. - parseAll() - Method in class com.univocity.parsers.common.AbstractParser
-
Parses all remaining rows from the input and returns them in a list.
- parseAll(int) - Method in class com.univocity.parsers.common.AbstractParser
-
Parses all remaining rows from the input and returns them in a list.
- parseAll(File) - Method in class com.univocity.parsers.common.AbstractParser
-
Parses all records from a file and returns them in a list.
- parseAll(File, int) - Method in class com.univocity.parsers.common.AbstractParser
-
Parses all records from a file and returns them in a list.
- parseAll(File, String) - Method in class com.univocity.parsers.common.AbstractParser
-
Parses all records from a file and returns them in a list.
- parseAll(File, String, int) - Method in class com.univocity.parsers.common.AbstractParser
-
Parses all records from a file and returns them in a list.
- parseAll(File, Charset) - Method in class com.univocity.parsers.common.AbstractParser
-
Parses all records from a file and returns them in a list.
- parseAll(File, Charset, int) - Method in class com.univocity.parsers.common.AbstractParser
-
Parses all records from a file and returns them in a list.
- parseAll(InputStream) - Method in class com.univocity.parsers.common.AbstractParser
-
Parses all records from an input stream and returns them in a list.
- parseAll(InputStream, int) - Method in class com.univocity.parsers.common.AbstractParser
-
Parses all records from an input stream and returns them in a list.
- parseAll(InputStream, String) - Method in class com.univocity.parsers.common.AbstractParser
-
Parses all records from an input stream and returns them in a list.
- parseAll(InputStream, String, int) - Method in class com.univocity.parsers.common.AbstractParser
-
Parses all records from an input stream and returns them in a list.
- parseAll(InputStream, Charset) - Method in class com.univocity.parsers.common.AbstractParser
-
Parses all records from an input stream and returns them in a list.
- parseAll(InputStream, Charset, int) - Method in class com.univocity.parsers.common.AbstractParser
-
Parses all records from an input stream and returns them in a list.
- parseAll(Reader) - Method in class com.univocity.parsers.common.AbstractParser
-
Parses all records from the input and returns them in a list.
- parseAll(Reader, int) - Method in class com.univocity.parsers.common.AbstractParser
-
Parses all records from the input and returns them in a list.
- parseAll(Class<T>, File) - Method in class com.univocity.parsers.common.routine.AbstractRoutines
-
Parses a file into a list of annotated java beans
- parseAll(Class<T>, File, int) - Method in class com.univocity.parsers.common.routine.AbstractRoutines
-
Parses a file into a list of annotated java beans
- parseAll(Class<T>, File, String) - Method in class com.univocity.parsers.common.routine.AbstractRoutines
-
Parses a file into a list of annotated java beans
- parseAll(Class<T>, File, String, int) - Method in class com.univocity.parsers.common.routine.AbstractRoutines
-
Parses a file into a list of annotated java beans
- parseAll(Class<T>, File, Charset) - Method in class com.univocity.parsers.common.routine.AbstractRoutines
-
Parses a file into a list of annotated java beans
- parseAll(Class<T>, File, Charset, int) - Method in class com.univocity.parsers.common.routine.AbstractRoutines
-
Parses a file into a list of annotated java beans
- parseAll(Class<T>, InputStream) - Method in class com.univocity.parsers.common.routine.AbstractRoutines
-
Parses an input stream into a list of annotated java beans
- parseAll(Class<T>, InputStream, int) - Method in class com.univocity.parsers.common.routine.AbstractRoutines
-
Parses an input stream into a list of annotated java beans
- parseAll(Class<T>, InputStream, String) - Method in class com.univocity.parsers.common.routine.AbstractRoutines
-
Parses an input stream into a list of annotated java beans
- parseAll(Class<T>, InputStream, String, int) - Method in class com.univocity.parsers.common.routine.AbstractRoutines
-
Parses an input stream into a list of annotated java beans
- parseAll(Class<T>, InputStream, Charset) - Method in class com.univocity.parsers.common.routine.AbstractRoutines
-
Parses an input stream into a list of annotated java beans
- parseAll(Class<T>, InputStream, Charset, int) - Method in class com.univocity.parsers.common.routine.AbstractRoutines
-
Parses an input stream into a list of annotated java beans
- parseAll(Class<T>, Reader) - Method in class com.univocity.parsers.common.routine.AbstractRoutines
-
Parses the input into a list of annotated java beans
- parseAll(Class<T>, Reader, int) - Method in class com.univocity.parsers.common.routine.AbstractRoutines
-
Parses the input into a list of annotated java beans
- parseAllRecords() - Method in class com.univocity.parsers.common.AbstractParser
-
Parses all remaining
Record
s from the input and returns them in a list. - parseAllRecords(int) - Method in class com.univocity.parsers.common.AbstractParser
-
Parses all remaining
Record
s from the input and returns them in a list. - parseAllRecords(File) - Method in class com.univocity.parsers.common.AbstractParser
-
Parses all records from a file and returns them in a list.
- parseAllRecords(File, int) - Method in class com.univocity.parsers.common.AbstractParser
-
Parses all records from a file and returns them in a list.
- parseAllRecords(File, String) - Method in class com.univocity.parsers.common.AbstractParser
-
Parses all records from a file and returns them in a list.
- parseAllRecords(File, String, int) - Method in class com.univocity.parsers.common.AbstractParser
-
Parses all records from a file and returns them in a list.
- parseAllRecords(File, Charset) - Method in class com.univocity.parsers.common.AbstractParser
-
Parses all records from a file and returns them in a list.
- parseAllRecords(File, Charset, int) - Method in class com.univocity.parsers.common.AbstractParser
-
Parses all records from a file and returns them in a list.
- parseAllRecords(InputStream) - Method in class com.univocity.parsers.common.AbstractParser
-
Parses all records from an input stream and returns them in a list.
- parseAllRecords(InputStream, int) - Method in class com.univocity.parsers.common.AbstractParser
-
Parses all records from an input stream and returns them in a list.
- parseAllRecords(InputStream, String) - Method in class com.univocity.parsers.common.AbstractParser
-
Parses all records from an input stream and returns them in a list.
- parseAllRecords(InputStream, String, int) - Method in class com.univocity.parsers.common.AbstractParser
-
Parses all records from an input stream and returns them in a list.
- parseAllRecords(InputStream, Charset) - Method in class com.univocity.parsers.common.AbstractParser
-
Parses all records from an input stream and returns them in a list.
- parseAllRecords(InputStream, Charset, int) - Method in class com.univocity.parsers.common.AbstractParser
-
Parses all records from an input stream and returns them in a list.
- parseAllRecords(Reader) - Method in class com.univocity.parsers.common.AbstractParser
-
Parses all records from the input and returns them in a list.
- parseAllRecords(Reader, int) - Method in class com.univocity.parsers.common.AbstractParser
-
Parses all records from the input and returns them in a list.
- parseAndWrite(Reader, Writer) - Method in class com.univocity.parsers.common.routine.AbstractRoutines
-
Reads all data from a given input and writes it to an output.
- Parsed - Annotation Interface in com.univocity.parsers.annotations
-
Indicates the field is parsed.
- parsedFields - Variable in class com.univocity.parsers.common.processor.core.BeanConversionProcessor
- parsedHeaders - Variable in class com.univocity.parsers.common.ParserOutput
-
Headers parsed from the input when
CommonParserSettings.headerExtractionEnabled
istrue
, irrespective of any user-provided headers inCommonSettings.getHeaders()
- parsedHeaders() - Method in class com.univocity.parsers.common.DefaultParsingContext
- parsedHeaders() - Method in class com.univocity.parsers.common.NoopParsingContext
- parsedHeaders() - Method in interface com.univocity.parsers.common.ParsingContext
-
Returns the headers parsed from the input, if and only if
CommonParserSettings.headerExtractionEnabled
istrue
. - parsedHeaders() - Method in class com.univocity.parsers.common.ParsingContextWrapper
- parsedValues - Variable in class com.univocity.parsers.common.ParserOutput
-
Stores the values parsed for a record.
- parseExcel() - Static method in class com.univocity.parsers.csv.Csv
-
Provides a basic CSV configuration that allows parsing CSV files produced by Microsoft Excel.
- parseField() - Method in class com.univocity.parsers.tsv.TsvParser
- parseLine(String) - Method in class com.univocity.parsers.common.AbstractParser
-
Parses a single line from a String in the format supported by the parser implementation.
- parseMultiDelimiterRecord() - Method in class com.univocity.parsers.csv.CsvParser
- parseNext() - Method in class com.univocity.parsers.common.AbstractParser
-
Parses the next record from the input.
- parseNextRecord() - Method in class com.univocity.parsers.common.AbstractParser
-
Parses the next record from the input.
- parseQuotedValue() - Method in class com.univocity.parsers.csv.CsvParser
- parseQuotedValueMultiDelimiter() - Method in class com.univocity.parsers.csv.CsvParser
- parser - Variable in class com.univocity.parsers.common.DefaultParsingContext
- parser - Variable in class com.univocity.parsers.common.iterators.ParserIterator
- parser - Variable in class com.univocity.parsers.common.ParserOutput
- parseRecord() - Method in class com.univocity.parsers.common.AbstractParser
-
Parser-specific implementation for reading a single record from the input.
- parseRecord() - Method in class com.univocity.parsers.csv.CsvParser
- parseRecord() - Method in class com.univocity.parsers.fixed.FixedWidthParser
- parseRecord() - Method in class com.univocity.parsers.tsv.TsvParser
-
Parser-specific implementation for reading a single record from the input.
- parseRecord(String) - Method in class com.univocity.parsers.common.AbstractParser
-
Parses a single line from a String in the format supported by the parser implementation.
- parseRfc4180() - Static method in class com.univocity.parsers.csv.Csv
-
Provides a basic CSV configuration for parsing CSV files in accordance with the rules established by RFC 4180
- ParserIterator<T> - Class in com.univocity.parsers.common.iterators
-
An
Iterator
over the parser enabling easy iteration against rows and records Multiple iterations are possible if Files are being fed into the parser, but other forms of input (such asInputStream
s andReader
s) can not be iterated over more than once. - ParserIterator(AbstractParser) - Constructor for class com.univocity.parsers.common.iterators.ParserIterator
-
Creates a
ParserIterator
using the providedparser
- ParserOutput - Class in com.univocity.parsers.common
-
The ParserOutput is the component that manages records parsed by
AbstractParser
and their values. - ParserOutput(AbstractParser<?>, CommonParserSettings<?>) - Constructor for class com.univocity.parsers.common.ParserOutput
-
Initializes the ParserOutput with the configuration specified in
CommonParserSettings
- ParserOutput(CommonParserSettings<?>) - Constructor for class com.univocity.parsers.common.ParserOutput
-
Initializes the ParserOutput with the configuration specified in
CommonParserSettings
- parsers - Variable in class com.univocity.parsers.conversions.DateConversion
- parserSettings - Variable in class com.univocity.parsers.common.routine.AbstractRoutines
- parseSingleDelimiterRecord() - Method in class com.univocity.parsers.csv.CsvParser
- parseUnescapedQuotes - Variable in class com.univocity.parsers.csv.CsvParser
- parseUnescapedQuotes - Variable in class com.univocity.parsers.csv.CsvParserSettings
- parseUnescapedQuotesUntilDelimiter - Variable in class com.univocity.parsers.csv.CsvParser
- parseUnescapedQuotesUntilDelimiter - Variable in class com.univocity.parsers.csv.CsvParserSettings
- parseValueProcessingEscape() - Method in class com.univocity.parsers.csv.CsvParser
- parseValueProcessingEscapeMultiDelimiter() - Method in class com.univocity.parsers.csv.CsvParser
- ParsingContext - Interface in com.univocity.parsers.common
-
Parsing context information available to instances of
RowProcessor
. - ParsingContextSnapshot - Class in com.univocity.parsers.common
-
A snapshot of a
ParsingContext
which retains copies of variable attributes of a givenParsingContext
to store the state of the parsing process at a given point in time. - ParsingContextSnapshot(ParsingContext) - Constructor for class com.univocity.parsers.common.ParsingContextSnapshot
-
Creates a snapshot of a given
Context
- ParsingContextWrapper - Class in com.univocity.parsers.common
-
A simple a wrapper for a
ParsingContext
. - ParsingContextWrapper(ParsingContext) - Constructor for class com.univocity.parsers.common.ParsingContextWrapper
-
Wraps a
ParsingContext
. - partialLine - Variable in class com.univocity.parsers.common.AbstractWriter
- partialLineIndex - Variable in class com.univocity.parsers.common.AbstractWriter
- pendingRecords - Variable in class com.univocity.parsers.common.ParserOutput
- pickDelimiter(Map<Character, Integer>, Map<Character, Integer>) - Method in class com.univocity.parsers.csv.CsvFormatDetector
- populateReverseFieldIndexes() - Method in class com.univocity.parsers.common.DefaultConversionProcessor
- populateTargetMaps(Map<Object, Integer>, Map<Object, String>) - Method in class com.univocity.parsers.common.processor.core.BeanConversionProcessor
- position - Variable in class com.univocity.parsers.conversions.NumericConversion
- prefix - Variable in class com.univocity.parsers.annotations.helpers.MethodDescriptor
- prefix - Variable in class com.univocity.parsers.common.fields.AbstractColumnMapping
- prefixedName - Variable in class com.univocity.parsers.annotations.helpers.MethodDescriptor
- prefixKey(String, MethodDescriptor) - Method in class com.univocity.parsers.common.fields.ColumnMapping.MethodMapping
- prefixKey(String, String) - Method in class com.univocity.parsers.common.fields.ColumnMapping.NameMapping
- prefixKey(String, K) - Method in class com.univocity.parsers.common.fields.AbstractColumnMapping
-
Transforms the key so it can work with the given prefix.
- prepareExecution(boolean, FieldSelector, Map<Integer, List<Conversion<?, ?>>>, String[]) - Method in class com.univocity.parsers.common.fields.AbstractConversionMapping
-
Get all indexes in the given selector and adds the conversions defined at that index to the map of conversionsByIndex.
- prepareExecution(boolean, String[]) - Method in class com.univocity.parsers.common.fields.FieldConversionMapping
-
Prepares the conversions registered in this object to be executed against a given sequence of fields
- prepareToRun() - Method in class com.univocity.parsers.common.RetryableErrorHandler
-
Prepares this error handler to be executed.
- prepend(char) - Method in interface com.univocity.parsers.common.input.CharAppender
-
Prepends the current accumulated value with a character
- prepend(char) - Method in class com.univocity.parsers.common.input.DefaultCharAppender
-
Prepends the current accumulated value with a character
- prepend(char) - Method in class com.univocity.parsers.common.input.ExpandingCharAppender
- prepend(char) - Method in class com.univocity.parsers.common.input.NoopCharAppender
-
Does nothing
- prepend(char[]) - Method in interface com.univocity.parsers.common.input.CharAppender
-
Prepends the current accumulated value a sequence of characters
- prepend(char[]) - Method in class com.univocity.parsers.common.input.DefaultCharAppender
- prepend(char[]) - Method in class com.univocity.parsers.common.input.ExpandingCharAppender
- prepend(char[]) - Method in class com.univocity.parsers.common.input.NoopCharAppender
-
Does nothing
- prepend(char, char) - Method in interface com.univocity.parsers.common.input.CharAppender
-
Prepends the current accumulated value with a couple of characters
- prepend(char, char) - Method in class com.univocity.parsers.common.input.DefaultCharAppender
- prepend(char, char) - Method in class com.univocity.parsers.common.input.ExpandingCharAppender
- prepend(char, char) - Method in class com.univocity.parsers.common.input.NoopCharAppender
-
Does nothing
- prev - Variable in class com.univocity.parsers.csv.CsvParser
- preventColumnReordering() - Method in class com.univocity.parsers.common.processor.core.AbstractProcessorSwitch
- preventColumnReordering() - Method in interface com.univocity.parsers.common.processor.core.ColumnOrderDependent
-
Returns a flag indicating whether or not columns should be reordered by the parser
- preventReordering() - Method in class com.univocity.parsers.common.CommonParserSettings
- previousHeaders - Variable in class com.univocity.parsers.common.processor.BeanWriterProcessor
- previousHeaders - Variable in class com.univocity.parsers.common.processor.ObjectRowWriterProcessor
- previousHeaders - Variable in class com.univocity.parsers.common.processor.RowWriterProcessorSwitch
- previousOutput - Variable in class com.univocity.parsers.common.routine.AbstractRoutines
- primitive - Variable in class com.univocity.parsers.annotations.helpers.FieldMapping
- primitiveNumber - Variable in class com.univocity.parsers.annotations.helpers.FieldMapping
- printIfNotEmpty(String, String, Object) - Static method in exception com.univocity.parsers.common.AbstractException
- process - Variable in class com.univocity.parsers.common.processor.core.AbstractConcurrentProcessor
- process(String) - Method in class com.univocity.parsers.common.StringCache
-
Converts a given string to a value
- process(String[], Processor<C>, C, ProcessorErrorHandler<C>) - Static method in class com.univocity.parsers.common.Internal
- processAnnotations(AnnotatedElement, boolean, List<Integer>, List<TransformedHeader>, Map<AnnotatedElement, List<TransformedHeader>>, HeaderTransformer, MethodFilter) - Static method in class com.univocity.parsers.annotations.helpers.AnnotationHelper
- processComment() - Method in class com.univocity.parsers.common.AbstractParser
- processComments - Variable in class com.univocity.parsers.common.AbstractParser
- processElement(String, boolean) - Method in class com.univocity.parsers.fixed.FixedWidthWriter
- processEnded(C) - Method in class com.univocity.parsers.common.processor.core.AbstractBeanListProcessor
- processEnded(C) - Method in class com.univocity.parsers.common.processor.core.AbstractBeanProcessor
- processEnded(C) - Method in class com.univocity.parsers.common.processor.core.AbstractMultiBeanListProcessor
- processEnded(C) - Method in class com.univocity.parsers.common.processor.core.AbstractMultiBeanProcessor
- processEnded(C) - Method in class com.univocity.parsers.common.processor.core.AbstractMultiBeanRowProcessor
- processEnded(C) - Method in class com.univocity.parsers.common.processor.core.CompositeProcessor
-
This method will by invoked by the parser once for each
Processor
used by this class, after the parsing process stopped and all resources were closed. - processEnded(ParsingContext) - Method in interface com.univocity.parsers.common.processor.RowProcessor
-
This method will by invoked by the parser once, after the parsing process stopped and all resources were closed.
- processEnded(T) - Method in class com.univocity.parsers.common.processor.core.AbstractBatchedColumnProcessor
- processEnded(T) - Method in class com.univocity.parsers.common.processor.core.AbstractBatchedObjectColumnProcessor
- processEnded(T) - Method in class com.univocity.parsers.common.processor.core.AbstractColumnProcessor
- processEnded(T) - Method in class com.univocity.parsers.common.processor.core.AbstractConcurrentProcessor
- processEnded(T) - Method in class com.univocity.parsers.common.processor.core.AbstractListProcessor
- processEnded(T) - Method in class com.univocity.parsers.common.processor.core.AbstractMasterDetailListProcessor
- processEnded(T) - Method in class com.univocity.parsers.common.processor.core.AbstractMasterDetailProcessor
- processEnded(T) - Method in class com.univocity.parsers.common.processor.core.AbstractObjectListProcessor
- processEnded(T) - Method in class com.univocity.parsers.common.processor.core.AbstractObjectProcessor
- processEnded(T) - Method in class com.univocity.parsers.common.processor.core.AbstractProcessor
- processEnded(T) - Method in class com.univocity.parsers.common.processor.core.AbstractProcessorSwitch
- processEnded(T) - Method in interface com.univocity.parsers.common.processor.core.Processor
-
This method will by invoked by the parser once, after the parsing process stopped and all resources were closed.
- processField(FieldMapping) - Method in class com.univocity.parsers.common.processor.core.BeanConversionProcessor
-
Determines whether or not an annotated field should be processed.
- processField(AnnotatedElement, String, PropertyWrapper, NormalizedString[]) - Method in class com.univocity.parsers.common.processor.core.BeanConversionProcessor
- processNestedAttributes(String[], Object, Context) - Method in class com.univocity.parsers.common.processor.core.BeanConversionProcessor
- processNestedField(Class, AnnotatedElement, String, PropertyWrapper, NormalizedString[], Nested) - Method in class com.univocity.parsers.common.processor.core.BeanConversionProcessor
- processObjectRecords(Map<K, String>, Map<K, Object[]>) - Method in class com.univocity.parsers.common.AbstractWriter
-
Processes the data in all values of a map using the
RowWriterProcessor
provided byCommonWriterSettings.getRowWriterProcessor()
, then writes all values to the output . - processObjectRecordsAndClose(Map<K, Object[]>) - Method in class com.univocity.parsers.common.AbstractWriter
-
Processes the data in all values of a map using the
RowWriterProcessor
provided byCommonWriterSettings.getRowWriterProcessor()
, then writes all values to the output and closes the writer. - processObjectRecordsAndClose(Map<K, String>, Map<K, Object[]>) - Method in class com.univocity.parsers.common.AbstractWriter
-
Processes the data in all values of a map using the
RowWriterProcessor
provided byCommonWriterSettings.getRowWriterProcessor()
, then writes all values to the output and closes the writer. - processObjectRecordsToString(Map<K, Object[]>) - Method in class com.univocity.parsers.common.AbstractWriter
-
Processes the data in all values of a map using the
RowWriterProcessor
provided byCommonWriterSettings.getRowWriterProcessor()
and writes the result into aList
ofString
formatted to according to the specified output format. - processObjectRecordsToString(Map<K, String>, Map<K, Object[]>) - Method in class com.univocity.parsers.common.AbstractWriter
-
Processes the data in all values of a map using the
RowWriterProcessor
provided byCommonWriterSettings.getRowWriterProcessor()
and writes the result into aList
ofString
formatted to according to the specified output format. - processor - Variable in class com.univocity.parsers.common.AbstractParser
- processor - Variable in class com.univocity.parsers.common.CommonParserSettings
- processor - Variable in class com.univocity.parsers.common.processor.core.AbstractConcurrentProcessor
- processor - Variable in class com.univocity.parsers.common.processor.core.AbstractInputValueSwitch.Switch
- processor - Variable in class com.univocity.parsers.common.processor.OutputValueSwitch.Switch
- Processor<T extends Context> - Interface in com.univocity.parsers.common.processor.core
-
The essential callback interface to handle records parsed by any parser that extends
AbstractParser
. - ProcessorErrorHandler<T extends Context> - Interface in com.univocity.parsers.common
-
The
ProcessorErrorHandler
is a callback used by the parser/writer to handle non-fatalDataProcessingException
s that may occur when processing rows using aProcessor
orRowWriterProcessor
. - processorMap - Variable in class com.univocity.parsers.common.processor.core.AbstractMultiBeanProcessor
- processors - Variable in class com.univocity.parsers.common.processor.core.AbstractProcessorSwitch
- processors - Variable in class com.univocity.parsers.common.processor.core.CompositeProcessor
- processorSwitched(Processor<T>, Processor<T>) - Method in class com.univocity.parsers.common.processor.core.AbstractProcessorSwitch
-
Notifies a change of
Processor
implementation. - processQuoteEscape() - Method in class com.univocity.parsers.csv.CsvParser
- processRecord(Object) - Method in class com.univocity.parsers.common.AbstractWriter
-
Processes the data given for an individual record with the
RowWriterProcessor
provided byCommonWriterSettings.getRowWriterProcessor()
, then writes it. - processRecord(Object...) - Method in class com.univocity.parsers.common.AbstractWriter
-
Processes the data given for an individual record with the
RowWriterProcessor
provided byCommonWriterSettings.getRowWriterProcessor()
, then writes it. - processRecord(Object[], T) - Method in class com.univocity.parsers.common.processor.core.AbstractMasterDetailProcessor
-
Associates individual rows to a
MasterDetailRecord
and invokesAbstractMasterDetailProcessor.masterDetailRecordProcessed(MasterDetailRecord, T)
when it is fully populated. - processRecord(Map<?, ?>) - Method in class com.univocity.parsers.common.AbstractWriter
-
Processes the values of a map using the
RowWriterProcessor
provided byCommonWriterSettings.getRowWriterProcessor()
and writes the result into a new output record ATextWritingException
will be thrown if noRowWriterProcessor
is provided byCommonWriterSettings.getRowWriterProcessor()
. - processRecord(Map<K, String>, Map<K, ?>) - Method in class com.univocity.parsers.common.AbstractWriter
-
Processes the values of a map using the
RowWriterProcessor
provided byCommonWriterSettings.getRowWriterProcessor()
and writes the result into a new output record ATextWritingException
will be thrown if noRowWriterProcessor
is provided byCommonWriterSettings.getRowWriterProcessor()
. - processRecord(T) - Method in class com.univocity.parsers.common.AbstractWriter
- processRecords(Iterable<?>) - Method in class com.univocity.parsers.common.AbstractWriter
-
Iterates over all records, processes each one with the
RowWriterProcessor
provided byCommonWriterSettings.getRowWriterProcessor()
, and writes them. - processRecords(Object[]) - Method in class com.univocity.parsers.common.AbstractWriter
-
Iterates over all records, processes each one with the
RowWriterProcessor
provided byCommonWriterSettings.getRowWriterProcessor()
, and writes them. - processRecords(Map<K, I>) - Method in class com.univocity.parsers.common.AbstractWriter
-
Processes the data in all values of a map using the
RowWriterProcessor
provided byCommonWriterSettings.getRowWriterProcessor()
, then writes all values to the output . - processRecords(Map<K, String>, Map<K, I>) - Method in class com.univocity.parsers.common.AbstractWriter
-
Processes the data in all values of a map using the
RowWriterProcessor
provided byCommonWriterSettings.getRowWriterProcessor()
, then writes all values to the output . - processRecords(T[]) - Method in class com.univocity.parsers.common.AbstractWriter
-
Iterates over all records, processes each one with the
RowWriterProcessor
provided byCommonWriterSettings.getRowWriterProcessor()
, and writes them. - processRecordsAndClose(Iterable<?>) - Method in class com.univocity.parsers.common.AbstractWriter
-
Iterates over all records, processes each one with the
RowWriterProcessor
provided byCommonWriterSettings.getRowWriterProcessor()
, and writes them, then finally and closes the output ATextWritingException
will be thrown if noRowWriterProcessor
is provided byCommonWriterSettings.getRowWriterProcessor()
. - processRecordsAndClose(Object[]) - Method in class com.univocity.parsers.common.AbstractWriter
-
Iterates over all records, processes each one with the
RowWriterProcessor
provided byCommonWriterSettings.getRowWriterProcessor()
, and writes them, then finally and closes the output ATextWritingException
will be thrown if noRowWriterProcessor
is provided byCommonWriterSettings.getRowWriterProcessor()
. - processRecordsAndClose(Map<K, I>) - Method in class com.univocity.parsers.common.AbstractWriter
-
Processes the data in all values of a map using the
RowWriterProcessor
provided byCommonWriterSettings.getRowWriterProcessor()
, then writes all values to the output and closes the writer. - processRecordsAndClose(Map<K, String>, Map<K, I>) - Method in class com.univocity.parsers.common.AbstractWriter
-
Processes the data in all values of a map using the
RowWriterProcessor
provided byCommonWriterSettings.getRowWriterProcessor()
, then writes all values to the output and closes the writer. - processRecordsToString(Iterable<?>) - Method in class com.univocity.parsers.common.AbstractWriter
-
Iterates over all records, processes each one with the
RowWriterProcessor
provided byCommonWriterSettings.getRowWriterProcessor()
, and writes them to aList
ofString
. - processRecordsToString(Object[]) - Method in class com.univocity.parsers.common.AbstractWriter
-
Iterates over all records, processes each one with the
RowWriterProcessor
provided byCommonWriterSettings.getRowWriterProcessor()
, and writes them them to aList
ofString
. - processRecordsToString(Map<K, I>) - Method in class com.univocity.parsers.common.AbstractWriter
-
Processes the data in all values of a map using the
RowWriterProcessor
provided byCommonWriterSettings.getRowWriterProcessor()
and writes the result into aList
ofString
formatted to according to the specified output format. - processRecordsToString(Map<K, String>, Map<K, I>) - Method in class com.univocity.parsers.common.AbstractWriter
-
Processes the data in all values of a map using the
RowWriterProcessor
provided byCommonWriterSettings.getRowWriterProcessor()
and writes the result into aList
ofString
formatted to according to the specified output format. - processRecordToString(Object) - Method in class com.univocity.parsers.common.AbstractWriter
-
Processes the data given for an individual record with the
RowWriterProcessor
provided byCommonWriterSettings.getRowWriterProcessor()
, then writes it. - processRecordToString(Object...) - Method in class com.univocity.parsers.common.AbstractWriter
-
Processes the data given for an individual record with the
RowWriterProcessor
provided byCommonWriterSettings.getRowWriterProcessor()
, then writes it to aString
. - processRecordToString(Map<?, ?>) - Method in class com.univocity.parsers.common.AbstractWriter
-
Processes the values of a map using the
RowWriterProcessor
provided byCommonWriterSettings.getRowWriterProcessor()
and writes the result intoString
formatted according to the specified output format. - processRecordToString(Map<K, String>, Map<K, ?>) - Method in class com.univocity.parsers.common.AbstractWriter
-
Processes the values of a map using the
RowWriterProcessor
provided byCommonWriterSettings.getRowWriterProcessor()
and writes the result intoString
formatted according to the specified output format. - processRecordToString(T) - Method in class com.univocity.parsers.common.AbstractWriter
-
Processes the data given for an individual record with the
RowWriterProcessor
provided byCommonWriterSettings.getRowWriterProcessor()
, then writes it to aString
. - processRow(Object[]) - Method in class com.univocity.parsers.common.AbstractWriter
-
Format-specific implementation for writing a single record into the output.
- processRow(Object[]) - Method in class com.univocity.parsers.csv.CsvWriter
- processRow(Object[]) - Method in class com.univocity.parsers.fixed.FixedWidthWriter
- processRow(Object[]) - Method in class com.univocity.parsers.tsv.TsvWriter
- processStarted(C) - Method in class com.univocity.parsers.common.processor.core.AbstractBeanListProcessor
- processStarted(C) - Method in class com.univocity.parsers.common.processor.core.AbstractBeanProcessor
- processStarted(C) - Method in class com.univocity.parsers.common.processor.core.AbstractMultiBeanListProcessor
- processStarted(C) - Method in class com.univocity.parsers.common.processor.core.AbstractMultiBeanProcessor
- processStarted(C) - Method in class com.univocity.parsers.common.processor.core.AbstractMultiBeanRowProcessor
- processStarted(C) - Method in class com.univocity.parsers.common.processor.core.CompositeProcessor
-
Initializes each
Processor
used by this class. - processStarted(ParsingContext) - Method in interface com.univocity.parsers.common.processor.RowProcessor
-
This method will by invoked by the parser once, when it is ready to start processing the input.
- processStarted(T) - Method in class com.univocity.parsers.common.processor.core.AbstractBatchedColumnProcessor
- processStarted(T) - Method in class com.univocity.parsers.common.processor.core.AbstractBatchedObjectColumnProcessor
- processStarted(T) - Method in class com.univocity.parsers.common.processor.core.AbstractColumnProcessor
- processStarted(T) - Method in class com.univocity.parsers.common.processor.core.AbstractConcurrentProcessor
- processStarted(T) - Method in class com.univocity.parsers.common.processor.core.AbstractListProcessor
- processStarted(T) - Method in class com.univocity.parsers.common.processor.core.AbstractMasterDetailProcessor
- processStarted(T) - Method in class com.univocity.parsers.common.processor.core.AbstractObjectColumnProcessor
- processStarted(T) - Method in class com.univocity.parsers.common.processor.core.AbstractObjectListProcessor
- processStarted(T) - Method in class com.univocity.parsers.common.processor.core.AbstractObjectProcessor
- processStarted(T) - Method in class com.univocity.parsers.common.processor.core.AbstractProcessor
- processStarted(T) - Method in class com.univocity.parsers.common.processor.core.AbstractProcessorSwitch
- processStarted(T) - Method in interface com.univocity.parsers.common.processor.core.Processor
-
This method will by invoked by the parser once, when it is ready to start processing the input.
- processValuesToRow() - Method in class com.univocity.parsers.common.AbstractWriter
-
Writes the contents accumulated in an internal in-memory row (using
or #addValue()
to a new record in the output. - processValuesToString() - Method in class com.univocity.parsers.common.AbstractWriter
-
Writes the contents accumulated in an internal in-memory row (using
or #addValue()
to aString
The objects added to this row will be processed with theRowWriterProcessor
provided byCommonWriterSettings.getRowWriterProcessor()
. - property() - Element in annotation interface com.univocity.parsers.annotations.Copy
-
Target property of the given annotation class that is part of a meta-annotation.
- PROPERTY_NAME_METHOD - Static variable in class com.univocity.parsers.common.beans.BeanHelper
- PROPERTY_READ_METHOD - Static variable in class com.univocity.parsers.common.beans.BeanHelper
- PROPERTY_WRITE_METHOD - Static variable in class com.univocity.parsers.common.beans.BeanHelper
- propertyDescriptor - Variable in class com.univocity.parsers.common.beans.PropertyWrapper
- propertyDescriptorMethod - Static variable in class com.univocity.parsers.common.beans.BeanHelper
- PropertyWrapper - Class in com.univocity.parsers.common.beans
-
Wrapper for a implementation of PropertyDescriptor from either
java.beans.PropertyDescriptor
orcom.googlecode.openbeans.PropertyDescriptor
. - PropertyWrapper(Object) - Constructor for class com.univocity.parsers.common.beans.PropertyWrapper
- put(String, T) - Method in class com.univocity.parsers.common.StringCache
-
Associates a value to a string
- putColumnValuesInMapOfIndexes(Map<Integer, List<Object>>) - Method in class com.univocity.parsers.common.processor.core.AbstractBatchedObjectColumnProcessor
- putColumnValuesInMapOfIndexes(Map<Integer, List<Object>>) - Method in class com.univocity.parsers.common.processor.core.AbstractObjectColumnProcessor
- putColumnValuesInMapOfIndexes(Map<Integer, List<String>>) - Method in class com.univocity.parsers.common.processor.core.AbstractBatchedColumnProcessor
- putColumnValuesInMapOfIndexes(Map<Integer, List<String>>) - Method in class com.univocity.parsers.common.processor.core.AbstractColumnProcessor
- putColumnValuesInMapOfIndexes(Map<Integer, List<T>>) - Method in interface com.univocity.parsers.common.processor.core.ColumnReader
-
Fills a given map associating each column index to its list of values
- putColumnValuesInMapOfIndexes(Map<Integer, List<T>>) - Method in class com.univocity.parsers.common.processor.core.ColumnSplitter
-
Fills a given map associating each column index to its list of values
- putColumnValuesInMapOfNames(Map<String, List<Object>>) - Method in class com.univocity.parsers.common.processor.core.AbstractBatchedObjectColumnProcessor
- putColumnValuesInMapOfNames(Map<String, List<Object>>) - Method in class com.univocity.parsers.common.processor.core.AbstractObjectColumnProcessor
- putColumnValuesInMapOfNames(Map<String, List<String>>) - Method in class com.univocity.parsers.common.processor.core.AbstractBatchedColumnProcessor
- putColumnValuesInMapOfNames(Map<String, List<String>>) - Method in class com.univocity.parsers.common.processor.core.AbstractColumnProcessor
- putColumnValuesInMapOfNames(Map<String, List<T>>) - Method in interface com.univocity.parsers.common.processor.core.ColumnReader
-
Fills a given map associating each column name to its list o values
- putColumnValuesInMapOfNames(Map<String, List<T>>) - Method in class com.univocity.parsers.common.processor.core.ColumnSplitter
-
Fills a given map associating each column name to its list o values
Q
- quotationTriggers - Variable in class com.univocity.parsers.csv.CsvWriter
- quotationTriggers - Variable in class com.univocity.parsers.csv.CsvWriterSettings
- quote - Variable in class com.univocity.parsers.csv.CsvFormat
- quote - Variable in class com.univocity.parsers.csv.CsvParser
- quoteAllFields - Variable in class com.univocity.parsers.csv.CsvWriter
- quoteAllFields - Variable in class com.univocity.parsers.csv.CsvWriterSettings
- quoteChar - Variable in class com.univocity.parsers.csv.CsvWriter
- quotedColumns - Variable in class com.univocity.parsers.csv.CsvWriter
- quoteDetectionEnabled - Variable in class com.univocity.parsers.csv.CsvParserSettings
- quotedFieldSelector - Variable in class com.univocity.parsers.csv.CsvWriter
- quotedFieldSelector - Variable in class com.univocity.parsers.csv.CsvWriterSettings
- quoteElement(int, String) - Method in class com.univocity.parsers.csv.CsvWriter
- quoteEscape - Variable in class com.univocity.parsers.csv.CsvFormat
- quoteEscape - Variable in class com.univocity.parsers.csv.CsvParser
- quoteEscapingEnabled - Variable in class com.univocity.parsers.csv.CsvWriterSettings
- quoteFields(Enum...) - Method in class com.univocity.parsers.csv.CsvWriterSettings
-
Selects fields whose values should always be written within quotes
- quoteFields(String...) - Method in class com.univocity.parsers.csv.CsvWriterSettings
-
Selects fields whose values should always be written within quotes
- quoteHandling - Variable in class com.univocity.parsers.csv.CsvParser
- quoteIndexes(Integer...) - Method in class com.univocity.parsers.csv.CsvWriterSettings
-
Selects field positions whose values should always be written within quotes
- quoteNulls - Variable in class com.univocity.parsers.csv.CsvWriter
- quoteNulls - Variable in class com.univocity.parsers.csv.CsvWriterSettings
R
- RAISE_ERROR - Enum constant in enum class com.univocity.parsers.csv.UnescapedQuoteHandling
-
If unescaped quotes are found in the input, a
TextParsingException
will be thrown. - read() - Method in class com.univocity.parsers.common.input.BomInput
- read(char[], int, int) - Method in class com.univocity.parsers.common.LineReader
- read(Object) - Method in class com.univocity.parsers.annotations.helpers.FieldMapping
-
Reads the value accessible by this field mapping from a given object
- read(Object, boolean) - Method in class com.univocity.parsers.annotations.helpers.FieldMapping
- readBucket() - Method in class com.univocity.parsers.common.input.concurrent.ConcurrentCharLoader
- readComment() - Method in class com.univocity.parsers.common.input.AbstractCharInputReader
- readComment() - Method in interface com.univocity.parsers.common.input.CharInputReader
-
Collects the comment line found on the input.
- readComment() - Method in class com.univocity.parsers.common.input.LookaheadCharInputReader
- reader - Variable in class com.univocity.parsers.common.input.concurrent.ConcurrentCharLoader
- reader - Variable in class com.univocity.parsers.common.input.DefaultCharInputReader
- reader - Variable in class com.univocity.parsers.common.input.LookaheadCharInputReader
- readInputOnSeparateThread - Variable in class com.univocity.parsers.common.CommonParserSettings
- readMethod - Variable in class com.univocity.parsers.annotations.helpers.FieldMapping
- readMethod - Variable in class com.univocity.parsers.common.beans.PropertyWrapper
- readOrder - Variable in class com.univocity.parsers.common.processor.core.BeanConversionProcessor
- readValue(boolean) - Method in class com.univocity.parsers.fixed.FixedWidthParser
- readValueUntilNewLine(boolean) - Method in class com.univocity.parsers.fixed.FixedWidthParser
- ready() - Method in class com.univocity.parsers.common.LineReader
- record - Variable in class com.univocity.parsers.common.processor.core.AbstractMasterDetailProcessor
- record - Variable in class com.univocity.parsers.common.processor.core.AbstractMultiBeanRowProcessor
- Record - Interface in com.univocity.parsers.common.record
-
A record parsed from the input, with convenience methods for easier data manipulation.
- recordCharacters - Variable in exception com.univocity.parsers.common.TextWritingException
- recordCount - Variable in class com.univocity.parsers.common.AbstractWriter
- recordCount - Variable in exception com.univocity.parsers.common.TextWritingException
- recordData - Variable in exception com.univocity.parsers.common.TextWritingException
- recordEndsOnNewline - Variable in class com.univocity.parsers.fixed.FixedWidthParserSettings
- recordEndsOnNewLine - Variable in class com.univocity.parsers.fixed.FixedWidthParser
- recordFactory - Variable in class com.univocity.parsers.common.DefaultContext
- RecordFactory - Class in com.univocity.parsers.common.record
-
A factory class that provides implementations of
Record
based on the current state of anAbstractParser
(via itsParsingContext
), and raw input records. - RecordFactory(Context) - Constructor for class com.univocity.parsers.common.record.RecordFactory
-
Creates a new factory of
Record
based the state of a parser - RecordImpl<C extends Context> - Class in com.univocity.parsers.common.record
- RecordImpl(String[], RecordMetaDataImpl) - Constructor for class com.univocity.parsers.common.record.RecordImpl
- RecordIterator - Class in com.univocity.parsers.common.iterators
-
An iterator of
Record
s. - RecordIterator(AbstractParser) - Constructor for class com.univocity.parsers.common.iterators.RecordIterator
- recordMetaData - Variable in class com.univocity.parsers.common.NoopParsingContext
- recordMetaData() - Method in interface com.univocity.parsers.common.Context
-
Returns the metadata information associated with records produced by the current parsing process.
- recordMetaData() - Method in class com.univocity.parsers.common.ContextWrapper
- recordMetaData() - Method in class com.univocity.parsers.common.DefaultContext
- recordMetaData() - Method in class com.univocity.parsers.common.NoopParsingContext
- RecordMetaData - Interface in com.univocity.parsers.common.record
-
Metadata with information about
Record
s parsed from the input. - RecordMetaDataImpl<C extends Context> - Class in com.univocity.parsers.common.record
- RecordMetaDataImpl(C) - Constructor for class com.univocity.parsers.common.record.RecordMetaDataImpl
- recordNumber - Variable in exception com.univocity.parsers.common.TextParsingException
- records - Variable in class com.univocity.parsers.common.processor.core.AbstractMasterDetailListProcessor
- recordStart - Variable in class com.univocity.parsers.common.input.AbstractCharInputReader
- recordsToRead - Variable in class com.univocity.parsers.common.AbstractParser
- RegexConversion - Class in com.univocity.parsers.conversions
-
Replaces contents of a given input String, identified by a regular expression, with a replacement String.
- RegexConversion(String, String) - Constructor for class com.univocity.parsers.conversions.RegexConversion
-
Creates a conversion that matches contents identified by the given regular expression and replaces them by the given replacement String.
- regexToMatch - Variable in class com.univocity.parsers.conversions.ValidatedConversion
- registerConversions(Conversion<String, ?>...) - Method in class com.univocity.parsers.common.fields.AbstractConversionMapping
-
Registers a sequence of conversions to a set of fields.
- registerLookahead(String, FixedWidthFields, Map<String, FixedWidthFields>) - Static method in class com.univocity.parsers.fixed.Lookup
- registerLookbehind(String, FixedWidthFields, Map<String, FixedWidthFields>) - Static method in class com.univocity.parsers.fixed.Lookup
- registerLookup(String, String, FixedWidthFields, Map<String, FixedWidthFields>) - Static method in class com.univocity.parsers.fixed.Lookup
- reject(Method) - Method in interface com.univocity.parsers.annotations.helpers.MethodFilter.Filter
- reject(Method) - Method in enum class com.univocity.parsers.annotations.helpers.MethodFilter
-
Tests whether a method is not a getter or setter and should be rejected.
- release(Entry<T>) - Method in class com.univocity.parsers.common.input.concurrent.FixedInstancePool
-
Releases the given entry and makes it available for allocation (by
FixedInstancePool.allocate()
) - reloadBuffer() - Method in class com.univocity.parsers.common.input.AbstractCharInputReader
-
Informs the extending class that the buffer has been read entirely and requests for another batch of characters.
- reloadBuffer() - Method in class com.univocity.parsers.common.input.concurrent.ConcurrentCharInputReader
-
Assigns the next "bucket" of characters to the
AbstractCharInputReader.buffer
attribute, and updates theAbstractCharInputReader.length
to the number of characters read. - reloadBuffer() - Method in class com.univocity.parsers.common.input.DefaultCharInputReader
-
Copies a sequence of characters from the input into the
AbstractCharInputReader.buffer
, and updates theAbstractCharInputReader.length
to the number of characters read. - reloadBuffer() - Method in class com.univocity.parsers.common.input.LookaheadCharInputReader
- reloadHeaders() - Method in class com.univocity.parsers.common.AbstractParser
-
Reloads headers from settings.
- remove(int, int) - Method in interface com.univocity.parsers.common.input.CharAppender
-
Removes a section from the appended content
- remove(int, int) - Method in class com.univocity.parsers.common.input.DefaultCharAppender
- remove(int, int) - Method in class com.univocity.parsers.common.input.NoopCharAppender
-
Does nothing
- remove(String) - Method in class com.univocity.parsers.common.fields.AbstractColumnMapping
-
Removes any mappings containing keys that have a given attribute or method name.
- remove(String) - Method in interface com.univocity.parsers.common.fields.ColumnMapper
-
Removes any mappings that target a given method or attribute name.
- remove(String) - Method in class com.univocity.parsers.common.fields.ColumnMapping
- remove(Collection<T>) - Method in class com.univocity.parsers.common.fields.FieldSet
-
Removes multiple field references in the selection
- remove(T...) - Method in class com.univocity.parsers.common.fields.FieldSet
-
Removes multiple field references in the selection
- removeAll(int[], int) - Static method in class com.univocity.parsers.common.ArgumentUtils
-
Removes all instances of a given element from an int array.
- replace(String, String) - Static method in class com.univocity.parsers.conversions.Conversions
-
Returns a new instance of
RegexConversion
- Replace - Annotation Interface in com.univocity.parsers.annotations
-
Indicates the String value of a field must have some of its contents replaced using
RegexConversion
. - replacement - Variable in class com.univocity.parsers.conversions.RegexConversion
- replacement() - Element in annotation interface com.univocity.parsers.annotations.Replace
-
The replacement string to substitute any contents matched by the given
Replace.expression()
- replaceRegex - Variable in class com.univocity.parsers.conversions.RegexConversion
- reportError() - Method in class com.univocity.parsers.common.input.concurrent.ConcurrentCharLoader
- reset() - Static method in class com.univocity.parsers.annotations.helpers.AnnotationRegistry
- reset() - Method in class com.univocity.parsers.common.ColumnMap
- reset() - Method in class com.univocity.parsers.common.DefaultContext
- reset() - Method in interface com.univocity.parsers.common.input.CharAppender
-
Clears the accumulated value and the whitespace count.
- reset() - Method in class com.univocity.parsers.common.input.DefaultCharAppender
- reset() - Method in class com.univocity.parsers.common.input.ElasticCharAppender
- reset() - Method in class com.univocity.parsers.common.input.NoopCharAppender
-
Does nothing
- reset() - Method in class com.univocity.parsers.common.ParserOutput
-
Resets the parser output and prepares for a new parsing process.
- reset() - Method in class com.univocity.parsers.common.processor.core.ColumnSplitter
-
Prepares to execute a column splitting process from the beginning.
- resetWhitespaceCount() - Method in interface com.univocity.parsers.common.input.CharAppender
-
Resets the number of whitespaces accumulated after the last non-whitespace character.
- resetWhitespaceCount() - Method in class com.univocity.parsers.common.input.DefaultCharAppender
- resetWhitespaceCount() - Method in class com.univocity.parsers.common.input.NoopCharAppender
-
Does nothing
- restrictContent(int, CharSequence) - Static method in exception com.univocity.parsers.common.AbstractException
- restrictContent(int, CharSequence) - Static method in class com.univocity.parsers.common.ArgumentUtils
-
Restricts the length of a given content.
- restrictContent(int, Object) - Static method in class com.univocity.parsers.common.ArgumentUtils
-
Restricts the length of a given content.
- restrictContent(int, Object[]) - Static method in exception com.univocity.parsers.common.AbstractException
- restrictContent(CharSequence) - Method in exception com.univocity.parsers.common.AbstractException
- restrictContent(Object) - Method in exception com.univocity.parsers.common.AbstractException
- restrictContent(Object[]) - Method in exception com.univocity.parsers.common.AbstractException
- ResultIterator<T,
C extends Context> - Interface in com.univocity.parsers.common -
An
Iterator
that provides the current parsing context through theResultIterator.getContext()
method - RetryableErrorHandler<T extends Context> - Class in com.univocity.parsers.common
-
A
ProcessorErrorHandler
implementation that gives the user a chance to provide a default value for columns that could not be processed due to an exception, through the methodRetryableErrorHandler.setDefaultValue(Object)
. - RetryableErrorHandler() - Constructor for class com.univocity.parsers.common.RetryableErrorHandler
- returnType - Variable in class com.univocity.parsers.annotations.helpers.MethodDescriptor
- reverseConversions(boolean, int, Object, boolean[]) - Method in class com.univocity.parsers.common.fields.FieldConversionMapping
-
Applies a sequence of conversions associated with an Object value at a given index in a record.
- reverseConversions(boolean, Object[], NormalizedString[], int[]) - Method in class com.univocity.parsers.common.DefaultConversionProcessor
-
Executes the sequences of reverse conversions defined using
DefaultConversionProcessor.convertFields(Conversion...)
,DefaultConversionProcessor.convertIndexes(Conversion...)
andDefaultConversionProcessor.convertAll(Conversion...)
, for every field in the given row. - reverseConversions(T, NormalizedString[], int[]) - Method in class com.univocity.parsers.common.processor.core.BeanConversionProcessor
-
Converts a java bean instance into a sequence of values for writing.
- reverseFieldIndexes - Variable in class com.univocity.parsers.common.DefaultConversionProcessor
- revert(Boolean) - Method in class com.univocity.parsers.conversions.BooleanConversion
-
Converts a Boolean back to a String
- revert(Object) - Method in class com.univocity.parsers.conversions.NullStringConversion
-
Converts a null input to a String representation.
- revert(Object) - Method in class com.univocity.parsers.conversions.ValidatedConversion
- revert(String) - Method in class com.univocity.parsers.conversions.FormattedDateConversion
-
Unsupported operation.
- revert(String) - Method in class com.univocity.parsers.conversions.LowerCaseConversion
-
Applies the toLowerCase operation in the input and returns the result.
- revert(String) - Method in class com.univocity.parsers.conversions.RegexConversion
-
Executes the regular expression provided in the constructor of this class against the input and replaces any matched content with the replacement String.
- revert(String) - Method in class com.univocity.parsers.conversions.TrimConversion
-
Removes leading and trailing white spaces from the input and returns the result.
- revert(String) - Method in class com.univocity.parsers.conversions.UpperCaseConversion
-
Applies the toUpperCase operation in the input and returns the result.
- revert(Calendar) - Method in class com.univocity.parsers.conversions.CalendarConversion
-
Converts Calendar to a formatted date String.
- revert(Date) - Method in class com.univocity.parsers.conversions.DateConversion
-
Converts Date to a formatted date String.
- revert(O) - Method in interface com.univocity.parsers.conversions.Conversion
-
Converts a value of type O to a value of type I.
- revert(O) - Method in class com.univocity.parsers.conversions.NullConversion
-
Converts a value of type O back to a value of type I
- revert(T) - Method in class com.univocity.parsers.conversions.EnumConversion
- revert(T) - Method in class com.univocity.parsers.conversions.NumericConversion
-
Converts Number to a formatted numeric String.
- revert(T) - Method in class com.univocity.parsers.conversions.ObjectConversion
-
Converts a value of type T back to a String
- RIGHT - Enum constant in enum class com.univocity.parsers.fixed.FieldAlignment
-
Aligns values to the right
- rootAlignments - Variable in class com.univocity.parsers.fixed.FixedWidthParser
- rootAlignments - Variable in class com.univocity.parsers.fixed.FixedWidthWriter
- rootIgnore - Variable in class com.univocity.parsers.fixed.FixedWidthParser
- rootIgnore - Variable in class com.univocity.parsers.fixed.FixedWidthWriter
- rootKeepPaddingFlags - Variable in class com.univocity.parsers.fixed.FixedWidthParser
- rootLengths - Variable in class com.univocity.parsers.fixed.FixedWidthParser
- rootLengths - Variable in class com.univocity.parsers.fixed.FixedWidthWriter
- rootPaddings - Variable in class com.univocity.parsers.fixed.FixedWidthParser
- rootPaddings - Variable in class com.univocity.parsers.fixed.FixedWidthWriter
- routineDescription - Variable in class com.univocity.parsers.common.routine.AbstractRoutines
- row - Variable in exception com.univocity.parsers.common.DataProcessingException
- row - Variable in class com.univocity.parsers.common.processor.core.AbstractConcurrentProcessor.Node
- row - Variable in class com.univocity.parsers.common.processor.core.AbstractMultiBeanRowProcessor
- row - Variable in class com.univocity.parsers.common.processor.core.BeanConversionProcessor
- rowAppender - Variable in class com.univocity.parsers.common.AbstractWriter
- rowCount - Variable in class com.univocity.parsers.common.processor.core.AbstractConcurrentProcessor
- rowCount - Variable in class com.univocity.parsers.common.processor.core.ColumnSplitter
- rowCount() - Method in class com.univocity.parsers.common.routine.InputDimension
-
Returns the total number of rows the input contains.
- RowIterator - Class in com.univocity.parsers.common.iterators
-
An iterator of
String[]
. - RowIterator(AbstractParser) - Constructor for class com.univocity.parsers.common.iterators.RowIterator
- RowListProcessor - Class in com.univocity.parsers.common.processor
-
A convenience
RowProcessor
implementation for storing all rows parsed into a list. - RowListProcessor() - Constructor for class com.univocity.parsers.common.processor.RowListProcessor
-
Creates a new processor of
String[]
rows. - RowListProcessor(int) - Constructor for class com.univocity.parsers.common.processor.RowListProcessor
-
Creates a new processor of
String[]
rows. - rowParsed() - Method in class com.univocity.parsers.common.ParserOutput
-
Gets all values parsed in the
ParserOutput.parsedValues
array - RowPlacement - Enum Class in com.univocity.parsers.common.processor
-
An indicator of where the input a row is placed in relation to others.
- RowPlacement() - Constructor for enum class com.univocity.parsers.common.processor.RowPlacement
- rowProcessed(Object[], T) - Method in class com.univocity.parsers.common.processor.core.AbstractBatchedObjectColumnProcessor
- rowProcessed(Object[], T) - Method in class com.univocity.parsers.common.processor.core.AbstractMasterDetailProcessor
-
Invoked by the parser after all values of a valid record have been processed and any conversions have been executed.
- rowProcessed(Object[], T) - Method in class com.univocity.parsers.common.processor.core.AbstractObjectColumnProcessor
- rowProcessed(Object[], T) - Method in class com.univocity.parsers.common.processor.core.AbstractObjectListProcessor
-
Stores the row extracted by the parser and them converted to an Object array into a list.
- rowProcessed(Object[], T) - Method in class com.univocity.parsers.common.processor.core.AbstractObjectProcessor
-
Invoked by the processor after all values of a valid record have been processed and converted into an Object array.
- rowProcessed(String[]) - Method in class com.univocity.parsers.common.AbstractParser
- rowProcessed(String[], C) - Method in class com.univocity.parsers.common.processor.core.AbstractBeanProcessor
-
Converts a parsed row to a java object
- rowProcessed(String[], C) - Method in class com.univocity.parsers.common.processor.core.AbstractMultiBeanProcessor
- rowProcessed(String[], C) - Method in class com.univocity.parsers.common.processor.core.CompositeProcessor
-
Invoked by the parser after all values of a valid record have been processed.
- rowProcessed(String[], ParsingContext) - Method in interface com.univocity.parsers.common.processor.RowProcessor
-
Invoked by the parser after all values of a valid record have been processed.
- rowProcessed(String[], T) - Method in class com.univocity.parsers.common.processor.core.AbstractBatchedColumnProcessor
- rowProcessed(String[], T) - Method in class com.univocity.parsers.common.processor.core.AbstractColumnProcessor
- rowProcessed(String[], T) - Method in class com.univocity.parsers.common.processor.core.AbstractConcurrentProcessor
- rowProcessed(String[], T) - Method in class com.univocity.parsers.common.processor.core.AbstractListProcessor
-
Stores the row extracted by the parser into a list.
- rowProcessed(String[], T) - Method in class com.univocity.parsers.common.processor.core.AbstractMasterDetailProcessor
-
Invoked by the parser after all values of a valid record have been processed.
- rowProcessed(String[], T) - Method in class com.univocity.parsers.common.processor.core.AbstractObjectProcessor
-
Executes the sequences of conversions defined using
DefaultConversionProcessor.convertFields(Conversion...)
,DefaultConversionProcessor.convertIndexes(Conversion...)
andDefaultConversionProcessor.convertAll(Conversion...)
, for every field in the given row. - rowProcessed(String[], T) - Method in class com.univocity.parsers.common.processor.core.AbstractProcessor
- rowProcessed(String[], T) - Method in class com.univocity.parsers.common.processor.core.AbstractProcessorSwitch
- rowProcessed(String[], T) - Method in interface com.univocity.parsers.common.processor.core.Processor
-
Invoked by the parser after all values of a valid record have been processed.
- rowProcessed(Map<Class<?>, Object>, C) - Method in class com.univocity.parsers.common.processor.core.AbstractMultiBeanListProcessor
- rowProcessed(Map<Class<?>, Object>, C) - Method in class com.univocity.parsers.common.processor.core.AbstractMultiBeanRowProcessor
-
Invoked by the processor after all beans of a valid record have been processed.
- RowProcessor - Interface in com.univocity.parsers.common.processor
-
The essential callback interface to handle records parsed by any parser that extends
AbstractParser
. - RowProcessorErrorHandler - Interface in com.univocity.parsers.common
-
The
RowProcessorErrorHandler
is a callback used by the parser/writer to handle non-fatalDataProcessingException
s that may occur when processing rows using aRowProcessor
orRowWriterProcessor
. - RowProcessorSwitch - Class in com.univocity.parsers.common.processor
-
A special
RowProcessor
implementation that combines and allows switching among different RowProcessors. - RowProcessorSwitch() - Constructor for class com.univocity.parsers.common.processor.RowProcessorSwitch
- rowProcessorSwitched(RowProcessor, RowProcessor) - Method in class com.univocity.parsers.common.processor.core.AbstractProcessorSwitch
-
Notifies a change of
RowProcessor
implementation. - rowProcessorSwitched(RowWriterProcessor<?>, RowWriterProcessor<?>) - Method in class com.univocity.parsers.common.processor.RowWriterProcessorSwitch
-
Notifies a change of row writer processor implementation.
- rows - Variable in class com.univocity.parsers.common.processor.core.AbstractListProcessor
- rows - Variable in class com.univocity.parsers.common.processor.core.AbstractObjectListProcessor
- rows - Variable in class com.univocity.parsers.common.routine.InputDimension
- rowsPerBatch - Variable in class com.univocity.parsers.common.processor.core.AbstractBatchedColumnProcessor
- rowsPerBatch - Variable in class com.univocity.parsers.common.processor.core.AbstractBatchedObjectColumnProcessor
- rowsToSkip - Variable in class com.univocity.parsers.common.AbstractParser
- rowWriterProcessor - Variable in class com.univocity.parsers.common.CommonWriterSettings
- RowWriterProcessor<T> - Interface in com.univocity.parsers.common.processor
-
The essential callback interface to convert input objects into a manageable format for writing.
- RowWriterProcessorSwitch - Class in com.univocity.parsers.common.processor
-
A special
RowWriterProcessor
implementation that combines and allows switching among different RowWriterProcessors. - RowWriterProcessorSwitch() - Constructor for class com.univocity.parsers.common.processor.RowWriterProcessorSwitch
- run() - Method in class com.univocity.parsers.common.input.concurrent.ConcurrentCharLoader
-
The
CharBucket
loading process that executes in parallel until the input is completely read. - runAutomaticConfiguration() - Method in class com.univocity.parsers.common.CommonParserSettings
- runAutomaticConfiguration() - Method in class com.univocity.parsers.common.CommonSettings
- runAutomaticConfiguration() - Method in class com.univocity.parsers.common.CommonWriterSettings
S
- saveMatchingCharacters() - Method in class com.univocity.parsers.csv.CsvParser
- selectedHeaders() - Method in interface com.univocity.parsers.common.Context
-
Returns the sequence of headers that have been selected.
- selectedHeaders() - Method in class com.univocity.parsers.common.ContextWrapper
- selectedHeaders() - Method in class com.univocity.parsers.common.DefaultContext
- selectedHeaders() - Method in class com.univocity.parsers.common.NoopParsingContext
- selectedHeaders() - Method in class com.univocity.parsers.common.ParsingContextWrapper
- selectedHeaders() - Method in interface com.univocity.parsers.common.record.RecordMetaData
-
Returns the sequence of headers that have been selected.
- selectedHeaders() - Method in class com.univocity.parsers.common.record.RecordMetaDataImpl
- selectedIndexes - Variable in class com.univocity.parsers.common.ParserOutput
- selectedProcessor - Variable in class com.univocity.parsers.common.processor.core.AbstractProcessorSwitch
- selectedRowWriterProcessor - Variable in class com.univocity.parsers.common.processor.RowWriterProcessorSwitch
- selectedSwitch - Variable in class com.univocity.parsers.common.processor.OutputValueSwitch
- selectFields(Enum...) - Method in class com.univocity.parsers.common.CommonSettings
-
Selects a sequence of fields for reading/writing by their names
- selectFields(String...) - Method in class com.univocity.parsers.common.CommonSettings
-
Selects a sequence of fields for reading/writing by their names.
- selectIndexes(Integer...) - Method in class com.univocity.parsers.common.CommonSettings
-
Selects a sequence of fields for reading/writing by their positions.
- selectors - Variable in class com.univocity.parsers.conversions.EnumConversion
- selectors() - Element in annotation interface com.univocity.parsers.annotations.EnumOptions
-
A list of properties of the enumeration type that will be matched against the parsed input to identify which enum element should be assigned to the annotated field.
- sequence() - Element in annotation interface com.univocity.parsers.annotations.Headers
-
Returns the sequence of header names in the input/output
- serialVersionUID - Static variable in exception com.univocity.parsers.common.AbstractException
- serialVersionUID - Static variable in exception com.univocity.parsers.common.DataProcessingException
- serialVersionUID - Static variable in exception com.univocity.parsers.common.DataValidationException
- serialVersionUID - Static variable in exception com.univocity.parsers.common.input.EOFException
- serialVersionUID - Static variable in class com.univocity.parsers.common.NormalizedString
- serialVersionUID - Static variable in exception com.univocity.parsers.common.TextParsingException
- serialVersionUID - Static variable in exception com.univocity.parsers.common.TextWritingException
- set(Collection<T>) - Method in class com.univocity.parsers.common.fields.FieldSet
-
Validates and sets multiple field references.
- set(T...) - Method in class com.univocity.parsers.common.fields.FieldSet
-
Validates and sets multiple field references.
- setAccessible() - Method in class com.univocity.parsers.annotations.helpers.FieldMapping
- setAlignment(int, FieldAlignment) - Method in class com.univocity.parsers.fixed.FixedWidthFields
- setAlignment(FieldAlignment, int...) - Method in class com.univocity.parsers.fixed.FixedWidthFields
-
Applies alignment to a given list of fields
- setAlignment(FieldAlignment, String...) - Method in class com.univocity.parsers.fixed.FixedWidthFields
-
Applies alignment to a given list of fields
- setAttribute(String, Object) - Method in class com.univocity.parsers.annotations.helpers.AnnotationRegistry.AnnotationAttributes
- setAutoClosingEnabled(boolean) - Method in class com.univocity.parsers.common.CommonParserSettings
-
Configures whether the parser should always close the input (reader, stream, etc) automatically when all records have been parsed or when an error occurs.
- setAutoConfigurationEnabled(boolean) - Method in class com.univocity.parsers.common.CommonSettings
-
Indicates whether this settings object can automatically derive configuration options.
- setCaseSensitive(boolean) - Method in class com.univocity.parsers.common.processor.core.AbstractInputValueSwitch
-
Configures the switch to be case sensitive when comparing values provided in
AbstractInputValueSwitch.addSwitchForValue(String, Processor, String...)
with the column given in the constructor of this class. - setCharToEscapeQuoteEscaping(char) - Method in class com.univocity.parsers.csv.CsvFormat
-
Defines the character used to escape the character used for escaping quotes defined by
CsvFormat.getQuoteEscape()
. - setColumnIndex(int) - Method in exception com.univocity.parsers.common.DataProcessingException
-
Defines the column index being processed when the error occurred.
- setColumnMapper(ColumnMapper) - Method in class com.univocity.parsers.common.processor.core.BeanConversionProcessor
-
Copies the given column mappings over to this processor.
- setColumnMapper(ColumnMapper) - Method in class com.univocity.parsers.common.routine.AbstractRoutines
-
Copies the given column mappings over to this processor.
- setColumnName(String) - Method in exception com.univocity.parsers.common.DataProcessingException
-
Defines the name of the column being processed when the error occurred.
- setColumnReorderingEnabled(boolean) - Method in class com.univocity.parsers.common.CommonParserSettings
-
Defines whether fields selected using the field selection methods (defined by the parent class
CommonSettings
) should be reordered (defaults to true). - setColumnReorderingEnabled(boolean) - Method in class com.univocity.parsers.common.CommonWriterSettings
-
Defines whether fields selected using the field selection methods (defined by the parent class
CommonSettings
) should be reordered (defaults to false). - setComment(char) - Method in class com.univocity.parsers.common.Format
-
Defines the character that represents a line comment when found in the beginning of a line of text.
- setCommentCollectionEnabled(boolean) - Method in class com.univocity.parsers.common.CommonParserSettings
-
Enables collection of comments found in the input (disabled by default).
- setCommentProcessingEnabled(boolean) - Method in class com.univocity.parsers.common.CommonParserSettings
-
Configures whether the parser will check for the comment line in the file Defaults to
true
- setComparator(Comparator<?>) - Method in class com.univocity.parsers.common.processor.OutputValueSwitch
-
Configures the switch to use a custom
Comparator
to compare values in the column to analyze which is given in the constructor of this class. - setComparator(Comparator<String>) - Method in class com.univocity.parsers.common.processor.core.AbstractInputValueSwitch
-
Configures the switch to use a custom
Comparator
to compare values in the column to analyze which is given in the constructor of this class. - setContext(Context) - Method in exception com.univocity.parsers.common.TextParsingException
- setContextCopyingEnabled(boolean) - Method in class com.univocity.parsers.common.processor.core.AbstractConcurrentProcessor
- setDefaultAlignmentForHeaders(FieldAlignment) - Method in class com.univocity.parsers.fixed.FixedWidthWriterSettings
-
Defines the default alignment to use when writing headers.
- setDefaultConversions(Conversion[]) - Method in class com.univocity.parsers.common.record.MetaData
- setDefaultSwitch(Processor<T>) - Method in class com.univocity.parsers.common.processor.core.AbstractInputValueSwitch
-
Defines a default
Processor
implementation to use when no matching value is found in the input row. - setDefaultSwitch(Processor<T>, int...) - Method in class com.univocity.parsers.common.processor.core.AbstractInputValueSwitch
-
Defines a default
Processor
implementation to use when no matching value is found in the input row. - setDefaultSwitch(Processor<T>, String...) - Method in class com.univocity.parsers.common.processor.core.AbstractInputValueSwitch
-
Defines a default
Processor
implementation to use when no matching value is found in the input row. - setDefaultSwitch(RowWriterProcessor<Object[]>, int...) - Method in class com.univocity.parsers.common.processor.OutputValueSwitch
-
Defines a default
RowWriterProcessor
implementation to use when no matching value is found in the output row. - setDefaultSwitch(RowWriterProcessor<Object[]>, String...) - Method in class com.univocity.parsers.common.processor.OutputValueSwitch
-
Defines a default
RowWriterProcessor
implementation to use when no matching value is found in the output row. - setDefaultValue(Object) - Method in class com.univocity.parsers.common.RetryableErrorHandler
-
Assigns a default value to be assigned to the problematic column that raised the current
DataProcessingException
. - setDefaultValueOfColumns(T, int...) - Method in interface com.univocity.parsers.common.record.RecordMetaData
-
Associates a default value with one or more columns, in case the values contained are
null
- setDefaultValueOfColumns(T, int...) - Method in class com.univocity.parsers.common.record.RecordMetaDataImpl
- setDefaultValueOfColumns(T, Enum<?>...) - Method in interface com.univocity.parsers.common.record.RecordMetaData
-
Associates a default value with one or more columns, in case the values contained are
null
- setDefaultValueOfColumns(T, Enum<?>...) - Method in class com.univocity.parsers.common.record.RecordMetaDataImpl
- setDefaultValueOfColumns(T, String...) - Method in interface com.univocity.parsers.common.record.RecordMetaData
-
Associates a default value with one or more columns, in case the values contained are
null
- setDefaultValueOfColumns(T, String...) - Method in class com.univocity.parsers.common.record.RecordMetaDataImpl
- setDelimiter(char) - Method in class com.univocity.parsers.csv.CsvFormat
-
Defines the field delimiter character.
- setDelimiter(String) - Method in class com.univocity.parsers.csv.CsvFormat
-
Defines the field delimiter as a sequence of characters.
- setDelimiterDetectionEnabled(boolean) - Method in class com.univocity.parsers.csv.CsvParserSettings
-
Configures the parser to analyze the input before parsing to discover the column delimiter character.
- setDelimiterDetectionEnabled(boolean, char...) - Method in class com.univocity.parsers.csv.CsvParserSettings
-
Configures the parser to analyze the input before parsing to discover the column delimiter character.
- setDetailRows(List<Object[]>) - Method in class com.univocity.parsers.common.processor.MasterDetailRecord
-
Sets the detail rows associated with the master row
- setDetails(String) - Method in exception com.univocity.parsers.common.DataProcessingException
- setEmptyValue(String) - Method in class com.univocity.parsers.common.CommonWriterSettings
-
Sets the String representation of an empty value (defaults to null)
- setEmptyValue(String) - Method in class com.univocity.parsers.csv.CsvParserSettings
-
Sets the String representation of an empty value (defaults to null)
- setEncoding(String) - Method in class com.univocity.parsers.common.input.BomInput
- setError(Exception) - Method in class com.univocity.parsers.common.input.concurrent.ConcurrentCharLoader
- setErrorContentLength(int) - Method in exception com.univocity.parsers.common.AbstractException
- setErrorContentLength(int) - Method in class com.univocity.parsers.common.CommonSettings
-
Configures the parser/writer to limit the length of displayed contents being parsed/written in the exception message when an error occurs.
- setEscapeChar(char) - Method in class com.univocity.parsers.tsv.TsvFormat
-
Defines the character used for escaping special characters in TSV inputs: \t, \n, \r and \ .
- setEscapedTabChar(char) - Method in class com.univocity.parsers.tsv.TsvFormat
-
Defines the character that should be used to represent an escaped tab, i.e.
- setEscapeUnquotedValues(boolean) - Method in class com.univocity.parsers.csv.CsvParserSettings
-
Configures the parser to process escape sequences in unquoted values.
- setEscapeUnquotedValues(boolean) - Method in class com.univocity.parsers.csv.CsvWriterSettings
-
Configures the writer to process escape sequences in unquoted values.
- setExpandIncompleteRows(boolean) - Method in class com.univocity.parsers.common.CommonWriterSettings
-
Defines whether the writer should expand records with less columns than the number of headers.
- setFieldLength(int, int) - Method in class com.univocity.parsers.fixed.FixedWidthFields
-
Modifies the length of a given field
- setFieldLength(String, int) - Method in class com.univocity.parsers.fixed.FixedWidthFields
-
Modifies the length of a given field
- setFieldLengths(FixedWidthFields) - Method in class com.univocity.parsers.fixed.FixedWidthWriterSettings
- setFieldName(NormalizedString) - Method in class com.univocity.parsers.annotations.helpers.FieldMapping
-
Defines the column name against which this field is mapped, overriding any current name derived from annotations or from the attribute name itself.
- setFieldName(String) - Method in class com.univocity.parsers.annotations.helpers.FieldMapping
-
Defines the column name against which this field is mapped, overriding any current name derived from annotations or from the attribute name itself.
- setFieldSet(FieldSet<T>, T...) - Method in class com.univocity.parsers.common.CommonSettings
-
Replaces the current field selection
- setFieldSet(FieldSet<T>, T...) - Method in class com.univocity.parsers.csv.CsvWriterSettings
-
Replaces the current quoted field selection
- setFormat(F) - Method in class com.univocity.parsers.common.CommonSettings
-
Defines the format of the file to be parsed/written (returns the format's defaults).
- setFormatDetectorRowSampleCount(int) - Method in class com.univocity.parsers.csv.CsvParserSettings
-
Updates the number of sample rows used in the CSV format auto-detection process (defaults to 20)
- setHeaderExtractionEnabled(boolean) - Method in class com.univocity.parsers.common.CommonParserSettings
-
Defines whether or not the first valid record parsed from the input should be considered as the row containing the names of each column
- setHeaders(String...) - Method in class com.univocity.parsers.common.CommonSettings
-
Defines the field names in the input/output, in the sequence they occur (defaults to null).
- setHeadersDerivedFromClass(Class<?>, String...) - Method in class com.univocity.parsers.common.CommonSettings
-
Defines the field names in the input/output derived from a given class with
Parsed
annotated attributes/methods. - setHeadersFromMap(Map<?, ?>, boolean) - Method in class com.univocity.parsers.common.AbstractWriter
-
Iterates over the keys of a map and builds an internal header row.
- setHeadersIfPossible(FixedWidthFields, CommonSettings) - Static method in class com.univocity.parsers.fixed.FixedWidthFields
- setHeaderWritingEnabled(boolean) - Method in class com.univocity.parsers.common.CommonWriterSettings
-
Enables automatic writing of headers when they are available.
- setIgnoreLeadingWhitespaces(boolean) - Method in class com.univocity.parsers.common.CommonSettings
-
Defines whether or not leading whitespaces from values being read/written should be skipped (defaults to true)
- setIgnoreLeadingWhitespacesInQuotes(boolean) - Method in class com.univocity.parsers.csv.CsvParserSettings
-
Defines whether or not leading whitespaces from quoted values should be skipped (defaults to false) Note: if
CsvParserSettings.keepQuotes
evaluates totrue
, values won't be trimmed. - setIgnoreTrailingWhitespaces(boolean) - Method in class com.univocity.parsers.common.CommonSettings
-
Defines whether or not trailing whitespaces from values being read/written should be skipped (defaults to true)
- setIgnoreTrailingWhitespacesInQuotes(boolean) - Method in class com.univocity.parsers.csv.CsvParserSettings
-
Defines whether or not trailing whitespaces from quoted values should be skipped (defaults to false) Note: if
CsvParserSettings.keepQuotes
evaluates totrue
, values won't be trimmed. - setIndex(int) - Method in class com.univocity.parsers.annotations.helpers.FieldMapping
-
Defines the column index against which this field is mapped, overriding any current position derived from annotations.
- setInputBufferSize(int) - Method in class com.univocity.parsers.common.CommonParserSettings
-
Defines the number of characters held by the parser's buffer when processing the input (defaults to 1024*1024 characters).
- setInputEscaped(boolean) - Method in class com.univocity.parsers.csv.CsvWriterSettings
-
Configures the writer to prevent it to introduce escape sequences.
- setKeepEscapeSequences(boolean) - Method in class com.univocity.parsers.csv.CsvParserSettings
-
Configures the parser to keep any escape sequences if they are present in the input (i.e.
- setKeepPadding(boolean) - Method in class com.univocity.parsers.fixed.FixedWidthParserSettings
-
Configures the fixed-width parser to retain the padding character in any parsed values (defaults to
false
) This setting can be overridden for individual fields throughFixedWidthFields.stripPaddingFrom(String, String...)
andFixedWidthFields.keepPaddingOn(String, String...)
- setKeepPaddingFlag(boolean, int, int...) - Method in class com.univocity.parsers.fixed.FixedWidthFields
- setKeepPaddingFlag(boolean, String, String...) - Method in class com.univocity.parsers.fixed.FixedWidthFields
- setKeepQuotes(boolean) - Method in class com.univocity.parsers.csv.CsvParserSettings
-
Configures the parser to keep enclosing quote characters in the values parsed from the input.
- setKeepResourcesOpen(boolean) - Method in class com.univocity.parsers.common.routine.AbstractRoutines
-
Allows preventing resources used for writing from being closed after being used by the routines available from this object, when applicable.
- setLine(String) - Method in class com.univocity.parsers.common.LineReader
- setLineJoiningEnabled(boolean) - Method in class com.univocity.parsers.tsv.TsvParserSettings
-
Defines how the parser should handle escaped line separators.
- setLineJoiningEnabled(boolean) - Method in class com.univocity.parsers.tsv.TsvWriterSettings
-
Defines how the writer should handle the escaping of line separators.
- setLineSeparator(char[]) - Method in class com.univocity.parsers.common.Format
-
Defines the line separator sequence that should be used for parsing and writing.
- setLineSeparator(char[]) - Method in class com.univocity.parsers.common.input.AbstractCharInputReader
- setLineSeparator(String) - Method in class com.univocity.parsers.common.Format
-
Defines the line separator sequence that should be used for parsing and writing.
- setLineSeparatorDetectionEnabled(boolean) - Method in class com.univocity.parsers.common.CommonParserSettings
-
Defines whether the parser should detect the line separator automatically.
- setLookupWildcard(char) - Method in class com.univocity.parsers.fixed.FixedWidthFormat
-
Defines the lookup wildcard character to accept any character in look-ahead or look-behind patterns defined using
FixedWidthParserSettings.addFormatForLookahead(String, FixedWidthFields)
orFixedWidthParserSettings.addFormatForLookbehind(String, FixedWidthFields)
. - setMasterRow(Object[]) - Method in class com.univocity.parsers.common.processor.MasterDetailRecord
-
Sets the master row data.
- setMaxCharsPerColumn(int) - Method in class com.univocity.parsers.common.CommonSettings
-
Defines the maximum number of characters allowed for any given value being written/read.
- setMaxColumns(int) - Method in class com.univocity.parsers.common.CommonSettings
-
Defines a hard limit of how many columns a record can have (defaults to 512).
- setMaxStringLength(int) - Method in class com.univocity.parsers.common.StringCache
-
Returns the maximum length a
String
key can have to be used as a key in this cache. - setNormalizedNewline(char) - Method in class com.univocity.parsers.common.Format
-
Sets the normalized newline character, which is automatically replaced by
Format.lineSeparator
when reading/writing - setNormalizeLineEndingsWithinQuotes(boolean) - Method in class com.univocity.parsers.csv.CsvParserSettings
-
Configures the parser to replace line separators, specified in
Format.getLineSeparator()
by the normalized line separator character specified inFormat.getNormalizedNewline()
, even on quoted values. - setNormalizeLineEndingsWithinQuotes(boolean) - Method in class com.univocity.parsers.csv.CsvWriterSettings
-
Flag indicating whether the writer should replace the the normalized line separator character specified in
Format.getNormalizedNewline()
by the sequence specified inFormat.getLineSeparator()
, when the value is enclosed within quotes. - setNullValue(String) - Method in class com.univocity.parsers.common.CommonSettings
-
Sets the String representation of a null value (defaults to null)
- setNumberOfRecordsToRead(long) - Method in class com.univocity.parsers.common.CommonParserSettings
-
Defines the number of valid records to be parsed before the process is stopped.
- setNumberOfRowsToSkip(long) - Method in class com.univocity.parsers.common.CommonParserSettings
-
Defines a number of rows to skip from the input before the parser can begin to execute.
- setNumberType(Class<? extends Number>) - Method in class com.univocity.parsers.conversions.NumericConversion
-
Defines a specific implementation of
Number
that should be used when converting numeric data. - setPadding(char) - Method in class com.univocity.parsers.fixed.FixedWidthFormat
-
Defines the padding character used to represent unwritten spaces.
- setPadding(char, int...) - Method in class com.univocity.parsers.fixed.FixedWidthFields
-
Applies a custom padding character to a given list of fields
- setPadding(char, String...) - Method in class com.univocity.parsers.fixed.FixedWidthFields
-
Applies a custom padding character to a given list of fields
- setPadding(int, char) - Method in class com.univocity.parsers.fixed.FixedWidthFields
- setPaddingToKeep(int, boolean) - Method in class com.univocity.parsers.fixed.FixedWidthFields
- setParserSettings(P) - Method in class com.univocity.parsers.common.routine.AbstractRoutines
-
Defines the parser configuration to be used by the routines of this utility class.
- setParseUnescapedQuotes(boolean) - Method in class com.univocity.parsers.csv.CsvParserSettings
-
Deprecated.use
CsvParserSettings.setUnescapedQuoteHandling(UnescapedQuoteHandling)
instead. The configuration returned byCsvParserSettings.getUnescapedQuoteHandling()
will override this setting if not null. - setParseUnescapedQuotesUntilDelimiter(boolean) - Method in class com.univocity.parsers.csv.CsvParserSettings
-
Deprecated.use
CsvParserSettings.setUnescapedQuoteHandling(UnescapedQuoteHandling)
instead. The configuration returned byCsvParserSettings.getUnescapedQuoteHandling()
will override this setting if not null. - setParsingContext(ParsingContext) - Method in exception com.univocity.parsers.common.TextParsingException
- setProcessor(Processor<? extends Context>) - Method in class com.univocity.parsers.common.CommonParserSettings
-
Defines the callback implementation of the interface
Processor
which handles the lifecycle of the parsing process and processes each record extracted from the input - setProcessorErrorHandler(ProcessorErrorHandler<? extends Context>) - Method in class com.univocity.parsers.common.CommonSettings
-
Defines a custom error handler to capture and handle errors that might happen while processing records with a
Processor
or aRowWriterProcessor
(i.e. - setQuotationTriggers(char...) - Method in class com.univocity.parsers.csv.CsvWriterSettings
-
Defines one or more "triggers" for enclosing a value within quotes.
- setQuote(char) - Method in class com.univocity.parsers.csv.CsvFormat
-
Defines the character used for escaping values where the field delimiter is part of the value.
- setQuoteAllFields(boolean) - Method in class com.univocity.parsers.csv.CsvWriterSettings
-
Indicates indicates whether or not all written values should be enclosed within quotes (as defined in
CsvFormat
) - setQuoteDetectionEnabled(boolean) - Method in class com.univocity.parsers.csv.CsvParserSettings
-
Configures the parser to analyze the input before parsing to discover the quote character.
- setQuoteEscape(char) - Method in class com.univocity.parsers.csv.CsvFormat
-
Defines the character used for escaping quotes inside an already quoted value.
- setQuoteEscapingEnabled(boolean) - Method in class com.univocity.parsers.csv.CsvWriterSettings
-
Configures the CSV writer to escape values that contain the quote character, by enclosing the entire value in quotes.
- setQuoteNulls(boolean) - Method in class com.univocity.parsers.csv.CsvWriterSettings
-
Configures whether to quote
null
values sent to theCsvWriter
when the corresponding column is configured to be quoted viaCsvWriterSettings.quoteFields(String...)
, orCsvWriterSettings.getQuoteAllFields()
evaluates totrue
. - setReader(Reader) - Method in class com.univocity.parsers.common.input.AbstractCharInputReader
-
Passes the
Reader
provided in theAbstractCharInputReader.start(Reader)
method to the extending class so it can begin loading characters from it. - setReader(Reader) - Method in class com.univocity.parsers.common.input.concurrent.ConcurrentCharInputReader
-
Starts an input reading thread to load characters from the given reader into "buckets" of characters
- setReader(Reader) - Method in class com.univocity.parsers.common.input.DefaultCharInputReader
- setReadInputOnSeparateThread(boolean) - Method in class com.univocity.parsers.common.CommonParserSettings
-
Defines whether or not a separate thread will be used to read characters from the input while parsing (defaults true if the number of available processors at runtime is greater than 1)
- setRecordEndsOnNewline(boolean) - Method in class com.univocity.parsers.fixed.FixedWidthParserSettings
-
Defines whether or not a record is considered parsed when a newline is reached.
- setRow(Object[]) - Method in exception com.univocity.parsers.common.DataProcessingException
-
Updates the exception with the record being processed when the error occurred.
- setRowProcessor(RowProcessor) - Method in class com.univocity.parsers.common.CommonParserSettings
-
Deprecated.Use the
CommonParserSettings.setProcessor(Processor)
method as it allows format-specific processors to be built to work with different implementations ofContext
. Implementations based onRowProcessor
allow only parsers who provide aParsingContext
to be used. - setRowProcessor(RowProcessor) - Method in class com.univocity.parsers.common.routine.AbstractRoutines
- setRowProcessorErrorHandler(RowProcessorErrorHandler) - Method in class com.univocity.parsers.common.CommonSettings
-
Deprecated.Use the
CommonSettings.setProcessorErrorHandler(ProcessorErrorHandler)
method as it allows format-specific error handlers to be built to work with different implementations ofContext
. Implementations based onRowProcessorErrorHandler
allow only parsers who provide aParsingContext
to be used. - setRowWriterProcessor(RowWriterProcessor) - Method in class com.univocity.parsers.common.routine.AbstractRoutines
- setRowWriterProcessor(RowWriterProcessor<?>) - Method in class com.univocity.parsers.common.CommonWriterSettings
-
Defines a processor for input objects that converts them into a manageable format for writing.
- setSizeLimit(int) - Method in class com.univocity.parsers.common.StringCache
-
Defines the size limit of this string cache (16,384 by default).
- setSkipBitsAsWhitespace(boolean) - Method in class com.univocity.parsers.common.CommonSettings
-
Configures the parser to skip bit values as whitespace.
- setSkipEmptyLines(boolean) - Method in class com.univocity.parsers.common.CommonSettings
-
Defines whether or not empty lines should be ignored (defaults to true)
- setSkipTrailingCharsUntilNewline(boolean) - Method in class com.univocity.parsers.fixed.FixedWidthParserSettings
-
Defines whether or not any trailing characters beyond the record's length should be skipped until the newline is reached (defaults to
false
) - setStrictHeaderValidationEnabled(boolean) - Method in class com.univocity.parsers.common.processor.core.BeanConversionProcessor
-
Defines whether all headers declared in the annotated class must be present in the input.
- setter(String, Class<?>) - Static method in class com.univocity.parsers.annotations.helpers.MethodDescriptor
-
Creates a descriptor for a setter method
- setter(String, Method) - Static method in class com.univocity.parsers.annotations.helpers.MethodDescriptor
-
Creates a descriptor for a setter method
- settings - Variable in class com.univocity.parsers.common.AbstractParser
- settings - Variable in class com.univocity.parsers.common.ParserOutput
- setTypeOfColumns(Class<?>, int...) - Method in interface com.univocity.parsers.common.record.RecordMetaData
-
Associates a type with one or more column.
- setTypeOfColumns(Class<?>, int...) - Method in class com.univocity.parsers.common.record.RecordMetaDataImpl
- setTypeOfColumns(Class<?>, Enum...) - Method in interface com.univocity.parsers.common.record.RecordMetaData
-
Associates a type with one or more column.
- setTypeOfColumns(Class<?>, Enum...) - Method in class com.univocity.parsers.common.record.RecordMetaDataImpl
- setTypeOfColumns(Class<?>, String...) - Method in interface com.univocity.parsers.common.record.RecordMetaData
-
Associates a type with one or more column.
- setTypeOfColumns(Class<?>, String...) - Method in class com.univocity.parsers.common.record.RecordMetaDataImpl
- setUnescapedQuoteHandling(UnescapedQuoteHandling) - Method in class com.univocity.parsers.csv.CsvParserSettings
-
Configures the handling of values with unescaped quotes.
- setupConversions(AnnotatedElement, FieldMapping) - Method in class com.univocity.parsers.common.processor.core.BeanConversionProcessor
-
Goes through each field and method annotated with
Parsed
and extracts the sequence ofConversion
elements associated with each one. - setUseDefaultPaddingForHeaders(boolean) - Method in class com.univocity.parsers.fixed.FixedWidthParserSettings
-
Defines whether headers should be parsed using the default padding specified in
FixedWidthFormat.getPadding()
instead of any custom padding associated with a given field (inFixedWidthFields.setPadding(char, int...)
) - setUseDefaultPaddingForHeaders(boolean) - Method in class com.univocity.parsers.fixed.FixedWidthWriterSettings
-
Defines whether headers should be written using the default padding specified in
FixedWidthFormat.getPadding()
instead of any custom padding associated with a given field (inFixedWidthFields.setPadding(char, int...)
) - setValue(Annotation, String, Object) - Method in class com.univocity.parsers.annotations.helpers.AnnotationRegistry.FieldAnnotations
- setValue(Object) - Method in exception com.univocity.parsers.common.DataProcessingException
-
Defines the value being processed when the error occurred.
- setValue(AnnotatedElement, Annotation, String, Object) - Static method in class com.univocity.parsers.annotations.helpers.AnnotationRegistry
-
Associates a value to a given annotation attribute
- setValue(String, Object) - Method in exception com.univocity.parsers.common.DataProcessingException
-
Associates a label in the exception message (idenfied in curly braces) with a value being processed when the error occurred.
- setValueIfObjectIsNull(String) - Method in class com.univocity.parsers.conversions.ObjectConversion
-
returns default value of type T which should be returned when the input String is null.
- setValueIfStringIsNull(T) - Method in class com.univocity.parsers.conversions.ObjectConversion
-
defines a default value of type T which should be returned when the input String is null.
- setValueOnNullInput(O) - Method in class com.univocity.parsers.conversions.NullConversion
-
defines the default value of type O which should be returned when
NullConversion.execute(Object)
is invoked with a null I.. - setValueOnNullOutput(I) - Method in class com.univocity.parsers.conversions.NullConversion
-
defines the default value of type I which should be returned when
NullConversion.revert(Object)
is invoked with a null O. - setWriteLineSeparatorAfterRecord(boolean) - Method in class com.univocity.parsers.fixed.FixedWidthWriterSettings
-
Defines whether each record, when written, should be followed by a line separator (as specified in
Format.getLineSeparator()
. - setWriterSettings(W) - Method in class com.univocity.parsers.common.routine.AbstractRoutines
-
Defines the writer configuration to be used by the routines of this utility class.
- ShortConversion - Class in com.univocity.parsers.conversions
-
Converts Strings to Shorts and vice versa
- ShortConversion() - Constructor for class com.univocity.parsers.conversions.ShortConversion
-
Creates a Conversion from String to Short with default values to return when the input is null.
- ShortConversion(Short, String) - Constructor for class com.univocity.parsers.conversions.ShortConversion
-
Creates a Conversion from String to Short with default values to return when the input is null.
- shouldBeLiteral(String, boolean, boolean) - Static method in class com.univocity.parsers.common.NormalizedString
- sizeLimit - Variable in class com.univocity.parsers.common.StringCache
- skip(long) - Method in class com.univocity.parsers.common.LineReader
- SKIP_VALUE - Enum constant in enum class com.univocity.parsers.csv.UnescapedQuoteHandling
-
If unescaped quotes are found in the input, the content parsed for the given value will be skipped (until the next delimiter is found) and the value set in
CommonSettings.getNullValue()
will be produced instead. - skipBitsAsWhitespace - Variable in class com.univocity.parsers.common.CommonSettings
- skipEmptyLines - Variable in class com.univocity.parsers.common.AbstractWriter
- skipEmptyLines - Variable in class com.univocity.parsers.common.CommonSettings
- skipEmptyLines - Variable in class com.univocity.parsers.common.ParserOutput
- skipEmptyLines - Variable in class com.univocity.parsers.fixed.FixedWidthParser
- skipLeadingWhitespace(int, String) - Static method in class com.univocity.parsers.common.AbstractWriter
-
Identifies the starting character index of a value being written if leading whitespaces are to be discarded.
- skipLines(long) - Method in class com.univocity.parsers.common.DefaultParsingContext
- skipLines(long) - Method in class com.univocity.parsers.common.input.AbstractCharInputReader
- skipLines(long) - Method in interface com.univocity.parsers.common.input.CharInputReader
-
Skips characters in the input until the given number of lines is discarded.
- skipLines(long) - Method in class com.univocity.parsers.common.input.LookaheadCharInputReader
- skipLines(long) - Method in class com.univocity.parsers.common.NoopParsingContext
- skipLines(long) - Method in interface com.univocity.parsers.common.ParsingContext
-
Skips a given number of lines from the current position.
- skipLines(long) - Method in class com.univocity.parsers.common.ParsingContextWrapper
- skipPadding(boolean) - Method in class com.univocity.parsers.fixed.FixedWidthParser
- skipping - Variable in class com.univocity.parsers.common.input.AbstractCharInputReader
- skipQuotedString(char, char, char, char) - Method in class com.univocity.parsers.common.input.AbstractCharInputReader
- skipQuotedString(char, char, char, char) - Method in interface com.univocity.parsers.common.input.CharInputReader
-
Attempts to skip a quoted
String
from the current position until a stop character is found on the input, or a line ending is reached. - skipQuotedString(char, char, char, char) - Method in class com.univocity.parsers.common.input.LookaheadCharInputReader
- skipRecord - Variable in class com.univocity.parsers.common.RetryableErrorHandler
- skipString(char, char) - Method in class com.univocity.parsers.common.input.AbstractCharInputReader
- skipString(char, char) - Method in interface com.univocity.parsers.common.input.CharInputReader
-
Attempts to skip a
String
from the current position until a stop character is found on the input, or a line ending is reached. - skipString(char, char) - Method in class com.univocity.parsers.common.input.LookaheadCharInputReader
- skipToNewLine - Variable in class com.univocity.parsers.fixed.FixedWidthParser
- skipToNewLine() - Method in class com.univocity.parsers.fixed.FixedWidthParser
- skipTrailingCharsUntilNewline - Variable in class com.univocity.parsers.fixed.FixedWidthParserSettings
- skipValue() - Method in class com.univocity.parsers.csv.CsvParser
- skipWhitespace() - Method in class com.univocity.parsers.csv.CsvParser
- skipWhitespace(boolean, boolean) - Method in class com.univocity.parsers.fixed.FixedWidthParser
- skipWhitespace(char, char, char) - Method in class com.univocity.parsers.common.input.AbstractCharInputReader
- skipWhitespace(char, char, char) - Method in interface com.univocity.parsers.common.input.CharInputReader
-
Skips characters from the current input position, until a non-whitespace character, or a stop character is found
- skipWhitespace(char, char, char) - Method in class com.univocity.parsers.common.input.LookaheadCharInputReader
- splitter - Variable in class com.univocity.parsers.common.processor.core.AbstractBatchedColumnProcessor
- splitter - Variable in class com.univocity.parsers.common.processor.core.AbstractBatchedObjectColumnProcessor
- splitter - Variable in class com.univocity.parsers.common.processor.core.AbstractColumnProcessor
- splitter - Variable in class com.univocity.parsers.common.processor.core.AbstractObjectColumnProcessor
- start - Variable in class com.univocity.parsers.common.input.LookaheadCharInputReader
- start(Reader) - Method in class com.univocity.parsers.common.input.AbstractCharInputReader
- start(Reader) - Method in interface com.univocity.parsers.common.input.CharInputReader
-
Initializes the CharInputReader implementation with a
Reader
which provides access to the input. - start(Reader) - Method in class com.univocity.parsers.common.input.LookaheadCharInputReader
- start(Reader, boolean) - Method in class com.univocity.parsers.common.input.AbstractCharInputReader
- startProcess() - Method in class com.univocity.parsers.common.processor.core.AbstractConcurrentProcessor
- stop() - Method in interface com.univocity.parsers.common.Context
-
Stops the parsing process.
- stop() - Method in class com.univocity.parsers.common.ContextWrapper
- stop() - Method in class com.univocity.parsers.common.DefaultContext
- stop() - Method in interface com.univocity.parsers.common.input.CharInputReader
-
Stops the CharInputReader from reading characters from the
Reader
provided inCharInputReader.start(Reader)
and closes it. - stop() - Method in class com.univocity.parsers.common.input.concurrent.ConcurrentCharInputReader
-
Stops the CharInputReader from reading characters from the
Reader
provided inAbstractCharInputReader.start(Reader)
and closes it. - stop() - Method in class com.univocity.parsers.common.input.DefaultCharInputReader
- stop() - Method in class com.univocity.parsers.common.input.LookaheadCharInputReader
- stop() - Method in class com.univocity.parsers.common.NoopParsingContext
- STOP_AT_CLOSING_QUOTE - Enum constant in enum class com.univocity.parsers.csv.UnescapedQuoteHandling
-
If unescaped quotes are found in the input, accumulate the quote character and proceed parsing the value as a quoted value, until a closing quote is found.
- STOP_AT_DELIMITER - Enum constant in enum class com.univocity.parsers.csv.UnescapedQuoteHandling
-
If unescaped quotes are found in the input, consider the value as an unquoted value.
- stopParsing() - Method in class com.univocity.parsers.common.AbstractParser
-
Stops parsing and closes all open resources.
- stopParsing(Throwable) - Method in class com.univocity.parsers.common.AbstractParser
-
In case of errors, stops parsing and closes all open resources.
- stopped - Variable in class com.univocity.parsers.common.DefaultContext
- stopReading() - Method in class com.univocity.parsers.common.input.concurrent.ConcurrentCharLoader
-
Stops the
CharBucket
loading process and closes the reader provided in the constructor of this class - strictHeaderValidationEnabled - Variable in class com.univocity.parsers.common.processor.core.BeanConversionProcessor
- string - Variable in class com.univocity.parsers.annotations.helpers.MethodDescriptor
- string() - Static method in class com.univocity.parsers.conversions.Conversions
-
Returns a singleton instance of
ToStringConversion
- STRING - Enum constant in enum class com.univocity.parsers.conversions.EnumSelector
-
Matches the result of
Enum.toString()
()} - stringCache - Static variable in class com.univocity.parsers.common.NormalizedString
- stringCache - Variable in class com.univocity.parsers.common.StringCache
- StringCache<T> - Class in com.univocity.parsers.common
-
A simple cache of values associated with strings.
- StringCache() - Constructor for class com.univocity.parsers.common.StringCache
- stripPaddingFrom(int, int...) - Method in class com.univocity.parsers.fixed.FixedWidthFields
-
Configures a given list of fields to remove the padding character in any parsed values, overriding the any default set for the whole input in
FixedWidthParserSettings.getKeepPadding()
- stripPaddingFrom(String, String...) - Method in class com.univocity.parsers.fixed.FixedWidthFields
-
Configures a given list of fields to remove the padding character in any parsed values, overriding the any default set for the whole input in
FixedWidthParserSettings.getKeepPadding()
- submitLineSeparatorDetector() - Method in class com.univocity.parsers.common.input.AbstractCharInputReader
- submitRow(C) - Method in class com.univocity.parsers.common.processor.core.AbstractMultiBeanRowProcessor
- submitRow(Object[]) - Method in class com.univocity.parsers.common.AbstractWriter
-
Submits a row for processing by the format-specific implementation.
- subSequence(int, int) - Method in class com.univocity.parsers.common.input.DefaultCharAppender
- subSequence(int, int) - Method in class com.univocity.parsers.common.input.NoopCharAppender
-
Does nothing
- subSequence(int, int) - Method in class com.univocity.parsers.common.NormalizedString
- substring(int, int) - Method in interface com.univocity.parsers.common.input.CharAppender
-
Returns a section of the appended content
- substring(int, int) - Method in class com.univocity.parsers.common.input.DefaultCharAppender
- substring(int, int) - Method in class com.univocity.parsers.common.input.NoopCharAppender
-
Does nothing
- suggestedDelimiter - Variable in class com.univocity.parsers.csv.CsvFormatDetector
- suggestedQuote - Variable in class com.univocity.parsers.csv.CsvFormatDetector
- suggestedQuoteEscape - Variable in class com.univocity.parsers.csv.CsvFormatDetector
- Switch(Processor<T>, String[], int[], String, CustomMatcher) - Constructor for class com.univocity.parsers.common.processor.core.AbstractInputValueSwitch.Switch
- Switch(RowWriterProcessor<Object[]>, String[], int[], Object) - Constructor for class com.univocity.parsers.common.processor.OutputValueSwitch.Switch
- Switch(RowWriterProcessor<Object[]>, String[], int[], Object, Class<?>) - Constructor for class com.univocity.parsers.common.processor.OutputValueSwitch.Switch
- Switch(String[], int[], Class<?>) - Constructor for class com.univocity.parsers.common.processor.OutputValueSwitch.Switch
- switches - Variable in class com.univocity.parsers.common.processor.core.AbstractInputValueSwitch
- switches - Variable in class com.univocity.parsers.common.processor.OutputValueSwitch
- switchRowProcessor(Object) - Method in class com.univocity.parsers.common.processor.OutputValueSwitch
- switchRowProcessor(Object) - Method in class com.univocity.parsers.common.processor.RowWriterProcessorSwitch
-
Analyzes an output row to determine whether or not the row writer processor implementation must be changed
- switchRowProcessor(String[], T) - Method in class com.univocity.parsers.common.processor.core.AbstractInputValueSwitch
- switchRowProcessor(String[], T) - Method in class com.univocity.parsers.common.processor.core.AbstractProcessorSwitch
-
Analyzes the input to determine whether or not the row processor implementation must be changed
- syntheticHeaders - Variable in class com.univocity.parsers.common.processor.core.BeanConversionProcessor
- systemLineSeparator - Static variable in class com.univocity.parsers.common.Format
- systemLineSeparatorString - Static variable in class com.univocity.parsers.common.Format
T
- tail - Variable in class com.univocity.parsers.common.input.concurrent.FixedInstancePool
- target - Variable in class com.univocity.parsers.annotations.helpers.FieldMapping
- target - Variable in class com.univocity.parsers.annotations.helpers.TransformedHeader
- TextParsingException - Exception in com.univocity.parsers.common
-
Exception type used provide information about any issue that might happen while parsing from a given input.
- TextParsingException(Context, String, Throwable) - Constructor for exception com.univocity.parsers.common.TextParsingException
-
Creates a new exception with information about an error that occurred when parsing some input.
- TextParsingException(ParsingContext) - Constructor for exception com.univocity.parsers.common.TextParsingException
-
Creates a new exception with information about an error that occurred when parsing some input.
- TextParsingException(ParsingContext, String) - Constructor for exception com.univocity.parsers.common.TextParsingException
-
Creates a new exception with information about an error that occurred when parsing some input.
- TextParsingException(ParsingContext, Throwable) - Constructor for exception com.univocity.parsers.common.TextParsingException
-
Creates a new exception with information about an error that occurred when parsing some input.
- TextWritingException - Exception in com.univocity.parsers.common
-
Exception type used provide information about any issue that might happen while writing to a given output.
- TextWritingException(String) - Constructor for exception com.univocity.parsers.common.TextWritingException
-
Creates a new exception with information about an error that occurred when writing data to some output.
- TextWritingException(String, long, Object[]) - Constructor for exception com.univocity.parsers.common.TextWritingException
-
Creates a new exception with information about an error that occurred when writing data to some output.
- TextWritingException(String, long, Object[], String, Throwable) - Constructor for exception com.univocity.parsers.common.TextWritingException
-
Creates a new exception with information about an error that occurred when writing data to some output.
- TextWritingException(String, long, Object[], Throwable) - Constructor for exception com.univocity.parsers.common.TextWritingException
-
Creates a new exception with information about an error that occurred when writing data to some output.
- TextWritingException(String, long, String) - Constructor for exception com.univocity.parsers.common.TextWritingException
-
Creates a new exception with information about an error that occurred when writing data to some output.
- TextWritingException(String, long, String, Throwable) - Constructor for exception com.univocity.parsers.common.TextWritingException
-
Creates a new exception with information about an error that occurred when writing data to some output.
- TextWritingException(Throwable) - Constructor for exception com.univocity.parsers.common.TextWritingException
-
Creates a new exception with information about an error that occurred when writing data to some output.
- throwDataProcessingException(Processor, Throwable, String[], int) - Static method in class com.univocity.parsers.common.Internal
- throwEOFException() - Method in class com.univocity.parsers.common.input.AbstractCharInputReader
- throwExceptionAndClose(String) - Method in class com.univocity.parsers.common.AbstractWriter
-
In case of any exceptions, a
TextWritingException
is thrown, and the outputWriter
is closed. - throwExceptionAndClose(String, Object[], Throwable) - Method in class com.univocity.parsers.common.AbstractWriter
-
In case of any exceptions, a
TextWritingException
is thrown, and the outputWriter
is closed. - throwExceptionAndClose(String, String, Throwable) - Method in class com.univocity.parsers.common.AbstractWriter
-
In case of any exceptions, a
TextWritingException
is thrown, and the outputWriter
is closed. - throwExceptionAndClose(String, Throwable) - Method in class com.univocity.parsers.common.AbstractWriter
-
In case of any exceptions, a
TextWritingException
is thrown, and the outputWriter
is closed. - throwsUnchecked(Throwable) - Static method in class com.univocity.parsers.common.ArgumentUtils
- throwUnchecked(Throwable) - Static method in class com.univocity.parsers.common.ArgumentUtils
-
Allows rethrowing a checked exception instead of wrapping it into a runtime exception.
- timeZone - Variable in class com.univocity.parsers.conversions.DateConversion
- tmp - Variable in class com.univocity.parsers.common.input.AbstractCharInputReader
- to() - Element in annotation interface com.univocity.parsers.annotations.Copy
-
Target annotation class that is part of a meta-annotation.
- to() - Element in annotation interface com.univocity.parsers.annotations.FixedWidth
-
Defines the end position of the fixed-width field
- toArray(NormalizedString...) - Static method in class com.univocity.parsers.common.NormalizedString
-
Converts multiple normalized strings into an array of
String
. - toArray(String...) - Static method in class com.univocity.parsers.common.NormalizedString
-
Converts multiple plain strings into an array of
NormalizedString
. - toArray(Collection<String>) - Static method in class com.univocity.parsers.common.NormalizedString
-
Converts a collection of plain strings into an array of
NormalizedString
- toArray(List<Enum>) - Static method in class com.univocity.parsers.common.ArgumentUtils
-
Converts a list of enumerations to an array of their
Enum.toString()
representation - toArrayList(String...) - Static method in class com.univocity.parsers.common.NormalizedString
-
Converts multiple plain strings into an
ArrayList
ofNormalizedString
. - toArrayList(Collection<String>) - Static method in class com.univocity.parsers.common.NormalizedString
-
Converts multiple plain strings into an
ArrayList
ofNormalizedString
. - toArrayListOfStrings(NormalizedString...) - Static method in class com.univocity.parsers.common.NormalizedString
-
Converts multiple normalized strings into a
HashSet
ofString
. - toArrayListOfStrings(Collection<NormalizedString>) - Static method in class com.univocity.parsers.common.NormalizedString
-
Converts multiple normalized strings into a
HashSet
ofString
. - toBigDecimal() - Static method in class com.univocity.parsers.conversions.Conversions
-
Returns a new instance of
BigDecimalConversion
- toBigInteger() - Static method in class com.univocity.parsers.conversions.Conversions
-
Returns a new instance of
BigIntegerConversion
- toBoolean() - Static method in class com.univocity.parsers.conversions.Conversions
-
Returns a new instance of
BooleanConversion
that converts the string "true" to true, and the String "false" to false. - toBoolean(Boolean, String, String[], String[]) - Static method in class com.univocity.parsers.conversions.Conversions
-
Returns a new instance of
BooleanConversion
- toBoolean(Boolean, String, String, String) - Static method in class com.univocity.parsers.conversions.Conversions
-
Returns a new instance of
BooleanConversion
- toBoolean(String[], String[]) - Static method in class com.univocity.parsers.conversions.Conversions
-
Returns a new instance of
BooleanConversion
- toBoolean(String, String) - Static method in class com.univocity.parsers.conversions.Conversions
-
Returns a new instance of
BooleanConversion
- toByte() - Static method in class com.univocity.parsers.conversions.Conversions
-
Returns a new instance of
ByteConversion
- toByteArray(int...) - Static method in class com.univocity.parsers.common.ArgumentUtils
-
Converts a sequence of int numbers into a byte array.
- toCalendar(String...) - Static method in class com.univocity.parsers.conversions.Conversions
-
Returns a new instance of
CalendarConversion
- toCalendar(Calendar, String...) - Static method in class com.univocity.parsers.conversions.Conversions
-
Returns a new instance of
CalendarConversion
- toCalendar(Calendar, String, String...) - Static method in class com.univocity.parsers.conversions.Conversions
-
Returns a new instance of
CalendarConversion
- toCalendar(Locale, String...) - Static method in class com.univocity.parsers.conversions.Conversions
-
Returns a new instance of
CalendarConversion
- toCalendar(Locale, Calendar, String...) - Static method in class com.univocity.parsers.conversions.Conversions
-
Returns a new instance of
CalendarConversion
- toCalendar(Locale, Calendar, String, String...) - Static method in class com.univocity.parsers.conversions.Conversions
-
Returns a new instance of
CalendarConversion
- toCalendar(TimeZone, Locale, Calendar, String, String...) - Static method in class com.univocity.parsers.conversions.Conversions
-
Returns a new instance of
CalendarConversion
- toChar() - Static method in class com.univocity.parsers.conversions.Conversions
-
Returns a new instance of
CharacterConversion
- toChar(Character) - Static method in class com.univocity.parsers.conversions.Conversions
-
Returns a new instance of
CharacterConversion
- toChar(Character, String) - Static method in class com.univocity.parsers.conversions.Conversions
-
Returns a new instance of
CharacterConversion
- toCharArray(Collection<Character>) - Static method in class com.univocity.parsers.common.ArgumentUtils
-
Converts any collection of
Character
into a char array. - toDataProcessingException(Throwable, Object[], int) - Method in class com.univocity.parsers.common.DefaultConversionProcessor
- toDate(String...) - Static method in class com.univocity.parsers.conversions.Conversions
-
Returns a new instance of
DateConversion
- toDate(Date, String...) - Static method in class com.univocity.parsers.conversions.Conversions
-
Returns a new instance of
DateConversion
- toDate(Date, String, String...) - Static method in class com.univocity.parsers.conversions.Conversions
-
Returns a new instance of
DateConversion
- toDate(Locale, String...) - Static method in class com.univocity.parsers.conversions.Conversions
-
Returns a new instance of
DateConversion
- toDate(Locale, Date, String...) - Static method in class com.univocity.parsers.conversions.Conversions
-
Returns a new instance of
DateConversion
- toDate(Locale, Date, String, String...) - Static method in class com.univocity.parsers.conversions.Conversions
-
Returns a new instance of
DateConversion
- toDate(TimeZone, Locale, Date, String, String...) - Static method in class com.univocity.parsers.conversions.Conversions
-
Returns a new instance of
DateConversion
- toDescriptor(String, Method) - Method in enum class com.univocity.parsers.annotations.helpers.MethodFilter
-
Creates a descriptor for a getter or setter method
- toDouble() - Static method in class com.univocity.parsers.conversions.Conversions
-
Returns a new instance of
DoubleConversion
- toEnum(Class<T>) - Static method in class com.univocity.parsers.conversions.Conversions
-
Returns a new instance of
EnumConversion
- toEnum(Class<T>, EnumSelector...) - Static method in class com.univocity.parsers.conversions.Conversions
-
Returns a new instance of
EnumConversion
- toEnum(Class<T>, String, EnumSelector...) - Static method in class com.univocity.parsers.conversions.Conversions
-
Returns a new instance of
EnumConversion
- toEnum(Class<T>, T, String, String, EnumSelector...) - Static method in class com.univocity.parsers.conversions.Conversions
-
Returns a new instance of
EnumConversion
- toEnumMap(Class<T>, T...) - Method in interface com.univocity.parsers.common.record.Record
-
Converts the record into a map of
String
values. - toEnumMap(Class<T>, T...) - Method in class com.univocity.parsers.common.record.RecordImpl
- toEnumObjectMap(Class<T>, T...) - Method in interface com.univocity.parsers.common.record.Record
-
Converts the record into a map of
Object
values. - toEnumObjectMap(Class<T>, T...) - Method in class com.univocity.parsers.common.record.RecordImpl
- toFieldMap(String...) - Method in interface com.univocity.parsers.common.record.Record
-
Converts the record into a map of
String
values. - toFieldMap(String...) - Method in class com.univocity.parsers.common.record.RecordImpl
- toFieldObjectMap(String...) - Method in interface com.univocity.parsers.common.record.Record
-
Converts the record into a map of
Object
values. - toFieldObjectMap(String...) - Method in class com.univocity.parsers.common.record.RecordImpl
- toFloat() - Static method in class com.univocity.parsers.conversions.Conversions
-
Returns a new instance of
FloatConversion
- toFormattedDate(String) - Static method in class com.univocity.parsers.conversions.Conversions
-
Returns a new instance of
FormattedDateConversion
- toFormattedDate(String, String) - Static method in class com.univocity.parsers.conversions.Conversions
-
Returns a new instance of
FormattedDateConversion
- toFormattedDate(String, Locale) - Static method in class com.univocity.parsers.conversions.Conversions
-
Returns a new instance of
FormattedDateConversion
- toFormattedDate(String, Locale, String) - Static method in class com.univocity.parsers.conversions.Conversions
-
Returns a new instance of
FormattedDateConversion
- toHashSet(String...) - Static method in class com.univocity.parsers.common.NormalizedString
-
Converts multiple plain strings into a
HashSet
ofNormalizedString
. - toHashSet(Collection<String>) - Static method in class com.univocity.parsers.common.NormalizedString
-
Converts multiple plain strings into a
HashSet
ofNormalizedString
. - toHashSetOfStrings(NormalizedString...) - Static method in class com.univocity.parsers.common.NormalizedString
-
Converts multiple normalized strings into a
HashSet
ofString
. - toHashSetOfStrings(Collection<NormalizedString>) - Static method in class com.univocity.parsers.common.NormalizedString
-
Converts multiple normalized strings into a
HashSet
ofString
. - toIdentifierGroupArray(NormalizedString[]) - Static method in class com.univocity.parsers.common.NormalizedString
-
Analyzes a group of NormalizedString to identify any instances whose normalized content will generate clashes.
- toIdentifierGroupArray(String[]) - Static method in class com.univocity.parsers.common.NormalizedString
-
Analyzes a group of String to identify any instances whose normalized content will generate clashes.
- toIndexMap(int...) - Method in interface com.univocity.parsers.common.record.Record
-
Converts the record into a map of
String
values. - toIndexMap(int...) - Method in class com.univocity.parsers.common.record.RecordImpl
- toIndexObjectMap(int...) - Method in interface com.univocity.parsers.common.record.Record
-
Converts the record into a map of
Object
values. - toIndexObjectMap(int...) - Method in class com.univocity.parsers.common.record.RecordImpl
- toIntArray(Collection<Integer>) - Static method in class com.univocity.parsers.common.ArgumentUtils
-
Converts any collection of
Integer
into anint
array. - toInteger() - Static method in class com.univocity.parsers.conversions.Conversions
-
Returns a new instance of
IntegerConversion
- toLinkedHashSet(String...) - Static method in class com.univocity.parsers.common.NormalizedString
-
Converts multiple plain strings into a
LinkedHashSet
ofNormalizedString
. - toLinkedHashSet(Collection<String>) - Static method in class com.univocity.parsers.common.NormalizedString
-
Converts multiple plain strings into a
LinkedHashSet
ofNormalizedString
. - toLinkedHashSetOfStrings(NormalizedString...) - Static method in class com.univocity.parsers.common.NormalizedString
-
Converts multiple normalized strings into a
LinkedHashSet
ofString
. - toLinkedHashSetOfStrings(Collection<NormalizedString>) - Static method in class com.univocity.parsers.common.NormalizedString
-
Converts multiple normalized strings into a
LinkedHashSet
ofString
. - toLiteral() - Method in class com.univocity.parsers.common.NormalizedString
-
Returns the literal representation of this
NormalizedString
, meaning it will only match with otherString
orNormalizedString
if they have the exact same content including character case and surrounding whitespaces. - toLong() - Static method in class com.univocity.parsers.conversions.Conversions
-
Returns a new instance of
LongConversion
- toLowerCase() - Static method in class com.univocity.parsers.conversions.Conversions
-
Returns a singleton instance of
LowerCaseConversion
- toNull(String...) - Static method in class com.univocity.parsers.conversions.Conversions
-
Returns a new instance of
NullStringConversion
- TOP - Enum constant in enum class com.univocity.parsers.common.processor.RowPlacement
-
Indicates a row is above other rows.
- toRecord(String[]) - Method in interface com.univocity.parsers.common.Context
-
Converts the given parsed row to a
Record
- toRecord(String[]) - Method in class com.univocity.parsers.common.ContextWrapper
- toRecord(String[]) - Method in class com.univocity.parsers.common.DefaultContext
- toRecord(String[]) - Method in class com.univocity.parsers.common.NoopParsingContext
- toRecord(String[]) - Method in class com.univocity.parsers.common.ParsingContextWrapper
- toShort() - Static method in class com.univocity.parsers.conversions.Conversions
-
Returns a new instance of
ShortConversion
- toString - Static variable in class com.univocity.parsers.conversions.Conversions
- toString() - Method in class com.univocity.parsers.annotations.helpers.FieldMapping
- toString() - Method in class com.univocity.parsers.annotations.helpers.MethodDescriptor
- toString() - Method in class com.univocity.parsers.common.CommonSettings
- toString() - Method in class com.univocity.parsers.common.fields.FieldSet
- toString() - Method in class com.univocity.parsers.common.Format
- toString() - Method in class com.univocity.parsers.common.input.DefaultCharAppender
-
Returns the accumulated value as a String, discarding any trailing whitespace characters identified when using
DefaultCharAppender.appendIgnoringWhitespace(char)
,DefaultCharAppender.appendIgnoringPadding(char, char)
orDefaultCharAppender.appendIgnoringWhitespaceAndPadding(char, char)
- toString() - Method in class com.univocity.parsers.common.NormalizedString
- toString() - Method in class com.univocity.parsers.common.processor.core.AbstractInputValueSwitch.Switch
- toString() - Method in class com.univocity.parsers.common.record.RecordImpl
- toString() - Method in class com.univocity.parsers.common.routine.AbstractRoutines
- toString() - Method in class com.univocity.parsers.fixed.FixedWidthFields
- toStringArray(Collection<NormalizedString>) - Static method in class com.univocity.parsers.common.NormalizedString
-
Converts a collection of normalized strings into an array of
String
- ToStringConversion - Class in com.univocity.parsers.conversions
-
Converts any non-null object to its String representation.
- ToStringConversion() - Constructor for class com.univocity.parsers.conversions.ToStringConversion
- ToStringConversion(Object, Object) - Constructor for class com.univocity.parsers.conversions.ToStringConversion
- totalLength - Variable in class com.univocity.parsers.fixed.FixedWidthFields
- toTreeSet(String...) - Static method in class com.univocity.parsers.common.NormalizedString
-
Converts multiple plain strings into a
TreeSet
ofNormalizedString
. - toTreeSet(Collection<String>) - Static method in class com.univocity.parsers.common.NormalizedString
-
Converts multiple plain strings into a
TreeSet
ofNormalizedString
. - toTreeSetOfStrings(NormalizedString...) - Static method in class com.univocity.parsers.common.NormalizedString
-
Converts multiple normalized strings into a
HashSet
ofString
. - toTreeSetOfStrings(Collection<NormalizedString>) - Static method in class com.univocity.parsers.common.NormalizedString
-
Converts multiple normalized strings into a
HashSet
ofString
. - toUniqueArray(String...) - Static method in class com.univocity.parsers.common.NormalizedString
-
Converts multiple plain strings into an array of
NormalizedString
, ensuring no duplicateNormalizedString
elements exist, even if their originalString
s are different. - toUpperCase() - Static method in class com.univocity.parsers.conversions.Conversions
-
Returns a singleton instance of
UpperCaseConversion
- TransformedHeader - Class in com.univocity.parsers.annotations.helpers
-
A pair associating a Field of an annotated class to an optional
HeaderTransformer
obtained fromNested.headerTransformer()
when nested classes are used to process beans. - TransformedHeader(AnnotatedElement, HeaderTransformer) - Constructor for class com.univocity.parsers.annotations.helpers.TransformedHeader
- transformer - Variable in class com.univocity.parsers.annotations.helpers.TransformedHeader
- transformer - Variable in class com.univocity.parsers.common.processor.core.BeanConversionProcessor
- transformIndex(AnnotatedElement, int) - Method in class com.univocity.parsers.annotations.HeaderTransformer
- transformIndex(Field, int) - Method in class com.univocity.parsers.annotations.HeaderTransformer
-
Transforms a header index
- transformIndex(Method, int) - Method in class com.univocity.parsers.annotations.HeaderTransformer
-
Transforms a header index
- transformName(AnnotatedElement, String) - Method in class com.univocity.parsers.annotations.HeaderTransformer
- transformName(Field, String) - Method in class com.univocity.parsers.annotations.HeaderTransformer
-
Transforms a header name
- transformName(Method, String) - Method in class com.univocity.parsers.annotations.HeaderTransformer
-
Transforms a header name
- trim - Variable in class com.univocity.parsers.common.ParserOutput
- trim - Static variable in class com.univocity.parsers.conversions.Conversions
- trim() - Static method in class com.univocity.parsers.conversions.Conversions
-
Returns a singleton instance of
TrimConversion
- trim(int) - Static method in class com.univocity.parsers.conversions.Conversions
-
Returns a
TrimConversion
that limits the output to a fixed length - trim(String, boolean, boolean) - Static method in class com.univocity.parsers.common.ArgumentUtils
-
Removes surrounding spaces from a given
String
, from its right or left side, or both. - Trim - Annotation Interface in com.univocity.parsers.annotations
-
Indicates the String value of a field must be trimmed using
TrimConversion
. - TrimConversion - Class in com.univocity.parsers.conversions
-
Removes leading and trailing white spaces from an input String The
TrimConversion.revert(String)
implements the same behavior ofTrimConversion.execute(String)
. - TrimConversion() - Constructor for class com.univocity.parsers.conversions.TrimConversion
-
Creates a trim conversion that removes leading and trailing whitespaces of any input String.
- TrimConversion(int) - Constructor for class com.univocity.parsers.conversions.TrimConversion
-
Creates a trim-to-length conversion that limits the length of any resulting String.
- trimQuotedLeading - Variable in class com.univocity.parsers.csv.CsvParser
- trimQuotedTrailing - Variable in class com.univocity.parsers.csv.CsvParser
- trimQuotedValues(boolean) - Method in class com.univocity.parsers.csv.CsvParserSettings
-
Configures the parser to trim any whitespaces around values extracted from within quotes.
- trimValues(boolean) - Method in class com.univocity.parsers.common.CommonSettings
-
Configures the parser/writer to trim or keep leading and trailing whitespaces around values This has the same effect as invoking both
CommonSettings.setIgnoreLeadingWhitespaces(boolean)
andCommonSettings.setIgnoreTrailingWhitespaces(boolean)
with the same value. - trueStrings() - Element in annotation interface com.univocity.parsers.annotations.BooleanString
-
A set of Strings that represent the boolean value
true
(e.g. - trueValues - Variable in class com.univocity.parsers.conversions.BooleanConversion
- truncate(String, int) - Method in class com.univocity.parsers.common.record.RecordImpl
- TsvFormat - Class in com.univocity.parsers.tsv
-
The TSV format configuration, for tab-separated inputs.
- TsvFormat() - Constructor for class com.univocity.parsers.tsv.TsvFormat
- TsvParser - Class in com.univocity.parsers.tsv
-
A very fast TSV parser implementation.
- TsvParser(TsvParserSettings) - Constructor for class com.univocity.parsers.tsv.TsvParser
-
The TsvParser supports all settings provided by
TsvParserSettings
, and requires this configuration to be properly initialized. - TsvParserSettings - Class in com.univocity.parsers.tsv
-
This is the configuration class used by the TSV parser (
TsvParser
) - TsvParserSettings() - Constructor for class com.univocity.parsers.tsv.TsvParserSettings
- TsvRoutines - Class in com.univocity.parsers.tsv
-
A collection of common routines involving the processing of TSV data.
- TsvRoutines() - Constructor for class com.univocity.parsers.tsv.TsvRoutines
-
Creates a new instance of the TSV routine class without any predefined parsing/writing configuration.
- TsvRoutines(TsvParserSettings) - Constructor for class com.univocity.parsers.tsv.TsvRoutines
-
Creates a new instance of the TSV routine class.
- TsvRoutines(TsvParserSettings, TsvWriterSettings) - Constructor for class com.univocity.parsers.tsv.TsvRoutines
-
Creates a new instance of the TSV routine class.
- TsvRoutines(TsvWriterSettings) - Constructor for class com.univocity.parsers.tsv.TsvRoutines
-
Creates a new instance of the TSV routine class.
- TsvWriter - Class in com.univocity.parsers.tsv
-
A powerful and flexible TSV writer implementation.
- TsvWriter(TsvWriterSettings) - Constructor for class com.univocity.parsers.tsv.TsvWriter
-
The TsvWriter supports all settings provided by
TsvWriterSettings
, and requires this configuration to be properly initialized. - TsvWriter(File, TsvWriterSettings) - Constructor for class com.univocity.parsers.tsv.TsvWriter
-
The TsvWriter supports all settings provided by
TsvWriterSettings
, and requires this configuration to be properly initialized. - TsvWriter(File, String, TsvWriterSettings) - Constructor for class com.univocity.parsers.tsv.TsvWriter
-
The TsvWriter supports all settings provided by
TsvWriterSettings
, and requires this configuration to be properly initialized. - TsvWriter(File, Charset, TsvWriterSettings) - Constructor for class com.univocity.parsers.tsv.TsvWriter
-
The TsvWriter supports all settings provided by
TsvWriterSettings
, and requires this configuration to be properly initialized. - TsvWriter(OutputStream, TsvWriterSettings) - Constructor for class com.univocity.parsers.tsv.TsvWriter
-
The TsvWriter supports all settings provided by
TsvWriterSettings
, and requires this configuration to be properly initialized. - TsvWriter(OutputStream, String, TsvWriterSettings) - Constructor for class com.univocity.parsers.tsv.TsvWriter
-
The TsvWriter supports all settings provided by
TsvWriterSettings
, and requires this configuration to be properly initialized. - TsvWriter(OutputStream, Charset, TsvWriterSettings) - Constructor for class com.univocity.parsers.tsv.TsvWriter
-
The TsvWriter supports all settings provided by
TsvWriterSettings
, and requires this configuration to be properly initialized. - TsvWriter(Writer, TsvWriterSettings) - Constructor for class com.univocity.parsers.tsv.TsvWriter
-
The TsvWriter supports all settings provided by
TsvWriterSettings
, and requires this configuration to be properly initialized. - TsvWriterSettings - Class in com.univocity.parsers.tsv
-
This is the configuration class used by the TSV writer (
TsvWriter
) - TsvWriterSettings() - Constructor for class com.univocity.parsers.tsv.TsvWriterSettings
- type - Variable in class com.univocity.parsers.common.record.MetaData
- type() - Element in annotation interface com.univocity.parsers.annotations.Nested
-
Defines the concrete type of nested object to be instantiated, if it has to be a subclass of the declared attribute type.
- typeOf(int) - Method in interface com.univocity.parsers.common.record.RecordMetaData
-
Returns the type associated with a given column, defined with the method
setTypeOfColumns(type, columns)
- typeOf(int) - Method in class com.univocity.parsers.common.record.RecordMetaDataImpl
- typeOf(Enum<?>) - Method in interface com.univocity.parsers.common.record.RecordMetaData
-
Returns the type associated with a given column, defined with the method
setTypeOfColumns(type, columns)
- typeOf(Enum<?>) - Method in class com.univocity.parsers.common.record.RecordMetaDataImpl
- typeOf(String) - Method in interface com.univocity.parsers.common.record.RecordMetaData
-
Returns the type associated with a given column name, defined with the method
setTypeOfColumns(type, columns)
- typeOf(String) - Method in class com.univocity.parsers.common.record.RecordMetaDataImpl
- types - Variable in class com.univocity.parsers.common.processor.OutputValueSwitch
U
- undo(Object) - Method in class com.univocity.parsers.conversions.ToStringConversion
- undo(O) - Method in class com.univocity.parsers.conversions.NullConversion
-
Converts a value of type O back to I.
- undo(T) - Method in class com.univocity.parsers.conversions.ObjectConversion
- unescaped - Variable in class com.univocity.parsers.csv.CsvParser
- unescapedQuoteHandling - Variable in class com.univocity.parsers.csv.CsvParserSettings
- UnescapedQuoteHandling - Enum Class in com.univocity.parsers.csv
-
This enumeration is used to determine how the (
CsvParser
) will handle values with unescaped quotes. - UnescapedQuoteHandling() - Constructor for enum class com.univocity.parsers.csv.UnescapedQuoteHandling
- unwrapInputStream(BomInput.BytesProcessedNotification) - Method in class com.univocity.parsers.common.input.AbstractCharInputReader
- unwrapping - Variable in class com.univocity.parsers.common.input.concurrent.ConcurrentCharInputReader
- unwrapping - Variable in class com.univocity.parsers.common.input.DefaultCharInputReader
- updateBuffer() - Method in class com.univocity.parsers.common.input.AbstractCharInputReader
-
Requests the next batch of characters from the implementing class and updates the character count.
- updateFieldExclusion(Integer...) - Method in class com.univocity.parsers.common.AbstractWriter
-
Updates the selection of fields to exclude when writing.
- updateFieldExclusion(String...) - Method in class com.univocity.parsers.common.AbstractWriter
-
Updates the selection of fields to exclude when writing.
- updateFieldMapping(FieldMapping, K) - Method in class com.univocity.parsers.common.fields.AbstractColumnMapping
-
Updates the mapping of a attribute/method so a mapped class member can target a user provided column.
- updateFieldSelection(Integer...) - Method in class com.univocity.parsers.common.AbstractWriter
-
Updates the selection of fields to write.
- updateFieldSelection(String...) - Method in class com.univocity.parsers.common.AbstractWriter
-
Updates the selection of fields to write.
- updateFormat(CsvFormat) - Method in class com.univocity.parsers.csv.CsvParser
-
Allows changing the format of the input on the fly.
- updateIndexesToWrite(CommonSettings<?>) - Method in class com.univocity.parsers.common.AbstractWriter
-
Update indexes to write based on the field selection provided by the user.
- updateMapping(FieldMapping, String, MethodDescriptor) - Method in class com.univocity.parsers.common.fields.ColumnMapping
-
Updates the mapping of a attribute/method so a mapped class member can target a user provided column.
- updateMessage(String) - Method in exception com.univocity.parsers.common.AbstractException
-
Allows subclasses to alter the exception message that should be displayed to end users.
- updateMessage(String) - Method in exception com.univocity.parsers.common.DataProcessingException
- updateWhitespace() - Method in interface com.univocity.parsers.common.input.CharAppender
-
Updates the internal whitespace count of this appender to trim trailing whitespaces.
- updateWhitespace() - Method in class com.univocity.parsers.common.input.DefaultCharAppender
-
Updates the internal whitespace count of this appender to trim trailing whitespaces.
- updateWhitespace() - Method in class com.univocity.parsers.common.input.NoopCharAppender
-
Does nothing
- upperCase - Static variable in class com.univocity.parsers.conversions.Conversions
- UpperCase - Annotation Interface in com.univocity.parsers.annotations
-
Indicates the String value of a field must be converted to uppercase using
UpperCaseConversion
. - UpperCaseConversion - Class in com.univocity.parsers.conversions
-
Converts an input String to its upper case representation The
UpperCaseConversion.revert(String)
implements the same behavior ofUpperCaseConversion.execute(String)
. - UpperCaseConversion() - Constructor for class com.univocity.parsers.conversions.UpperCaseConversion
- useDefaultPadding - Variable in class com.univocity.parsers.fixed.FixedWidthParser
- useDefaultPaddingForHeaders - Variable in class com.univocity.parsers.fixed.FixedWidthParserSettings
- useDefaultPaddingForHeaders - Variable in class com.univocity.parsers.fixed.FixedWidthWriterSettings
- usingNullOrEmptyValue - Variable in class com.univocity.parsers.common.AbstractWriter
- usingSwitch - Variable in class com.univocity.parsers.common.AbstractWriter
- UTF_16BE_BOM - Static variable in class com.univocity.parsers.common.input.BomInput
- UTF_16LE_BOM - Static variable in class com.univocity.parsers.common.input.BomInput
- UTF_32BE_BOM - Static variable in class com.univocity.parsers.common.input.BomInput
- UTF_32LE_BOM - Static variable in class com.univocity.parsers.common.input.BomInput
- UTF_8_BOM - Static variable in class com.univocity.parsers.common.input.BomInput
V
- validate(boolean, boolean) - Static method in class com.univocity.parsers.conversions.Conversions
-
Returns a
ValidatedConversion
that checks for nulls or blank values. - validate(boolean, boolean, String) - Static method in class com.univocity.parsers.conversions.Conversions
-
Returns a
ValidatedConversion
that checks for nulls or blank values. - validate(boolean, boolean, String[], String[]) - Static method in class com.univocity.parsers.conversions.Conversions
-
Returns a new instance of
ValidatedConversion
to validate values of a record - validate(boolean, boolean, String[], String[], String) - Static method in class com.univocity.parsers.conversions.Conversions
-
Returns a new instance of
ValidatedConversion
to validate values of a record - validate(Object) - Method in class com.univocity.parsers.conversions.ValidatedConversion
- validate(T) - Method in interface com.univocity.parsers.conversions.Validator
-
Executes the required validations over a given value, returning any validation error messages that are applicable.
- Validate - Annotation Interface in com.univocity.parsers.annotations
-
Performs basic validations against the String representation of the value found in the annotated field.
- validateAllValues(Object[]) - Method in class com.univocity.parsers.common.DefaultConversionProcessor
- ValidatedConversion - Class in com.univocity.parsers.conversions
-
Performs one or more validations against the values of a given record.
- ValidatedConversion() - Constructor for class com.univocity.parsers.conversions.ValidatedConversion
- ValidatedConversion(boolean, boolean) - Constructor for class com.univocity.parsers.conversions.ValidatedConversion
- ValidatedConversion(boolean, boolean, String[], String[], String) - Constructor for class com.univocity.parsers.conversions.ValidatedConversion
- ValidatedConversion(boolean, boolean, String[], String[], String, Class[]) - Constructor for class com.univocity.parsers.conversions.ValidatedConversion
- ValidatedConversion(String) - Constructor for class com.univocity.parsers.conversions.ValidatedConversion
- validatedIndexes - Variable in class com.univocity.parsers.common.fields.FieldConversionMapping
- validateDuplicates(FieldSelector, List<Conversion<?, ?>>, Conversion<?, ?>[]) - Static method in class com.univocity.parsers.common.fields.AbstractConversionMapping
-
Ensures an individual field does not have the same conversion object applied to it more than once.
- validateHeader(Object) - Method in class com.univocity.parsers.common.ColumnMap
- validateIndex(int) - Method in class com.univocity.parsers.fixed.FixedWidthFields
- validateLength(String, int) - Method in class com.univocity.parsers.fixed.FixedWidthFields
- validateMappings() - Method in class com.univocity.parsers.common.processor.core.BeanConversionProcessor
- validateMappingsForWriting() - Method in class com.univocity.parsers.common.processor.core.BeanConversionProcessor
- validateParserSettings() - Method in class com.univocity.parsers.common.routine.AbstractRoutines
- validateWriterSettings() - Method in class com.univocity.parsers.common.routine.AbstractRoutines
- validationsByIndex - Variable in class com.univocity.parsers.common.fields.FieldConversionMapping
- Validator<T> - Interface in com.univocity.parsers.conversions
-
Defines a custom validation process to be executed when reading or writing values into a field of a java bean that is annotated with
Validate
- validators - Variable in class com.univocity.parsers.conversions.ValidatedConversion
- validators() - Element in annotation interface com.univocity.parsers.annotations.Validate
-
User provided implementations of
Validator
which will be executed in sequence after the validations specified in this annotation execute. - value - Variable in exception com.univocity.parsers.common.DataProcessingException
- value - Variable in class com.univocity.parsers.common.processor.core.AbstractInputValueSwitch.Switch
- value - Variable in class com.univocity.parsers.common.processor.OutputValueSwitch.Switch
- value - Variable in class com.univocity.parsers.fixed.Lookup
- value() - Element in annotation interface com.univocity.parsers.annotations.FixedWidth
-
Sets the length of the fixed-width field
- valueIfObjectIsNull - Variable in class com.univocity.parsers.conversions.FormattedDateConversion
- valueOf(NormalizedString) - Static method in class com.univocity.parsers.common.NormalizedString
-
Converts a
NormalizedString
back to its originalString
representation - valueOf(Object) - Static method in class com.univocity.parsers.common.NormalizedString
-
Creates a non-literal
NormalizedString
, meaning it will match with otherString
orNormalizedString
regardless of different including character case and surrounding whitespaces. - valueOf(String) - Static method in enum class com.univocity.parsers.annotations.helpers.MethodFilter
-
Returns the enum constant of this class with the specified name.
- valueOf(String) - Static method in class com.univocity.parsers.common.NormalizedString
-
Creates a non-literal
NormalizedString
, meaning it will match with otherString
orNormalizedString
regardless of different including character case and surrounding whitespaces. - valueOf(String) - Static method in enum class com.univocity.parsers.common.processor.RowPlacement
-
Returns the enum constant of this class with the specified name.
- valueOf(String) - Static method in enum class com.univocity.parsers.conversions.EnumSelector
-
Returns the enum constant of this class with the specified name.
- valueOf(String) - Static method in enum class com.univocity.parsers.csv.UnescapedQuoteHandling
-
Returns the enum constant of this class with the specified name.
- valueOf(String) - Static method in enum class com.univocity.parsers.fixed.FieldAlignment
-
Returns the enum constant of this class with the specified name.
- valueOnNullInput - Variable in class com.univocity.parsers.conversions.NullConversion
- valueOnNullOutput - Variable in class com.univocity.parsers.conversions.NullConversion
- valueParsed() - Method in class com.univocity.parsers.common.ParserOutput
-
Adds the accumulated value in the appender object to the output and prepares the next position in the record to receive more values.
- valueParsed(String) - Method in class com.univocity.parsers.common.ParserOutput
-
Adds a value processed externally to the output and prepares the next position in the record to receive more values
- values - Variable in exception com.univocity.parsers.common.DataProcessingException
- values() - Static method in enum class com.univocity.parsers.annotations.helpers.MethodFilter
-
Returns an array containing the constants of this enum class, in the order they are declared.
- values() - Static method in enum class com.univocity.parsers.common.processor.RowPlacement
-
Returns an array containing the constants of this enum class, in the order they are declared.
- values() - Static method in enum class com.univocity.parsers.conversions.EnumSelector
-
Returns an array containing the constants of this enum class, in the order they are declared.
- values() - Static method in enum class com.univocity.parsers.csv.UnescapedQuoteHandling
-
Returns an array containing the constants of this enum class, in the order they are declared.
- values() - Static method in enum class com.univocity.parsers.fixed.FieldAlignment
-
Returns an array containing the constants of this enum class, in the order they are declared.
- valuesForMissing - Variable in class com.univocity.parsers.common.processor.core.BeanConversionProcessor
W
- whitespaceAppender - Variable in class com.univocity.parsers.csv.CsvParser
- whitespaceCount - Variable in class com.univocity.parsers.common.input.DefaultCharAppender
- whitespaceCount() - Method in interface com.univocity.parsers.common.input.CharAppender
-
Returns the current number of whitespaces accumulated after the last non-whitespace character.
- whitespaceCount() - Method in class com.univocity.parsers.common.input.DefaultCharAppender
- whitespaceCount() - Method in class com.univocity.parsers.common.input.NoopCharAppender
-
Returns 0 as this appender does nothing.
- whitespaceRangeStart - Variable in class com.univocity.parsers.common.AbstractParser
- whitespaceRangeStart - Variable in class com.univocity.parsers.common.AbstractWriter
- whitespaceRangeStart - Variable in class com.univocity.parsers.common.input.AbstractCharInputReader
- whitespaceRangeStart - Variable in class com.univocity.parsers.common.input.DefaultCharAppender
- whitespaceRangeStart - Variable in class com.univocity.parsers.common.input.LookaheadCharInputReader
- whitespaceRangeStart - Variable in class com.univocity.parsers.csv.CsvFormatDetector
- wildcard - Variable in class com.univocity.parsers.fixed.FixedWidthParser
- wildcard - Variable in class com.univocity.parsers.fixed.Lookup
- wrapContext(ParsingContext) - Method in class com.univocity.parsers.common.processor.ConcurrentRowProcessor
- wrapContext(ParsingContext) - Method in class com.univocity.parsers.common.processor.InputValueSwitch
- wrapContext(T) - Method in class com.univocity.parsers.common.processor.core.AbstractConcurrentProcessor
- wrapContext(T) - Method in class com.univocity.parsers.common.processor.core.AbstractProcessorSwitch
-
Wraps a given parser context object that returns headers and extracted field indexes associated with a given processor in this switch.
- wrapObjectArray(Map<K, Object[]>) - Method in class com.univocity.parsers.common.AbstractWriter
- wrappedFieldSets - Variable in class com.univocity.parsers.common.fields.FieldSet
- wrapRecordValues(Map<K, ? extends Record>) - Method in class com.univocity.parsers.common.AbstractWriter
- wrapStringArray(Map<K, String[]>) - Method in class com.univocity.parsers.common.AbstractWriter
- write() - Element in annotation interface com.univocity.parsers.annotations.Headers
-
Indicates whether a row with headers should be written to the output.
- write(Object[], NormalizedString[], int[]) - Method in class com.univocity.parsers.common.processor.ObjectRowWriterProcessor
-
Executes the sequences of conversions defined using
DefaultConversionProcessor.convertFields(Conversion...)
,DefaultConversionProcessor.convertIndexes(Conversion...)
andDefaultConversionProcessor.convertAll(Conversion...)
, for every field in the given row. - write(Object[], String[], int[]) - Method in class com.univocity.parsers.common.processor.ObjectRowWriterProcessor
-
Executes the sequences of conversions defined using
DefaultConversionProcessor.convertFields(Conversion...)
,DefaultConversionProcessor.convertIndexes(Conversion...)
andDefaultConversionProcessor.convertAll(Conversion...)
, for every field in the given row. - write(Object, NormalizedString[], int[]) - Method in class com.univocity.parsers.common.processor.RowWriterProcessorSwitch
- write(Object, Object) - Method in class com.univocity.parsers.annotations.helpers.FieldMapping
-
Writes a value to the field of a given object instance, whose field is accessible through this field mapping.
- write(Object, String[], int[]) - Method in class com.univocity.parsers.common.processor.RowWriterProcessorSwitch
- write(ResultSet, File) - Method in class com.univocity.parsers.common.routine.AbstractRoutines
-
Dumps the content of a
ResultSet
into a file. - write(ResultSet, File, String) - Method in class com.univocity.parsers.common.routine.AbstractRoutines
-
Dumps the content of a
ResultSet
into a file. - write(ResultSet, File, Charset) - Method in class com.univocity.parsers.common.routine.AbstractRoutines
-
Dumps the content of a
ResultSet
into a file. - write(ResultSet, OutputStream) - Method in class com.univocity.parsers.common.routine.AbstractRoutines
-
Dumps the content of a
ResultSet
into an output stream. - write(ResultSet, OutputStream, String) - Method in class com.univocity.parsers.common.routine.AbstractRoutines
-
Dumps the content of a
ResultSet
into an output stream. - write(ResultSet, OutputStream, Charset) - Method in class com.univocity.parsers.common.routine.AbstractRoutines
-
Dumps the content of a
ResultSet
into an output stream. - write(ResultSet, Writer) - Method in class com.univocity.parsers.common.routine.AbstractRoutines
-
Dumps the content of a
ResultSet
. - write(T, NormalizedString[], int[]) - Method in class com.univocity.parsers.common.processor.BeanWriterProcessor
-
Converts the java bean instance into a sequence of values for writing.
- write(T, NormalizedString[], int[]) - Method in interface com.univocity.parsers.common.processor.RowWriterProcessor
-
Converts the given input into an Object array that is suitable for writing.
- write(T, String[], int[]) - Method in class com.univocity.parsers.common.processor.BeanWriterProcessor
-
Converts the java bean instance into a sequence of values for writing.
- writeAll(Iterable<T>, Class<T>, File, String...) - Method in class com.univocity.parsers.common.routine.AbstractRoutines
-
Writes a collection of annotated java beans to a given output.
- writeAll(Iterable<T>, Class<T>, File, String, String[]) - Method in class com.univocity.parsers.common.routine.AbstractRoutines
-
Writes a collection of annotated java beans to a given output.
- writeAll(Iterable<T>, Class<T>, File, Charset, String...) - Method in class com.univocity.parsers.common.routine.AbstractRoutines
-
Writes a collection of annotated java beans to a given output.
- writeAll(Iterable<T>, Class<T>, OutputStream, String...) - Method in class com.univocity.parsers.common.routine.AbstractRoutines
-
Writes a collection of annotated java beans to a given output.
- writeAll(Iterable<T>, Class<T>, OutputStream, String, String[]) - Method in class com.univocity.parsers.common.routine.AbstractRoutines
-
Writes a collection of annotated java beans to a given output.
- writeAll(Iterable<T>, Class<T>, OutputStream, Charset, String...) - Method in class com.univocity.parsers.common.routine.AbstractRoutines
-
Writes a collection of annotated java beans to a given output.
- writeAll(Iterable<T>, Class<T>, Writer, String...) - Method in class com.univocity.parsers.common.routine.AbstractRoutines
-
Writes a collection of annotated java beans to a given output.
- writeCharsAndReset(Writer) - Method in class com.univocity.parsers.common.input.WriterCharAppender
-
Writes the accumulated value to the
Writer
, discarding any trailing whitespace characters identified when usingWriterCharAppender.appendIgnoringWhitespace(char)
,WriterCharAppender.appendIgnoringPadding(char, char)
orWriterCharAppender.appendIgnoringWhitespaceAndPadding(char, char)
- writeEmptyRow() - Method in class com.univocity.parsers.common.AbstractWriter
-
Writes an empty line to the output, unless this is a
FixedWidthWriter
whoseFixedWidthWriterSettings.getWriteLineSeparatorAfterRecord()
evaluates tofalse
. - writeExcel() - Static method in class com.univocity.parsers.csv.Csv
-
Provides a basic CSV configuration that allows writing CSV files that can be read by Microsoft Excel.
- writeHeaders() - Method in class com.univocity.parsers.common.AbstractWriter
-
Writes the headers defined in
CommonSettings.getHeaders()
ATextWritingException
will be thrown if no headers were defined or if records were already written to the output. - writeHeaders(String...) - Method in class com.univocity.parsers.common.AbstractWriter
-
Writes the given collection of headers to the output.
- writeHeaders(Collection<?>) - Method in class com.univocity.parsers.common.AbstractWriter
-
Writes the given collection of headers to the output.
- writeHeadersToString() - Method in class com.univocity.parsers.common.AbstractWriter
-
Writes the headers defined in
CommonSettings.getHeaders()
to aString
- writeHeadersToString(String...) - Method in class com.univocity.parsers.common.AbstractWriter
-
Writes the given collection of headers to a
String
ATextWritingException
will be thrown if no headers were defined or if records were already written to aString
- writeHeadersToString(Collection<?>) - Method in class com.univocity.parsers.common.AbstractWriter
-
Writes the given collection of headers to a
String
ATextWritingException
will be thrown if no headers were defined. - writeLineSeparatorAfterRecord - Variable in class com.univocity.parsers.fixed.FixedWidthWriterSettings
- writeMethod - Variable in class com.univocity.parsers.annotations.helpers.FieldMapping
- writeMethod - Variable in class com.univocity.parsers.common.beans.PropertyWrapper
- writeObjectRows(Map<K, String>, Map<K, Object[]>) - Method in class com.univocity.parsers.common.AbstractWriter
-
Writes the values of a given map to multiple output records Each value is expected to be iterable and the result of this method will produce the number of records equal to the longest iterable.
- writeObjectRowsAndClose(Map<K, Object[]>) - Method in class com.univocity.parsers.common.AbstractWriter
-
Writes the values of a given map to multiple output records and closes the output when finished.
- writeObjectRowsAndClose(Map<K, String>, Map<K, Object[]>) - Method in class com.univocity.parsers.common.AbstractWriter
-
Writes the values of a given map to multiple output records and closes the output when finished.
- writeObjectRowsToString(Map<K, String>, Map<K, Object[]>) - Method in class com.univocity.parsers.common.AbstractWriter
-
Writes the values of a given map to a
List
ofString
formatted to according to the specified output format. - writer - Variable in class com.univocity.parsers.common.AbstractWriter
- WriterCharAppender - Class in com.univocity.parsers.common.input
-
Extension of the
DefaultCharAppender
class to include facilities for writing to an output. - WriterCharAppender(int, String, int, Format) - Constructor for class com.univocity.parsers.common.input.WriterCharAppender
-
Creates a WriterCharAppender with: a maximum limit of characters to append the default value to return when no characters have been accumulated. the basic
Format
specification for handling newlines The padding character is defaulted to a whitespace character ' '. - writeRecord(T) - Method in class com.univocity.parsers.common.AbstractWriter
-
Writes the data given for an individual record.
- writeRecords(Collection<? extends Record>) - Method in class com.univocity.parsers.common.AbstractWriter
-
Iterates over all records and writes them to the output.
- writeRecords(Map<K, String>, Map<K, ? extends Record>) - Method in class com.univocity.parsers.common.AbstractWriter
-
Writes the values of a given map to multiple output records Each value is expected to be iterable and the result of this method will produce the number of records equal to the longest iterable.
- writeRecordsAndClose(Collection<? extends Record>) - Method in class com.univocity.parsers.common.AbstractWriter
-
Iterates over all records, writes them and closes the output.
- writeRecordsAndClose(Map<K, ? extends Record>) - Method in class com.univocity.parsers.common.AbstractWriter
-
Writes the values of a given map to multiple output records and closes the output when finished.
- writeRecordsAndClose(Map<K, String>, Map<K, ? extends Record>) - Method in class com.univocity.parsers.common.AbstractWriter
-
Writes the values of a given map to multiple output records and closes the output when finished.
- writeRecordsToString(Collection<? extends Record>) - Method in class com.univocity.parsers.common.AbstractWriter
-
Iterates over all records and writes them to a
List
ofString
. - writeRecordsToString(Map<K, String>, Map<K, ? extends Record>) - Method in class com.univocity.parsers.common.AbstractWriter
-
Writes the values of a given map to a
List
ofString
formatted to according to the specified output format. - writeRecordToString(T) - Method in class com.univocity.parsers.common.AbstractWriter
-
Writes the data given for an individual record to a
String
. - writeRfc4180() - Static method in class com.univocity.parsers.csv.Csv
-
Provides a basic CSV configuration for writing CSV files in accordance with the rules established by RFC 4180
- writeRow(Object...) - Method in class com.univocity.parsers.common.AbstractWriter
-
Writes the data given for an individual record.
- writeRow(String) - Method in class com.univocity.parsers.common.AbstractWriter
-
Writes a plain (potentially free-text) String as a line to the output.
- writeRow(String[]) - Method in class com.univocity.parsers.common.AbstractWriter
-
Writes the data given for an individual record.
- writeRow(Collection<?>) - Method in class com.univocity.parsers.common.AbstractWriter
-
Writes the data given for an individual record.
- writeRow(Map<?, ?>) - Method in class com.univocity.parsers.common.AbstractWriter
-
Writes the values of a given map into new output record Note this method will not use the
RowWriterProcessor
. - writeRow(Map<K, String>, Map<K, ?>) - Method in class com.univocity.parsers.common.AbstractWriter
-
Writes the values of a given map into new output record Note this method will not use the
RowWriterProcessor
. - writeRows(Iterable<C>) - Method in class com.univocity.parsers.common.AbstractWriter
-
Iterates over all records and writes them to the output.
- writeRows(Object[][]) - Method in class com.univocity.parsers.common.AbstractWriter
-
Iterates over all records and writes them to the output.
- writeRows(Collection<Object[]>) - Method in class com.univocity.parsers.common.AbstractWriter
-
Iterates over all records and writes them to the output.
- writeRows(Map<K, I>) - Method in class com.univocity.parsers.common.AbstractWriter
-
Writes the values of a given map to multiple output records Each value is expected to be iterable and the result of this method will produce the number of records equal to the longest iterable.
- writeRows(Map<K, String>, Map<K, I>) - Method in class com.univocity.parsers.common.AbstractWriter
-
Writes the values of a given map to multiple output records Each value is expected to be iterable and the result of this method will produce the number of records equal to the longest iterable.
- writeRows(Map<K, String>, Map<K, I>, List<String>, boolean) - Method in class com.univocity.parsers.common.AbstractWriter
-
Writes the values of a given map to a
List
ofString
formatted to according to the specified output format. - writeRowsAndClose(Iterable<C>) - Method in class com.univocity.parsers.common.AbstractWriter
-
Iterates over all records, writes them and closes the output.
- writeRowsAndClose(Object[][]) - Method in class com.univocity.parsers.common.AbstractWriter
-
Iterates over all records, writes them and closes the output.
- writeRowsAndClose(Collection<Object[]>) - Method in class com.univocity.parsers.common.AbstractWriter
-
Iterates over all records, writes them and closes the output.
- writeRowsAndClose(Map<K, I>) - Method in class com.univocity.parsers.common.AbstractWriter
-
Writes the values of a given map to multiple output records and closes the output when finished.
- writeRowsAndClose(Map<K, String>, Map<K, I>) - Method in class com.univocity.parsers.common.AbstractWriter
-
Writes the values of a given map to multiple output records and closes the output when finished.
- writeRowsToString(Iterable<C>) - Method in class com.univocity.parsers.common.AbstractWriter
-
Iterates over all records and writes them to a
List
ofString
. - writeRowsToString(Object[][]) - Method in class com.univocity.parsers.common.AbstractWriter
-
Iterates over all records and writes them to a
List
ofString
. - writeRowsToString(Collection<Object[]>) - Method in class com.univocity.parsers.common.AbstractWriter
-
Iterates over all records and writes them to a
List
ofString
. - writeRowsToString(Map<K, I>) - Method in class com.univocity.parsers.common.AbstractWriter
-
Writes the values of a given map to a
List
ofString
formatted to according to the specified output format. - writeRowsToString(Map<K, String>, Map<K, I>) - Method in class com.univocity.parsers.common.AbstractWriter
-
Writes the values of a given map to a
List
ofString
formatted to according to the specified output format. - writeRowToString(Object...) - Method in class com.univocity.parsers.common.AbstractWriter
-
Writes the data given for an individual record to a
String
. - writeRowToString(String[]) - Method in class com.univocity.parsers.common.AbstractWriter
-
Writes the data given for an individual record to a
String
. - writeRowToString(Collection<?>) - Method in class com.univocity.parsers.common.AbstractWriter
-
Writes the data given for an individual record to a
String
. - writeRowToString(Map<?, ?>) - Method in class com.univocity.parsers.common.AbstractWriter
-
Writes the values of a given map to a
String
formatted to according to the specified output format. - writeRowToString(Map<K, String>, Map<K, ?>) - Method in class com.univocity.parsers.common.AbstractWriter
-
Writes the values of a given map to a
String
formatted to according to the specified output format. - writerProcessor - Variable in class com.univocity.parsers.common.AbstractWriter
- writerSettings - Variable in class com.univocity.parsers.common.routine.AbstractRoutines
- writeStringRows(Iterable<C>) - Method in class com.univocity.parsers.common.AbstractWriter
-
Iterates over all records and writes them to the output.
- writeStringRows(Collection<String[]>) - Method in class com.univocity.parsers.common.AbstractWriter
-
Iterates over all records and writes them to the output.
- writeStringRows(Map<K, String>, Map<K, String[]>) - Method in class com.univocity.parsers.common.AbstractWriter
-
Writes the values of a given map to multiple output records Each value is expected to be iterable and the result of this method will produce the number of records equal to the longest iterable.
- writeStringRowsAndClose(Collection<String[]>) - Method in class com.univocity.parsers.common.AbstractWriter
-
Iterates over all records, writes them and closes the output.
- writeStringRowsAndClose(Map<K, String[]>) - Method in class com.univocity.parsers.common.AbstractWriter
-
Writes the values of a given map to multiple output records and closes the output when finished.
- writeStringRowsAndClose(Map<K, String>, Map<K, String[]>) - Method in class com.univocity.parsers.common.AbstractWriter
-
Writes the values of a given map to multiple output records and closes the output when finished.
- writeStringRowsToString(Iterable<C>) - Method in class com.univocity.parsers.common.AbstractWriter
-
Iterates over all records and writes them to a
List
ofString
. - writeStringRowsToString(Collection<String[]>) - Method in class com.univocity.parsers.common.AbstractWriter
-
Iterates over all records and writes them to a
List
ofString
. - writeStringRowsToString(Map<K, String>, Map<K, String[]>) - Method in class com.univocity.parsers.common.AbstractWriter
-
Writes the values of a given map to a
List
ofString
formatted to according to the specified output format. - writeValuesFromMap(Map<K, String>, Map<K, ?>) - Method in class com.univocity.parsers.common.AbstractWriter
-
Writes values from an implementation of
Map
to a partial output record, ready to be written to the output. - writeValuesToRow() - Method in class com.univocity.parsers.common.AbstractWriter
-
Writes the contents accumulated in an internal in-memory row (using
or #writeValue()
to a new record in the output. - writeValuesToString() - Method in class com.univocity.parsers.common.AbstractWriter
-
Writes the contents accumulated in an internal in-memory row (using
or #addValue()
as aString
- writingHeaders - Variable in class com.univocity.parsers.common.AbstractWriter
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form
BeanConversionProcessor(Class, MethodFilter)
constructor instead.