Uses of Class
org.supercsv.cellprocessor.CellProcessorAdaptor
Packages that use CellProcessorAdaptor
Package
Description
Provides CellProcessor classes for conversion, formatting and parsing.
Provides CellProcessor classes for enforcing constraints.
Provides CellProcessor classes for converting, formatting and parsing
java.time classes.-
Uses of CellProcessorAdaptor in org.supercsv.cellprocessor
Subclasses of CellProcessorAdaptor in org.supercsv.cellprocessorModifier and TypeClassDescriptionclassThis processor collects each value it encounters and adds it to the supplied Collection.classThis processor returns a specified default value if the input is null.classConverts a Boolean into a formatted string.classConverts a date into a formatted string using theSimpleDateFormatclass.classConverts a double into a formatted string using theDecimalFormatclass and the default locale.classMaps from one object to another, by looking up a Map with the input as the key, and returning its corresponding value.classThis processor is used to indicate that a cell is optional, and will avoid executing further processors if it encounters null.classConvert a String to a BigDecimal.classConverts a String to a Boolean.classConverts a String to a Character.classConverts a String to a Date using theSimpleDateFormatclass.classConverts a String to a Double.classConverts a String to an Enum.classConverts a String to an Integer.classConverts a String to a Long.classReplaces each substring of the input string that matches the given regular expression with the given replacement.classThis processor is used in the situations you want to be able to check for the presence of a "special token".classEnsure that Strings or String-representations of objects are trimmed (contain no surrounding whitespace).classEnsure that Strings or String-representations of objects are truncated to a maximum size. -
Uses of CellProcessorAdaptor in org.supercsv.cellprocessor.constraint
Subclasses of CellProcessorAdaptor in org.supercsv.cellprocessor.constraintModifier and TypeClassDescriptionclassConverts the input data to a Double and ensures that number is within a specified numeric range (inclusive).classThis constraint ensures that all input data is equal (to each other, or to a supplied constant value).classConverts the input to a String and ensures that it doesn't contain any of the supplied substrings.classThis processor ensures that the input value is an element of a Collection.classThis processor ensures that the input value belongs to a specific set of (unchangeable) values.classConverts the input data to a Long and and ensures the value is between the supplied min and max values (inclusive).classThis processor ensures that the input is not null.classThis processor converts the input to a String, and ensures that the input's hash function matches any of a given set of hashcodes.classConverts the input to a String and ensures that the input contains at least one of the specified substrings.classThis processor ensures that the input String has a length equal to any of the supplied lengths.classThis constraint ensures that the input data has a string length between the supplied min and max values (both inclusive).classThis processor checks if the input is null or an empty string, and raises an exception in that case.classThis constraint ensures that the input data matches the given regular expression.classEnsure that upon processing a CSV file (reading or writing), that values of the column all are unique.classEnsure that upon processing a CSV file (reading or writing), that values of the column are all unique. -
Uses of CellProcessorAdaptor in org.supercsv.cellprocessor.time
Subclasses of CellProcessorAdaptor in org.supercsv.cellprocessor.timeModifier and TypeClassDescriptionclassAbstract base class for cell processors convertingTemporalAccessortypes to Strings.classAbstract base class for cell processors converting Strings toTemporalAccessortypes.classConverts a Duration to a String.classConverts a LocalDate to a String.classConverts a LocalDateTime to a String.classConverts a LocalTime to a String.classConverts a Period to a String.classConverts a ZonedDateTime to a String.classConverts a ZoneId to a String.classConverts a String to a Duration.classConverts a String to a LocalDate.classConverts a String to a LocalDateTime.classConverts a String to a LocalTime.classConverts a String to a Period.classConverts a String to a ZonedDateTime.classConverts a String to a ZoneId.