Interface TableColumnConverter<R>
- Type Parameters:
R
- The resulting type
- All Superinterfaces:
ConfigurationObject
- All Known Implementing Classes:
HttpImageResolver
Converter to convert the value of a table cell (a string) into a different type (e.g. an image).
-
Method Summary
Modifier and TypeMethodDescriptionboolean
canConvert
(String text) Returns true if the converter can convert the given input.resolve
(MfClientHttpRequestFactory requestFactory, String text) Convert the value.Methods inherited from interface org.mapfish.print.config.ConfigurationObject
validate
-
Method Details
-
resolve
Convert the value.- Parameters:
requestFactory
- for fetching file and http resources.text
- the cell value.
-
canConvert
Returns true if the converter can convert the given input.- Parameters:
text
- the input to convert.
-