public interface TypeHandler<T>
Modifier and Type | Method and Description |
---|---|
String |
format(T data,
String format,
String filler,
int size)
Must convert the target object to its string representation
to be used on the file.
|
T |
parse(String data,
String format,
String filler)
Parses a given string and generate the target object from it.
|
String format(T data, String format, String filler, int size) throws MalformedOutputException
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.T parse(String data, String format, String filler) throws MalformedInputException
data
- 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.