com.sap.cds.ql.cqn.transformation.CqnOrderByTransformation Maven / Gradle / Ivy
The newest version!
/*******************************************************************
* © 2023 SAP SE or an SAP affiliate company. All rights reserved. *
*******************************************************************/
package com.sap.cds.ql.cqn.transformation;
import java.util.List;
import com.google.common.annotations.Beta;
import com.sap.cds.ql.cqn.CqnSortSpecification;
/**
* Transformation that sorts the input set
*/
@Beta
public interface CqnOrderByTransformation extends CqnTransformation {
/**
* Returns the sort specifications by which the input set is sorted
*
* @return the sort specifications
*/
List orderBy();
@Override
default Kind kind() {
return Kind.ORDERBY;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy