org.polypheny.prism.EntitiesRequestOrBuilder 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_requests.proto
package org.polypheny.prism;
public interface EntitiesRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:org.polypheny.prism.EntitiesRequest)
com.google.protobuf.MessageOrBuilder {
/**
*
* The name of the namespace within which entities are to be searched.
*
*
* string namespace_name = 1;
* @return The namespaceName.
*/
java.lang.String getNamespaceName();
/**
*
* The name of the namespace within which entities are to be searched.
*
*
* string namespace_name = 1;
* @return The bytes for namespaceName.
*/
com.google.protobuf.ByteString
getNamespaceNameBytes();
/**
*
* An optional pattern for filtering the returned entities. This can help in narrowing down the list of entities based on a naming pattern or other criteria.
*
*
* optional string entity_pattern = 2;
* @return Whether the entityPattern field is set.
*/
boolean hasEntityPattern();
/**
*
* An optional pattern for filtering the returned entities. This can help in narrowing down the list of entities based on a naming pattern or other criteria.
*
*
* optional string entity_pattern = 2;
* @return The entityPattern.
*/
java.lang.String getEntityPattern();
/**
*
* An optional pattern for filtering the returned entities. This can help in narrowing down the list of entities based on a naming pattern or other criteria.
*
*
* optional string entity_pattern = 2;
* @return The bytes for entityPattern.
*/
com.google.protobuf.ByteString
getEntityPatternBytes();
}