Tabnine Logo
Evaluator.slice
Code IndexAdd Tabnine to your IDE (free)

How to use
slice
method
in
org.apache.jena.sparql.engine.ref.Evaluator

Best Java code snippets using org.apache.jena.sparql.engine.ref.Evaluator.slice (Showing top 2 results out of 315)

origin: apache/jena

@Override
public void visit(OpSlice opSlice)
{
  Table table = eval(opSlice.getSubOp()) ;
  table = evaluator.slice(table, opSlice.getStart(), opSlice.getLength()) ;
  push(table) ;
}
origin: apache/jena

@Override
public void visit(OpTopN opTop)
{
  Table table = eval(opTop.getSubOp()) ;
  //table = evaluator.topN(table, opTop.getLimti(), opTop.getConditions()) ;
  table = evaluator.order(table, opTop.getConditions()) ;
  table = evaluator.slice(table, 0, opTop.getLimit()) ;
  push(table) ;
}
org.apache.jena.sparql.engine.refEvaluatorslice

Popular methods of Evaluator

  • assign
  • basicPattern
  • condition
  • diff
  • distinct
  • extend
  • filter
  • getExecContext
  • groupBy
  • join
  • leftJoin
  • list
  • leftJoin,
  • list,
  • minus,
  • order,
  • pathPattern,
  • procedure,
  • project,
  • propertyFunction,
  • reduced

Popular in Java

  • Finding current android device location
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • findViewById (Activity)
  • getSharedPreferences (Context)
  • Timestamp (java.sql)
    A Java representation of the SQL TIMESTAMP type. It provides the capability of representing the SQL
  • BitSet (java.util)
    The BitSet class implements abit array [http://en.wikipedia.org/wiki/Bit_array]. Each element is eit
  • ResourceBundle (java.util)
    ResourceBundle is an abstract class which is the superclass of classes which provide Locale-specifi
  • Manifest (java.util.jar)
    The Manifest class is used to obtain attribute information for a JarFile and its entries.
  • Collectors (java.util.stream)
  • Logger (org.apache.log4j)
    This is the central class in the log4j package. Most logging operations, except configuration, are d
  • Top Vim plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now