Interface TableColumnConverter<R>

Type Parameters:
R - The resulting type
All Superinterfaces:
ConfigurationObject
All Known Implementing Classes:
HttpImageResolver

public interface TableColumnConverter<R> extends ConfigurationObject
Converter to convert the value of a table cell (a string) into a different type (e.g. an image).
  • Method Details

    • resolve

      R resolve(MfClientHttpRequestFactory requestFactory, String text)
      Convert the value.
      Parameters:
      requestFactory - for fetching file and http resources.
      text - the cell value.
    • canConvert

      boolean canConvert(String text)
      Returns true if the converter can convert the given input.
      Parameters:
      text - the input to convert.