org.polypheny.prism.NamedParametersOrBuilder 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/statement_requests.proto
package org.polypheny.prism;
public interface NamedParametersOrBuilder extends
// @@protoc_insertion_point(interface_extends:org.polypheny.prism.NamedParameters)
com.google.protobuf.MessageOrBuilder {
/**
*
* Map of parameter names to their corresponding values.
*
*
* map<string, .org.polypheny.prism.ProtoValue> parameters = 1;
*/
int getParametersCount();
/**
*
* Map of parameter names to their corresponding values.
*
*
* map<string, .org.polypheny.prism.ProtoValue> parameters = 1;
*/
boolean containsParameters(
java.lang.String key);
/**
* Use {@link #getParametersMap()} instead.
*/
@java.lang.Deprecated
java.util.Map
getParameters();
/**
*
* Map of parameter names to their corresponding values.
*
*
* map<string, .org.polypheny.prism.ProtoValue> parameters = 1;
*/
java.util.Map
getParametersMap();
/**
*
* Map of parameter names to their corresponding values.
*
*
* map<string, .org.polypheny.prism.ProtoValue> parameters = 1;
*/
/* nullable */
org.polypheny.prism.ProtoValue getParametersOrDefault(
java.lang.String key,
/* nullable */
org.polypheny.prism.ProtoValue defaultValue);
/**
*
* Map of parameter names to their corresponding values.
*
*
* map<string, .org.polypheny.prism.ProtoValue> parameters = 1;
*/
org.polypheny.prism.ProtoValue getParametersOrThrow(
java.lang.String key);
}