Package lupos.engine.operators.singleinput.sort.comparator

Examples of lupos.engine.operators.singleinput.sort.comparator.ComparatorAST


  public TreeMapSort(){
    super();
  }
 
  public TreeMapSort(lupos.sparql1_1.Node node){
    super(new lupos.datastructures.sorteddata.SortedBagImplementation<Bindings>(new java.util.TreeMap<Bindings,ElementCounter<Bindings>>(new ComparatorAST(node))), node);
  }
View Full Code Here


  public HybridSortedBagSort(){
    super();
  }
 
  public HybridSortedBagSort(final lupos.sparql1_1.Node node){
    super(new lupos.datastructures.smallerinmemorylargerondisk.SortedBagImplementation<Bindings>(new lupos.datastructures.sorteddata.SortedBagImplementation<Bindings>(new java.util.TreeMap<Bindings,ElementCounter<Bindings>>(new ComparatorAST(node)))), node);
  }
View Full Code Here

   * @param node
   *            the current sort node. From this node all other informations
   *            like variables to sort after will be extracted.
   */
  public Sort(final lupos.sparql1_1.Node node) {
    comparator = new ComparatorAST(node);
  }
View Full Code Here

  public DBMergeSortedBagSort() {
    super();
  }

  public DBMergeSortedBagSort(final lupos.sparql1_1.Node node) {
    super(new DBMergeSortedBag<Bindings>(new SortConfiguration(), new ComparatorAST(node),
        Bindings.class), node);
  }
View Full Code Here

   * Constructor sets the node, the parent and the comparator
   *
   * @param node
   */
  public Group(final lupos.sparql1_1.Node node) {
    this.comp = new ComparatorAST(node);
  }
View Full Code Here

TOP

Related Classes of lupos.engine.operators.singleinput.sort.comparator.ComparatorAST

Copyright © 2018 www.massapicom. 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.