Interface RDFList.ReduceFn

Enclosing interface:
RDFList

public static interface RDFList.ReduceFn
Interface that encapsulates a function to apply to each element of a list in turn, and passing the result to an accumulator.
  • Method Summary

    Modifier and Type
    Method
    Description
    reduce(RDFNode node, Object accumulator)
    Apply a function to the given RDF node.
  • Method Details

    • reduce

      Object reduce(RDFNode node, Object accumulator)

      Apply a function to the given RDF node.

      Parameters:
      node - A node from the list.
      accumulator - The accumulator for the reduction, which will either be an initial value passed to RDFList.reduce(org.apache.jena.rdf.model.RDFList.ReduceFn, java.lang.Object), or the output from reduce applied to the previous node in the list.
      Returns:
      The result of applying the reduction function to the current node and the accumulator.