public class FmtLocalDate extends AbstractTemporalAccessorFormattingProcessor<java.time.LocalDate>
DateTimeFormatter - formats by pattern and styleDateTimeFormatter - ISO 8601 formatsDateTimeFormatterBuilder - complex formats created via method
callsnext| Constructor and Description |
|---|
FmtLocalDate()
Constructs a new FmtLocalDate processor, which formats a
LocalDate as a String, with the same output as
LocalDate.toString() |
FmtLocalDate(CellProcessor next)
Constructs a new FmtLocalDate processor, which formats a
LocalDate as a String, then calls the next processor in the chain.
|
FmtLocalDate(java.time.format.DateTimeFormatter formatter)
Constructs a new FmtLocalDate processor, which formats a
LocalDate as a String using the supplied formatter.
|
FmtLocalDate(java.time.format.DateTimeFormatter formatter,
CellProcessor next)
Constructs a new FmtLocalDate processor, which formats a
LocalDate as a String using the supplied formatter, then calls the next
processor in the chain.
|
| Modifier and Type | Method and Description |
|---|---|
protected Class<java.time.LocalDate> |
getType() |
executetoString, validateInputNotNullpublic FmtLocalDate()
LocalDate.toString()public FmtLocalDate(CellProcessor next)
next - next processor in the chainNullPointerException - if next is nullFmtLocalDate()public FmtLocalDate(java.time.format.DateTimeFormatter formatter)
formatter - the formatter to useNullPointerException - if formatter is nullpublic FmtLocalDate(java.time.format.DateTimeFormatter formatter,
CellProcessor next)
formatter - the formatter to usenext - the next processor in the chainNullPointerException - if formatter or next is nullprotected Class<java.time.LocalDate> getType()
getType in class AbstractTemporalAccessorFormattingProcessor<java.time.LocalDate>Copyright © 2007-2015 Super CSV. All Rights Reserved.