java.io.deephaven.proto.backplane.grpc.MultiJoinInput 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.MultiJoinInput}
*/
public final class MultiJoinInput extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:io.deephaven.proto.backplane.grpc.MultiJoinInput)
MultiJoinInputOrBuilder {
private static final long serialVersionUID = 0L;
// Use MultiJoinInput.newBuilder() to construct.
private MultiJoinInput(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private MultiJoinInput() {
columnsToMatch_ =
com.google.protobuf.LazyStringArrayList.emptyList();
columnsToAdd_ =
com.google.protobuf.LazyStringArrayList.emptyList();
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(
UnusedPrivateParameter unused) {
return new MultiJoinInput();
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return io.deephaven.proto.backplane.grpc.Table.internal_static_io_deephaven_proto_backplane_grpc_MultiJoinInput_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_MultiJoinInput_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.deephaven.proto.backplane.grpc.MultiJoinInput.class, io.deephaven.proto.backplane.grpc.MultiJoinInput.Builder.class);
}
private int bitField0_;
public static final int SOURCE_ID_FIELD_NUMBER = 1;
private io.deephaven.proto.backplane.grpc.TableReference sourceId_;
/**
*
* The source table to include in the multi-join output table.
*
*
* .io.deephaven.proto.backplane.grpc.TableReference source_id = 1;
* @return Whether the sourceId field is set.
*/
@java.lang.Override
public boolean hasSourceId() {
return ((bitField0_ & 0x00000001) != 0);
}
/**
*
* The source table to include in the multi-join output table.
*
*
* .io.deephaven.proto.backplane.grpc.TableReference source_id = 1;
* @return The sourceId.
*/
@java.lang.Override
public io.deephaven.proto.backplane.grpc.TableReference getSourceId() {
return sourceId_ == null ? io.deephaven.proto.backplane.grpc.TableReference.getDefaultInstance() : sourceId_;
}
/**
*
* The source table to include in the multi-join output table.
*
*
* .io.deephaven.proto.backplane.grpc.TableReference source_id = 1;
*/
@java.lang.Override
public io.deephaven.proto.backplane.grpc.TableReferenceOrBuilder getSourceIdOrBuilder() {
return sourceId_ == null ? io.deephaven.proto.backplane.grpc.TableReference.getDefaultInstance() : sourceId_;
}
public static final int COLUMNS_TO_MATCH_FIELD_NUMBER = 2;
@SuppressWarnings("serial")
private com.google.protobuf.LazyStringArrayList columnsToMatch_ =
com.google.protobuf.LazyStringArrayList.emptyList();
/**
*
* The key columns to match; may be renamed to match other source table key columns.
*
*
* repeated string columns_to_match = 2;
* @return A list containing the columnsToMatch.
*/
public com.google.protobuf.ProtocolStringList
getColumnsToMatchList() {
return columnsToMatch_;
}
/**
*
* The key columns to match; may be renamed to match other source table key columns.
*
*
* repeated string columns_to_match = 2;
* @return The count of columnsToMatch.
*/
public int getColumnsToMatchCount() {
return columnsToMatch_.size();
}
/**
*
* The key columns to match; may be renamed to match other source table key columns.
*
*
* repeated string columns_to_match = 2;
* @param index The index of the element to return.
* @return The columnsToMatch at the given index.
*/
public java.lang.String getColumnsToMatch(int index) {
return columnsToMatch_.get(index);
}
/**
*
* The key columns to match; may be renamed to match other source table key columns.
*
*
* repeated string columns_to_match = 2;
* @param index The index of the value to return.
* @return The bytes of the columnsToMatch at the given index.
*/
public com.google.protobuf.ByteString
getColumnsToMatchBytes(int index) {
return columnsToMatch_.getByteString(index);
}
public static final int COLUMNS_TO_ADD_FIELD_NUMBER = 3;
@SuppressWarnings("serial")
private com.google.protobuf.LazyStringArrayList columnsToAdd_ =
com.google.protobuf.LazyStringArrayList.emptyList();
/**
*
* The columns from the source table to include; if not provided, all columns are included.
*
*
* repeated string columns_to_add = 3;
* @return A list containing the columnsToAdd.
*/
public com.google.protobuf.ProtocolStringList
getColumnsToAddList() {
return columnsToAdd_;
}
/**
*
* The columns from the source table to include; if not provided, all columns are included.
*
*
* repeated string columns_to_add = 3;
* @return The count of columnsToAdd.
*/
public int getColumnsToAddCount() {
return columnsToAdd_.size();
}
/**
*
* The columns from the source table to include; if not provided, all columns are included.
*
*
* repeated string columns_to_add = 3;
* @param index The index of the element to return.
* @return The columnsToAdd at the given index.
*/
public java.lang.String getColumnsToAdd(int index) {
return columnsToAdd_.get(index);
}
/**
*
* The columns from the source table to include; if not provided, all columns are included.
*
*
* repeated string columns_to_add = 3;
* @param index The index of the value to return.
* @return The bytes of the columnsToAdd at the given index.
*/
public com.google.protobuf.ByteString
getColumnsToAddBytes(int index) {
return columnsToAdd_.getByteString(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, getSourceId());
}
for (int i = 0; i < columnsToMatch_.size(); i++) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 2, columnsToMatch_.getRaw(i));
}
for (int i = 0; i < columnsToAdd_.size(); i++) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 3, columnsToAdd_.getRaw(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, getSourceId());
}
{
int dataSize = 0;
for (int i = 0; i < columnsToMatch_.size(); i++) {
dataSize += computeStringSizeNoTag(columnsToMatch_.getRaw(i));
}
size += dataSize;
size += 1 * getColumnsToMatchList().size();
}
{
int dataSize = 0;
for (int i = 0; i < columnsToAdd_.size(); i++) {
dataSize += computeStringSizeNoTag(columnsToAdd_.getRaw(i));
}
size += dataSize;
size += 1 * getColumnsToAddList().size();
}
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.MultiJoinInput)) {
return super.equals(obj);
}
io.deephaven.proto.backplane.grpc.MultiJoinInput other = (io.deephaven.proto.backplane.grpc.MultiJoinInput) obj;
if (hasSourceId() != other.hasSourceId()) return false;
if (hasSourceId()) {
if (!getSourceId()
.equals(other.getSourceId())) return false;
}
if (!getColumnsToMatchList()
.equals(other.getColumnsToMatchList())) return false;
if (!getColumnsToAddList()
.equals(other.getColumnsToAddList())) 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 (hasSourceId()) {
hash = (37 * hash) + SOURCE_ID_FIELD_NUMBER;
hash = (53 * hash) + getSourceId().hashCode();
}
if (getColumnsToMatchCount() > 0) {
hash = (37 * hash) + COLUMNS_TO_MATCH_FIELD_NUMBER;
hash = (53 * hash) + getColumnsToMatchList().hashCode();
}
if (getColumnsToAddCount() > 0) {
hash = (37 * hash) + COLUMNS_TO_ADD_FIELD_NUMBER;
hash = (53 * hash) + getColumnsToAddList().hashCode();
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static io.deephaven.proto.backplane.grpc.MultiJoinInput parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.deephaven.proto.backplane.grpc.MultiJoinInput 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.MultiJoinInput parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.deephaven.proto.backplane.grpc.MultiJoinInput 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.MultiJoinInput parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.deephaven.proto.backplane.grpc.MultiJoinInput 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.MultiJoinInput parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static io.deephaven.proto.backplane.grpc.MultiJoinInput 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.MultiJoinInput parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static io.deephaven.proto.backplane.grpc.MultiJoinInput 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.MultiJoinInput 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.MultiJoinInput 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.MultiJoinInput 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.MultiJoinInput}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:io.deephaven.proto.backplane.grpc.MultiJoinInput)
io.deephaven.proto.backplane.grpc.MultiJoinInputOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return io.deephaven.proto.backplane.grpc.Table.internal_static_io_deephaven_proto_backplane_grpc_MultiJoinInput_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_MultiJoinInput_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.deephaven.proto.backplane.grpc.MultiJoinInput.class, io.deephaven.proto.backplane.grpc.MultiJoinInput.Builder.class);
}
// Construct using io.deephaven.proto.backplane.grpc.MultiJoinInput.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
getSourceIdFieldBuilder();
}
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
sourceId_ = null;
if (sourceIdBuilder_ != null) {
sourceIdBuilder_.dispose();
sourceIdBuilder_ = null;
}
columnsToMatch_ =
com.google.protobuf.LazyStringArrayList.emptyList();
columnsToAdd_ =
com.google.protobuf.LazyStringArrayList.emptyList();
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_MultiJoinInput_descriptor;
}
@java.lang.Override
public io.deephaven.proto.backplane.grpc.MultiJoinInput getDefaultInstanceForType() {
return io.deephaven.proto.backplane.grpc.MultiJoinInput.getDefaultInstance();
}
@java.lang.Override
public io.deephaven.proto.backplane.grpc.MultiJoinInput build() {
io.deephaven.proto.backplane.grpc.MultiJoinInput result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public io.deephaven.proto.backplane.grpc.MultiJoinInput buildPartial() {
io.deephaven.proto.backplane.grpc.MultiJoinInput result = new io.deephaven.proto.backplane.grpc.MultiJoinInput(this);
if (bitField0_ != 0) { buildPartial0(result); }
onBuilt();
return result;
}
private void buildPartial0(io.deephaven.proto.backplane.grpc.MultiJoinInput result) {
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000001) != 0)) {
result.sourceId_ = sourceIdBuilder_ == null
? sourceId_
: sourceIdBuilder_.build();
to_bitField0_ |= 0x00000001;
}
if (((from_bitField0_ & 0x00000002) != 0)) {
columnsToMatch_.makeImmutable();
result.columnsToMatch_ = columnsToMatch_;
}
if (((from_bitField0_ & 0x00000004) != 0)) {
columnsToAdd_.makeImmutable();
result.columnsToAdd_ = columnsToAdd_;
}
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.MultiJoinInput) {
return mergeFrom((io.deephaven.proto.backplane.grpc.MultiJoinInput)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(io.deephaven.proto.backplane.grpc.MultiJoinInput other) {
if (other == io.deephaven.proto.backplane.grpc.MultiJoinInput.getDefaultInstance()) return this;
if (other.hasSourceId()) {
mergeSourceId(other.getSourceId());
}
if (!other.columnsToMatch_.isEmpty()) {
if (columnsToMatch_.isEmpty()) {
columnsToMatch_ = other.columnsToMatch_;
bitField0_ |= 0x00000002;
} else {
ensureColumnsToMatchIsMutable();
columnsToMatch_.addAll(other.columnsToMatch_);
}
onChanged();
}
if (!other.columnsToAdd_.isEmpty()) {
if (columnsToAdd_.isEmpty()) {
columnsToAdd_ = other.columnsToAdd_;
bitField0_ |= 0x00000004;
} else {
ensureColumnsToAddIsMutable();
columnsToAdd_.addAll(other.columnsToAdd_);
}
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(
getSourceIdFieldBuilder().getBuilder(),
extensionRegistry);
bitField0_ |= 0x00000001;
break;
} // case 10
case 18: {
java.lang.String s = input.readStringRequireUtf8();
ensureColumnsToMatchIsMutable();
columnsToMatch_.add(s);
break;
} // case 18
case 26: {
java.lang.String s = input.readStringRequireUtf8();
ensureColumnsToAddIsMutable();
columnsToAdd_.add(s);
break;
} // case 26
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.TableReference sourceId_;
private com.google.protobuf.SingleFieldBuilderV3<
io.deephaven.proto.backplane.grpc.TableReference, io.deephaven.proto.backplane.grpc.TableReference.Builder, io.deephaven.proto.backplane.grpc.TableReferenceOrBuilder> sourceIdBuilder_;
/**
*
* The source table to include in the multi-join output table.
*
*
* .io.deephaven.proto.backplane.grpc.TableReference source_id = 1;
* @return Whether the sourceId field is set.
*/
public boolean hasSourceId() {
return ((bitField0_ & 0x00000001) != 0);
}
/**
*
* The source table to include in the multi-join output table.
*
*
* .io.deephaven.proto.backplane.grpc.TableReference source_id = 1;
* @return The sourceId.
*/
public io.deephaven.proto.backplane.grpc.TableReference getSourceId() {
if (sourceIdBuilder_ == null) {
return sourceId_ == null ? io.deephaven.proto.backplane.grpc.TableReference.getDefaultInstance() : sourceId_;
} else {
return sourceIdBuilder_.getMessage();
}
}
/**
*
* The source table to include in the multi-join output table.
*
*
* .io.deephaven.proto.backplane.grpc.TableReference source_id = 1;
*/
public Builder setSourceId(io.deephaven.proto.backplane.grpc.TableReference value) {
if (sourceIdBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
sourceId_ = value;
} else {
sourceIdBuilder_.setMessage(value);
}
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
*
* The source table to include in the multi-join output table.
*
*
* .io.deephaven.proto.backplane.grpc.TableReference source_id = 1;
*/
public Builder setSourceId(
io.deephaven.proto.backplane.grpc.TableReference.Builder builderForValue) {
if (sourceIdBuilder_ == null) {
sourceId_ = builderForValue.build();
} else {
sourceIdBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
*
* The source table to include in the multi-join output table.
*
*
* .io.deephaven.proto.backplane.grpc.TableReference source_id = 1;
*/
public Builder mergeSourceId(io.deephaven.proto.backplane.grpc.TableReference value) {
if (sourceIdBuilder_ == null) {
if (((bitField0_ & 0x00000001) != 0) &&
sourceId_ != null &&
sourceId_ != io.deephaven.proto.backplane.grpc.TableReference.getDefaultInstance()) {
getSourceIdBuilder().mergeFrom(value);
} else {
sourceId_ = value;
}
} else {
sourceIdBuilder_.mergeFrom(value);
}
if (sourceId_ != null) {
bitField0_ |= 0x00000001;
onChanged();
}
return this;
}
/**
*
* The source table to include in the multi-join output table.
*
*
* .io.deephaven.proto.backplane.grpc.TableReference source_id = 1;
*/
public Builder clearSourceId() {
bitField0_ = (bitField0_ & ~0x00000001);
sourceId_ = null;
if (sourceIdBuilder_ != null) {
sourceIdBuilder_.dispose();
sourceIdBuilder_ = null;
}
onChanged();
return this;
}
/**
*
* The source table to include in the multi-join output table.
*
*
* .io.deephaven.proto.backplane.grpc.TableReference source_id = 1;
*/
public io.deephaven.proto.backplane.grpc.TableReference.Builder getSourceIdBuilder() {
bitField0_ |= 0x00000001;
onChanged();
return getSourceIdFieldBuilder().getBuilder();
}
/**
*
* The source table to include in the multi-join output table.
*
*
* .io.deephaven.proto.backplane.grpc.TableReference source_id = 1;
*/
public io.deephaven.proto.backplane.grpc.TableReferenceOrBuilder getSourceIdOrBuilder() {
if (sourceIdBuilder_ != null) {
return sourceIdBuilder_.getMessageOrBuilder();
} else {
return sourceId_ == null ?
io.deephaven.proto.backplane.grpc.TableReference.getDefaultInstance() : sourceId_;
}
}
/**
*
* The source table to include in the multi-join output table.
*
*
* .io.deephaven.proto.backplane.grpc.TableReference source_id = 1;
*/
private com.google.protobuf.SingleFieldBuilderV3<
io.deephaven.proto.backplane.grpc.TableReference, io.deephaven.proto.backplane.grpc.TableReference.Builder, io.deephaven.proto.backplane.grpc.TableReferenceOrBuilder>
getSourceIdFieldBuilder() {
if (sourceIdBuilder_ == null) {
sourceIdBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
io.deephaven.proto.backplane.grpc.TableReference, io.deephaven.proto.backplane.grpc.TableReference.Builder, io.deephaven.proto.backplane.grpc.TableReferenceOrBuilder>(
getSourceId(),
getParentForChildren(),
isClean());
sourceId_ = null;
}
return sourceIdBuilder_;
}
private com.google.protobuf.LazyStringArrayList columnsToMatch_ =
com.google.protobuf.LazyStringArrayList.emptyList();
private void ensureColumnsToMatchIsMutable() {
if (!columnsToMatch_.isModifiable()) {
columnsToMatch_ = new com.google.protobuf.LazyStringArrayList(columnsToMatch_);
}
bitField0_ |= 0x00000002;
}
/**
*
* The key columns to match; may be renamed to match other source table key columns.
*
*
* repeated string columns_to_match = 2;
* @return A list containing the columnsToMatch.
*/
public com.google.protobuf.ProtocolStringList
getColumnsToMatchList() {
columnsToMatch_.makeImmutable();
return columnsToMatch_;
}
/**
*
* The key columns to match; may be renamed to match other source table key columns.
*
*
* repeated string columns_to_match = 2;
* @return The count of columnsToMatch.
*/
public int getColumnsToMatchCount() {
return columnsToMatch_.size();
}
/**
*
* The key columns to match; may be renamed to match other source table key columns.
*
*
* repeated string columns_to_match = 2;
* @param index The index of the element to return.
* @return The columnsToMatch at the given index.
*/
public java.lang.String getColumnsToMatch(int index) {
return columnsToMatch_.get(index);
}
/**
*
* The key columns to match; may be renamed to match other source table key columns.
*
*
* repeated string columns_to_match = 2;
* @param index The index of the value to return.
* @return The bytes of the columnsToMatch at the given index.
*/
public com.google.protobuf.ByteString
getColumnsToMatchBytes(int index) {
return columnsToMatch_.getByteString(index);
}
/**
*
* The key columns to match; may be renamed to match other source table key columns.
*
*
* repeated string columns_to_match = 2;
* @param index The index to set the value at.
* @param value The columnsToMatch to set.
* @return This builder for chaining.
*/
public Builder setColumnsToMatch(
int index, java.lang.String value) {
if (value == null) { throw new NullPointerException(); }
ensureColumnsToMatchIsMutable();
columnsToMatch_.set(index, value);
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
*
* The key columns to match; may be renamed to match other source table key columns.
*
*
* repeated string columns_to_match = 2;
* @param value The columnsToMatch to add.
* @return This builder for chaining.
*/
public Builder addColumnsToMatch(
java.lang.String value) {
if (value == null) { throw new NullPointerException(); }
ensureColumnsToMatchIsMutable();
columnsToMatch_.add(value);
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
*
* The key columns to match; may be renamed to match other source table key columns.
*
*
* repeated string columns_to_match = 2;
* @param values The columnsToMatch to add.
* @return This builder for chaining.
*/
public Builder addAllColumnsToMatch(
java.lang.Iterable values) {
ensureColumnsToMatchIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(
values, columnsToMatch_);
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
*
* The key columns to match; may be renamed to match other source table key columns.
*
*
* repeated string columns_to_match = 2;
* @return This builder for chaining.
*/
public Builder clearColumnsToMatch() {
columnsToMatch_ =
com.google.protobuf.LazyStringArrayList.emptyList();
bitField0_ = (bitField0_ & ~0x00000002);;
onChanged();
return this;
}
/**
*
* The key columns to match; may be renamed to match other source table key columns.
*
*
* repeated string columns_to_match = 2;
* @param value The bytes of the columnsToMatch to add.
* @return This builder for chaining.
*/
public Builder addColumnsToMatchBytes(
com.google.protobuf.ByteString value) {
if (value == null) { throw new NullPointerException(); }
checkByteStringIsUtf8(value);
ensureColumnsToMatchIsMutable();
columnsToMatch_.add(value);
bitField0_ |= 0x00000002;
onChanged();
return this;
}
private com.google.protobuf.LazyStringArrayList columnsToAdd_ =
com.google.protobuf.LazyStringArrayList.emptyList();
private void ensureColumnsToAddIsMutable() {
if (!columnsToAdd_.isModifiable()) {
columnsToAdd_ = new com.google.protobuf.LazyStringArrayList(columnsToAdd_);
}
bitField0_ |= 0x00000004;
}
/**
*
* The columns from the source table to include; if not provided, all columns are included.
*
*
* repeated string columns_to_add = 3;
* @return A list containing the columnsToAdd.
*/
public com.google.protobuf.ProtocolStringList
getColumnsToAddList() {
columnsToAdd_.makeImmutable();
return columnsToAdd_;
}
/**
*
* The columns from the source table to include; if not provided, all columns are included.
*
*
* repeated string columns_to_add = 3;
* @return The count of columnsToAdd.
*/
public int getColumnsToAddCount() {
return columnsToAdd_.size();
}
/**
*
* The columns from the source table to include; if not provided, all columns are included.
*
*
* repeated string columns_to_add = 3;
* @param index The index of the element to return.
* @return The columnsToAdd at the given index.
*/
public java.lang.String getColumnsToAdd(int index) {
return columnsToAdd_.get(index);
}
/**
*
* The columns from the source table to include; if not provided, all columns are included.
*
*
* repeated string columns_to_add = 3;
* @param index The index of the value to return.
* @return The bytes of the columnsToAdd at the given index.
*/
public com.google.protobuf.ByteString
getColumnsToAddBytes(int index) {
return columnsToAdd_.getByteString(index);
}
/**
*
* The columns from the source table to include; if not provided, all columns are included.
*
*
* repeated string columns_to_add = 3;
* @param index The index to set the value at.
* @param value The columnsToAdd to set.
* @return This builder for chaining.
*/
public Builder setColumnsToAdd(
int index, java.lang.String value) {
if (value == null) { throw new NullPointerException(); }
ensureColumnsToAddIsMutable();
columnsToAdd_.set(index, value);
bitField0_ |= 0x00000004;
onChanged();
return this;
}
/**
*
* The columns from the source table to include; if not provided, all columns are included.
*
*
* repeated string columns_to_add = 3;
* @param value The columnsToAdd to add.
* @return This builder for chaining.
*/
public Builder addColumnsToAdd(
java.lang.String value) {
if (value == null) { throw new NullPointerException(); }
ensureColumnsToAddIsMutable();
columnsToAdd_.add(value);
bitField0_ |= 0x00000004;
onChanged();
return this;
}
/**
*
* The columns from the source table to include; if not provided, all columns are included.
*
*
* repeated string columns_to_add = 3;
* @param values The columnsToAdd to add.
* @return This builder for chaining.
*/
public Builder addAllColumnsToAdd(
java.lang.Iterable values) {
ensureColumnsToAddIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(
values, columnsToAdd_);
bitField0_ |= 0x00000004;
onChanged();
return this;
}
/**
*
* The columns from the source table to include; if not provided, all columns are included.
*
*
* repeated string columns_to_add = 3;
* @return This builder for chaining.
*/
public Builder clearColumnsToAdd() {
columnsToAdd_ =
com.google.protobuf.LazyStringArrayList.emptyList();
bitField0_ = (bitField0_ & ~0x00000004);;
onChanged();
return this;
}
/**
*
* The columns from the source table to include; if not provided, all columns are included.
*
*
* repeated string columns_to_add = 3;
* @param value The bytes of the columnsToAdd to add.
* @return This builder for chaining.
*/
public Builder addColumnsToAddBytes(
com.google.protobuf.ByteString value) {
if (value == null) { throw new NullPointerException(); }
checkByteStringIsUtf8(value);
ensureColumnsToAddIsMutable();
columnsToAdd_.add(value);
bitField0_ |= 0x00000004;
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.MultiJoinInput)
}
// @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.MultiJoinInput)
private static final io.deephaven.proto.backplane.grpc.MultiJoinInput DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new io.deephaven.proto.backplane.grpc.MultiJoinInput();
}
public static io.deephaven.proto.backplane.grpc.MultiJoinInput getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public MultiJoinInput 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.MultiJoinInput getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy