Examples of IteratorIndexScan


Examples of lupos.rif.operator.IteratorIndexScan

    // ein IteratorIndex notwendig ist;
    final URILiteral name = (URILiteral) ((Constant) obj.termName)
        .getLiteral();
    if (RIFBuiltinFactory.isIterable(name)) {
      final BasicOperator root = this.indexScanCreator.getRoot();
      final IteratorIndexScan index = new IteratorIndexScan((root instanceof Root)? (Root) root : null, obj);
      this.indexScanCreator.getRoot().addSucceedingOperator(index);
      index.addPrecedingOperator(this.indexScanCreator.getRoot());
      return index;
    } else {
      return this.buildRuleFilter(obj, arg);
    }
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.