org.polypheny.prism.ClientInfoPropertyMetaOrBuilder 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/meta_responses.proto
package org.polypheny.prism;
public interface ClientInfoPropertyMetaOrBuilder extends
// @@protoc_insertion_point(interface_extends:org.polypheny.prism.ClientInfoPropertyMeta)
com.google.protobuf.MessageOrBuilder {
/**
*
* The unique key identifier for the client property.
*
*
* string key = 1;
* @return The key.
*/
java.lang.String getKey();
/**
*
* The unique key identifier for the client property.
*
*
* string key = 1;
* @return The bytes for key.
*/
com.google.protobuf.ByteString
getKeyBytes();
/**
*
* The default value of the property.
*
*
* string default_value = 2;
* @return The defaultValue.
*/
java.lang.String getDefaultValue();
/**
*
* The default value of the property.
*
*
* string default_value = 2;
* @return The bytes for defaultValue.
*/
com.google.protobuf.ByteString
getDefaultValueBytes();
/**
*
* Maximum length of the property value. Useful for validation purposes.
*
*
* int32 maxlength = 3;
* @return The maxlength.
*/
int getMaxlength();
/**
*
* A brief description explaining the purpose or usage of the property.
*
*
* string description = 4;
* @return The description.
*/
java.lang.String getDescription();
/**
*
* A brief description explaining the purpose or usage of the property.
*
*
* string description = 4;
* @return The bytes for description.
*/
com.google.protobuf.ByteString
getDescriptionBytes();
}