java.io.deephaven.proto.backplane.script.grpc.GetDiagnosticRequestOrBuilder 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 GetDiagnosticRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:io.deephaven.proto.backplane.script.grpc.GetDiagnosticRequest)
com.google.protobuf.MessageOrBuilder {
/**
* .io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier text_document = 1;
* @return Whether the textDocument field is set.
*/
boolean hasTextDocument();
/**
* .io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier text_document = 1;
* @return The textDocument.
*/
io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier getTextDocument();
/**
* .io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier text_document = 1;
*/
io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifierOrBuilder getTextDocumentOrBuilder();
/**
* optional string identifier = 2;
* @return Whether the identifier field is set.
*/
boolean hasIdentifier();
/**
* optional string identifier = 2;
* @return The identifier.
*/
java.lang.String getIdentifier();
/**
* optional string identifier = 2;
* @return The bytes for identifier.
*/
com.google.protobuf.ByteString
getIdentifierBytes();
/**
* optional string previous_result_id = 3;
* @return Whether the previousResultId field is set.
*/
boolean hasPreviousResultId();
/**
* optional string previous_result_id = 3;
* @return The previousResultId.
*/
java.lang.String getPreviousResultId();
/**
* optional string previous_result_id = 3;
* @return The bytes for previousResultId.
*/
com.google.protobuf.ByteString
getPreviousResultIdBytes();
}