Uses of Interface
de.siegmar.fastcsv.reader.FieldModifier
-
Packages that use FieldModifier Package Description de.siegmar.fastcsv.reader FastCSV reader. -
-
Uses of FieldModifier in de.siegmar.fastcsv.reader
Subinterfaces of FieldModifier in de.siegmar.fastcsv.reader Modifier and Type Interface Description interface
SimpleFieldModifier
A functional interface for modifying CSV fields in a simple way (with reduced functionality).Fields in de.siegmar.fastcsv.reader declared as FieldModifier Modifier and Type Field Description protected FieldModifier
AbstractCsvCallbackHandler. fieldModifier
The field modifier.static FieldModifier
FieldModifiers. NOP
Modifier that does not modify anything.static FieldModifier
FieldModifiers. STRIP
Modifier that modifies the field value withString.strip()
.static FieldModifier
FieldModifiers. TRIM
Modifier that modifies the field value withString.trim()
.Methods in de.siegmar.fastcsv.reader that return FieldModifier Modifier and Type Method Description default FieldModifier
FieldModifier. andThen(FieldModifier after)
Chains multiple modifiers.static FieldModifier
FieldModifiers. lower(java.util.Locale locale)
Builds modifier that modifies the field value withString.toLowerCase(Locale)
.static FieldModifier
FieldModifiers. upper(java.util.Locale locale)
Builds modifier that modifies the field value withString.toUpperCase(Locale)
.Methods in de.siegmar.fastcsv.reader with parameters of type FieldModifier Modifier and Type Method Description default FieldModifier
FieldModifier. andThen(FieldModifier after)
Chains multiple modifiers.Constructors in de.siegmar.fastcsv.reader with parameters of type FieldModifier Constructor Description AbstractCsvCallbackHandler(FieldModifier fieldModifier)
Constructs a new instance with the given field modifier and initial fields array of size 32.AbstractCsvCallbackHandler(FieldModifier fieldModifier, int len)
CsvRecordHandler(FieldModifier fieldModifier)
Constructs a newCsvRecordHandler
with the given field modifier.NamedCsvRecordHandler(FieldModifier fieldModifier)
Constructs a newNamedCsvRecordHandler
with the given field modifier.NamedCsvRecordHandler(FieldModifier fieldModifier, java.lang.String... header)
Constructs a newNamedCsvRecordHandler
with the given header and field modifier.NamedCsvRecordHandler(FieldModifier fieldModifier, java.util.List<java.lang.String> header)
Constructs a newNamedCsvRecordHandler
with the given header and field modifier.StringArrayHandler(FieldModifier fieldModifier)
Constructs a newStringArrayHandler
with the given field modifier.
-