Class AggList<T>

java.lang.Object
org.aksw.jenax.arq.aggregation.AggList<T>
All Implemented Interfaces:
org.aksw.commons.collector.domain.Aggregator<org.apache.jena.sparql.engine.binding.Binding,org.apache.jena.sparql.function.FunctionEnv,List<T>>, Agg<List<T>>

public class AggList<T> extends Object implements Agg<List<T>>
  • Constructor Details

    • AggList

      public AggList(Agg<T> subAgg)
  • Method Details

    • createAccumulator

      public Acc<List<T>> createAccumulator()
      Specified by:
      createAccumulator in interface Agg<T>
      Specified by:
      createAccumulator in interface org.aksw.commons.collector.domain.Aggregator<org.apache.jena.sparql.engine.binding.Binding,org.apache.jena.sparql.function.FunctionEnv,List<T>>
    • getDeclaredVars

      public Set<org.apache.jena.sparql.core.Var> getDeclaredVars()
      Description copied from interface: Agg
      An accumulator may declare the variable it references. The variables can be derived from e.g. underlying Sparql expressions or sub aggregators.
      Specified by:
      getDeclaredVars in interface Agg<T>
      Returns:
    • create

      public static <T> AggList<T> create(Agg<T> subAgg)