org.polypheny.prism.NamespaceOrBuilder 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 NamespaceOrBuilder extends
// @@protoc_insertion_point(interface_extends:org.polypheny.prism.Namespace)
com.google.protobuf.MessageOrBuilder {
/**
*
* The name of the namespace.
*
*
* string namespace_name = 1;
* @return The namespaceName.
*/
java.lang.String getNamespaceName();
/**
*
* The name of the namespace.
*
*
* string namespace_name = 1;
* @return The bytes for namespaceName.
*/
com.google.protobuf.ByteString
getNamespaceNameBytes();
/**
*
* Indicates if the namespace name is case sensitive.
*
*
* bool is_case_sensitive = 4;
* @return The isCaseSensitive.
*/
boolean getIsCaseSensitive();
/**
*
* An optional field providing the type of the namespace, if applicable.
*
*
* optional string namespace_type = 5;
* @return Whether the namespaceType field is set.
*/
boolean hasNamespaceType();
/**
*
* An optional field providing the type of the namespace, if applicable.
*
*
* optional string namespace_type = 5;
* @return The namespaceType.
*/
java.lang.String getNamespaceType();
/**
*
* An optional field providing the type of the namespace, if applicable.
*
*
* optional string namespace_type = 5;
* @return The bytes for namespaceType.
*/
com.google.protobuf.ByteString
getNamespaceTypeBytes();
}