java.io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of deephaven-proto-backplane-grpc Show documentation
Show all versions of deephaven-proto-backplane-grpc Show documentation
The Deephaven proto-backplane-grpc
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: deephaven/proto/console.proto
// Protobuf Java Version: 3.25.3
package io.deephaven.proto.backplane.script.grpc;
/**
* Protobuf type {@code io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest}
*/
public final class ChangeDocumentRequest extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest)
ChangeDocumentRequestOrBuilder {
private static final long serialVersionUID = 0L;
// Use ChangeDocumentRequest.newBuilder() to construct.
private ChangeDocumentRequest(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private ChangeDocumentRequest() {
contentChanges_ = java.util.Collections.emptyList();
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(
UnusedPrivateParameter unused) {
return new ChangeDocumentRequest();
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return io.deephaven.proto.backplane.script.grpc.Console.internal_static_io_deephaven_proto_backplane_script_grpc_ChangeDocumentRequest_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return io.deephaven.proto.backplane.script.grpc.Console.internal_static_io_deephaven_proto_backplane_script_grpc_ChangeDocumentRequest_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.class, io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.Builder.class);
}
public interface TextDocumentContentChangeEventOrBuilder extends
// @@protoc_insertion_point(interface_extends:io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent)
com.google.protobuf.MessageOrBuilder {
/**
* .io.deephaven.proto.backplane.script.grpc.DocumentRange range = 1;
* @return Whether the range field is set.
*/
boolean hasRange();
/**
* .io.deephaven.proto.backplane.script.grpc.DocumentRange range = 1;
* @return The range.
*/
io.deephaven.proto.backplane.script.grpc.DocumentRange getRange();
/**
* .io.deephaven.proto.backplane.script.grpc.DocumentRange range = 1;
*/
io.deephaven.proto.backplane.script.grpc.DocumentRangeOrBuilder getRangeOrBuilder();
/**
* int32 range_length = 2;
* @return The rangeLength.
*/
int getRangeLength();
/**
* string text = 3;
* @return The text.
*/
java.lang.String getText();
/**
* string text = 3;
* @return The bytes for text.
*/
com.google.protobuf.ByteString
getTextBytes();
}
/**
* Protobuf type {@code io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent}
*/
public static final class TextDocumentContentChangeEvent extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent)
TextDocumentContentChangeEventOrBuilder {
private static final long serialVersionUID = 0L;
// Use TextDocumentContentChangeEvent.newBuilder() to construct.
private TextDocumentContentChangeEvent(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private TextDocumentContentChangeEvent() {
text_ = "";
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(
UnusedPrivateParameter unused) {
return new TextDocumentContentChangeEvent();
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return io.deephaven.proto.backplane.script.grpc.Console.internal_static_io_deephaven_proto_backplane_script_grpc_ChangeDocumentRequest_TextDocumentContentChangeEvent_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return io.deephaven.proto.backplane.script.grpc.Console.internal_static_io_deephaven_proto_backplane_script_grpc_ChangeDocumentRequest_TextDocumentContentChangeEvent_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent.class, io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent.Builder.class);
}
private int bitField0_;
public static final int RANGE_FIELD_NUMBER = 1;
private io.deephaven.proto.backplane.script.grpc.DocumentRange range_;
/**
* .io.deephaven.proto.backplane.script.grpc.DocumentRange range = 1;
* @return Whether the range field is set.
*/
@java.lang.Override
public boolean hasRange() {
return ((bitField0_ & 0x00000001) != 0);
}
/**
* .io.deephaven.proto.backplane.script.grpc.DocumentRange range = 1;
* @return The range.
*/
@java.lang.Override
public io.deephaven.proto.backplane.script.grpc.DocumentRange getRange() {
return range_ == null ? io.deephaven.proto.backplane.script.grpc.DocumentRange.getDefaultInstance() : range_;
}
/**
* .io.deephaven.proto.backplane.script.grpc.DocumentRange range = 1;
*/
@java.lang.Override
public io.deephaven.proto.backplane.script.grpc.DocumentRangeOrBuilder getRangeOrBuilder() {
return range_ == null ? io.deephaven.proto.backplane.script.grpc.DocumentRange.getDefaultInstance() : range_;
}
public static final int RANGE_LENGTH_FIELD_NUMBER = 2;
private int rangeLength_ = 0;
/**
* int32 range_length = 2;
* @return The rangeLength.
*/
@java.lang.Override
public int getRangeLength() {
return rangeLength_;
}
public static final int TEXT_FIELD_NUMBER = 3;
@SuppressWarnings("serial")
private volatile java.lang.Object text_ = "";
/**
* string text = 3;
* @return The text.
*/
@java.lang.Override
public java.lang.String getText() {
java.lang.Object ref = text_;
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();
text_ = s;
return s;
}
}
/**
* string text = 3;
* @return The bytes for text.
*/
@java.lang.Override
public com.google.protobuf.ByteString
getTextBytes() {
java.lang.Object ref = text_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
text_ = 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, getRange());
}
if (rangeLength_ != 0) {
output.writeInt32(2, rangeLength_);
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(text_)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 3, text_);
}
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, getRange());
}
if (rangeLength_ != 0) {
size += com.google.protobuf.CodedOutputStream
.computeInt32Size(2, rangeLength_);
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(text_)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(3, text_);
}
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.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent)) {
return super.equals(obj);
}
io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent other = (io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent) obj;
if (hasRange() != other.hasRange()) return false;
if (hasRange()) {
if (!getRange()
.equals(other.getRange())) return false;
}
if (getRangeLength()
!= other.getRangeLength()) return false;
if (!getText()
.equals(other.getText())) 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 (hasRange()) {
hash = (37 * hash) + RANGE_FIELD_NUMBER;
hash = (53 * hash) + getRange().hashCode();
}
hash = (37 * hash) + RANGE_LENGTH_FIELD_NUMBER;
hash = (53 * hash) + getRangeLength();
hash = (37 * hash) + TEXT_FIELD_NUMBER;
hash = (53 * hash) + getText().hashCode();
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent 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.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent 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.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent 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.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent 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.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent 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.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent 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.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent)
io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEventOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return io.deephaven.proto.backplane.script.grpc.Console.internal_static_io_deephaven_proto_backplane_script_grpc_ChangeDocumentRequest_TextDocumentContentChangeEvent_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return io.deephaven.proto.backplane.script.grpc.Console.internal_static_io_deephaven_proto_backplane_script_grpc_ChangeDocumentRequest_TextDocumentContentChangeEvent_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent.class, io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent.Builder.class);
}
// Construct using io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
getRangeFieldBuilder();
}
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
range_ = null;
if (rangeBuilder_ != null) {
rangeBuilder_.dispose();
rangeBuilder_ = null;
}
rangeLength_ = 0;
text_ = "";
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return io.deephaven.proto.backplane.script.grpc.Console.internal_static_io_deephaven_proto_backplane_script_grpc_ChangeDocumentRequest_TextDocumentContentChangeEvent_descriptor;
}
@java.lang.Override
public io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent getDefaultInstanceForType() {
return io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent.getDefaultInstance();
}
@java.lang.Override
public io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent build() {
io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent buildPartial() {
io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent result = new io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent(this);
if (bitField0_ != 0) { buildPartial0(result); }
onBuilt();
return result;
}
private void buildPartial0(io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent result) {
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000001) != 0)) {
result.range_ = rangeBuilder_ == null
? range_
: rangeBuilder_.build();
to_bitField0_ |= 0x00000001;
}
if (((from_bitField0_ & 0x00000002) != 0)) {
result.rangeLength_ = rangeLength_;
}
if (((from_bitField0_ & 0x00000004) != 0)) {
result.text_ = text_;
}
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.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent) {
return mergeFrom((io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent other) {
if (other == io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent.getDefaultInstance()) return this;
if (other.hasRange()) {
mergeRange(other.getRange());
}
if (other.getRangeLength() != 0) {
setRangeLength(other.getRangeLength());
}
if (!other.getText().isEmpty()) {
text_ = other.text_;
bitField0_ |= 0x00000004;
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(
getRangeFieldBuilder().getBuilder(),
extensionRegistry);
bitField0_ |= 0x00000001;
break;
} // case 10
case 16: {
rangeLength_ = input.readInt32();
bitField0_ |= 0x00000002;
break;
} // case 16
case 26: {
text_ = input.readStringRequireUtf8();
bitField0_ |= 0x00000004;
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.script.grpc.DocumentRange range_;
private com.google.protobuf.SingleFieldBuilderV3<
io.deephaven.proto.backplane.script.grpc.DocumentRange, io.deephaven.proto.backplane.script.grpc.DocumentRange.Builder, io.deephaven.proto.backplane.script.grpc.DocumentRangeOrBuilder> rangeBuilder_;
/**
* .io.deephaven.proto.backplane.script.grpc.DocumentRange range = 1;
* @return Whether the range field is set.
*/
public boolean hasRange() {
return ((bitField0_ & 0x00000001) != 0);
}
/**
* .io.deephaven.proto.backplane.script.grpc.DocumentRange range = 1;
* @return The range.
*/
public io.deephaven.proto.backplane.script.grpc.DocumentRange getRange() {
if (rangeBuilder_ == null) {
return range_ == null ? io.deephaven.proto.backplane.script.grpc.DocumentRange.getDefaultInstance() : range_;
} else {
return rangeBuilder_.getMessage();
}
}
/**
* .io.deephaven.proto.backplane.script.grpc.DocumentRange range = 1;
*/
public Builder setRange(io.deephaven.proto.backplane.script.grpc.DocumentRange value) {
if (rangeBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
range_ = value;
} else {
rangeBuilder_.setMessage(value);
}
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
* .io.deephaven.proto.backplane.script.grpc.DocumentRange range = 1;
*/
public Builder setRange(
io.deephaven.proto.backplane.script.grpc.DocumentRange.Builder builderForValue) {
if (rangeBuilder_ == null) {
range_ = builderForValue.build();
} else {
rangeBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
* .io.deephaven.proto.backplane.script.grpc.DocumentRange range = 1;
*/
public Builder mergeRange(io.deephaven.proto.backplane.script.grpc.DocumentRange value) {
if (rangeBuilder_ == null) {
if (((bitField0_ & 0x00000001) != 0) &&
range_ != null &&
range_ != io.deephaven.proto.backplane.script.grpc.DocumentRange.getDefaultInstance()) {
getRangeBuilder().mergeFrom(value);
} else {
range_ = value;
}
} else {
rangeBuilder_.mergeFrom(value);
}
if (range_ != null) {
bitField0_ |= 0x00000001;
onChanged();
}
return this;
}
/**
* .io.deephaven.proto.backplane.script.grpc.DocumentRange range = 1;
*/
public Builder clearRange() {
bitField0_ = (bitField0_ & ~0x00000001);
range_ = null;
if (rangeBuilder_ != null) {
rangeBuilder_.dispose();
rangeBuilder_ = null;
}
onChanged();
return this;
}
/**
* .io.deephaven.proto.backplane.script.grpc.DocumentRange range = 1;
*/
public io.deephaven.proto.backplane.script.grpc.DocumentRange.Builder getRangeBuilder() {
bitField0_ |= 0x00000001;
onChanged();
return getRangeFieldBuilder().getBuilder();
}
/**
* .io.deephaven.proto.backplane.script.grpc.DocumentRange range = 1;
*/
public io.deephaven.proto.backplane.script.grpc.DocumentRangeOrBuilder getRangeOrBuilder() {
if (rangeBuilder_ != null) {
return rangeBuilder_.getMessageOrBuilder();
} else {
return range_ == null ?
io.deephaven.proto.backplane.script.grpc.DocumentRange.getDefaultInstance() : range_;
}
}
/**
* .io.deephaven.proto.backplane.script.grpc.DocumentRange range = 1;
*/
private com.google.protobuf.SingleFieldBuilderV3<
io.deephaven.proto.backplane.script.grpc.DocumentRange, io.deephaven.proto.backplane.script.grpc.DocumentRange.Builder, io.deephaven.proto.backplane.script.grpc.DocumentRangeOrBuilder>
getRangeFieldBuilder() {
if (rangeBuilder_ == null) {
rangeBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
io.deephaven.proto.backplane.script.grpc.DocumentRange, io.deephaven.proto.backplane.script.grpc.DocumentRange.Builder, io.deephaven.proto.backplane.script.grpc.DocumentRangeOrBuilder>(
getRange(),
getParentForChildren(),
isClean());
range_ = null;
}
return rangeBuilder_;
}
private int rangeLength_ ;
/**
* int32 range_length = 2;
* @return The rangeLength.
*/
@java.lang.Override
public int getRangeLength() {
return rangeLength_;
}
/**
* int32 range_length = 2;
* @param value The rangeLength to set.
* @return This builder for chaining.
*/
public Builder setRangeLength(int value) {
rangeLength_ = value;
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
* int32 range_length = 2;
* @return This builder for chaining.
*/
public Builder clearRangeLength() {
bitField0_ = (bitField0_ & ~0x00000002);
rangeLength_ = 0;
onChanged();
return this;
}
private java.lang.Object text_ = "";
/**
* string text = 3;
* @return The text.
*/
public java.lang.String getText() {
java.lang.Object ref = text_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
text_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* string text = 3;
* @return The bytes for text.
*/
public com.google.protobuf.ByteString
getTextBytes() {
java.lang.Object ref = text_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
text_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* string text = 3;
* @param value The text to set.
* @return This builder for chaining.
*/
public Builder setText(
java.lang.String value) {
if (value == null) { throw new NullPointerException(); }
text_ = value;
bitField0_ |= 0x00000004;
onChanged();
return this;
}
/**
* string text = 3;
* @return This builder for chaining.
*/
public Builder clearText() {
text_ = getDefaultInstance().getText();
bitField0_ = (bitField0_ & ~0x00000004);
onChanged();
return this;
}
/**
* string text = 3;
* @param value The bytes for text to set.
* @return This builder for chaining.
*/
public Builder setTextBytes(
com.google.protobuf.ByteString value) {
if (value == null) { throw new NullPointerException(); }
checkByteStringIsUtf8(value);
text_ = 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.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent)
}
// @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent)
private static final io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent();
}
public static io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public TextDocumentContentChangeEvent 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.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
private int bitField0_;
public static final int CONSOLE_ID_FIELD_NUMBER = 1;
private io.deephaven.proto.backplane.grpc.Ticket consoleId_;
/**
* .io.deephaven.proto.backplane.grpc.Ticket console_id = 1 [deprecated = true];
* @deprecated io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.console_id is deprecated.
* See deephaven/proto/console.proto;l=195
* @return Whether the consoleId field is set.
*/
@java.lang.Override
@java.lang.Deprecated public boolean hasConsoleId() {
return ((bitField0_ & 0x00000001) != 0);
}
/**
* .io.deephaven.proto.backplane.grpc.Ticket console_id = 1 [deprecated = true];
* @deprecated io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.console_id is deprecated.
* See deephaven/proto/console.proto;l=195
* @return The consoleId.
*/
@java.lang.Override
@java.lang.Deprecated public io.deephaven.proto.backplane.grpc.Ticket getConsoleId() {
return consoleId_ == null ? io.deephaven.proto.backplane.grpc.Ticket.getDefaultInstance() : consoleId_;
}
/**
* .io.deephaven.proto.backplane.grpc.Ticket console_id = 1 [deprecated = true];
*/
@java.lang.Override
@java.lang.Deprecated public io.deephaven.proto.backplane.grpc.TicketOrBuilder getConsoleIdOrBuilder() {
return consoleId_ == null ? io.deephaven.proto.backplane.grpc.Ticket.getDefaultInstance() : consoleId_;
}
public static final int TEXT_DOCUMENT_FIELD_NUMBER = 2;
private io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier textDocument_;
/**
* .io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier text_document = 2;
* @return Whether the textDocument field is set.
*/
@java.lang.Override
public boolean hasTextDocument() {
return ((bitField0_ & 0x00000002) != 0);
}
/**
* .io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier text_document = 2;
* @return The textDocument.
*/
@java.lang.Override
public io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier getTextDocument() {
return textDocument_ == null ? io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier.getDefaultInstance() : textDocument_;
}
/**
* .io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier text_document = 2;
*/
@java.lang.Override
public io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifierOrBuilder getTextDocumentOrBuilder() {
return textDocument_ == null ? io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier.getDefaultInstance() : textDocument_;
}
public static final int CONTENT_CHANGES_FIELD_NUMBER = 3;
@SuppressWarnings("serial")
private java.util.List contentChanges_;
/**
* repeated .io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent content_changes = 3;
*/
@java.lang.Override
public java.util.List getContentChangesList() {
return contentChanges_;
}
/**
* repeated .io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent content_changes = 3;
*/
@java.lang.Override
public java.util.List extends io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEventOrBuilder>
getContentChangesOrBuilderList() {
return contentChanges_;
}
/**
* repeated .io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent content_changes = 3;
*/
@java.lang.Override
public int getContentChangesCount() {
return contentChanges_.size();
}
/**
* repeated .io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent content_changes = 3;
*/
@java.lang.Override
public io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent getContentChanges(int index) {
return contentChanges_.get(index);
}
/**
* repeated .io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent content_changes = 3;
*/
@java.lang.Override
public io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEventOrBuilder getContentChangesOrBuilder(
int index) {
return contentChanges_.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, getConsoleId());
}
if (((bitField0_ & 0x00000002) != 0)) {
output.writeMessage(2, getTextDocument());
}
for (int i = 0; i < contentChanges_.size(); i++) {
output.writeMessage(3, contentChanges_.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, getConsoleId());
}
if (((bitField0_ & 0x00000002) != 0)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(2, getTextDocument());
}
for (int i = 0; i < contentChanges_.size(); i++) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(3, contentChanges_.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.script.grpc.ChangeDocumentRequest)) {
return super.equals(obj);
}
io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest other = (io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest) obj;
if (hasConsoleId() != other.hasConsoleId()) return false;
if (hasConsoleId()) {
if (!getConsoleId()
.equals(other.getConsoleId())) return false;
}
if (hasTextDocument() != other.hasTextDocument()) return false;
if (hasTextDocument()) {
if (!getTextDocument()
.equals(other.getTextDocument())) return false;
}
if (!getContentChangesList()
.equals(other.getContentChangesList())) 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 (hasConsoleId()) {
hash = (37 * hash) + CONSOLE_ID_FIELD_NUMBER;
hash = (53 * hash) + getConsoleId().hashCode();
}
if (hasTextDocument()) {
hash = (37 * hash) + TEXT_DOCUMENT_FIELD_NUMBER;
hash = (53 * hash) + getTextDocument().hashCode();
}
if (getContentChangesCount() > 0) {
hash = (37 * hash) + CONTENT_CHANGES_FIELD_NUMBER;
hash = (53 * hash) + getContentChangesList().hashCode();
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest 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.script.grpc.ChangeDocumentRequest parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest 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.script.grpc.ChangeDocumentRequest parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest 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.script.grpc.ChangeDocumentRequest parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest 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.script.grpc.ChangeDocumentRequest parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest 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.script.grpc.ChangeDocumentRequest 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.script.grpc.ChangeDocumentRequest}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest)
io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequestOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return io.deephaven.proto.backplane.script.grpc.Console.internal_static_io_deephaven_proto_backplane_script_grpc_ChangeDocumentRequest_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return io.deephaven.proto.backplane.script.grpc.Console.internal_static_io_deephaven_proto_backplane_script_grpc_ChangeDocumentRequest_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.class, io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.Builder.class);
}
// Construct using io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
getConsoleIdFieldBuilder();
getTextDocumentFieldBuilder();
getContentChangesFieldBuilder();
}
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
consoleId_ = null;
if (consoleIdBuilder_ != null) {
consoleIdBuilder_.dispose();
consoleIdBuilder_ = null;
}
textDocument_ = null;
if (textDocumentBuilder_ != null) {
textDocumentBuilder_.dispose();
textDocumentBuilder_ = null;
}
if (contentChangesBuilder_ == null) {
contentChanges_ = java.util.Collections.emptyList();
} else {
contentChanges_ = null;
contentChangesBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000004);
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return io.deephaven.proto.backplane.script.grpc.Console.internal_static_io_deephaven_proto_backplane_script_grpc_ChangeDocumentRequest_descriptor;
}
@java.lang.Override
public io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest getDefaultInstanceForType() {
return io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.getDefaultInstance();
}
@java.lang.Override
public io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest build() {
io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest buildPartial() {
io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest result = new io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest(this);
buildPartialRepeatedFields(result);
if (bitField0_ != 0) { buildPartial0(result); }
onBuilt();
return result;
}
private void buildPartialRepeatedFields(io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest result) {
if (contentChangesBuilder_ == null) {
if (((bitField0_ & 0x00000004) != 0)) {
contentChanges_ = java.util.Collections.unmodifiableList(contentChanges_);
bitField0_ = (bitField0_ & ~0x00000004);
}
result.contentChanges_ = contentChanges_;
} else {
result.contentChanges_ = contentChangesBuilder_.build();
}
}
private void buildPartial0(io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest result) {
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000001) != 0)) {
result.consoleId_ = consoleIdBuilder_ == null
? consoleId_
: consoleIdBuilder_.build();
to_bitField0_ |= 0x00000001;
}
if (((from_bitField0_ & 0x00000002) != 0)) {
result.textDocument_ = textDocumentBuilder_ == null
? textDocument_
: textDocumentBuilder_.build();
to_bitField0_ |= 0x00000002;
}
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.script.grpc.ChangeDocumentRequest) {
return mergeFrom((io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest other) {
if (other == io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.getDefaultInstance()) return this;
if (other.hasConsoleId()) {
mergeConsoleId(other.getConsoleId());
}
if (other.hasTextDocument()) {
mergeTextDocument(other.getTextDocument());
}
if (contentChangesBuilder_ == null) {
if (!other.contentChanges_.isEmpty()) {
if (contentChanges_.isEmpty()) {
contentChanges_ = other.contentChanges_;
bitField0_ = (bitField0_ & ~0x00000004);
} else {
ensureContentChangesIsMutable();
contentChanges_.addAll(other.contentChanges_);
}
onChanged();
}
} else {
if (!other.contentChanges_.isEmpty()) {
if (contentChangesBuilder_.isEmpty()) {
contentChangesBuilder_.dispose();
contentChangesBuilder_ = null;
contentChanges_ = other.contentChanges_;
bitField0_ = (bitField0_ & ~0x00000004);
contentChangesBuilder_ =
com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ?
getContentChangesFieldBuilder() : null;
} else {
contentChangesBuilder_.addAllMessages(other.contentChanges_);
}
}
}
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(
getConsoleIdFieldBuilder().getBuilder(),
extensionRegistry);
bitField0_ |= 0x00000001;
break;
} // case 10
case 18: {
input.readMessage(
getTextDocumentFieldBuilder().getBuilder(),
extensionRegistry);
bitField0_ |= 0x00000002;
break;
} // case 18
case 26: {
io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent m =
input.readMessage(
io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent.parser(),
extensionRegistry);
if (contentChangesBuilder_ == null) {
ensureContentChangesIsMutable();
contentChanges_.add(m);
} else {
contentChangesBuilder_.addMessage(m);
}
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.Ticket consoleId_;
private com.google.protobuf.SingleFieldBuilderV3<
io.deephaven.proto.backplane.grpc.Ticket, io.deephaven.proto.backplane.grpc.Ticket.Builder, io.deephaven.proto.backplane.grpc.TicketOrBuilder> consoleIdBuilder_;
/**
* .io.deephaven.proto.backplane.grpc.Ticket console_id = 1 [deprecated = true];
* @deprecated io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.console_id is deprecated.
* See deephaven/proto/console.proto;l=195
* @return Whether the consoleId field is set.
*/
@java.lang.Deprecated public boolean hasConsoleId() {
return ((bitField0_ & 0x00000001) != 0);
}
/**
* .io.deephaven.proto.backplane.grpc.Ticket console_id = 1 [deprecated = true];
* @deprecated io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.console_id is deprecated.
* See deephaven/proto/console.proto;l=195
* @return The consoleId.
*/
@java.lang.Deprecated public io.deephaven.proto.backplane.grpc.Ticket getConsoleId() {
if (consoleIdBuilder_ == null) {
return consoleId_ == null ? io.deephaven.proto.backplane.grpc.Ticket.getDefaultInstance() : consoleId_;
} else {
return consoleIdBuilder_.getMessage();
}
}
/**
* .io.deephaven.proto.backplane.grpc.Ticket console_id = 1 [deprecated = true];
*/
@java.lang.Deprecated public Builder setConsoleId(io.deephaven.proto.backplane.grpc.Ticket value) {
if (consoleIdBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
consoleId_ = value;
} else {
consoleIdBuilder_.setMessage(value);
}
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
* .io.deephaven.proto.backplane.grpc.Ticket console_id = 1 [deprecated = true];
*/
@java.lang.Deprecated public Builder setConsoleId(
io.deephaven.proto.backplane.grpc.Ticket.Builder builderForValue) {
if (consoleIdBuilder_ == null) {
consoleId_ = builderForValue.build();
} else {
consoleIdBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
* .io.deephaven.proto.backplane.grpc.Ticket console_id = 1 [deprecated = true];
*/
@java.lang.Deprecated public Builder mergeConsoleId(io.deephaven.proto.backplane.grpc.Ticket value) {
if (consoleIdBuilder_ == null) {
if (((bitField0_ & 0x00000001) != 0) &&
consoleId_ != null &&
consoleId_ != io.deephaven.proto.backplane.grpc.Ticket.getDefaultInstance()) {
getConsoleIdBuilder().mergeFrom(value);
} else {
consoleId_ = value;
}
} else {
consoleIdBuilder_.mergeFrom(value);
}
if (consoleId_ != null) {
bitField0_ |= 0x00000001;
onChanged();
}
return this;
}
/**
* .io.deephaven.proto.backplane.grpc.Ticket console_id = 1 [deprecated = true];
*/
@java.lang.Deprecated public Builder clearConsoleId() {
bitField0_ = (bitField0_ & ~0x00000001);
consoleId_ = null;
if (consoleIdBuilder_ != null) {
consoleIdBuilder_.dispose();
consoleIdBuilder_ = null;
}
onChanged();
return this;
}
/**
* .io.deephaven.proto.backplane.grpc.Ticket console_id = 1 [deprecated = true];
*/
@java.lang.Deprecated public io.deephaven.proto.backplane.grpc.Ticket.Builder getConsoleIdBuilder() {
bitField0_ |= 0x00000001;
onChanged();
return getConsoleIdFieldBuilder().getBuilder();
}
/**
* .io.deephaven.proto.backplane.grpc.Ticket console_id = 1 [deprecated = true];
*/
@java.lang.Deprecated public io.deephaven.proto.backplane.grpc.TicketOrBuilder getConsoleIdOrBuilder() {
if (consoleIdBuilder_ != null) {
return consoleIdBuilder_.getMessageOrBuilder();
} else {
return consoleId_ == null ?
io.deephaven.proto.backplane.grpc.Ticket.getDefaultInstance() : consoleId_;
}
}
/**
* .io.deephaven.proto.backplane.grpc.Ticket console_id = 1 [deprecated = true];
*/
private com.google.protobuf.SingleFieldBuilderV3<
io.deephaven.proto.backplane.grpc.Ticket, io.deephaven.proto.backplane.grpc.Ticket.Builder, io.deephaven.proto.backplane.grpc.TicketOrBuilder>
getConsoleIdFieldBuilder() {
if (consoleIdBuilder_ == null) {
consoleIdBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
io.deephaven.proto.backplane.grpc.Ticket, io.deephaven.proto.backplane.grpc.Ticket.Builder, io.deephaven.proto.backplane.grpc.TicketOrBuilder>(
getConsoleId(),
getParentForChildren(),
isClean());
consoleId_ = null;
}
return consoleIdBuilder_;
}
private io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier textDocument_;
private com.google.protobuf.SingleFieldBuilderV3<
io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier, io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier.Builder, io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifierOrBuilder> textDocumentBuilder_;
/**
* .io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier text_document = 2;
* @return Whether the textDocument field is set.
*/
public boolean hasTextDocument() {
return ((bitField0_ & 0x00000002) != 0);
}
/**
* .io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier text_document = 2;
* @return The textDocument.
*/
public io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier getTextDocument() {
if (textDocumentBuilder_ == null) {
return textDocument_ == null ? io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier.getDefaultInstance() : textDocument_;
} else {
return textDocumentBuilder_.getMessage();
}
}
/**
* .io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier text_document = 2;
*/
public Builder setTextDocument(io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier value) {
if (textDocumentBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
textDocument_ = value;
} else {
textDocumentBuilder_.setMessage(value);
}
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
* .io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier text_document = 2;
*/
public Builder setTextDocument(
io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier.Builder builderForValue) {
if (textDocumentBuilder_ == null) {
textDocument_ = builderForValue.build();
} else {
textDocumentBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
* .io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier text_document = 2;
*/
public Builder mergeTextDocument(io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier value) {
if (textDocumentBuilder_ == null) {
if (((bitField0_ & 0x00000002) != 0) &&
textDocument_ != null &&
textDocument_ != io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier.getDefaultInstance()) {
getTextDocumentBuilder().mergeFrom(value);
} else {
textDocument_ = value;
}
} else {
textDocumentBuilder_.mergeFrom(value);
}
if (textDocument_ != null) {
bitField0_ |= 0x00000002;
onChanged();
}
return this;
}
/**
* .io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier text_document = 2;
*/
public Builder clearTextDocument() {
bitField0_ = (bitField0_ & ~0x00000002);
textDocument_ = null;
if (textDocumentBuilder_ != null) {
textDocumentBuilder_.dispose();
textDocumentBuilder_ = null;
}
onChanged();
return this;
}
/**
* .io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier text_document = 2;
*/
public io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier.Builder getTextDocumentBuilder() {
bitField0_ |= 0x00000002;
onChanged();
return getTextDocumentFieldBuilder().getBuilder();
}
/**
* .io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier text_document = 2;
*/
public io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifierOrBuilder getTextDocumentOrBuilder() {
if (textDocumentBuilder_ != null) {
return textDocumentBuilder_.getMessageOrBuilder();
} else {
return textDocument_ == null ?
io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier.getDefaultInstance() : textDocument_;
}
}
/**
* .io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier text_document = 2;
*/
private com.google.protobuf.SingleFieldBuilderV3<
io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier, io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier.Builder, io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifierOrBuilder>
getTextDocumentFieldBuilder() {
if (textDocumentBuilder_ == null) {
textDocumentBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier, io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier.Builder, io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifierOrBuilder>(
getTextDocument(),
getParentForChildren(),
isClean());
textDocument_ = null;
}
return textDocumentBuilder_;
}
private java.util.List contentChanges_ =
java.util.Collections.emptyList();
private void ensureContentChangesIsMutable() {
if (!((bitField0_ & 0x00000004) != 0)) {
contentChanges_ = new java.util.ArrayList(contentChanges_);
bitField0_ |= 0x00000004;
}
}
private com.google.protobuf.RepeatedFieldBuilderV3<
io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent, io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent.Builder, io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEventOrBuilder> contentChangesBuilder_;
/**
* repeated .io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent content_changes = 3;
*/
public java.util.List getContentChangesList() {
if (contentChangesBuilder_ == null) {
return java.util.Collections.unmodifiableList(contentChanges_);
} else {
return contentChangesBuilder_.getMessageList();
}
}
/**
* repeated .io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent content_changes = 3;
*/
public int getContentChangesCount() {
if (contentChangesBuilder_ == null) {
return contentChanges_.size();
} else {
return contentChangesBuilder_.getCount();
}
}
/**
* repeated .io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent content_changes = 3;
*/
public io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent getContentChanges(int index) {
if (contentChangesBuilder_ == null) {
return contentChanges_.get(index);
} else {
return contentChangesBuilder_.getMessage(index);
}
}
/**
* repeated .io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent content_changes = 3;
*/
public Builder setContentChanges(
int index, io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent value) {
if (contentChangesBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureContentChangesIsMutable();
contentChanges_.set(index, value);
onChanged();
} else {
contentChangesBuilder_.setMessage(index, value);
}
return this;
}
/**
* repeated .io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent content_changes = 3;
*/
public Builder setContentChanges(
int index, io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent.Builder builderForValue) {
if (contentChangesBuilder_ == null) {
ensureContentChangesIsMutable();
contentChanges_.set(index, builderForValue.build());
onChanged();
} else {
contentChangesBuilder_.setMessage(index, builderForValue.build());
}
return this;
}
/**
* repeated .io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent content_changes = 3;
*/
public Builder addContentChanges(io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent value) {
if (contentChangesBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureContentChangesIsMutable();
contentChanges_.add(value);
onChanged();
} else {
contentChangesBuilder_.addMessage(value);
}
return this;
}
/**
* repeated .io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent content_changes = 3;
*/
public Builder addContentChanges(
int index, io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent value) {
if (contentChangesBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureContentChangesIsMutable();
contentChanges_.add(index, value);
onChanged();
} else {
contentChangesBuilder_.addMessage(index, value);
}
return this;
}
/**
* repeated .io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent content_changes = 3;
*/
public Builder addContentChanges(
io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent.Builder builderForValue) {
if (contentChangesBuilder_ == null) {
ensureContentChangesIsMutable();
contentChanges_.add(builderForValue.build());
onChanged();
} else {
contentChangesBuilder_.addMessage(builderForValue.build());
}
return this;
}
/**
* repeated .io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent content_changes = 3;
*/
public Builder addContentChanges(
int index, io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent.Builder builderForValue) {
if (contentChangesBuilder_ == null) {
ensureContentChangesIsMutable();
contentChanges_.add(index, builderForValue.build());
onChanged();
} else {
contentChangesBuilder_.addMessage(index, builderForValue.build());
}
return this;
}
/**
* repeated .io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent content_changes = 3;
*/
public Builder addAllContentChanges(
java.lang.Iterable extends io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent> values) {
if (contentChangesBuilder_ == null) {
ensureContentChangesIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(
values, contentChanges_);
onChanged();
} else {
contentChangesBuilder_.addAllMessages(values);
}
return this;
}
/**
* repeated .io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent content_changes = 3;
*/
public Builder clearContentChanges() {
if (contentChangesBuilder_ == null) {
contentChanges_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000004);
onChanged();
} else {
contentChangesBuilder_.clear();
}
return this;
}
/**
* repeated .io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent content_changes = 3;
*/
public Builder removeContentChanges(int index) {
if (contentChangesBuilder_ == null) {
ensureContentChangesIsMutable();
contentChanges_.remove(index);
onChanged();
} else {
contentChangesBuilder_.remove(index);
}
return this;
}
/**
* repeated .io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent content_changes = 3;
*/
public io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent.Builder getContentChangesBuilder(
int index) {
return getContentChangesFieldBuilder().getBuilder(index);
}
/**
* repeated .io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent content_changes = 3;
*/
public io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEventOrBuilder getContentChangesOrBuilder(
int index) {
if (contentChangesBuilder_ == null) {
return contentChanges_.get(index); } else {
return contentChangesBuilder_.getMessageOrBuilder(index);
}
}
/**
* repeated .io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent content_changes = 3;
*/
public java.util.List extends io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEventOrBuilder>
getContentChangesOrBuilderList() {
if (contentChangesBuilder_ != null) {
return contentChangesBuilder_.getMessageOrBuilderList();
} else {
return java.util.Collections.unmodifiableList(contentChanges_);
}
}
/**
* repeated .io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent content_changes = 3;
*/
public io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent.Builder addContentChangesBuilder() {
return getContentChangesFieldBuilder().addBuilder(
io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent.getDefaultInstance());
}
/**
* repeated .io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent content_changes = 3;
*/
public io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent.Builder addContentChangesBuilder(
int index) {
return getContentChangesFieldBuilder().addBuilder(
index, io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent.getDefaultInstance());
}
/**
* repeated .io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent content_changes = 3;
*/
public java.util.List
getContentChangesBuilderList() {
return getContentChangesFieldBuilder().getBuilderList();
}
private com.google.protobuf.RepeatedFieldBuilderV3<
io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent, io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent.Builder, io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEventOrBuilder>
getContentChangesFieldBuilder() {
if (contentChangesBuilder_ == null) {
contentChangesBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3<
io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent, io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent.Builder, io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEventOrBuilder>(
contentChanges_,
((bitField0_ & 0x00000004) != 0),
getParentForChildren(),
isClean());
contentChanges_ = null;
}
return contentChangesBuilder_;
}
@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.script.grpc.ChangeDocumentRequest)
}
// @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest)
private static final io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest();
}
public static io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public ChangeDocumentRequest 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.script.grpc.ChangeDocumentRequest getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}