com.scalar.db.rpc.AddNewColumnToTableRequestOrBuilder 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 AddNewColumnToTableRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:rpc.AddNewColumnToTableRequest)
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();
/**
* .rpc.DataType column_type = 4;
* @return The enum numeric value on the wire for columnType.
*/
int getColumnTypeValue();
/**
* .rpc.DataType column_type = 4;
* @return The columnType.
*/
com.scalar.db.rpc.DataType getColumnType();
}