com.scalar.db.rpc.DropIndexRequestOrBuilder Maven / Gradle / Ivy
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: scalardb.proto
package com.scalar.db.rpc;
public interface DropIndexRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:rpc.DropIndexRequest)
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();
/**
* string column_name = 3;
* @return The columnName.
*/
java.lang.String getColumnName();
/**
* string column_name = 3;
* @return The bytes for columnName.
*/
com.google.protobuf.ByteString
getColumnNameBytes();
/**
* bool if_exists = 4;
* @return The ifExists.
*/
boolean getIfExists();
}