Interface PostProcessor<T>

  • Type Parameters:
    T - The type of the value passed into the postprocessor

    public interface PostProcessor<T>
    The PostProcessor interface is used to create postprocessing instances for postprocessing multiple elements during the building process of the query.
    • Method Detail

      • process

        T process​(T value,
                  QueryOptions options,
                  java.sql.Connection connection)
        Transforms the passed value into another value
        Parameters:
        value - The input value
        options - The query options
        connection - The connection used by the Query builder
        Returns:
        The output value