Uses of Interface
de.siegmar.fastcsv.reader.FieldModifier
Packages that use FieldModifier
-
Uses of FieldModifier in de.siegmar.fastcsv.reader
Subinterfaces of FieldModifier in de.siegmar.fastcsv.readerModifier and TypeInterfaceDescriptioninterfaceA functional interface for modifying CSV fields in a simple way (with reduced functionality).Fields in de.siegmar.fastcsv.reader declared as FieldModifierModifier and TypeFieldDescriptionprotected final FieldModifierAbstractCsvCallbackHandler.fieldModifierThe field modifier.static final FieldModifierFieldModifiers.NOPModifier that does not modify anything.static final FieldModifierFieldModifiers.STRIPModifier that modifies the field value withString.strip().static final FieldModifierFieldModifiers.TRIMModifier that modifies the field value withString.trim().Methods in de.siegmar.fastcsv.reader that return FieldModifierModifier and TypeMethodDescriptiondefault FieldModifierFieldModifier.andThen(FieldModifier after) Chains multiple modifiers.static FieldModifierBuilds modifier that modifies the field value withString.toLowerCase(Locale).static FieldModifierBuilds modifier that modifies the field value withString.toUpperCase(Locale).Methods in de.siegmar.fastcsv.reader with parameters of type FieldModifierModifier and TypeMethodDescriptiondefault FieldModifierFieldModifier.andThen(FieldModifier after) Chains multiple modifiers.Constructors in de.siegmar.fastcsv.reader with parameters of type FieldModifierModifierConstructorDescriptionprotectedAbstractCsvCallbackHandler(FieldModifier fieldModifier) (package private)AbstractCsvCallbackHandler(FieldModifier fieldModifier, int len) CsvRecordHandler(FieldModifier fieldModifier) Constructs a newCsvRecordHandlerwith the given field modifier.NamedCsvRecordHandler(FieldModifier fieldModifier) Constructs a newNamedCsvRecordHandlerwith the given field modifier.NamedCsvRecordHandler(FieldModifier fieldModifier, String... header) Constructs a newNamedCsvRecordHandlerwith the given header and field modifier.NamedCsvRecordHandler(FieldModifier fieldModifier, List<String> header) Constructs a newNamedCsvRecordHandlerwith the given header and field modifier.StringArrayHandler(FieldModifier fieldModifier) Constructs a newStringArrayHandlerwith the given field modifier.