java.io.deephaven.proto.backplane.script.grpc.SignatureInformationOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of deephaven-proto-backplane-grpc Show documentation
Show all versions of deephaven-proto-backplane-grpc Show documentation
The Deephaven proto-backplane-grpc
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: deephaven/proto/console.proto
// Protobuf Java Version: 3.25.3
package io.deephaven.proto.backplane.script.grpc;
public interface SignatureInformationOrBuilder extends
// @@protoc_insertion_point(interface_extends:io.deephaven.proto.backplane.script.grpc.SignatureInformation)
com.google.protobuf.MessageOrBuilder {
/**
* string label = 1;
* @return The label.
*/
java.lang.String getLabel();
/**
* string label = 1;
* @return The bytes for label.
*/
com.google.protobuf.ByteString
getLabelBytes();
/**
* .io.deephaven.proto.backplane.script.grpc.MarkupContent documentation = 2;
* @return Whether the documentation field is set.
*/
boolean hasDocumentation();
/**
* .io.deephaven.proto.backplane.script.grpc.MarkupContent documentation = 2;
* @return The documentation.
*/
io.deephaven.proto.backplane.script.grpc.MarkupContent getDocumentation();
/**
* .io.deephaven.proto.backplane.script.grpc.MarkupContent documentation = 2;
*/
io.deephaven.proto.backplane.script.grpc.MarkupContentOrBuilder getDocumentationOrBuilder();
/**
* repeated .io.deephaven.proto.backplane.script.grpc.ParameterInformation parameters = 3;
*/
java.util.List
getParametersList();
/**
* repeated .io.deephaven.proto.backplane.script.grpc.ParameterInformation parameters = 3;
*/
io.deephaven.proto.backplane.script.grpc.ParameterInformation getParameters(int index);
/**
* repeated .io.deephaven.proto.backplane.script.grpc.ParameterInformation parameters = 3;
*/
int getParametersCount();
/**
* repeated .io.deephaven.proto.backplane.script.grpc.ParameterInformation parameters = 3;
*/
java.util.List extends io.deephaven.proto.backplane.script.grpc.ParameterInformationOrBuilder>
getParametersOrBuilderList();
/**
* repeated .io.deephaven.proto.backplane.script.grpc.ParameterInformation parameters = 3;
*/
io.deephaven.proto.backplane.script.grpc.ParameterInformationOrBuilder getParametersOrBuilder(
int index);
/**
* optional int32 active_parameter = 4;
* @return Whether the activeParameter field is set.
*/
boolean hasActiveParameter();
/**
* optional int32 active_parameter = 4;
* @return The activeParameter.
*/
int getActiveParameter();
}