com.scalar.db.rpc.ScanOrBuilder Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: scalardb.proto
package com.scalar.db.rpc;
public interface ScanOrBuilder extends
// @@protoc_insertion_point(interface_extends:rpc.Scan)
com.google.protobuf.MessageOrBuilder {
/**
* string namespace = 1;
* @return The namespace.
*/
java.lang.String getNamespace();
/**
* string namespace = 1;
* @return The bytes for namespace.
*/
com.google.protobuf.ByteString
getNamespaceBytes();
/**
* string table = 2;
* @return The table.
*/
java.lang.String getTable();
/**
* string table = 2;
* @return The bytes for table.
*/
com.google.protobuf.ByteString
getTableBytes();
/**
* .rpc.Key partition_key = 3;
* @return Whether the partitionKey field is set.
*/
boolean hasPartitionKey();
/**
* .rpc.Key partition_key = 3;
* @return The partitionKey.
*/
com.scalar.db.rpc.Key getPartitionKey();
/**
* .rpc.Key partition_key = 3;
*/
com.scalar.db.rpc.KeyOrBuilder getPartitionKeyOrBuilder();
/**
* .rpc.Consistency consistency = 4;
* @return The enum numeric value on the wire for consistency.
*/
int getConsistencyValue();
/**
* .rpc.Consistency consistency = 4;
* @return The consistency.
*/
com.scalar.db.rpc.Consistency getConsistency();
/**
* repeated string projections = 5;
* @return A list containing the projections.
*/
java.util.List
getProjectionsList();
/**
* repeated string projections = 5;
* @return The count of projections.
*/
int getProjectionsCount();
/**
* repeated string projections = 5;
* @param index The index of the element to return.
* @return The projections at the given index.
*/
java.lang.String getProjections(int index);
/**
* repeated string projections = 5;
* @param index The index of the value to return.
* @return The bytes of the projections at the given index.
*/
com.google.protobuf.ByteString
getProjectionsBytes(int index);
/**
* .rpc.Key start_clustering_key = 6;
* @return Whether the startClusteringKey field is set.
*/
boolean hasStartClusteringKey();
/**
* .rpc.Key start_clustering_key = 6;
* @return The startClusteringKey.
*/
com.scalar.db.rpc.Key getStartClusteringKey();
/**
* .rpc.Key start_clustering_key = 6;
*/
com.scalar.db.rpc.KeyOrBuilder getStartClusteringKeyOrBuilder();
/**
* bool start_inclusive = 7;
* @return The startInclusive.
*/
boolean getStartInclusive();
/**
* .rpc.Key end_clustering_key = 8;
* @return Whether the endClusteringKey field is set.
*/
boolean hasEndClusteringKey();
/**
* .rpc.Key end_clustering_key = 8;
* @return The endClusteringKey.
*/
com.scalar.db.rpc.Key getEndClusteringKey();
/**
* .rpc.Key end_clustering_key = 8;
*/
com.scalar.db.rpc.KeyOrBuilder getEndClusteringKeyOrBuilder();
/**
* bool end_inclusive = 9;
* @return The endInclusive.
*/
boolean getEndInclusive();
/**
* repeated .rpc.Ordering orderings = 10;
*/
java.util.List
getOrderingsList();
/**
* repeated .rpc.Ordering orderings = 10;
*/
com.scalar.db.rpc.Ordering getOrderings(int index);
/**
* repeated .rpc.Ordering orderings = 10;
*/
int getOrderingsCount();
/**
* repeated .rpc.Ordering orderings = 10;
*/
java.util.List extends com.scalar.db.rpc.OrderingOrBuilder>
getOrderingsOrBuilderList();
/**
* repeated .rpc.Ordering orderings = 10;
*/
com.scalar.db.rpc.OrderingOrBuilder getOrderingsOrBuilder(
int index);
/**
* int32 limit = 11;
* @return The limit.
*/
int getLimit();
}