Uses of Interface
com.univocity.parsers.common.fields.FieldSelector
-
Packages that use FieldSelector Package Description com.univocity.parsers.common com.univocity.parsers.common.fields com.univocity.parsers.csv -
-
Uses of FieldSelector in com.univocity.parsers.common
Fields in com.univocity.parsers.common declared as FieldSelector Modifier and Type Field Description private FieldSelector
CommonSettings. fieldSelector
Methods in com.univocity.parsers.common that return FieldSelector Modifier and Type Method Description (package private) FieldSelector
CommonParserSettings. getFieldSelector()
Returns the FieldSelector object, which handles selected fields.(package private) FieldSelector
CommonSettings. getFieldSelector()
Returns the FieldSelector object, which handles selected fields.(package private) FieldSelector
ParserOutput. getFieldSelector()
Methods in com.univocity.parsers.common with parameters of type FieldSelector Modifier and Type Method Description static int
ArgumentUtils. indexOf(NormalizedString[] array, NormalizedString element, FieldSelector fieldSelector)
Returns the index of a header, when headers are selected using aFieldSelector
. -
Uses of FieldSelector in com.univocity.parsers.common.fields
Classes in com.univocity.parsers.common.fields that implement FieldSelector Modifier and Type Class Description class
AllIndexesSelector
A FieldSelector that selects all indexes of a record.class
ExcludeFieldEnumSelector
A FieldSelector capable of deselecting fields in a record.class
ExcludeFieldIndexSelector
A FieldSelector capable of deselecting fields by their position in a record.class
ExcludeFieldNameSelector
A FieldSelector capable of deselecting fields by their name in a record.class
FieldEnumSelector
A FieldSelector capable of selecting fields represented by values of an enumeration type.class
FieldIndexSelector
A FieldSelector capable of selecting fields by their position in a record.class
FieldNameSelector
A FieldSelector capable of selecting fields by their name.Fields in com.univocity.parsers.common.fields with type parameters of type FieldSelector Modifier and Type Field Description private java.util.List<FieldSelector>
AbstractConversionMapping. conversionSequence
private java.util.List<FieldSelector>
FieldConversionMapping. conversionSequence
This list contains the sequence of conversions applied to sets of fields over multiple calls.private java.util.Map<FieldSelector,Conversion<java.lang.String,?>[]>
AbstractConversionMapping. conversionsMap
Methods in com.univocity.parsers.common.fields that return FieldSelector Modifier and Type Method Description protected abstract FieldSelector
AbstractConversionMapping. newFieldSelector()
Creates a FieldSelector instance of the desired type.Methods in com.univocity.parsers.common.fields with parameters of type FieldSelector Modifier and Type Method Description void
AbstractConversionMapping. prepareExecution(boolean writing, FieldSelector selector, java.util.Map<java.lang.Integer,java.util.List<Conversion<?,?>>> conversionsByIndex, java.lang.String[] values)
Get all indexes in the given selector and adds the conversions defined at that index to the map of conversionsByIndex.private static void
AbstractConversionMapping. validateDuplicates(FieldSelector selector, java.util.List<Conversion<?,?>> conversionsAtIndex, Conversion<?,?>[] conversionsToAdd)
Ensures an individual field does not have the same conversion object applied to it more than once.Method parameters in com.univocity.parsers.common.fields with type arguments of type FieldSelector Modifier and Type Method Description AbstractConversionMapping<T>
AbstractConversionMapping. clone(java.util.Map<FieldSelector,FieldSelector> clonedSelectors, java.util.List<FieldSelector> clonedConversionSequence)
AbstractConversionMapping<T>
AbstractConversionMapping. clone(java.util.Map<FieldSelector,FieldSelector> clonedSelectors, java.util.List<FieldSelector> clonedConversionSequence)
AbstractConversionMapping<T>
AbstractConversionMapping. clone(java.util.Map<FieldSelector,FieldSelector> clonedSelectors, java.util.List<FieldSelector> clonedConversionSequence)
Constructor parameters in com.univocity.parsers.common.fields with type arguments of type FieldSelector Constructor Description AbstractConversionMapping(java.util.List<FieldSelector> conversionSequence)
-
Uses of FieldSelector in com.univocity.parsers.csv
Fields in com.univocity.parsers.csv declared as FieldSelector Modifier and Type Field Description private FieldSelector
CsvWriter. quotedFieldSelector
private FieldSelector
CsvWriterSettings. quotedFieldSelector
Methods in com.univocity.parsers.csv that return FieldSelector Modifier and Type Method Description (package private) FieldSelector
CsvWriterSettings. getQuotedFieldSelector()
Returns the current selection of quoted fields (if any)
-