All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.asterix.aql.expression.OrderbyClause Maven / Gradle / Ivy

The newest version!
/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 *   http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 */
package org.apache.asterix.aql.expression;

import java.util.List;

import org.apache.asterix.aql.base.Clause;
import org.apache.asterix.aql.base.Expression;
import org.apache.asterix.aql.expression.visitor.IAqlExpressionVisitor;
import org.apache.asterix.aql.expression.visitor.IAqlVisitorWithVoidReturn;
import org.apache.asterix.common.exceptions.AsterixException;
import org.apache.hyracks.dataflow.common.data.partition.range.IRangeMap;

public class OrderbyClause implements Clause {
    private List orderbyList;
    private List modifierList;
    private IRangeMap rangeMap;
    private int numFrames = -1;
    private int numTuples = -1;

    public OrderbyClause() {
    }

    public OrderbyClause(List orderbyList, List modifierList) {
        this.orderbyList = orderbyList;
        this.modifierList = modifierList;
    }

    public List getOrderbyList() {
        return orderbyList;
    }

    public void setOrderbyList(List orderbyList) {
        this.orderbyList = orderbyList;
    }

    public List getModifierList() {
        return modifierList;
    }

    public void setModifierList(List modifierList) {
        this.modifierList = modifierList;
    }

    @Override
    public ClauseType getClauseType() {
        return ClauseType.ORDER_BY_CLAUSE;
    }

    public  void accept(IAqlVisitorWithVoidReturn visitor, T arg) throws AsterixException {
        visitor.visit(this, arg);
    }

    public enum OrderModifier {
        ASC,
        DESC
    }

    @Override
    public  R accept(IAqlExpressionVisitor visitor, T arg) throws AsterixException {
        return visitor.visitOrderbyClause(this, arg);
    }

    public int getNumFrames() {
        return numFrames;
    }

    public void setNumFrames(int numFrames) {
        this.numFrames = numFrames;
    }

    public int getNumTuples() {
        return numTuples;
    }

    public void setNumTuples(int numTuples) {
        this.numTuples = numTuples;
    }

    public IRangeMap getRangeMap() {
        return rangeMap;
    }

    public void setRangeMap(IRangeMap rangeMap) {
        this.rangeMap = rangeMap;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy