org.polypheny.prism.PrimaryKeyOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of polypheny-jdbc-driver Show documentation
Show all versions of polypheny-jdbc-driver Show documentation
A standards-compliant JDBC driver for Polypheny-DB.
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: org/polypheny/prism/namespace_meta_responses.proto
package org.polypheny.prism;
public interface PrimaryKeyOrBuilder extends
// @@protoc_insertion_point(interface_extends:org.polypheny.prism.PrimaryKey)
com.google.protobuf.MessageOrBuilder {
/**
*
* The database where the primary key’s table is located.
*
*
* string database_name = 1;
* @return The databaseName.
*/
java.lang.String getDatabaseName();
/**
*
* The database where the primary key’s table is located.
*
*
* string database_name = 1;
* @return The bytes for databaseName.
*/
com.google.protobuf.ByteString
getDatabaseNameBytes();
/**
*
* The namespace or schema of the primary key’s table.
*
*
* string namespace_name = 2;
* @return The namespaceName.
*/
java.lang.String getNamespaceName();
/**
*
* The namespace or schema of the primary key’s table.
*
*
* string namespace_name = 2;
* @return The bytes for namespaceName.
*/
com.google.protobuf.ByteString
getNamespaceNameBytes();
/**
*
* The table with this primary key.
*
*
* string table_name = 3;
* @return The tableName.
*/
java.lang.String getTableName();
/**
*
* The table with this primary key.
*
*
* string table_name = 3;
* @return The bytes for tableName.
*/
com.google.protobuf.ByteString
getTableNameBytes();
/**
*
* The columns that make up the primary key.
*
*
* repeated .org.polypheny.prism.Column columns = 4;
*/
java.util.List
getColumnsList();
/**
*
* The columns that make up the primary key.
*
*
* repeated .org.polypheny.prism.Column columns = 4;
*/
org.polypheny.prism.Column getColumns(int index);
/**
*
* The columns that make up the primary key.
*
*
* repeated .org.polypheny.prism.Column columns = 4;
*/
int getColumnsCount();
/**
*
* The columns that make up the primary key.
*
*
* repeated .org.polypheny.prism.Column columns = 4;
*/
java.util.List extends org.polypheny.prism.ColumnOrBuilder>
getColumnsOrBuilderList();
/**
*
* The columns that make up the primary key.
*
*
* repeated .org.polypheny.prism.Column columns = 4;
*/
org.polypheny.prism.ColumnOrBuilder getColumnsOrBuilder(
int index);
}