Interface ValueFormatter<T>
-
- Type Parameters:
T
- the type of the value
public interface ValueFormatter<T>
Formats a value into a string.See
ValueFormatters
for common implementations.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
formatForCsv(T object)
Formats a value for use in a CSV file.String
formatForDisplay(T object)
Formats a value for display.
-