Uses of Interface
org.supercsv.cellprocessor.ift.DateCellProcessor
Packages that use DateCellProcessor
Package
Description
Provides CellProcessor classes for conversion, formatting and parsing.
Provides CellProcessor classes for enforcing constraints.
-
Uses of DateCellProcessor in org.supercsv.cellprocessor
Classes in org.supercsv.cellprocessor that implement DateCellProcessorModifier and TypeClassDescriptionprivate static final classThis is an implementation-specific processor and should only be used by the CellProcessorAdaptor class.classThis 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 date into a formatted string using theSimpleDateFormatclass.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.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.Constructors in org.supercsv.cellprocessor with parameters of type DateCellProcessorModifierConstructorDescriptionParseDate(String dateFormat, boolean lenient, Locale locale, DateCellProcessor next) Constructs a new ParseDate processor which converts a String to a Date using the supplied date format and Locale, then calls the next processor in the chain.ParseDate(String dateFormat, boolean lenient, DateCellProcessor next) Constructs a new ParseDate processor which converts a String to a Date using the supplied date format, then calls the next processor in the chain.ParseDate(String dateFormat, DateCellProcessor next) Constructs a new ParseDate processor which converts a String to a Date using the supplied date format, then calls the next processor in the chain. -
Uses of DateCellProcessor in org.supercsv.cellprocessor.constraint
Classes in org.supercsv.cellprocessor.constraint that implement DateCellProcessorModifier and TypeClassDescriptionclassThis constraint ensures that all input data is equal (to each other, or to a supplied constant value).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.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.