public class DateTypeHandler extends Object implements TypeHandler<Date>
| Constructor and Description |
|---|
DateTypeHandler() |
| Modifier and Type | Method and Description |
|---|---|
String |
format(Date data,
String format,
String filler,
int size)
Must convert the target object to its string representation
to be used on the file.
|
Date |
parse(String dados,
String format,
String filler)
Parses a given string and generate the target object from it.
|
public String format(Date data, String format, String filler, int size) throws MalformedOutputException
TypeHandlerformat in interface TypeHandler<Date>data - The data to be converted.format - The format to be used if any, it is the format given in the layout file.filler - The filler configured to be used with this data.size - The size configured to be used in the layout.MalformedOutputException - When the data cannot be handled for some reason.public Date parse(String dados, String format, String filler) throws MalformedInputException
TypeHandlerparse in interface TypeHandler<Date>dados - The data to be parsed in its string form.format - The format configured in the layout.filler - The filler configured and used with this data.MalformedInputException - If there is any problem with the data.Copyright © 2014. All Rights Reserved.