cz.proto.LogicalSortOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of clickzetta-java Show documentation
Show all versions of clickzetta-java Show documentation
The java SDK for clickzetta's Lakehouse
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: operator.proto
package cz.proto;
public interface LogicalSortOrBuilder extends
// @@protoc_insertion_point(interface_extends:cz.proto.LogicalSort)
com.google.protobuf.MessageOrBuilder {
/**
* repeated .cz.proto.Reference keys = 1;
*/
java.util.List
getKeysList();
/**
* repeated .cz.proto.Reference keys = 1;
*/
cz.proto.Expression.Reference getKeys(int index);
/**
* repeated .cz.proto.Reference keys = 1;
*/
int getKeysCount();
/**
* repeated .cz.proto.Reference keys = 1;
*/
java.util.List extends cz.proto.Expression.ReferenceOrBuilder>
getKeysOrBuilderList();
/**
* repeated .cz.proto.Reference keys = 1;
*/
cz.proto.Expression.ReferenceOrBuilder getKeysOrBuilder(
int index);
/**
* repeated .cz.proto.OrderByDesc orders = 2;
*/
java.util.List
getOrdersList();
/**
* repeated .cz.proto.OrderByDesc orders = 2;
*/
cz.proto.OrderByDesc getOrders(int index);
/**
* repeated .cz.proto.OrderByDesc orders = 2;
*/
int getOrdersCount();
/**
* repeated .cz.proto.OrderByDesc orders = 2;
*/
java.util.List extends cz.proto.OrderByDescOrBuilder>
getOrdersOrBuilderList();
/**
* repeated .cz.proto.OrderByDesc orders = 2;
*/
cz.proto.OrderByDescOrBuilder getOrdersOrBuilder(
int index);
/**
* .cz.proto.ScalarExpression limit = 3;
* @return Whether the limit field is set.
*/
boolean hasLimit();
/**
* .cz.proto.ScalarExpression limit = 3;
* @return The limit.
*/
cz.proto.Expression.ScalarExpression getLimit();
/**
* .cz.proto.ScalarExpression limit = 3;
*/
cz.proto.Expression.ScalarExpressionOrBuilder getLimitOrBuilder();
/**
* .cz.proto.ScalarExpression offset = 4;
* @return Whether the offset field is set.
*/
boolean hasOffset();
/**
* .cz.proto.ScalarExpression offset = 4;
* @return The offset.
*/
cz.proto.Expression.ScalarExpression getOffset();
/**
* .cz.proto.ScalarExpression offset = 4;
*/
cz.proto.Expression.ScalarExpressionOrBuilder getOffsetOrBuilder();
/**
* bool global = 5;
* @return The global.
*/
boolean getGlobal();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy