Interface JpqlFunctionProcessor<T>

Type Parameters:
T - The type this processor handles

public interface JpqlFunctionProcessor<T>
Interface for implementing processing of values produced by a JPQL function in the SELECT clause.
Since:
1.5.0
Author:
Christian Beikov
  • Method Summary

    Modifier and Type Method Description
    Object process​(T result, List<Object> arguments)
    Processes the result set object.
  • Method Details

    • process

      Object process​(T result, List<Object> arguments)
      Processes the result set object.
      Parameters:
      result - The result set object
      arguments - The JPQL function arguments
      Returns:
      Returns the processed result set object