java.io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest 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
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: deephaven_core/proto/table.proto
// Protobuf Java Version: 3.25.3
package io.deephaven.proto.backplane.grpc;
/**
* Protobuf type {@code io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest}
*/
public final class RangeJoinTablesRequest extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest)
RangeJoinTablesRequestOrBuilder {
private static final long serialVersionUID = 0L;
// Use RangeJoinTablesRequest.newBuilder() to construct.
private RangeJoinTablesRequest(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private RangeJoinTablesRequest() {
exactMatchColumns_ =
com.google.protobuf.LazyStringArrayList.emptyList();
leftStartColumn_ = "";
rangeStartRule_ = 0;
rightRangeColumn_ = "";
rangeEndRule_ = 0;
leftEndColumn_ = "";
aggregations_ = java.util.Collections.emptyList();
rangeMatch_ = "";
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(
UnusedPrivateParameter unused) {
return new RangeJoinTablesRequest();
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return io.deephaven.proto.backplane.grpc.Table.internal_static_io_deephaven_proto_backplane_grpc_RangeJoinTablesRequest_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return io.deephaven.proto.backplane.grpc.Table.internal_static_io_deephaven_proto_backplane_grpc_RangeJoinTablesRequest_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.class, io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.Builder.class);
}
/**
* Protobuf enum {@code io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.RangeStartRule}
*/
public enum RangeStartRule
implements com.google.protobuf.ProtocolMessageEnum {
/**
* START_UNSPECIFIED = 0;
*/
START_UNSPECIFIED(0),
/**
* LESS_THAN = 1;
*/
LESS_THAN(1),
/**
* LESS_THAN_OR_EQUAL = 2;
*/
LESS_THAN_OR_EQUAL(2),
/**
* LESS_THAN_OR_EQUAL_ALLOW_PRECEDING = 3;
*/
LESS_THAN_OR_EQUAL_ALLOW_PRECEDING(3),
UNRECOGNIZED(-1),
;
/**
* START_UNSPECIFIED = 0;
*/
public static final int START_UNSPECIFIED_VALUE = 0;
/**
* LESS_THAN = 1;
*/
public static final int LESS_THAN_VALUE = 1;
/**
* LESS_THAN_OR_EQUAL = 2;
*/
public static final int LESS_THAN_OR_EQUAL_VALUE = 2;
/**
* LESS_THAN_OR_EQUAL_ALLOW_PRECEDING = 3;
*/
public static final int LESS_THAN_OR_EQUAL_ALLOW_PRECEDING_VALUE = 3;
public final int getNumber() {
if (this == UNRECOGNIZED) {
throw new java.lang.IllegalArgumentException(
"Can't get the number of an unknown enum value.");
}
return value;
}
/**
* @param value The numeric wire value of the corresponding enum entry.
* @return The enum associated with the given numeric wire value.
* @deprecated Use {@link #forNumber(int)} instead.
*/
@java.lang.Deprecated
public static RangeStartRule valueOf(int value) {
return forNumber(value);
}
/**
* @param value The numeric wire value of the corresponding enum entry.
* @return The enum associated with the given numeric wire value.
*/
public static RangeStartRule forNumber(int value) {
switch (value) {
case 0: return START_UNSPECIFIED;
case 1: return LESS_THAN;
case 2: return LESS_THAN_OR_EQUAL;
case 3: return LESS_THAN_OR_EQUAL_ALLOW_PRECEDING;
default: return null;
}
}
public static com.google.protobuf.Internal.EnumLiteMap
internalGetValueMap() {
return internalValueMap;
}
private static final com.google.protobuf.Internal.EnumLiteMap<
RangeStartRule> internalValueMap =
new com.google.protobuf.Internal.EnumLiteMap() {
public RangeStartRule findValueByNumber(int number) {
return RangeStartRule.forNumber(number);
}
};
public final com.google.protobuf.Descriptors.EnumValueDescriptor
getValueDescriptor() {
if (this == UNRECOGNIZED) {
throw new java.lang.IllegalStateException(
"Can't get the descriptor of an unrecognized enum value.");
}
return getDescriptor().getValues().get(ordinal());
}
public final com.google.protobuf.Descriptors.EnumDescriptor
getDescriptorForType() {
return getDescriptor();
}
public static final com.google.protobuf.Descriptors.EnumDescriptor
getDescriptor() {
return io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.getDescriptor().getEnumTypes().get(0);
}
private static final RangeStartRule[] VALUES = values();
public static RangeStartRule valueOf(
com.google.protobuf.Descriptors.EnumValueDescriptor desc) {
if (desc.getType() != getDescriptor()) {
throw new java.lang.IllegalArgumentException(
"EnumValueDescriptor is not for this type.");
}
if (desc.getIndex() == -1) {
return UNRECOGNIZED;
}
return VALUES[desc.getIndex()];
}
private final int value;
private RangeStartRule(int value) {
this.value = value;
}
// @@protoc_insertion_point(enum_scope:io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.RangeStartRule)
}
/**
* Protobuf enum {@code io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.RangeEndRule}
*/
public enum RangeEndRule
implements com.google.protobuf.ProtocolMessageEnum {
/**
* END_UNSPECIFIED = 0;
*/
END_UNSPECIFIED(0),
/**
* GREATER_THAN = 1;
*/
GREATER_THAN(1),
/**
* GREATER_THAN_OR_EQUAL = 2;
*/
GREATER_THAN_OR_EQUAL(2),
/**
* GREATER_THAN_OR_EQUAL_ALLOW_FOLLOWING = 3;
*/
GREATER_THAN_OR_EQUAL_ALLOW_FOLLOWING(3),
UNRECOGNIZED(-1),
;
/**
* END_UNSPECIFIED = 0;
*/
public static final int END_UNSPECIFIED_VALUE = 0;
/**
* GREATER_THAN = 1;
*/
public static final int GREATER_THAN_VALUE = 1;
/**
* GREATER_THAN_OR_EQUAL = 2;
*/
public static final int GREATER_THAN_OR_EQUAL_VALUE = 2;
/**
* GREATER_THAN_OR_EQUAL_ALLOW_FOLLOWING = 3;
*/
public static final int GREATER_THAN_OR_EQUAL_ALLOW_FOLLOWING_VALUE = 3;
public final int getNumber() {
if (this == UNRECOGNIZED) {
throw new java.lang.IllegalArgumentException(
"Can't get the number of an unknown enum value.");
}
return value;
}
/**
* @param value The numeric wire value of the corresponding enum entry.
* @return The enum associated with the given numeric wire value.
* @deprecated Use {@link #forNumber(int)} instead.
*/
@java.lang.Deprecated
public static RangeEndRule valueOf(int value) {
return forNumber(value);
}
/**
* @param value The numeric wire value of the corresponding enum entry.
* @return The enum associated with the given numeric wire value.
*/
public static RangeEndRule forNumber(int value) {
switch (value) {
case 0: return END_UNSPECIFIED;
case 1: return GREATER_THAN;
case 2: return GREATER_THAN_OR_EQUAL;
case 3: return GREATER_THAN_OR_EQUAL_ALLOW_FOLLOWING;
default: return null;
}
}
public static com.google.protobuf.Internal.EnumLiteMap
internalGetValueMap() {
return internalValueMap;
}
private static final com.google.protobuf.Internal.EnumLiteMap<
RangeEndRule> internalValueMap =
new com.google.protobuf.Internal.EnumLiteMap() {
public RangeEndRule findValueByNumber(int number) {
return RangeEndRule.forNumber(number);
}
};
public final com.google.protobuf.Descriptors.EnumValueDescriptor
getValueDescriptor() {
if (this == UNRECOGNIZED) {
throw new java.lang.IllegalStateException(
"Can't get the descriptor of an unrecognized enum value.");
}
return getDescriptor().getValues().get(ordinal());
}
public final com.google.protobuf.Descriptors.EnumDescriptor
getDescriptorForType() {
return getDescriptor();
}
public static final com.google.protobuf.Descriptors.EnumDescriptor
getDescriptor() {
return io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.getDescriptor().getEnumTypes().get(1);
}
private static final RangeEndRule[] VALUES = values();
public static RangeEndRule valueOf(
com.google.protobuf.Descriptors.EnumValueDescriptor desc) {
if (desc.getType() != getDescriptor()) {
throw new java.lang.IllegalArgumentException(
"EnumValueDescriptor is not for this type.");
}
if (desc.getIndex() == -1) {
return UNRECOGNIZED;
}
return VALUES[desc.getIndex()];
}
private final int value;
private RangeEndRule(int value) {
this.value = value;
}
// @@protoc_insertion_point(enum_scope:io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.RangeEndRule)
}
private int bitField0_;
public static final int RESULT_ID_FIELD_NUMBER = 1;
private io.deephaven.proto.backplane.grpc.Ticket resultId_;
/**
* .io.deephaven.proto.backplane.grpc.Ticket result_id = 1;
* @return Whether the resultId field is set.
*/
@java.lang.Override
public boolean hasResultId() {
return ((bitField0_ & 0x00000001) != 0);
}
/**
* .io.deephaven.proto.backplane.grpc.Ticket result_id = 1;
* @return The resultId.
*/
@java.lang.Override
public io.deephaven.proto.backplane.grpc.Ticket getResultId() {
return resultId_ == null ? io.deephaven.proto.backplane.grpc.Ticket.getDefaultInstance() : resultId_;
}
/**
* .io.deephaven.proto.backplane.grpc.Ticket result_id = 1;
*/
@java.lang.Override
public io.deephaven.proto.backplane.grpc.TicketOrBuilder getResultIdOrBuilder() {
return resultId_ == null ? io.deephaven.proto.backplane.grpc.Ticket.getDefaultInstance() : resultId_;
}
public static final int LEFT_ID_FIELD_NUMBER = 2;
private io.deephaven.proto.backplane.grpc.TableReference leftId_;
/**
* .io.deephaven.proto.backplane.grpc.TableReference left_id = 2;
* @return Whether the leftId field is set.
*/
@java.lang.Override
public boolean hasLeftId() {
return ((bitField0_ & 0x00000002) != 0);
}
/**
* .io.deephaven.proto.backplane.grpc.TableReference left_id = 2;
* @return The leftId.
*/
@java.lang.Override
public io.deephaven.proto.backplane.grpc.TableReference getLeftId() {
return leftId_ == null ? io.deephaven.proto.backplane.grpc.TableReference.getDefaultInstance() : leftId_;
}
/**
* .io.deephaven.proto.backplane.grpc.TableReference left_id = 2;
*/
@java.lang.Override
public io.deephaven.proto.backplane.grpc.TableReferenceOrBuilder getLeftIdOrBuilder() {
return leftId_ == null ? io.deephaven.proto.backplane.grpc.TableReference.getDefaultInstance() : leftId_;
}
public static final int RIGHT_ID_FIELD_NUMBER = 3;
private io.deephaven.proto.backplane.grpc.TableReference rightId_;
/**
* .io.deephaven.proto.backplane.grpc.TableReference right_id = 3;
* @return Whether the rightId field is set.
*/
@java.lang.Override
public boolean hasRightId() {
return ((bitField0_ & 0x00000004) != 0);
}
/**
* .io.deephaven.proto.backplane.grpc.TableReference right_id = 3;
* @return The rightId.
*/
@java.lang.Override
public io.deephaven.proto.backplane.grpc.TableReference getRightId() {
return rightId_ == null ? io.deephaven.proto.backplane.grpc.TableReference.getDefaultInstance() : rightId_;
}
/**
* .io.deephaven.proto.backplane.grpc.TableReference right_id = 3;
*/
@java.lang.Override
public io.deephaven.proto.backplane.grpc.TableReferenceOrBuilder getRightIdOrBuilder() {
return rightId_ == null ? io.deephaven.proto.backplane.grpc.TableReference.getDefaultInstance() : rightId_;
}
public static final int EXACT_MATCH_COLUMNS_FIELD_NUMBER = 4;
@SuppressWarnings("serial")
private com.google.protobuf.LazyStringArrayList exactMatchColumns_ =
com.google.protobuf.LazyStringArrayList.emptyList();
/**
* repeated string exact_match_columns = 4;
* @return A list containing the exactMatchColumns.
*/
public com.google.protobuf.ProtocolStringList
getExactMatchColumnsList() {
return exactMatchColumns_;
}
/**
* repeated string exact_match_columns = 4;
* @return The count of exactMatchColumns.
*/
public int getExactMatchColumnsCount() {
return exactMatchColumns_.size();
}
/**
* repeated string exact_match_columns = 4;
* @param index The index of the element to return.
* @return The exactMatchColumns at the given index.
*/
public java.lang.String getExactMatchColumns(int index) {
return exactMatchColumns_.get(index);
}
/**
* repeated string exact_match_columns = 4;
* @param index The index of the value to return.
* @return The bytes of the exactMatchColumns at the given index.
*/
public com.google.protobuf.ByteString
getExactMatchColumnsBytes(int index) {
return exactMatchColumns_.getByteString(index);
}
public static final int LEFT_START_COLUMN_FIELD_NUMBER = 5;
@SuppressWarnings("serial")
private volatile java.lang.Object leftStartColumn_ = "";
/**
*
* Provide detailed range match parameters for the range join (alternative to providing `range_match`)
*
*
* string left_start_column = 5;
* @return The leftStartColumn.
*/
@java.lang.Override
public java.lang.String getLeftStartColumn() {
java.lang.Object ref = leftStartColumn_;
if (ref instanceof java.lang.String) {
return (java.lang.String) ref;
} else {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
leftStartColumn_ = s;
return s;
}
}
/**
*
* Provide detailed range match parameters for the range join (alternative to providing `range_match`)
*
*
* string left_start_column = 5;
* @return The bytes for leftStartColumn.
*/
@java.lang.Override
public com.google.protobuf.ByteString
getLeftStartColumnBytes() {
java.lang.Object ref = leftStartColumn_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
leftStartColumn_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int RANGE_START_RULE_FIELD_NUMBER = 6;
private int rangeStartRule_ = 0;
/**
* .io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.RangeStartRule range_start_rule = 6;
* @return The enum numeric value on the wire for rangeStartRule.
*/
@java.lang.Override public int getRangeStartRuleValue() {
return rangeStartRule_;
}
/**
* .io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.RangeStartRule range_start_rule = 6;
* @return The rangeStartRule.
*/
@java.lang.Override public io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.RangeStartRule getRangeStartRule() {
io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.RangeStartRule result = io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.RangeStartRule.forNumber(rangeStartRule_);
return result == null ? io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.RangeStartRule.UNRECOGNIZED : result;
}
public static final int RIGHT_RANGE_COLUMN_FIELD_NUMBER = 7;
@SuppressWarnings("serial")
private volatile java.lang.Object rightRangeColumn_ = "";
/**
* string right_range_column = 7;
* @return The rightRangeColumn.
*/
@java.lang.Override
public java.lang.String getRightRangeColumn() {
java.lang.Object ref = rightRangeColumn_;
if (ref instanceof java.lang.String) {
return (java.lang.String) ref;
} else {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
rightRangeColumn_ = s;
return s;
}
}
/**
* string right_range_column = 7;
* @return The bytes for rightRangeColumn.
*/
@java.lang.Override
public com.google.protobuf.ByteString
getRightRangeColumnBytes() {
java.lang.Object ref = rightRangeColumn_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
rightRangeColumn_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int RANGE_END_RULE_FIELD_NUMBER = 8;
private int rangeEndRule_ = 0;
/**
* .io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.RangeEndRule range_end_rule = 8;
* @return The enum numeric value on the wire for rangeEndRule.
*/
@java.lang.Override public int getRangeEndRuleValue() {
return rangeEndRule_;
}
/**
* .io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.RangeEndRule range_end_rule = 8;
* @return The rangeEndRule.
*/
@java.lang.Override public io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.RangeEndRule getRangeEndRule() {
io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.RangeEndRule result = io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.RangeEndRule.forNumber(rangeEndRule_);
return result == null ? io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.RangeEndRule.UNRECOGNIZED : result;
}
public static final int LEFT_END_COLUMN_FIELD_NUMBER = 9;
@SuppressWarnings("serial")
private volatile java.lang.Object leftEndColumn_ = "";
/**
* string left_end_column = 9;
* @return The leftEndColumn.
*/
@java.lang.Override
public java.lang.String getLeftEndColumn() {
java.lang.Object ref = leftEndColumn_;
if (ref instanceof java.lang.String) {
return (java.lang.String) ref;
} else {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
leftEndColumn_ = s;
return s;
}
}
/**
* string left_end_column = 9;
* @return The bytes for leftEndColumn.
*/
@java.lang.Override
public com.google.protobuf.ByteString
getLeftEndColumnBytes() {
java.lang.Object ref = leftEndColumn_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
leftEndColumn_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int AGGREGATIONS_FIELD_NUMBER = 10;
@SuppressWarnings("serial")
private java.util.List aggregations_;
/**
* repeated .io.deephaven.proto.backplane.grpc.Aggregation aggregations = 10;
*/
@java.lang.Override
public java.util.List getAggregationsList() {
return aggregations_;
}
/**
* repeated .io.deephaven.proto.backplane.grpc.Aggregation aggregations = 10;
*/
@java.lang.Override
public java.util.List extends io.deephaven.proto.backplane.grpc.AggregationOrBuilder>
getAggregationsOrBuilderList() {
return aggregations_;
}
/**
* repeated .io.deephaven.proto.backplane.grpc.Aggregation aggregations = 10;
*/
@java.lang.Override
public int getAggregationsCount() {
return aggregations_.size();
}
/**
* repeated .io.deephaven.proto.backplane.grpc.Aggregation aggregations = 10;
*/
@java.lang.Override
public io.deephaven.proto.backplane.grpc.Aggregation getAggregations(int index) {
return aggregations_.get(index);
}
/**
* repeated .io.deephaven.proto.backplane.grpc.Aggregation aggregations = 10;
*/
@java.lang.Override
public io.deephaven.proto.backplane.grpc.AggregationOrBuilder getAggregationsOrBuilder(
int index) {
return aggregations_.get(index);
}
public static final int RANGE_MATCH_FIELD_NUMBER = 11;
@SuppressWarnings("serial")
private volatile java.lang.Object rangeMatch_ = "";
/**
*
* Specifies the range match parameters as a parseable string. Providing `range_match` in the GRPC call is the
* alternative to detailed range match parameters provided in the `left_start_column`, `range_start_rule`,
* `right_range_column`, `range_end_rule`, and `left_end_column` fields.
*
*
* string range_match = 11;
* @return The rangeMatch.
*/
@java.lang.Override
public java.lang.String getRangeMatch() {
java.lang.Object ref = rangeMatch_;
if (ref instanceof java.lang.String) {
return (java.lang.String) ref;
} else {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
rangeMatch_ = s;
return s;
}
}
/**
*
* Specifies the range match parameters as a parseable string. Providing `range_match` in the GRPC call is the
* alternative to detailed range match parameters provided in the `left_start_column`, `range_start_rule`,
* `right_range_column`, `range_end_rule`, and `left_end_column` fields.
*
*
* string range_match = 11;
* @return The bytes for rangeMatch.
*/
@java.lang.Override
public com.google.protobuf.ByteString
getRangeMatchBytes() {
java.lang.Object ref = rangeMatch_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
rangeMatch_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
private byte memoizedIsInitialized = -1;
@java.lang.Override
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized == 1) return true;
if (isInitialized == 0) return false;
memoizedIsInitialized = 1;
return true;
}
@java.lang.Override
public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
if (((bitField0_ & 0x00000001) != 0)) {
output.writeMessage(1, getResultId());
}
if (((bitField0_ & 0x00000002) != 0)) {
output.writeMessage(2, getLeftId());
}
if (((bitField0_ & 0x00000004) != 0)) {
output.writeMessage(3, getRightId());
}
for (int i = 0; i < exactMatchColumns_.size(); i++) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 4, exactMatchColumns_.getRaw(i));
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(leftStartColumn_)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 5, leftStartColumn_);
}
if (rangeStartRule_ != io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.RangeStartRule.START_UNSPECIFIED.getNumber()) {
output.writeEnum(6, rangeStartRule_);
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(rightRangeColumn_)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 7, rightRangeColumn_);
}
if (rangeEndRule_ != io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.RangeEndRule.END_UNSPECIFIED.getNumber()) {
output.writeEnum(8, rangeEndRule_);
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(leftEndColumn_)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 9, leftEndColumn_);
}
for (int i = 0; i < aggregations_.size(); i++) {
output.writeMessage(10, aggregations_.get(i));
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(rangeMatch_)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 11, rangeMatch_);
}
getUnknownFields().writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (((bitField0_ & 0x00000001) != 0)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(1, getResultId());
}
if (((bitField0_ & 0x00000002) != 0)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(2, getLeftId());
}
if (((bitField0_ & 0x00000004) != 0)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(3, getRightId());
}
{
int dataSize = 0;
for (int i = 0; i < exactMatchColumns_.size(); i++) {
dataSize += computeStringSizeNoTag(exactMatchColumns_.getRaw(i));
}
size += dataSize;
size += 1 * getExactMatchColumnsList().size();
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(leftStartColumn_)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(5, leftStartColumn_);
}
if (rangeStartRule_ != io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.RangeStartRule.START_UNSPECIFIED.getNumber()) {
size += com.google.protobuf.CodedOutputStream
.computeEnumSize(6, rangeStartRule_);
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(rightRangeColumn_)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(7, rightRangeColumn_);
}
if (rangeEndRule_ != io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.RangeEndRule.END_UNSPECIFIED.getNumber()) {
size += com.google.protobuf.CodedOutputStream
.computeEnumSize(8, rangeEndRule_);
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(leftEndColumn_)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(9, leftEndColumn_);
}
for (int i = 0; i < aggregations_.size(); i++) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(10, aggregations_.get(i));
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(rangeMatch_)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(11, rangeMatch_);
}
size += getUnknownFields().getSerializedSize();
memoizedSize = size;
return size;
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest)) {
return super.equals(obj);
}
io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest other = (io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest) obj;
if (hasResultId() != other.hasResultId()) return false;
if (hasResultId()) {
if (!getResultId()
.equals(other.getResultId())) return false;
}
if (hasLeftId() != other.hasLeftId()) return false;
if (hasLeftId()) {
if (!getLeftId()
.equals(other.getLeftId())) return false;
}
if (hasRightId() != other.hasRightId()) return false;
if (hasRightId()) {
if (!getRightId()
.equals(other.getRightId())) return false;
}
if (!getExactMatchColumnsList()
.equals(other.getExactMatchColumnsList())) return false;
if (!getLeftStartColumn()
.equals(other.getLeftStartColumn())) return false;
if (rangeStartRule_ != other.rangeStartRule_) return false;
if (!getRightRangeColumn()
.equals(other.getRightRangeColumn())) return false;
if (rangeEndRule_ != other.rangeEndRule_) return false;
if (!getLeftEndColumn()
.equals(other.getLeftEndColumn())) return false;
if (!getAggregationsList()
.equals(other.getAggregationsList())) return false;
if (!getRangeMatch()
.equals(other.getRangeMatch())) return false;
if (!getUnknownFields().equals(other.getUnknownFields())) return false;
return true;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
if (hasResultId()) {
hash = (37 * hash) + RESULT_ID_FIELD_NUMBER;
hash = (53 * hash) + getResultId().hashCode();
}
if (hasLeftId()) {
hash = (37 * hash) + LEFT_ID_FIELD_NUMBER;
hash = (53 * hash) + getLeftId().hashCode();
}
if (hasRightId()) {
hash = (37 * hash) + RIGHT_ID_FIELD_NUMBER;
hash = (53 * hash) + getRightId().hashCode();
}
if (getExactMatchColumnsCount() > 0) {
hash = (37 * hash) + EXACT_MATCH_COLUMNS_FIELD_NUMBER;
hash = (53 * hash) + getExactMatchColumnsList().hashCode();
}
hash = (37 * hash) + LEFT_START_COLUMN_FIELD_NUMBER;
hash = (53 * hash) + getLeftStartColumn().hashCode();
hash = (37 * hash) + RANGE_START_RULE_FIELD_NUMBER;
hash = (53 * hash) + rangeStartRule_;
hash = (37 * hash) + RIGHT_RANGE_COLUMN_FIELD_NUMBER;
hash = (53 * hash) + getRightRangeColumn().hashCode();
hash = (37 * hash) + RANGE_END_RULE_FIELD_NUMBER;
hash = (53 * hash) + rangeEndRule_;
hash = (37 * hash) + LEFT_END_COLUMN_FIELD_NUMBER;
hash = (53 * hash) + getLeftEndColumn().hashCode();
if (getAggregationsCount() > 0) {
hash = (37 * hash) + AGGREGATIONS_FIELD_NUMBER;
hash = (53 * hash) + getAggregationsList().hashCode();
}
hash = (37 * hash) + RANGE_MATCH_FIELD_NUMBER;
hash = (53 * hash) + getRangeMatch().hashCode();
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
public static io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input, extensionRegistry);
}
public static io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
@java.lang.Override
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder() {
return DEFAULT_INSTANCE.toBuilder();
}
public static Builder newBuilder(io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest prototype) {
return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
}
@java.lang.Override
public Builder toBuilder() {
return this == DEFAULT_INSTANCE
? new Builder() : new Builder().mergeFrom(this);
}
@java.lang.Override
protected Builder newBuilderForType(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
* Protobuf type {@code io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest)
io.deephaven.proto.backplane.grpc.RangeJoinTablesRequestOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return io.deephaven.proto.backplane.grpc.Table.internal_static_io_deephaven_proto_backplane_grpc_RangeJoinTablesRequest_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return io.deephaven.proto.backplane.grpc.Table.internal_static_io_deephaven_proto_backplane_grpc_RangeJoinTablesRequest_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.class, io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.Builder.class);
}
// Construct using io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
getResultIdFieldBuilder();
getLeftIdFieldBuilder();
getRightIdFieldBuilder();
getAggregationsFieldBuilder();
}
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
resultId_ = null;
if (resultIdBuilder_ != null) {
resultIdBuilder_.dispose();
resultIdBuilder_ = null;
}
leftId_ = null;
if (leftIdBuilder_ != null) {
leftIdBuilder_.dispose();
leftIdBuilder_ = null;
}
rightId_ = null;
if (rightIdBuilder_ != null) {
rightIdBuilder_.dispose();
rightIdBuilder_ = null;
}
exactMatchColumns_ =
com.google.protobuf.LazyStringArrayList.emptyList();
leftStartColumn_ = "";
rangeStartRule_ = 0;
rightRangeColumn_ = "";
rangeEndRule_ = 0;
leftEndColumn_ = "";
if (aggregationsBuilder_ == null) {
aggregations_ = java.util.Collections.emptyList();
} else {
aggregations_ = null;
aggregationsBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000200);
rangeMatch_ = "";
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return io.deephaven.proto.backplane.grpc.Table.internal_static_io_deephaven_proto_backplane_grpc_RangeJoinTablesRequest_descriptor;
}
@java.lang.Override
public io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest getDefaultInstanceForType() {
return io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.getDefaultInstance();
}
@java.lang.Override
public io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest build() {
io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest buildPartial() {
io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest result = new io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest(this);
buildPartialRepeatedFields(result);
if (bitField0_ != 0) { buildPartial0(result); }
onBuilt();
return result;
}
private void buildPartialRepeatedFields(io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest result) {
if (aggregationsBuilder_ == null) {
if (((bitField0_ & 0x00000200) != 0)) {
aggregations_ = java.util.Collections.unmodifiableList(aggregations_);
bitField0_ = (bitField0_ & ~0x00000200);
}
result.aggregations_ = aggregations_;
} else {
result.aggregations_ = aggregationsBuilder_.build();
}
}
private void buildPartial0(io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest result) {
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000001) != 0)) {
result.resultId_ = resultIdBuilder_ == null
? resultId_
: resultIdBuilder_.build();
to_bitField0_ |= 0x00000001;
}
if (((from_bitField0_ & 0x00000002) != 0)) {
result.leftId_ = leftIdBuilder_ == null
? leftId_
: leftIdBuilder_.build();
to_bitField0_ |= 0x00000002;
}
if (((from_bitField0_ & 0x00000004) != 0)) {
result.rightId_ = rightIdBuilder_ == null
? rightId_
: rightIdBuilder_.build();
to_bitField0_ |= 0x00000004;
}
if (((from_bitField0_ & 0x00000008) != 0)) {
exactMatchColumns_.makeImmutable();
result.exactMatchColumns_ = exactMatchColumns_;
}
if (((from_bitField0_ & 0x00000010) != 0)) {
result.leftStartColumn_ = leftStartColumn_;
}
if (((from_bitField0_ & 0x00000020) != 0)) {
result.rangeStartRule_ = rangeStartRule_;
}
if (((from_bitField0_ & 0x00000040) != 0)) {
result.rightRangeColumn_ = rightRangeColumn_;
}
if (((from_bitField0_ & 0x00000080) != 0)) {
result.rangeEndRule_ = rangeEndRule_;
}
if (((from_bitField0_ & 0x00000100) != 0)) {
result.leftEndColumn_ = leftEndColumn_;
}
if (((from_bitField0_ & 0x00000400) != 0)) {
result.rangeMatch_ = rangeMatch_;
}
result.bitField0_ |= to_bitField0_;
}
@java.lang.Override
public Builder clone() {
return super.clone();
}
@java.lang.Override
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return super.setField(field, value);
}
@java.lang.Override
public Builder clearField(
com.google.protobuf.Descriptors.FieldDescriptor field) {
return super.clearField(field);
}
@java.lang.Override
public Builder clearOneof(
com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return super.clearOneof(oneof);
}
@java.lang.Override
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
int index, java.lang.Object value) {
return super.setRepeatedField(field, index, value);
}
@java.lang.Override
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return super.addRepeatedField(field, value);
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest) {
return mergeFrom((io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest other) {
if (other == io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.getDefaultInstance()) return this;
if (other.hasResultId()) {
mergeResultId(other.getResultId());
}
if (other.hasLeftId()) {
mergeLeftId(other.getLeftId());
}
if (other.hasRightId()) {
mergeRightId(other.getRightId());
}
if (!other.exactMatchColumns_.isEmpty()) {
if (exactMatchColumns_.isEmpty()) {
exactMatchColumns_ = other.exactMatchColumns_;
bitField0_ |= 0x00000008;
} else {
ensureExactMatchColumnsIsMutable();
exactMatchColumns_.addAll(other.exactMatchColumns_);
}
onChanged();
}
if (!other.getLeftStartColumn().isEmpty()) {
leftStartColumn_ = other.leftStartColumn_;
bitField0_ |= 0x00000010;
onChanged();
}
if (other.rangeStartRule_ != 0) {
setRangeStartRuleValue(other.getRangeStartRuleValue());
}
if (!other.getRightRangeColumn().isEmpty()) {
rightRangeColumn_ = other.rightRangeColumn_;
bitField0_ |= 0x00000040;
onChanged();
}
if (other.rangeEndRule_ != 0) {
setRangeEndRuleValue(other.getRangeEndRuleValue());
}
if (!other.getLeftEndColumn().isEmpty()) {
leftEndColumn_ = other.leftEndColumn_;
bitField0_ |= 0x00000100;
onChanged();
}
if (aggregationsBuilder_ == null) {
if (!other.aggregations_.isEmpty()) {
if (aggregations_.isEmpty()) {
aggregations_ = other.aggregations_;
bitField0_ = (bitField0_ & ~0x00000200);
} else {
ensureAggregationsIsMutable();
aggregations_.addAll(other.aggregations_);
}
onChanged();
}
} else {
if (!other.aggregations_.isEmpty()) {
if (aggregationsBuilder_.isEmpty()) {
aggregationsBuilder_.dispose();
aggregationsBuilder_ = null;
aggregations_ = other.aggregations_;
bitField0_ = (bitField0_ & ~0x00000200);
aggregationsBuilder_ =
com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ?
getAggregationsFieldBuilder() : null;
} else {
aggregationsBuilder_.addAllMessages(other.aggregations_);
}
}
}
if (!other.getRangeMatch().isEmpty()) {
rangeMatch_ = other.rangeMatch_;
bitField0_ |= 0x00000400;
onChanged();
}
this.mergeUnknownFields(other.getUnknownFields());
onChanged();
return this;
}
@java.lang.Override
public final boolean isInitialized() {
return true;
}
@java.lang.Override
public Builder mergeFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
case 10: {
input.readMessage(
getResultIdFieldBuilder().getBuilder(),
extensionRegistry);
bitField0_ |= 0x00000001;
break;
} // case 10
case 18: {
input.readMessage(
getLeftIdFieldBuilder().getBuilder(),
extensionRegistry);
bitField0_ |= 0x00000002;
break;
} // case 18
case 26: {
input.readMessage(
getRightIdFieldBuilder().getBuilder(),
extensionRegistry);
bitField0_ |= 0x00000004;
break;
} // case 26
case 34: {
java.lang.String s = input.readStringRequireUtf8();
ensureExactMatchColumnsIsMutable();
exactMatchColumns_.add(s);
break;
} // case 34
case 42: {
leftStartColumn_ = input.readStringRequireUtf8();
bitField0_ |= 0x00000010;
break;
} // case 42
case 48: {
rangeStartRule_ = input.readEnum();
bitField0_ |= 0x00000020;
break;
} // case 48
case 58: {
rightRangeColumn_ = input.readStringRequireUtf8();
bitField0_ |= 0x00000040;
break;
} // case 58
case 64: {
rangeEndRule_ = input.readEnum();
bitField0_ |= 0x00000080;
break;
} // case 64
case 74: {
leftEndColumn_ = input.readStringRequireUtf8();
bitField0_ |= 0x00000100;
break;
} // case 74
case 82: {
io.deephaven.proto.backplane.grpc.Aggregation m =
input.readMessage(
io.deephaven.proto.backplane.grpc.Aggregation.parser(),
extensionRegistry);
if (aggregationsBuilder_ == null) {
ensureAggregationsIsMutable();
aggregations_.add(m);
} else {
aggregationsBuilder_.addMessage(m);
}
break;
} // case 82
case 90: {
rangeMatch_ = input.readStringRequireUtf8();
bitField0_ |= 0x00000400;
break;
} // case 90
default: {
if (!super.parseUnknownField(input, extensionRegistry, tag)) {
done = true; // was an endgroup tag
}
break;
} // default:
} // switch (tag)
} // while (!done)
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.unwrapIOException();
} finally {
onChanged();
} // finally
return this;
}
private int bitField0_;
private io.deephaven.proto.backplane.grpc.Ticket resultId_;
private com.google.protobuf.SingleFieldBuilderV3<
io.deephaven.proto.backplane.grpc.Ticket, io.deephaven.proto.backplane.grpc.Ticket.Builder, io.deephaven.proto.backplane.grpc.TicketOrBuilder> resultIdBuilder_;
/**
* .io.deephaven.proto.backplane.grpc.Ticket result_id = 1;
* @return Whether the resultId field is set.
*/
public boolean hasResultId() {
return ((bitField0_ & 0x00000001) != 0);
}
/**
* .io.deephaven.proto.backplane.grpc.Ticket result_id = 1;
* @return The resultId.
*/
public io.deephaven.proto.backplane.grpc.Ticket getResultId() {
if (resultIdBuilder_ == null) {
return resultId_ == null ? io.deephaven.proto.backplane.grpc.Ticket.getDefaultInstance() : resultId_;
} else {
return resultIdBuilder_.getMessage();
}
}
/**
* .io.deephaven.proto.backplane.grpc.Ticket result_id = 1;
*/
public Builder setResultId(io.deephaven.proto.backplane.grpc.Ticket value) {
if (resultIdBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
resultId_ = value;
} else {
resultIdBuilder_.setMessage(value);
}
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
* .io.deephaven.proto.backplane.grpc.Ticket result_id = 1;
*/
public Builder setResultId(
io.deephaven.proto.backplane.grpc.Ticket.Builder builderForValue) {
if (resultIdBuilder_ == null) {
resultId_ = builderForValue.build();
} else {
resultIdBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
* .io.deephaven.proto.backplane.grpc.Ticket result_id = 1;
*/
public Builder mergeResultId(io.deephaven.proto.backplane.grpc.Ticket value) {
if (resultIdBuilder_ == null) {
if (((bitField0_ & 0x00000001) != 0) &&
resultId_ != null &&
resultId_ != io.deephaven.proto.backplane.grpc.Ticket.getDefaultInstance()) {
getResultIdBuilder().mergeFrom(value);
} else {
resultId_ = value;
}
} else {
resultIdBuilder_.mergeFrom(value);
}
if (resultId_ != null) {
bitField0_ |= 0x00000001;
onChanged();
}
return this;
}
/**
* .io.deephaven.proto.backplane.grpc.Ticket result_id = 1;
*/
public Builder clearResultId() {
bitField0_ = (bitField0_ & ~0x00000001);
resultId_ = null;
if (resultIdBuilder_ != null) {
resultIdBuilder_.dispose();
resultIdBuilder_ = null;
}
onChanged();
return this;
}
/**
* .io.deephaven.proto.backplane.grpc.Ticket result_id = 1;
*/
public io.deephaven.proto.backplane.grpc.Ticket.Builder getResultIdBuilder() {
bitField0_ |= 0x00000001;
onChanged();
return getResultIdFieldBuilder().getBuilder();
}
/**
* .io.deephaven.proto.backplane.grpc.Ticket result_id = 1;
*/
public io.deephaven.proto.backplane.grpc.TicketOrBuilder getResultIdOrBuilder() {
if (resultIdBuilder_ != null) {
return resultIdBuilder_.getMessageOrBuilder();
} else {
return resultId_ == null ?
io.deephaven.proto.backplane.grpc.Ticket.getDefaultInstance() : resultId_;
}
}
/**
* .io.deephaven.proto.backplane.grpc.Ticket result_id = 1;
*/
private com.google.protobuf.SingleFieldBuilderV3<
io.deephaven.proto.backplane.grpc.Ticket, io.deephaven.proto.backplane.grpc.Ticket.Builder, io.deephaven.proto.backplane.grpc.TicketOrBuilder>
getResultIdFieldBuilder() {
if (resultIdBuilder_ == null) {
resultIdBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
io.deephaven.proto.backplane.grpc.Ticket, io.deephaven.proto.backplane.grpc.Ticket.Builder, io.deephaven.proto.backplane.grpc.TicketOrBuilder>(
getResultId(),
getParentForChildren(),
isClean());
resultId_ = null;
}
return resultIdBuilder_;
}
private io.deephaven.proto.backplane.grpc.TableReference leftId_;
private com.google.protobuf.SingleFieldBuilderV3<
io.deephaven.proto.backplane.grpc.TableReference, io.deephaven.proto.backplane.grpc.TableReference.Builder, io.deephaven.proto.backplane.grpc.TableReferenceOrBuilder> leftIdBuilder_;
/**
* .io.deephaven.proto.backplane.grpc.TableReference left_id = 2;
* @return Whether the leftId field is set.
*/
public boolean hasLeftId() {
return ((bitField0_ & 0x00000002) != 0);
}
/**
* .io.deephaven.proto.backplane.grpc.TableReference left_id = 2;
* @return The leftId.
*/
public io.deephaven.proto.backplane.grpc.TableReference getLeftId() {
if (leftIdBuilder_ == null) {
return leftId_ == null ? io.deephaven.proto.backplane.grpc.TableReference.getDefaultInstance() : leftId_;
} else {
return leftIdBuilder_.getMessage();
}
}
/**
* .io.deephaven.proto.backplane.grpc.TableReference left_id = 2;
*/
public Builder setLeftId(io.deephaven.proto.backplane.grpc.TableReference value) {
if (leftIdBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
leftId_ = value;
} else {
leftIdBuilder_.setMessage(value);
}
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
* .io.deephaven.proto.backplane.grpc.TableReference left_id = 2;
*/
public Builder setLeftId(
io.deephaven.proto.backplane.grpc.TableReference.Builder builderForValue) {
if (leftIdBuilder_ == null) {
leftId_ = builderForValue.build();
} else {
leftIdBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
* .io.deephaven.proto.backplane.grpc.TableReference left_id = 2;
*/
public Builder mergeLeftId(io.deephaven.proto.backplane.grpc.TableReference value) {
if (leftIdBuilder_ == null) {
if (((bitField0_ & 0x00000002) != 0) &&
leftId_ != null &&
leftId_ != io.deephaven.proto.backplane.grpc.TableReference.getDefaultInstance()) {
getLeftIdBuilder().mergeFrom(value);
} else {
leftId_ = value;
}
} else {
leftIdBuilder_.mergeFrom(value);
}
if (leftId_ != null) {
bitField0_ |= 0x00000002;
onChanged();
}
return this;
}
/**
* .io.deephaven.proto.backplane.grpc.TableReference left_id = 2;
*/
public Builder clearLeftId() {
bitField0_ = (bitField0_ & ~0x00000002);
leftId_ = null;
if (leftIdBuilder_ != null) {
leftIdBuilder_.dispose();
leftIdBuilder_ = null;
}
onChanged();
return this;
}
/**
* .io.deephaven.proto.backplane.grpc.TableReference left_id = 2;
*/
public io.deephaven.proto.backplane.grpc.TableReference.Builder getLeftIdBuilder() {
bitField0_ |= 0x00000002;
onChanged();
return getLeftIdFieldBuilder().getBuilder();
}
/**
* .io.deephaven.proto.backplane.grpc.TableReference left_id = 2;
*/
public io.deephaven.proto.backplane.grpc.TableReferenceOrBuilder getLeftIdOrBuilder() {
if (leftIdBuilder_ != null) {
return leftIdBuilder_.getMessageOrBuilder();
} else {
return leftId_ == null ?
io.deephaven.proto.backplane.grpc.TableReference.getDefaultInstance() : leftId_;
}
}
/**
* .io.deephaven.proto.backplane.grpc.TableReference left_id = 2;
*/
private com.google.protobuf.SingleFieldBuilderV3<
io.deephaven.proto.backplane.grpc.TableReference, io.deephaven.proto.backplane.grpc.TableReference.Builder, io.deephaven.proto.backplane.grpc.TableReferenceOrBuilder>
getLeftIdFieldBuilder() {
if (leftIdBuilder_ == null) {
leftIdBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
io.deephaven.proto.backplane.grpc.TableReference, io.deephaven.proto.backplane.grpc.TableReference.Builder, io.deephaven.proto.backplane.grpc.TableReferenceOrBuilder>(
getLeftId(),
getParentForChildren(),
isClean());
leftId_ = null;
}
return leftIdBuilder_;
}
private io.deephaven.proto.backplane.grpc.TableReference rightId_;
private com.google.protobuf.SingleFieldBuilderV3<
io.deephaven.proto.backplane.grpc.TableReference, io.deephaven.proto.backplane.grpc.TableReference.Builder, io.deephaven.proto.backplane.grpc.TableReferenceOrBuilder> rightIdBuilder_;
/**
* .io.deephaven.proto.backplane.grpc.TableReference right_id = 3;
* @return Whether the rightId field is set.
*/
public boolean hasRightId() {
return ((bitField0_ & 0x00000004) != 0);
}
/**
* .io.deephaven.proto.backplane.grpc.TableReference right_id = 3;
* @return The rightId.
*/
public io.deephaven.proto.backplane.grpc.TableReference getRightId() {
if (rightIdBuilder_ == null) {
return rightId_ == null ? io.deephaven.proto.backplane.grpc.TableReference.getDefaultInstance() : rightId_;
} else {
return rightIdBuilder_.getMessage();
}
}
/**
* .io.deephaven.proto.backplane.grpc.TableReference right_id = 3;
*/
public Builder setRightId(io.deephaven.proto.backplane.grpc.TableReference value) {
if (rightIdBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
rightId_ = value;
} else {
rightIdBuilder_.setMessage(value);
}
bitField0_ |= 0x00000004;
onChanged();
return this;
}
/**
* .io.deephaven.proto.backplane.grpc.TableReference right_id = 3;
*/
public Builder setRightId(
io.deephaven.proto.backplane.grpc.TableReference.Builder builderForValue) {
if (rightIdBuilder_ == null) {
rightId_ = builderForValue.build();
} else {
rightIdBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000004;
onChanged();
return this;
}
/**
* .io.deephaven.proto.backplane.grpc.TableReference right_id = 3;
*/
public Builder mergeRightId(io.deephaven.proto.backplane.grpc.TableReference value) {
if (rightIdBuilder_ == null) {
if (((bitField0_ & 0x00000004) != 0) &&
rightId_ != null &&
rightId_ != io.deephaven.proto.backplane.grpc.TableReference.getDefaultInstance()) {
getRightIdBuilder().mergeFrom(value);
} else {
rightId_ = value;
}
} else {
rightIdBuilder_.mergeFrom(value);
}
if (rightId_ != null) {
bitField0_ |= 0x00000004;
onChanged();
}
return this;
}
/**
* .io.deephaven.proto.backplane.grpc.TableReference right_id = 3;
*/
public Builder clearRightId() {
bitField0_ = (bitField0_ & ~0x00000004);
rightId_ = null;
if (rightIdBuilder_ != null) {
rightIdBuilder_.dispose();
rightIdBuilder_ = null;
}
onChanged();
return this;
}
/**
* .io.deephaven.proto.backplane.grpc.TableReference right_id = 3;
*/
public io.deephaven.proto.backplane.grpc.TableReference.Builder getRightIdBuilder() {
bitField0_ |= 0x00000004;
onChanged();
return getRightIdFieldBuilder().getBuilder();
}
/**
* .io.deephaven.proto.backplane.grpc.TableReference right_id = 3;
*/
public io.deephaven.proto.backplane.grpc.TableReferenceOrBuilder getRightIdOrBuilder() {
if (rightIdBuilder_ != null) {
return rightIdBuilder_.getMessageOrBuilder();
} else {
return rightId_ == null ?
io.deephaven.proto.backplane.grpc.TableReference.getDefaultInstance() : rightId_;
}
}
/**
* .io.deephaven.proto.backplane.grpc.TableReference right_id = 3;
*/
private com.google.protobuf.SingleFieldBuilderV3<
io.deephaven.proto.backplane.grpc.TableReference, io.deephaven.proto.backplane.grpc.TableReference.Builder, io.deephaven.proto.backplane.grpc.TableReferenceOrBuilder>
getRightIdFieldBuilder() {
if (rightIdBuilder_ == null) {
rightIdBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
io.deephaven.proto.backplane.grpc.TableReference, io.deephaven.proto.backplane.grpc.TableReference.Builder, io.deephaven.proto.backplane.grpc.TableReferenceOrBuilder>(
getRightId(),
getParentForChildren(),
isClean());
rightId_ = null;
}
return rightIdBuilder_;
}
private com.google.protobuf.LazyStringArrayList exactMatchColumns_ =
com.google.protobuf.LazyStringArrayList.emptyList();
private void ensureExactMatchColumnsIsMutable() {
if (!exactMatchColumns_.isModifiable()) {
exactMatchColumns_ = new com.google.protobuf.LazyStringArrayList(exactMatchColumns_);
}
bitField0_ |= 0x00000008;
}
/**
* repeated string exact_match_columns = 4;
* @return A list containing the exactMatchColumns.
*/
public com.google.protobuf.ProtocolStringList
getExactMatchColumnsList() {
exactMatchColumns_.makeImmutable();
return exactMatchColumns_;
}
/**
* repeated string exact_match_columns = 4;
* @return The count of exactMatchColumns.
*/
public int getExactMatchColumnsCount() {
return exactMatchColumns_.size();
}
/**
* repeated string exact_match_columns = 4;
* @param index The index of the element to return.
* @return The exactMatchColumns at the given index.
*/
public java.lang.String getExactMatchColumns(int index) {
return exactMatchColumns_.get(index);
}
/**
* repeated string exact_match_columns = 4;
* @param index The index of the value to return.
* @return The bytes of the exactMatchColumns at the given index.
*/
public com.google.protobuf.ByteString
getExactMatchColumnsBytes(int index) {
return exactMatchColumns_.getByteString(index);
}
/**
* repeated string exact_match_columns = 4;
* @param index The index to set the value at.
* @param value The exactMatchColumns to set.
* @return This builder for chaining.
*/
public Builder setExactMatchColumns(
int index, java.lang.String value) {
if (value == null) { throw new NullPointerException(); }
ensureExactMatchColumnsIsMutable();
exactMatchColumns_.set(index, value);
bitField0_ |= 0x00000008;
onChanged();
return this;
}
/**
* repeated string exact_match_columns = 4;
* @param value The exactMatchColumns to add.
* @return This builder for chaining.
*/
public Builder addExactMatchColumns(
java.lang.String value) {
if (value == null) { throw new NullPointerException(); }
ensureExactMatchColumnsIsMutable();
exactMatchColumns_.add(value);
bitField0_ |= 0x00000008;
onChanged();
return this;
}
/**
* repeated string exact_match_columns = 4;
* @param values The exactMatchColumns to add.
* @return This builder for chaining.
*/
public Builder addAllExactMatchColumns(
java.lang.Iterable values) {
ensureExactMatchColumnsIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(
values, exactMatchColumns_);
bitField0_ |= 0x00000008;
onChanged();
return this;
}
/**
* repeated string exact_match_columns = 4;
* @return This builder for chaining.
*/
public Builder clearExactMatchColumns() {
exactMatchColumns_ =
com.google.protobuf.LazyStringArrayList.emptyList();
bitField0_ = (bitField0_ & ~0x00000008);;
onChanged();
return this;
}
/**
* repeated string exact_match_columns = 4;
* @param value The bytes of the exactMatchColumns to add.
* @return This builder for chaining.
*/
public Builder addExactMatchColumnsBytes(
com.google.protobuf.ByteString value) {
if (value == null) { throw new NullPointerException(); }
checkByteStringIsUtf8(value);
ensureExactMatchColumnsIsMutable();
exactMatchColumns_.add(value);
bitField0_ |= 0x00000008;
onChanged();
return this;
}
private java.lang.Object leftStartColumn_ = "";
/**
*
* Provide detailed range match parameters for the range join (alternative to providing `range_match`)
*
*
* string left_start_column = 5;
* @return The leftStartColumn.
*/
public java.lang.String getLeftStartColumn() {
java.lang.Object ref = leftStartColumn_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
leftStartColumn_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
* Provide detailed range match parameters for the range join (alternative to providing `range_match`)
*
*
* string left_start_column = 5;
* @return The bytes for leftStartColumn.
*/
public com.google.protobuf.ByteString
getLeftStartColumnBytes() {
java.lang.Object ref = leftStartColumn_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
leftStartColumn_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
* Provide detailed range match parameters for the range join (alternative to providing `range_match`)
*
*
* string left_start_column = 5;
* @param value The leftStartColumn to set.
* @return This builder for chaining.
*/
public Builder setLeftStartColumn(
java.lang.String value) {
if (value == null) { throw new NullPointerException(); }
leftStartColumn_ = value;
bitField0_ |= 0x00000010;
onChanged();
return this;
}
/**
*
* Provide detailed range match parameters for the range join (alternative to providing `range_match`)
*
*
* string left_start_column = 5;
* @return This builder for chaining.
*/
public Builder clearLeftStartColumn() {
leftStartColumn_ = getDefaultInstance().getLeftStartColumn();
bitField0_ = (bitField0_ & ~0x00000010);
onChanged();
return this;
}
/**
*
* Provide detailed range match parameters for the range join (alternative to providing `range_match`)
*
*
* string left_start_column = 5;
* @param value The bytes for leftStartColumn to set.
* @return This builder for chaining.
*/
public Builder setLeftStartColumnBytes(
com.google.protobuf.ByteString value) {
if (value == null) { throw new NullPointerException(); }
checkByteStringIsUtf8(value);
leftStartColumn_ = value;
bitField0_ |= 0x00000010;
onChanged();
return this;
}
private int rangeStartRule_ = 0;
/**
* .io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.RangeStartRule range_start_rule = 6;
* @return The enum numeric value on the wire for rangeStartRule.
*/
@java.lang.Override public int getRangeStartRuleValue() {
return rangeStartRule_;
}
/**
* .io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.RangeStartRule range_start_rule = 6;
* @param value The enum numeric value on the wire for rangeStartRule to set.
* @return This builder for chaining.
*/
public Builder setRangeStartRuleValue(int value) {
rangeStartRule_ = value;
bitField0_ |= 0x00000020;
onChanged();
return this;
}
/**
* .io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.RangeStartRule range_start_rule = 6;
* @return The rangeStartRule.
*/
@java.lang.Override
public io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.RangeStartRule getRangeStartRule() {
io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.RangeStartRule result = io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.RangeStartRule.forNumber(rangeStartRule_);
return result == null ? io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.RangeStartRule.UNRECOGNIZED : result;
}
/**
* .io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.RangeStartRule range_start_rule = 6;
* @param value The rangeStartRule to set.
* @return This builder for chaining.
*/
public Builder setRangeStartRule(io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.RangeStartRule value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000020;
rangeStartRule_ = value.getNumber();
onChanged();
return this;
}
/**
* .io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.RangeStartRule range_start_rule = 6;
* @return This builder for chaining.
*/
public Builder clearRangeStartRule() {
bitField0_ = (bitField0_ & ~0x00000020);
rangeStartRule_ = 0;
onChanged();
return this;
}
private java.lang.Object rightRangeColumn_ = "";
/**
* string right_range_column = 7;
* @return The rightRangeColumn.
*/
public java.lang.String getRightRangeColumn() {
java.lang.Object ref = rightRangeColumn_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
rightRangeColumn_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* string right_range_column = 7;
* @return The bytes for rightRangeColumn.
*/
public com.google.protobuf.ByteString
getRightRangeColumnBytes() {
java.lang.Object ref = rightRangeColumn_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
rightRangeColumn_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* string right_range_column = 7;
* @param value The rightRangeColumn to set.
* @return This builder for chaining.
*/
public Builder setRightRangeColumn(
java.lang.String value) {
if (value == null) { throw new NullPointerException(); }
rightRangeColumn_ = value;
bitField0_ |= 0x00000040;
onChanged();
return this;
}
/**
* string right_range_column = 7;
* @return This builder for chaining.
*/
public Builder clearRightRangeColumn() {
rightRangeColumn_ = getDefaultInstance().getRightRangeColumn();
bitField0_ = (bitField0_ & ~0x00000040);
onChanged();
return this;
}
/**
* string right_range_column = 7;
* @param value The bytes for rightRangeColumn to set.
* @return This builder for chaining.
*/
public Builder setRightRangeColumnBytes(
com.google.protobuf.ByteString value) {
if (value == null) { throw new NullPointerException(); }
checkByteStringIsUtf8(value);
rightRangeColumn_ = value;
bitField0_ |= 0x00000040;
onChanged();
return this;
}
private int rangeEndRule_ = 0;
/**
* .io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.RangeEndRule range_end_rule = 8;
* @return The enum numeric value on the wire for rangeEndRule.
*/
@java.lang.Override public int getRangeEndRuleValue() {
return rangeEndRule_;
}
/**
* .io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.RangeEndRule range_end_rule = 8;
* @param value The enum numeric value on the wire for rangeEndRule to set.
* @return This builder for chaining.
*/
public Builder setRangeEndRuleValue(int value) {
rangeEndRule_ = value;
bitField0_ |= 0x00000080;
onChanged();
return this;
}
/**
* .io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.RangeEndRule range_end_rule = 8;
* @return The rangeEndRule.
*/
@java.lang.Override
public io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.RangeEndRule getRangeEndRule() {
io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.RangeEndRule result = io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.RangeEndRule.forNumber(rangeEndRule_);
return result == null ? io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.RangeEndRule.UNRECOGNIZED : result;
}
/**
* .io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.RangeEndRule range_end_rule = 8;
* @param value The rangeEndRule to set.
* @return This builder for chaining.
*/
public Builder setRangeEndRule(io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.RangeEndRule value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000080;
rangeEndRule_ = value.getNumber();
onChanged();
return this;
}
/**
* .io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.RangeEndRule range_end_rule = 8;
* @return This builder for chaining.
*/
public Builder clearRangeEndRule() {
bitField0_ = (bitField0_ & ~0x00000080);
rangeEndRule_ = 0;
onChanged();
return this;
}
private java.lang.Object leftEndColumn_ = "";
/**
* string left_end_column = 9;
* @return The leftEndColumn.
*/
public java.lang.String getLeftEndColumn() {
java.lang.Object ref = leftEndColumn_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
leftEndColumn_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* string left_end_column = 9;
* @return The bytes for leftEndColumn.
*/
public com.google.protobuf.ByteString
getLeftEndColumnBytes() {
java.lang.Object ref = leftEndColumn_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
leftEndColumn_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* string left_end_column = 9;
* @param value The leftEndColumn to set.
* @return This builder for chaining.
*/
public Builder setLeftEndColumn(
java.lang.String value) {
if (value == null) { throw new NullPointerException(); }
leftEndColumn_ = value;
bitField0_ |= 0x00000100;
onChanged();
return this;
}
/**
* string left_end_column = 9;
* @return This builder for chaining.
*/
public Builder clearLeftEndColumn() {
leftEndColumn_ = getDefaultInstance().getLeftEndColumn();
bitField0_ = (bitField0_ & ~0x00000100);
onChanged();
return this;
}
/**
* string left_end_column = 9;
* @param value The bytes for leftEndColumn to set.
* @return This builder for chaining.
*/
public Builder setLeftEndColumnBytes(
com.google.protobuf.ByteString value) {
if (value == null) { throw new NullPointerException(); }
checkByteStringIsUtf8(value);
leftEndColumn_ = value;
bitField0_ |= 0x00000100;
onChanged();
return this;
}
private java.util.List aggregations_ =
java.util.Collections.emptyList();
private void ensureAggregationsIsMutable() {
if (!((bitField0_ & 0x00000200) != 0)) {
aggregations_ = new java.util.ArrayList(aggregations_);
bitField0_ |= 0x00000200;
}
}
private com.google.protobuf.RepeatedFieldBuilderV3<
io.deephaven.proto.backplane.grpc.Aggregation, io.deephaven.proto.backplane.grpc.Aggregation.Builder, io.deephaven.proto.backplane.grpc.AggregationOrBuilder> aggregationsBuilder_;
/**
* repeated .io.deephaven.proto.backplane.grpc.Aggregation aggregations = 10;
*/
public java.util.List getAggregationsList() {
if (aggregationsBuilder_ == null) {
return java.util.Collections.unmodifiableList(aggregations_);
} else {
return aggregationsBuilder_.getMessageList();
}
}
/**
* repeated .io.deephaven.proto.backplane.grpc.Aggregation aggregations = 10;
*/
public int getAggregationsCount() {
if (aggregationsBuilder_ == null) {
return aggregations_.size();
} else {
return aggregationsBuilder_.getCount();
}
}
/**
* repeated .io.deephaven.proto.backplane.grpc.Aggregation aggregations = 10;
*/
public io.deephaven.proto.backplane.grpc.Aggregation getAggregations(int index) {
if (aggregationsBuilder_ == null) {
return aggregations_.get(index);
} else {
return aggregationsBuilder_.getMessage(index);
}
}
/**
* repeated .io.deephaven.proto.backplane.grpc.Aggregation aggregations = 10;
*/
public Builder setAggregations(
int index, io.deephaven.proto.backplane.grpc.Aggregation value) {
if (aggregationsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureAggregationsIsMutable();
aggregations_.set(index, value);
onChanged();
} else {
aggregationsBuilder_.setMessage(index, value);
}
return this;
}
/**
* repeated .io.deephaven.proto.backplane.grpc.Aggregation aggregations = 10;
*/
public Builder setAggregations(
int index, io.deephaven.proto.backplane.grpc.Aggregation.Builder builderForValue) {
if (aggregationsBuilder_ == null) {
ensureAggregationsIsMutable();
aggregations_.set(index, builderForValue.build());
onChanged();
} else {
aggregationsBuilder_.setMessage(index, builderForValue.build());
}
return this;
}
/**
* repeated .io.deephaven.proto.backplane.grpc.Aggregation aggregations = 10;
*/
public Builder addAggregations(io.deephaven.proto.backplane.grpc.Aggregation value) {
if (aggregationsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureAggregationsIsMutable();
aggregations_.add(value);
onChanged();
} else {
aggregationsBuilder_.addMessage(value);
}
return this;
}
/**
* repeated .io.deephaven.proto.backplane.grpc.Aggregation aggregations = 10;
*/
public Builder addAggregations(
int index, io.deephaven.proto.backplane.grpc.Aggregation value) {
if (aggregationsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureAggregationsIsMutable();
aggregations_.add(index, value);
onChanged();
} else {
aggregationsBuilder_.addMessage(index, value);
}
return this;
}
/**
* repeated .io.deephaven.proto.backplane.grpc.Aggregation aggregations = 10;
*/
public Builder addAggregations(
io.deephaven.proto.backplane.grpc.Aggregation.Builder builderForValue) {
if (aggregationsBuilder_ == null) {
ensureAggregationsIsMutable();
aggregations_.add(builderForValue.build());
onChanged();
} else {
aggregationsBuilder_.addMessage(builderForValue.build());
}
return this;
}
/**
* repeated .io.deephaven.proto.backplane.grpc.Aggregation aggregations = 10;
*/
public Builder addAggregations(
int index, io.deephaven.proto.backplane.grpc.Aggregation.Builder builderForValue) {
if (aggregationsBuilder_ == null) {
ensureAggregationsIsMutable();
aggregations_.add(index, builderForValue.build());
onChanged();
} else {
aggregationsBuilder_.addMessage(index, builderForValue.build());
}
return this;
}
/**
* repeated .io.deephaven.proto.backplane.grpc.Aggregation aggregations = 10;
*/
public Builder addAllAggregations(
java.lang.Iterable extends io.deephaven.proto.backplane.grpc.Aggregation> values) {
if (aggregationsBuilder_ == null) {
ensureAggregationsIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(
values, aggregations_);
onChanged();
} else {
aggregationsBuilder_.addAllMessages(values);
}
return this;
}
/**
* repeated .io.deephaven.proto.backplane.grpc.Aggregation aggregations = 10;
*/
public Builder clearAggregations() {
if (aggregationsBuilder_ == null) {
aggregations_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000200);
onChanged();
} else {
aggregationsBuilder_.clear();
}
return this;
}
/**
* repeated .io.deephaven.proto.backplane.grpc.Aggregation aggregations = 10;
*/
public Builder removeAggregations(int index) {
if (aggregationsBuilder_ == null) {
ensureAggregationsIsMutable();
aggregations_.remove(index);
onChanged();
} else {
aggregationsBuilder_.remove(index);
}
return this;
}
/**
* repeated .io.deephaven.proto.backplane.grpc.Aggregation aggregations = 10;
*/
public io.deephaven.proto.backplane.grpc.Aggregation.Builder getAggregationsBuilder(
int index) {
return getAggregationsFieldBuilder().getBuilder(index);
}
/**
* repeated .io.deephaven.proto.backplane.grpc.Aggregation aggregations = 10;
*/
public io.deephaven.proto.backplane.grpc.AggregationOrBuilder getAggregationsOrBuilder(
int index) {
if (aggregationsBuilder_ == null) {
return aggregations_.get(index); } else {
return aggregationsBuilder_.getMessageOrBuilder(index);
}
}
/**
* repeated .io.deephaven.proto.backplane.grpc.Aggregation aggregations = 10;
*/
public java.util.List extends io.deephaven.proto.backplane.grpc.AggregationOrBuilder>
getAggregationsOrBuilderList() {
if (aggregationsBuilder_ != null) {
return aggregationsBuilder_.getMessageOrBuilderList();
} else {
return java.util.Collections.unmodifiableList(aggregations_);
}
}
/**
* repeated .io.deephaven.proto.backplane.grpc.Aggregation aggregations = 10;
*/
public io.deephaven.proto.backplane.grpc.Aggregation.Builder addAggregationsBuilder() {
return getAggregationsFieldBuilder().addBuilder(
io.deephaven.proto.backplane.grpc.Aggregation.getDefaultInstance());
}
/**
* repeated .io.deephaven.proto.backplane.grpc.Aggregation aggregations = 10;
*/
public io.deephaven.proto.backplane.grpc.Aggregation.Builder addAggregationsBuilder(
int index) {
return getAggregationsFieldBuilder().addBuilder(
index, io.deephaven.proto.backplane.grpc.Aggregation.getDefaultInstance());
}
/**
* repeated .io.deephaven.proto.backplane.grpc.Aggregation aggregations = 10;
*/
public java.util.List
getAggregationsBuilderList() {
return getAggregationsFieldBuilder().getBuilderList();
}
private com.google.protobuf.RepeatedFieldBuilderV3<
io.deephaven.proto.backplane.grpc.Aggregation, io.deephaven.proto.backplane.grpc.Aggregation.Builder, io.deephaven.proto.backplane.grpc.AggregationOrBuilder>
getAggregationsFieldBuilder() {
if (aggregationsBuilder_ == null) {
aggregationsBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3<
io.deephaven.proto.backplane.grpc.Aggregation, io.deephaven.proto.backplane.grpc.Aggregation.Builder, io.deephaven.proto.backplane.grpc.AggregationOrBuilder>(
aggregations_,
((bitField0_ & 0x00000200) != 0),
getParentForChildren(),
isClean());
aggregations_ = null;
}
return aggregationsBuilder_;
}
private java.lang.Object rangeMatch_ = "";
/**
*
* Specifies the range match parameters as a parseable string. Providing `range_match` in the GRPC call is the
* alternative to detailed range match parameters provided in the `left_start_column`, `range_start_rule`,
* `right_range_column`, `range_end_rule`, and `left_end_column` fields.
*
*
* string range_match = 11;
* @return The rangeMatch.
*/
public java.lang.String getRangeMatch() {
java.lang.Object ref = rangeMatch_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
rangeMatch_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
* Specifies the range match parameters as a parseable string. Providing `range_match` in the GRPC call is the
* alternative to detailed range match parameters provided in the `left_start_column`, `range_start_rule`,
* `right_range_column`, `range_end_rule`, and `left_end_column` fields.
*
*
* string range_match = 11;
* @return The bytes for rangeMatch.
*/
public com.google.protobuf.ByteString
getRangeMatchBytes() {
java.lang.Object ref = rangeMatch_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
rangeMatch_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
* Specifies the range match parameters as a parseable string. Providing `range_match` in the GRPC call is the
* alternative to detailed range match parameters provided in the `left_start_column`, `range_start_rule`,
* `right_range_column`, `range_end_rule`, and `left_end_column` fields.
*
*
* string range_match = 11;
* @param value The rangeMatch to set.
* @return This builder for chaining.
*/
public Builder setRangeMatch(
java.lang.String value) {
if (value == null) { throw new NullPointerException(); }
rangeMatch_ = value;
bitField0_ |= 0x00000400;
onChanged();
return this;
}
/**
*
* Specifies the range match parameters as a parseable string. Providing `range_match` in the GRPC call is the
* alternative to detailed range match parameters provided in the `left_start_column`, `range_start_rule`,
* `right_range_column`, `range_end_rule`, and `left_end_column` fields.
*
*
* string range_match = 11;
* @return This builder for chaining.
*/
public Builder clearRangeMatch() {
rangeMatch_ = getDefaultInstance().getRangeMatch();
bitField0_ = (bitField0_ & ~0x00000400);
onChanged();
return this;
}
/**
*
* Specifies the range match parameters as a parseable string. Providing `range_match` in the GRPC call is the
* alternative to detailed range match parameters provided in the `left_start_column`, `range_start_rule`,
* `right_range_column`, `range_end_rule`, and `left_end_column` fields.
*
*
* string range_match = 11;
* @param value The bytes for rangeMatch to set.
* @return This builder for chaining.
*/
public Builder setRangeMatchBytes(
com.google.protobuf.ByteString value) {
if (value == null) { throw new NullPointerException(); }
checkByteStringIsUtf8(value);
rangeMatch_ = value;
bitField0_ |= 0x00000400;
onChanged();
return this;
}
@java.lang.Override
public final Builder setUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.setUnknownFields(unknownFields);
}
@java.lang.Override
public final Builder mergeUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.mergeUnknownFields(unknownFields);
}
// @@protoc_insertion_point(builder_scope:io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest)
}
// @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest)
private static final io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest();
}
public static io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public RangeJoinTablesRequest parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
Builder builder = newBuilder();
try {
builder.mergeFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(builder.buildPartial());
} catch (com.google.protobuf.UninitializedMessageException e) {
throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial());
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(e)
.setUnfinishedMessage(builder.buildPartial());
}
return builder.buildPartial();
}
};
public static com.google.protobuf.Parser parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
@java.lang.Override
public io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy