Package com.github.eikecochu.sqlbuilder
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 Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Tprocess(T value, QueryOptions options, java.sql.Connection connection)Transforms the passed value into another value
-
-
-
Method Detail
-
process
T process(T value, QueryOptions options, java.sql.Connection connection)
Transforms the passed value into another value- Parameters:
value- The input valueoptions- The query optionsconnection- The connection used by the Query builder- Returns:
- The output value
-
-