
com.couchbase.client.java.query.dsl.path.DefaultOrderByPath Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-client Show documentation
Show all versions of java-client Show documentation
The official Couchbase Java SDK
package com.couchbase.client.java.query.dsl.path;
import com.couchbase.client.java.query.dsl.element.OrderByElement;
import com.couchbase.client.java.query.dsl.Sort;
/**
* .
*
* @author Michael Nitschinger
*/
public class DefaultOrderByPath extends DefaultLimitPath implements OrderByPath {
public DefaultOrderByPath(AbstractPath parent) {
super(parent);
}
@Override
public LimitPath orderBy(Sort... orderings) {
element(new OrderByElement(orderings));
return new DefaultLimitPath(this);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy