Interface ThrowingFunction<T,R>

Type Parameters:
T - Argument type
R - Result type

public interface ThrowingFunction<T,R>
A Function that may throw a checked exception.
  • Method Summary

    Modifier and Type
    Method
    Description
    apply(T t)
    Apply the function to the specified argument.
  • Method Details

    • apply

      R apply(T t) throws Rdf4jDriverException
      Apply the function to the specified argument.
      Parameters:
      t - Argument
      Returns:
      Result
      Throws:
      Rdf4jDriverException - If function evaluation throws an exception