Interface QueryUtil.ResultProcessor<U>

  • Type Parameters:
    U - The type returned from the result processor, must extend T
    Enclosing class:
    QueryUtil<T>
    Functional Interface:
    This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

    @FunctionalInterface
    public static interface QueryUtil.ResultProcessor<U>
    Callback for processing the result
    • Method Detail

      • processResult

        U processResult​(ResultSet result)
                 throws sailpoint.tools.GeneralException,
                        SQLException
        Called once per result.

        Do not call “next” on the ResultSet here.

        Parameters:
        result - The result set at the current point
        Returns:
        An object of type T
        Throws:
        sailpoint.tools.GeneralException - on any Sailpoint failures
        SQLException - on any database failures