java.io.deephaven.proto.backplane.grpc.CompareConditionOrBuilder 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/table.proto
// Protobuf Java Version: 3.25.3
package io.deephaven.proto.backplane.grpc;
public interface CompareConditionOrBuilder extends
// @@protoc_insertion_point(interface_extends:io.deephaven.proto.backplane.grpc.CompareCondition)
com.google.protobuf.MessageOrBuilder {
/**
* .io.deephaven.proto.backplane.grpc.CompareCondition.CompareOperation operation = 1;
* @return The enum numeric value on the wire for operation.
*/
int getOperationValue();
/**
* .io.deephaven.proto.backplane.grpc.CompareCondition.CompareOperation operation = 1;
* @return The operation.
*/
io.deephaven.proto.backplane.grpc.CompareCondition.CompareOperation getOperation();
/**
* .io.deephaven.proto.backplane.grpc.CaseSensitivity case_sensitivity = 2;
* @return The enum numeric value on the wire for caseSensitivity.
*/
int getCaseSensitivityValue();
/**
* .io.deephaven.proto.backplane.grpc.CaseSensitivity case_sensitivity = 2;
* @return The caseSensitivity.
*/
io.deephaven.proto.backplane.grpc.CaseSensitivity getCaseSensitivity();
/**
* .io.deephaven.proto.backplane.grpc.Value lhs = 3;
* @return Whether the lhs field is set.
*/
boolean hasLhs();
/**
* .io.deephaven.proto.backplane.grpc.Value lhs = 3;
* @return The lhs.
*/
io.deephaven.proto.backplane.grpc.Value getLhs();
/**
* .io.deephaven.proto.backplane.grpc.Value lhs = 3;
*/
io.deephaven.proto.backplane.grpc.ValueOrBuilder getLhsOrBuilder();
/**
* .io.deephaven.proto.backplane.grpc.Value rhs = 4;
* @return Whether the rhs field is set.
*/
boolean hasRhs();
/**
* .io.deephaven.proto.backplane.grpc.Value rhs = 4;
* @return The rhs.
*/
io.deephaven.proto.backplane.grpc.Value getRhs();
/**
* .io.deephaven.proto.backplane.grpc.Value rhs = 4;
*/
io.deephaven.proto.backplane.grpc.ValueOrBuilder getRhsOrBuilder();
}