java.io.deephaven.proto.backplane.grpc.MultiJoinTablesRequest 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;
/**
* Protobuf type {@code io.deephaven.proto.backplane.grpc.MultiJoinTablesRequest}
*/
public final class MultiJoinTablesRequest extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:io.deephaven.proto.backplane.grpc.MultiJoinTablesRequest)
MultiJoinTablesRequestOrBuilder {
private static final long serialVersionUID = 0L;
// Use MultiJoinTablesRequest.newBuilder() to construct.
private MultiJoinTablesRequest(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private MultiJoinTablesRequest() {
multiJoinInputs_ = java.util.Collections.emptyList();
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(
UnusedPrivateParameter unused) {
return new MultiJoinTablesRequest();
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return io.deephaven.proto.backplane.grpc.Table.internal_static_io_deephaven_proto_backplane_grpc_MultiJoinTablesRequest_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_MultiJoinTablesRequest_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.deephaven.proto.backplane.grpc.MultiJoinTablesRequest.class, io.deephaven.proto.backplane.grpc.MultiJoinTablesRequest.Builder.class);
}
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 MULTI_JOIN_INPUTS_FIELD_NUMBER = 2;
@SuppressWarnings("serial")
private java.util.List multiJoinInputs_;
/**
*
* The source table input specifications. One or more must be provided.
*
*
* repeated .io.deephaven.proto.backplane.grpc.MultiJoinInput multi_join_inputs = 2;
*/
@java.lang.Override
public java.util.List getMultiJoinInputsList() {
return multiJoinInputs_;
}
/**
*
* The source table input specifications. One or more must be provided.
*
*
* repeated .io.deephaven.proto.backplane.grpc.MultiJoinInput multi_join_inputs = 2;
*/
@java.lang.Override
public java.util.List extends io.deephaven.proto.backplane.grpc.MultiJoinInputOrBuilder>
getMultiJoinInputsOrBuilderList() {
return multiJoinInputs_;
}
/**
*
* The source table input specifications. One or more must be provided.
*
*
* repeated .io.deephaven.proto.backplane.grpc.MultiJoinInput multi_join_inputs = 2;
*/
@java.lang.Override
public int getMultiJoinInputsCount() {
return multiJoinInputs_.size();
}
/**
*
* The source table input specifications. One or more must be provided.
*
*
* repeated .io.deephaven.proto.backplane.grpc.MultiJoinInput multi_join_inputs = 2;
*/
@java.lang.Override
public io.deephaven.proto.backplane.grpc.MultiJoinInput getMultiJoinInputs(int index) {
return multiJoinInputs_.get(index);
}
/**
*
* The source table input specifications. One or more must be provided.
*
*
* repeated .io.deephaven.proto.backplane.grpc.MultiJoinInput multi_join_inputs = 2;
*/
@java.lang.Override
public io.deephaven.proto.backplane.grpc.MultiJoinInputOrBuilder getMultiJoinInputsOrBuilder(
int index) {
return multiJoinInputs_.get(index);
}
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());
}
for (int i = 0; i < multiJoinInputs_.size(); i++) {
output.writeMessage(2, multiJoinInputs_.get(i));
}
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());
}
for (int i = 0; i < multiJoinInputs_.size(); i++) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(2, multiJoinInputs_.get(i));
}
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.MultiJoinTablesRequest)) {
return super.equals(obj);
}
io.deephaven.proto.backplane.grpc.MultiJoinTablesRequest other = (io.deephaven.proto.backplane.grpc.MultiJoinTablesRequest) obj;
if (hasResultId() != other.hasResultId()) return false;
if (hasResultId()) {
if (!getResultId()
.equals(other.getResultId())) return false;
}
if (!getMultiJoinInputsList()
.equals(other.getMultiJoinInputsList())) 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 (getMultiJoinInputsCount() > 0) {
hash = (37 * hash) + MULTI_JOIN_INPUTS_FIELD_NUMBER;
hash = (53 * hash) + getMultiJoinInputsList().hashCode();
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static io.deephaven.proto.backplane.grpc.MultiJoinTablesRequest parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.deephaven.proto.backplane.grpc.MultiJoinTablesRequest 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.MultiJoinTablesRequest parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.deephaven.proto.backplane.grpc.MultiJoinTablesRequest 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.MultiJoinTablesRequest parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.deephaven.proto.backplane.grpc.MultiJoinTablesRequest 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.MultiJoinTablesRequest parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static io.deephaven.proto.backplane.grpc.MultiJoinTablesRequest 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.MultiJoinTablesRequest parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static io.deephaven.proto.backplane.grpc.MultiJoinTablesRequest 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.MultiJoinTablesRequest 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.MultiJoinTablesRequest 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.MultiJoinTablesRequest 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.MultiJoinTablesRequest}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:io.deephaven.proto.backplane.grpc.MultiJoinTablesRequest)
io.deephaven.proto.backplane.grpc.MultiJoinTablesRequestOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return io.deephaven.proto.backplane.grpc.Table.internal_static_io_deephaven_proto_backplane_grpc_MultiJoinTablesRequest_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_MultiJoinTablesRequest_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.deephaven.proto.backplane.grpc.MultiJoinTablesRequest.class, io.deephaven.proto.backplane.grpc.MultiJoinTablesRequest.Builder.class);
}
// Construct using io.deephaven.proto.backplane.grpc.MultiJoinTablesRequest.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();
getMultiJoinInputsFieldBuilder();
}
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
resultId_ = null;
if (resultIdBuilder_ != null) {
resultIdBuilder_.dispose();
resultIdBuilder_ = null;
}
if (multiJoinInputsBuilder_ == null) {
multiJoinInputs_ = java.util.Collections.emptyList();
} else {
multiJoinInputs_ = null;
multiJoinInputsBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000002);
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_MultiJoinTablesRequest_descriptor;
}
@java.lang.Override
public io.deephaven.proto.backplane.grpc.MultiJoinTablesRequest getDefaultInstanceForType() {
return io.deephaven.proto.backplane.grpc.MultiJoinTablesRequest.getDefaultInstance();
}
@java.lang.Override
public io.deephaven.proto.backplane.grpc.MultiJoinTablesRequest build() {
io.deephaven.proto.backplane.grpc.MultiJoinTablesRequest result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public io.deephaven.proto.backplane.grpc.MultiJoinTablesRequest buildPartial() {
io.deephaven.proto.backplane.grpc.MultiJoinTablesRequest result = new io.deephaven.proto.backplane.grpc.MultiJoinTablesRequest(this);
buildPartialRepeatedFields(result);
if (bitField0_ != 0) { buildPartial0(result); }
onBuilt();
return result;
}
private void buildPartialRepeatedFields(io.deephaven.proto.backplane.grpc.MultiJoinTablesRequest result) {
if (multiJoinInputsBuilder_ == null) {
if (((bitField0_ & 0x00000002) != 0)) {
multiJoinInputs_ = java.util.Collections.unmodifiableList(multiJoinInputs_);
bitField0_ = (bitField0_ & ~0x00000002);
}
result.multiJoinInputs_ = multiJoinInputs_;
} else {
result.multiJoinInputs_ = multiJoinInputsBuilder_.build();
}
}
private void buildPartial0(io.deephaven.proto.backplane.grpc.MultiJoinTablesRequest result) {
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000001) != 0)) {
result.resultId_ = resultIdBuilder_ == null
? resultId_
: resultIdBuilder_.build();
to_bitField0_ |= 0x00000001;
}
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.MultiJoinTablesRequest) {
return mergeFrom((io.deephaven.proto.backplane.grpc.MultiJoinTablesRequest)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(io.deephaven.proto.backplane.grpc.MultiJoinTablesRequest other) {
if (other == io.deephaven.proto.backplane.grpc.MultiJoinTablesRequest.getDefaultInstance()) return this;
if (other.hasResultId()) {
mergeResultId(other.getResultId());
}
if (multiJoinInputsBuilder_ == null) {
if (!other.multiJoinInputs_.isEmpty()) {
if (multiJoinInputs_.isEmpty()) {
multiJoinInputs_ = other.multiJoinInputs_;
bitField0_ = (bitField0_ & ~0x00000002);
} else {
ensureMultiJoinInputsIsMutable();
multiJoinInputs_.addAll(other.multiJoinInputs_);
}
onChanged();
}
} else {
if (!other.multiJoinInputs_.isEmpty()) {
if (multiJoinInputsBuilder_.isEmpty()) {
multiJoinInputsBuilder_.dispose();
multiJoinInputsBuilder_ = null;
multiJoinInputs_ = other.multiJoinInputs_;
bitField0_ = (bitField0_ & ~0x00000002);
multiJoinInputsBuilder_ =
com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ?
getMultiJoinInputsFieldBuilder() : null;
} else {
multiJoinInputsBuilder_.addAllMessages(other.multiJoinInputs_);
}
}
}
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: {
io.deephaven.proto.backplane.grpc.MultiJoinInput m =
input.readMessage(
io.deephaven.proto.backplane.grpc.MultiJoinInput.parser(),
extensionRegistry);
if (multiJoinInputsBuilder_ == null) {
ensureMultiJoinInputsIsMutable();
multiJoinInputs_.add(m);
} else {
multiJoinInputsBuilder_.addMessage(m);
}
break;
} // case 18
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 java.util.List multiJoinInputs_ =
java.util.Collections.emptyList();
private void ensureMultiJoinInputsIsMutable() {
if (!((bitField0_ & 0x00000002) != 0)) {
multiJoinInputs_ = new java.util.ArrayList(multiJoinInputs_);
bitField0_ |= 0x00000002;
}
}
private com.google.protobuf.RepeatedFieldBuilderV3<
io.deephaven.proto.backplane.grpc.MultiJoinInput, io.deephaven.proto.backplane.grpc.MultiJoinInput.Builder, io.deephaven.proto.backplane.grpc.MultiJoinInputOrBuilder> multiJoinInputsBuilder_;
/**
*
* The source table input specifications. One or more must be provided.
*
*
* repeated .io.deephaven.proto.backplane.grpc.MultiJoinInput multi_join_inputs = 2;
*/
public java.util.List getMultiJoinInputsList() {
if (multiJoinInputsBuilder_ == null) {
return java.util.Collections.unmodifiableList(multiJoinInputs_);
} else {
return multiJoinInputsBuilder_.getMessageList();
}
}
/**
*
* The source table input specifications. One or more must be provided.
*
*
* repeated .io.deephaven.proto.backplane.grpc.MultiJoinInput multi_join_inputs = 2;
*/
public int getMultiJoinInputsCount() {
if (multiJoinInputsBuilder_ == null) {
return multiJoinInputs_.size();
} else {
return multiJoinInputsBuilder_.getCount();
}
}
/**
*
* The source table input specifications. One or more must be provided.
*
*
* repeated .io.deephaven.proto.backplane.grpc.MultiJoinInput multi_join_inputs = 2;
*/
public io.deephaven.proto.backplane.grpc.MultiJoinInput getMultiJoinInputs(int index) {
if (multiJoinInputsBuilder_ == null) {
return multiJoinInputs_.get(index);
} else {
return multiJoinInputsBuilder_.getMessage(index);
}
}
/**
*
* The source table input specifications. One or more must be provided.
*
*
* repeated .io.deephaven.proto.backplane.grpc.MultiJoinInput multi_join_inputs = 2;
*/
public Builder setMultiJoinInputs(
int index, io.deephaven.proto.backplane.grpc.MultiJoinInput value) {
if (multiJoinInputsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureMultiJoinInputsIsMutable();
multiJoinInputs_.set(index, value);
onChanged();
} else {
multiJoinInputsBuilder_.setMessage(index, value);
}
return this;
}
/**
*
* The source table input specifications. One or more must be provided.
*
*
* repeated .io.deephaven.proto.backplane.grpc.MultiJoinInput multi_join_inputs = 2;
*/
public Builder setMultiJoinInputs(
int index, io.deephaven.proto.backplane.grpc.MultiJoinInput.Builder builderForValue) {
if (multiJoinInputsBuilder_ == null) {
ensureMultiJoinInputsIsMutable();
multiJoinInputs_.set(index, builderForValue.build());
onChanged();
} else {
multiJoinInputsBuilder_.setMessage(index, builderForValue.build());
}
return this;
}
/**
*
* The source table input specifications. One or more must be provided.
*
*
* repeated .io.deephaven.proto.backplane.grpc.MultiJoinInput multi_join_inputs = 2;
*/
public Builder addMultiJoinInputs(io.deephaven.proto.backplane.grpc.MultiJoinInput value) {
if (multiJoinInputsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureMultiJoinInputsIsMutable();
multiJoinInputs_.add(value);
onChanged();
} else {
multiJoinInputsBuilder_.addMessage(value);
}
return this;
}
/**
*
* The source table input specifications. One or more must be provided.
*
*
* repeated .io.deephaven.proto.backplane.grpc.MultiJoinInput multi_join_inputs = 2;
*/
public Builder addMultiJoinInputs(
int index, io.deephaven.proto.backplane.grpc.MultiJoinInput value) {
if (multiJoinInputsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureMultiJoinInputsIsMutable();
multiJoinInputs_.add(index, value);
onChanged();
} else {
multiJoinInputsBuilder_.addMessage(index, value);
}
return this;
}
/**
*
* The source table input specifications. One or more must be provided.
*
*
* repeated .io.deephaven.proto.backplane.grpc.MultiJoinInput multi_join_inputs = 2;
*/
public Builder addMultiJoinInputs(
io.deephaven.proto.backplane.grpc.MultiJoinInput.Builder builderForValue) {
if (multiJoinInputsBuilder_ == null) {
ensureMultiJoinInputsIsMutable();
multiJoinInputs_.add(builderForValue.build());
onChanged();
} else {
multiJoinInputsBuilder_.addMessage(builderForValue.build());
}
return this;
}
/**
*
* The source table input specifications. One or more must be provided.
*
*
* repeated .io.deephaven.proto.backplane.grpc.MultiJoinInput multi_join_inputs = 2;
*/
public Builder addMultiJoinInputs(
int index, io.deephaven.proto.backplane.grpc.MultiJoinInput.Builder builderForValue) {
if (multiJoinInputsBuilder_ == null) {
ensureMultiJoinInputsIsMutable();
multiJoinInputs_.add(index, builderForValue.build());
onChanged();
} else {
multiJoinInputsBuilder_.addMessage(index, builderForValue.build());
}
return this;
}
/**
*
* The source table input specifications. One or more must be provided.
*
*
* repeated .io.deephaven.proto.backplane.grpc.MultiJoinInput multi_join_inputs = 2;
*/
public Builder addAllMultiJoinInputs(
java.lang.Iterable extends io.deephaven.proto.backplane.grpc.MultiJoinInput> values) {
if (multiJoinInputsBuilder_ == null) {
ensureMultiJoinInputsIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(
values, multiJoinInputs_);
onChanged();
} else {
multiJoinInputsBuilder_.addAllMessages(values);
}
return this;
}
/**
*
* The source table input specifications. One or more must be provided.
*
*
* repeated .io.deephaven.proto.backplane.grpc.MultiJoinInput multi_join_inputs = 2;
*/
public Builder clearMultiJoinInputs() {
if (multiJoinInputsBuilder_ == null) {
multiJoinInputs_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000002);
onChanged();
} else {
multiJoinInputsBuilder_.clear();
}
return this;
}
/**
*
* The source table input specifications. One or more must be provided.
*
*
* repeated .io.deephaven.proto.backplane.grpc.MultiJoinInput multi_join_inputs = 2;
*/
public Builder removeMultiJoinInputs(int index) {
if (multiJoinInputsBuilder_ == null) {
ensureMultiJoinInputsIsMutable();
multiJoinInputs_.remove(index);
onChanged();
} else {
multiJoinInputsBuilder_.remove(index);
}
return this;
}
/**
*
* The source table input specifications. One or more must be provided.
*
*
* repeated .io.deephaven.proto.backplane.grpc.MultiJoinInput multi_join_inputs = 2;
*/
public io.deephaven.proto.backplane.grpc.MultiJoinInput.Builder getMultiJoinInputsBuilder(
int index) {
return getMultiJoinInputsFieldBuilder().getBuilder(index);
}
/**
*
* The source table input specifications. One or more must be provided.
*
*
* repeated .io.deephaven.proto.backplane.grpc.MultiJoinInput multi_join_inputs = 2;
*/
public io.deephaven.proto.backplane.grpc.MultiJoinInputOrBuilder getMultiJoinInputsOrBuilder(
int index) {
if (multiJoinInputsBuilder_ == null) {
return multiJoinInputs_.get(index); } else {
return multiJoinInputsBuilder_.getMessageOrBuilder(index);
}
}
/**
*
* The source table input specifications. One or more must be provided.
*
*
* repeated .io.deephaven.proto.backplane.grpc.MultiJoinInput multi_join_inputs = 2;
*/
public java.util.List extends io.deephaven.proto.backplane.grpc.MultiJoinInputOrBuilder>
getMultiJoinInputsOrBuilderList() {
if (multiJoinInputsBuilder_ != null) {
return multiJoinInputsBuilder_.getMessageOrBuilderList();
} else {
return java.util.Collections.unmodifiableList(multiJoinInputs_);
}
}
/**
*
* The source table input specifications. One or more must be provided.
*
*
* repeated .io.deephaven.proto.backplane.grpc.MultiJoinInput multi_join_inputs = 2;
*/
public io.deephaven.proto.backplane.grpc.MultiJoinInput.Builder addMultiJoinInputsBuilder() {
return getMultiJoinInputsFieldBuilder().addBuilder(
io.deephaven.proto.backplane.grpc.MultiJoinInput.getDefaultInstance());
}
/**
*
* The source table input specifications. One or more must be provided.
*
*
* repeated .io.deephaven.proto.backplane.grpc.MultiJoinInput multi_join_inputs = 2;
*/
public io.deephaven.proto.backplane.grpc.MultiJoinInput.Builder addMultiJoinInputsBuilder(
int index) {
return getMultiJoinInputsFieldBuilder().addBuilder(
index, io.deephaven.proto.backplane.grpc.MultiJoinInput.getDefaultInstance());
}
/**
*
* The source table input specifications. One or more must be provided.
*
*
* repeated .io.deephaven.proto.backplane.grpc.MultiJoinInput multi_join_inputs = 2;
*/
public java.util.List
getMultiJoinInputsBuilderList() {
return getMultiJoinInputsFieldBuilder().getBuilderList();
}
private com.google.protobuf.RepeatedFieldBuilderV3<
io.deephaven.proto.backplane.grpc.MultiJoinInput, io.deephaven.proto.backplane.grpc.MultiJoinInput.Builder, io.deephaven.proto.backplane.grpc.MultiJoinInputOrBuilder>
getMultiJoinInputsFieldBuilder() {
if (multiJoinInputsBuilder_ == null) {
multiJoinInputsBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3<
io.deephaven.proto.backplane.grpc.MultiJoinInput, io.deephaven.proto.backplane.grpc.MultiJoinInput.Builder, io.deephaven.proto.backplane.grpc.MultiJoinInputOrBuilder>(
multiJoinInputs_,
((bitField0_ & 0x00000002) != 0),
getParentForChildren(),
isClean());
multiJoinInputs_ = null;
}
return multiJoinInputsBuilder_;
}
@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.MultiJoinTablesRequest)
}
// @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.MultiJoinTablesRequest)
private static final io.deephaven.proto.backplane.grpc.MultiJoinTablesRequest DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new io.deephaven.proto.backplane.grpc.MultiJoinTablesRequest();
}
public static io.deephaven.proto.backplane.grpc.MultiJoinTablesRequest getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public MultiJoinTablesRequest 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.MultiJoinTablesRequest getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}