Interface SparqlResultMapper

All Known Implementing Classes:
ResultRowMapper
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 interface SparqlResultMapper
Maps SPARQL result set value (a subset of the current row) to output based on a SparqlResultSetMapping configuration.
  • Method Summary

    Modifier and Type
    Method
    Description
    map(ResultRow resultRow, UnitOfWork uow)
    Maps (a subset of) the specified current result row to output based on this instance's configuration.
  • Method Details

    • map

      Object map(ResultRow resultRow, UnitOfWork uow)
      Maps (a subset of) the specified current result row to output based on this instance's configuration.
      Parameters:
      resultRow - The result row to map
      uow - Current persistence context
      Returns:
      Result of the mapping