Package com.sap.hadoop.windowing.query2.definition

Source Code of com.sap.hadoop.windowing.query2.definition.OrderColumnDef

package com.sap.hadoop.windowing.query2.definition;

import com.sap.hadoop.metadata.Order;
import com.sap.hadoop.windowing.query2.specification.OrderColumnSpec;

public class OrderColumnDef extends ColumnDef
{
 
  public OrderColumnDef(){
   
  }
 
  public OrderColumnDef(OrderColumnSpec spec)
  {
    super(spec);
  }
 
  public OrderColumnDef(ColumnDef cDef)
  {
    super(cDef);
    this.spec = new OrderColumnSpec(spec);
  }
 
  public Order getOrder()
  {
    return ((OrderColumnSpec)getSpec()).getOrder();
  }

}
TOP

Related Classes of com.sap.hadoop.windowing.query2.definition.OrderColumnDef

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.