Interface RowFilterTransformer<ROW_OBJECT>

  • Type Parameters:
    ROW_OBJECT - the table row object.
    All Known Implementing Classes:
    DefaultRowFilterTransformer

    public interface RowFilterTransformer<ROW_OBJECT>
    Instances of this class converts table rows into lists of strings. These objects can be set on GTableFilterPanel to customize how the user typed text filters are applied to a table row. For example, a custom row transformer could be used to limit which columns of a table are included in the filter.
    • Method Detail

      • transform

        java.util.List<java.lang.String> transform​(ROW_OBJECT rowObject)