java.io.deephaven.proto.backplane.script.grpc.FigureDescriptorOrBuilder 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 FigureDescriptorOrBuilder extends
// @@protoc_insertion_point(interface_extends:io.deephaven.proto.backplane.script.grpc.FigureDescriptor)
com.google.protobuf.MessageOrBuilder {
/**
* optional string title = 1;
* @return Whether the title field is set.
*/
boolean hasTitle();
/**
* optional string title = 1;
* @return The title.
*/
java.lang.String getTitle();
/**
* optional string title = 1;
* @return The bytes for title.
*/
com.google.protobuf.ByteString
getTitleBytes();
/**
* string title_font = 2;
* @return The titleFont.
*/
java.lang.String getTitleFont();
/**
* string title_font = 2;
* @return The bytes for titleFont.
*/
com.google.protobuf.ByteString
getTitleFontBytes();
/**
* string title_color = 3;
* @return The titleColor.
*/
java.lang.String getTitleColor();
/**
* string title_color = 3;
* @return The bytes for titleColor.
*/
com.google.protobuf.ByteString
getTitleColorBytes();
/**
* int64 update_interval = 7 [jstype = JS_STRING];
* @return The updateInterval.
*/
long getUpdateInterval();
/**
* int32 cols = 8;
* @return The cols.
*/
int getCols();
/**
* int32 rows = 9;
* @return The rows.
*/
int getRows();
/**
* repeated .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor charts = 10;
*/
java.util.List
getChartsList();
/**
* repeated .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor charts = 10;
*/
io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor getCharts(int index);
/**
* repeated .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor charts = 10;
*/
int getChartsCount();
/**
* repeated .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor charts = 10;
*/
java.util.List extends io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptorOrBuilder>
getChartsOrBuilderList();
/**
* repeated .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor charts = 10;
*/
io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptorOrBuilder getChartsOrBuilder(
int index);
/**
* repeated string errors = 13;
* @return A list containing the errors.
*/
java.util.List
getErrorsList();
/**
* repeated string errors = 13;
* @return The count of errors.
*/
int getErrorsCount();
/**
* repeated string errors = 13;
* @param index The index of the element to return.
* @return The errors at the given index.
*/
java.lang.String getErrors(int index);
/**
* repeated string errors = 13;
* @param index The index of the value to return.
* @return The bytes of the errors at the given index.
*/
com.google.protobuf.ByteString
getErrorsBytes(int index);
}