Interface ResultListTransformer<T>

    • Method Detail

      • transformList

        List<T> transformList​(List<T> resultList)
        Here we have an opportunity to perform transformation on the query result as a whole. This might be useful to convert from one collection type to another or to remove duplicates from the result, etc.
        Parameters:
        resultList - The result list as would otherwise be returned from the Query without the intervention of this ResultListTransformer
        Returns:
        The transformed result.