All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.alibaba.graphscope.proto.groot.CommitDataLoadPb Maven / Gradle / Ivy

There is a newer version: 0.28.1
Show newest version
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: groot/sdk/model.proto

package com.alibaba.graphscope.proto.groot;

/**
 * Protobuf type {@code gs.rpc.groot.CommitDataLoadPb}
 */
public final class CommitDataLoadPb extends
    com.google.protobuf.GeneratedMessageV3 implements
    // @@protoc_insertion_point(message_implements:gs.rpc.groot.CommitDataLoadPb)
    CommitDataLoadPbOrBuilder {
private static final long serialVersionUID = 0L;
  // Use CommitDataLoadPb.newBuilder() to construct.
  private CommitDataLoadPb(com.google.protobuf.GeneratedMessageV3.Builder builder) {
    super(builder);
  }
  private CommitDataLoadPb() {
    path_ = "";
  }

  @java.lang.Override
  @SuppressWarnings({"unused"})
  protected java.lang.Object newInstance(
      UnusedPrivateParameter unused) {
    return new CommitDataLoadPb();
  }

  public static final com.google.protobuf.Descriptors.Descriptor
      getDescriptor() {
    return com.alibaba.graphscope.proto.groot.Model.internal_static_gs_rpc_groot_CommitDataLoadPb_descriptor;
  }

  @java.lang.Override
  protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
      internalGetFieldAccessorTable() {
    return com.alibaba.graphscope.proto.groot.Model.internal_static_gs_rpc_groot_CommitDataLoadPb_fieldAccessorTable
        .ensureFieldAccessorsInitialized(
            com.alibaba.graphscope.proto.groot.CommitDataLoadPb.class, com.alibaba.graphscope.proto.groot.CommitDataLoadPb.Builder.class);
  }

  public static final int TARGET_FIELD_NUMBER = 1;
  private com.alibaba.graphscope.proto.groot.DataLoadTargetPb target_;
  /**
   * .gs.rpc.groot.DataLoadTargetPb target = 1;
   * @return Whether the target field is set.
   */
  @java.lang.Override
  public boolean hasTarget() {
    return target_ != null;
  }
  /**
   * .gs.rpc.groot.DataLoadTargetPb target = 1;
   * @return The target.
   */
  @java.lang.Override
  public com.alibaba.graphscope.proto.groot.DataLoadTargetPb getTarget() {
    return target_ == null ? com.alibaba.graphscope.proto.groot.DataLoadTargetPb.getDefaultInstance() : target_;
  }
  /**
   * .gs.rpc.groot.DataLoadTargetPb target = 1;
   */
  @java.lang.Override
  public com.alibaba.graphscope.proto.groot.DataLoadTargetPbOrBuilder getTargetOrBuilder() {
    return target_ == null ? com.alibaba.graphscope.proto.groot.DataLoadTargetPb.getDefaultInstance() : target_;
  }

  public static final int TABLEIDX_FIELD_NUMBER = 2;
  private long tableIdx_ = 0L;
  /**
   * int64 tableIdx = 2;
   * @return The tableIdx.
   */
  @java.lang.Override
  public long getTableIdx() {
    return tableIdx_;
  }

  public static final int PATH_FIELD_NUMBER = 3;
  @SuppressWarnings("serial")
  private volatile java.lang.Object path_ = "";
  /**
   * string path = 3;
   * @return The path.
   */
  @java.lang.Override
  public java.lang.String getPath() {
    java.lang.Object ref = path_;
    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();
      path_ = s;
      return s;
    }
  }
  /**
   * string path = 3;
   * @return The bytes for path.
   */
  @java.lang.Override
  public com.google.protobuf.ByteString
      getPathBytes() {
    java.lang.Object ref = path_;
    if (ref instanceof java.lang.String) {
      com.google.protobuf.ByteString b = 
          com.google.protobuf.ByteString.copyFromUtf8(
              (java.lang.String) ref);
      path_ = b;
      return b;
    } else {
      return (com.google.protobuf.ByteString) ref;
    }
  }

  public static final int PARTITIONID_FIELD_NUMBER = 4;
  private int partitionId_ = 0;
  /**
   * int32 partitionId = 4;
   * @return The partitionId.
   */
  @java.lang.Override
  public int getPartitionId() {
    return partitionId_;
  }

  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 (target_ != null) {
      output.writeMessage(1, getTarget());
    }
    if (tableIdx_ != 0L) {
      output.writeInt64(2, tableIdx_);
    }
    if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(path_)) {
      com.google.protobuf.GeneratedMessageV3.writeString(output, 3, path_);
    }
    if (partitionId_ != 0) {
      output.writeInt32(4, partitionId_);
    }
    getUnknownFields().writeTo(output);
  }

  @java.lang.Override
  public int getSerializedSize() {
    int size = memoizedSize;
    if (size != -1) return size;

    size = 0;
    if (target_ != null) {
      size += com.google.protobuf.CodedOutputStream
        .computeMessageSize(1, getTarget());
    }
    if (tableIdx_ != 0L) {
      size += com.google.protobuf.CodedOutputStream
        .computeInt64Size(2, tableIdx_);
    }
    if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(path_)) {
      size += com.google.protobuf.GeneratedMessageV3.computeStringSize(3, path_);
    }
    if (partitionId_ != 0) {
      size += com.google.protobuf.CodedOutputStream
        .computeInt32Size(4, partitionId_);
    }
    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 com.alibaba.graphscope.proto.groot.CommitDataLoadPb)) {
      return super.equals(obj);
    }
    com.alibaba.graphscope.proto.groot.CommitDataLoadPb other = (com.alibaba.graphscope.proto.groot.CommitDataLoadPb) obj;

    if (hasTarget() != other.hasTarget()) return false;
    if (hasTarget()) {
      if (!getTarget()
          .equals(other.getTarget())) return false;
    }
    if (getTableIdx()
        != other.getTableIdx()) return false;
    if (!getPath()
        .equals(other.getPath())) return false;
    if (getPartitionId()
        != other.getPartitionId()) 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 (hasTarget()) {
      hash = (37 * hash) + TARGET_FIELD_NUMBER;
      hash = (53 * hash) + getTarget().hashCode();
    }
    hash = (37 * hash) + TABLEIDX_FIELD_NUMBER;
    hash = (53 * hash) + com.google.protobuf.Internal.hashLong(
        getTableIdx());
    hash = (37 * hash) + PATH_FIELD_NUMBER;
    hash = (53 * hash) + getPath().hashCode();
    hash = (37 * hash) + PARTITIONID_FIELD_NUMBER;
    hash = (53 * hash) + getPartitionId();
    hash = (29 * hash) + getUnknownFields().hashCode();
    memoizedHashCode = hash;
    return hash;
  }

  public static com.alibaba.graphscope.proto.groot.CommitDataLoadPb parseFrom(
      java.nio.ByteBuffer data)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data);
  }
  public static com.alibaba.graphscope.proto.groot.CommitDataLoadPb parseFrom(
      java.nio.ByteBuffer data,
      com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data, extensionRegistry);
  }
  public static com.alibaba.graphscope.proto.groot.CommitDataLoadPb parseFrom(
      com.google.protobuf.ByteString data)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data);
  }
  public static com.alibaba.graphscope.proto.groot.CommitDataLoadPb parseFrom(
      com.google.protobuf.ByteString data,
      com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data, extensionRegistry);
  }
  public static com.alibaba.graphscope.proto.groot.CommitDataLoadPb parseFrom(byte[] data)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data);
  }
  public static com.alibaba.graphscope.proto.groot.CommitDataLoadPb parseFrom(
      byte[] data,
      com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data, extensionRegistry);
  }
  public static com.alibaba.graphscope.proto.groot.CommitDataLoadPb parseFrom(java.io.InputStream input)
      throws java.io.IOException {
    return com.google.protobuf.GeneratedMessageV3
        .parseWithIOException(PARSER, input);
  }
  public static com.alibaba.graphscope.proto.groot.CommitDataLoadPb 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 com.alibaba.graphscope.proto.groot.CommitDataLoadPb parseDelimitedFrom(java.io.InputStream input)
      throws java.io.IOException {
    return com.google.protobuf.GeneratedMessageV3
        .parseDelimitedWithIOException(PARSER, input);
  }
  public static com.alibaba.graphscope.proto.groot.CommitDataLoadPb 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 com.alibaba.graphscope.proto.groot.CommitDataLoadPb parseFrom(
      com.google.protobuf.CodedInputStream input)
      throws java.io.IOException {
    return com.google.protobuf.GeneratedMessageV3
        .parseWithIOException(PARSER, input);
  }
  public static com.alibaba.graphscope.proto.groot.CommitDataLoadPb 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(com.alibaba.graphscope.proto.groot.CommitDataLoadPb 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 gs.rpc.groot.CommitDataLoadPb}
   */
  public static final class Builder extends
      com.google.protobuf.GeneratedMessageV3.Builder implements
      // @@protoc_insertion_point(builder_implements:gs.rpc.groot.CommitDataLoadPb)
      com.alibaba.graphscope.proto.groot.CommitDataLoadPbOrBuilder {
    public static final com.google.protobuf.Descriptors.Descriptor
        getDescriptor() {
      return com.alibaba.graphscope.proto.groot.Model.internal_static_gs_rpc_groot_CommitDataLoadPb_descriptor;
    }

    @java.lang.Override
    protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
        internalGetFieldAccessorTable() {
      return com.alibaba.graphscope.proto.groot.Model.internal_static_gs_rpc_groot_CommitDataLoadPb_fieldAccessorTable
          .ensureFieldAccessorsInitialized(
              com.alibaba.graphscope.proto.groot.CommitDataLoadPb.class, com.alibaba.graphscope.proto.groot.CommitDataLoadPb.Builder.class);
    }

    // Construct using com.alibaba.graphscope.proto.groot.CommitDataLoadPb.newBuilder()
    private Builder() {

    }

    private Builder(
        com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
      super(parent);

    }
    @java.lang.Override
    public Builder clear() {
      super.clear();
      bitField0_ = 0;
      target_ = null;
      if (targetBuilder_ != null) {
        targetBuilder_.dispose();
        targetBuilder_ = null;
      }
      tableIdx_ = 0L;
      path_ = "";
      partitionId_ = 0;
      return this;
    }

    @java.lang.Override
    public com.google.protobuf.Descriptors.Descriptor
        getDescriptorForType() {
      return com.alibaba.graphscope.proto.groot.Model.internal_static_gs_rpc_groot_CommitDataLoadPb_descriptor;
    }

    @java.lang.Override
    public com.alibaba.graphscope.proto.groot.CommitDataLoadPb getDefaultInstanceForType() {
      return com.alibaba.graphscope.proto.groot.CommitDataLoadPb.getDefaultInstance();
    }

    @java.lang.Override
    public com.alibaba.graphscope.proto.groot.CommitDataLoadPb build() {
      com.alibaba.graphscope.proto.groot.CommitDataLoadPb result = buildPartial();
      if (!result.isInitialized()) {
        throw newUninitializedMessageException(result);
      }
      return result;
    }

    @java.lang.Override
    public com.alibaba.graphscope.proto.groot.CommitDataLoadPb buildPartial() {
      com.alibaba.graphscope.proto.groot.CommitDataLoadPb result = new com.alibaba.graphscope.proto.groot.CommitDataLoadPb(this);
      if (bitField0_ != 0) { buildPartial0(result); }
      onBuilt();
      return result;
    }

    private void buildPartial0(com.alibaba.graphscope.proto.groot.CommitDataLoadPb result) {
      int from_bitField0_ = bitField0_;
      if (((from_bitField0_ & 0x00000001) != 0)) {
        result.target_ = targetBuilder_ == null
            ? target_
            : targetBuilder_.build();
      }
      if (((from_bitField0_ & 0x00000002) != 0)) {
        result.tableIdx_ = tableIdx_;
      }
      if (((from_bitField0_ & 0x00000004) != 0)) {
        result.path_ = path_;
      }
      if (((from_bitField0_ & 0x00000008) != 0)) {
        result.partitionId_ = partitionId_;
      }
    }

    @java.lang.Override
    public Builder mergeFrom(com.google.protobuf.Message other) {
      if (other instanceof com.alibaba.graphscope.proto.groot.CommitDataLoadPb) {
        return mergeFrom((com.alibaba.graphscope.proto.groot.CommitDataLoadPb)other);
      } else {
        super.mergeFrom(other);
        return this;
      }
    }

    public Builder mergeFrom(com.alibaba.graphscope.proto.groot.CommitDataLoadPb other) {
      if (other == com.alibaba.graphscope.proto.groot.CommitDataLoadPb.getDefaultInstance()) return this;
      if (other.hasTarget()) {
        mergeTarget(other.getTarget());
      }
      if (other.getTableIdx() != 0L) {
        setTableIdx(other.getTableIdx());
      }
      if (!other.getPath().isEmpty()) {
        path_ = other.path_;
        bitField0_ |= 0x00000004;
        onChanged();
      }
      if (other.getPartitionId() != 0) {
        setPartitionId(other.getPartitionId());
      }
      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(
                  getTargetFieldBuilder().getBuilder(),
                  extensionRegistry);
              bitField0_ |= 0x00000001;
              break;
            } // case 10
            case 16: {
              tableIdx_ = input.readInt64();
              bitField0_ |= 0x00000002;
              break;
            } // case 16
            case 26: {
              path_ = input.readStringRequireUtf8();
              bitField0_ |= 0x00000004;
              break;
            } // case 26
            case 32: {
              partitionId_ = input.readInt32();
              bitField0_ |= 0x00000008;
              break;
            } // case 32
            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 com.alibaba.graphscope.proto.groot.DataLoadTargetPb target_;
    private com.google.protobuf.SingleFieldBuilderV3<
        com.alibaba.graphscope.proto.groot.DataLoadTargetPb, com.alibaba.graphscope.proto.groot.DataLoadTargetPb.Builder, com.alibaba.graphscope.proto.groot.DataLoadTargetPbOrBuilder> targetBuilder_;
    /**
     * .gs.rpc.groot.DataLoadTargetPb target = 1;
     * @return Whether the target field is set.
     */
    public boolean hasTarget() {
      return ((bitField0_ & 0x00000001) != 0);
    }
    /**
     * .gs.rpc.groot.DataLoadTargetPb target = 1;
     * @return The target.
     */
    public com.alibaba.graphscope.proto.groot.DataLoadTargetPb getTarget() {
      if (targetBuilder_ == null) {
        return target_ == null ? com.alibaba.graphscope.proto.groot.DataLoadTargetPb.getDefaultInstance() : target_;
      } else {
        return targetBuilder_.getMessage();
      }
    }
    /**
     * .gs.rpc.groot.DataLoadTargetPb target = 1;
     */
    public Builder setTarget(com.alibaba.graphscope.proto.groot.DataLoadTargetPb value) {
      if (targetBuilder_ == null) {
        if (value == null) {
          throw new NullPointerException();
        }
        target_ = value;
      } else {
        targetBuilder_.setMessage(value);
      }
      bitField0_ |= 0x00000001;
      onChanged();
      return this;
    }
    /**
     * .gs.rpc.groot.DataLoadTargetPb target = 1;
     */
    public Builder setTarget(
        com.alibaba.graphscope.proto.groot.DataLoadTargetPb.Builder builderForValue) {
      if (targetBuilder_ == null) {
        target_ = builderForValue.build();
      } else {
        targetBuilder_.setMessage(builderForValue.build());
      }
      bitField0_ |= 0x00000001;
      onChanged();
      return this;
    }
    /**
     * .gs.rpc.groot.DataLoadTargetPb target = 1;
     */
    public Builder mergeTarget(com.alibaba.graphscope.proto.groot.DataLoadTargetPb value) {
      if (targetBuilder_ == null) {
        if (((bitField0_ & 0x00000001) != 0) &&
          target_ != null &&
          target_ != com.alibaba.graphscope.proto.groot.DataLoadTargetPb.getDefaultInstance()) {
          getTargetBuilder().mergeFrom(value);
        } else {
          target_ = value;
        }
      } else {
        targetBuilder_.mergeFrom(value);
      }
      bitField0_ |= 0x00000001;
      onChanged();
      return this;
    }
    /**
     * .gs.rpc.groot.DataLoadTargetPb target = 1;
     */
    public Builder clearTarget() {
      bitField0_ = (bitField0_ & ~0x00000001);
      target_ = null;
      if (targetBuilder_ != null) {
        targetBuilder_.dispose();
        targetBuilder_ = null;
      }
      onChanged();
      return this;
    }
    /**
     * .gs.rpc.groot.DataLoadTargetPb target = 1;
     */
    public com.alibaba.graphscope.proto.groot.DataLoadTargetPb.Builder getTargetBuilder() {
      bitField0_ |= 0x00000001;
      onChanged();
      return getTargetFieldBuilder().getBuilder();
    }
    /**
     * .gs.rpc.groot.DataLoadTargetPb target = 1;
     */
    public com.alibaba.graphscope.proto.groot.DataLoadTargetPbOrBuilder getTargetOrBuilder() {
      if (targetBuilder_ != null) {
        return targetBuilder_.getMessageOrBuilder();
      } else {
        return target_ == null ?
            com.alibaba.graphscope.proto.groot.DataLoadTargetPb.getDefaultInstance() : target_;
      }
    }
    /**
     * .gs.rpc.groot.DataLoadTargetPb target = 1;
     */
    private com.google.protobuf.SingleFieldBuilderV3<
        com.alibaba.graphscope.proto.groot.DataLoadTargetPb, com.alibaba.graphscope.proto.groot.DataLoadTargetPb.Builder, com.alibaba.graphscope.proto.groot.DataLoadTargetPbOrBuilder> 
        getTargetFieldBuilder() {
      if (targetBuilder_ == null) {
        targetBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
            com.alibaba.graphscope.proto.groot.DataLoadTargetPb, com.alibaba.graphscope.proto.groot.DataLoadTargetPb.Builder, com.alibaba.graphscope.proto.groot.DataLoadTargetPbOrBuilder>(
                getTarget(),
                getParentForChildren(),
                isClean());
        target_ = null;
      }
      return targetBuilder_;
    }

    private long tableIdx_ ;
    /**
     * int64 tableIdx = 2;
     * @return The tableIdx.
     */
    @java.lang.Override
    public long getTableIdx() {
      return tableIdx_;
    }
    /**
     * int64 tableIdx = 2;
     * @param value The tableIdx to set.
     * @return This builder for chaining.
     */
    public Builder setTableIdx(long value) {

      tableIdx_ = value;
      bitField0_ |= 0x00000002;
      onChanged();
      return this;
    }
    /**
     * int64 tableIdx = 2;
     * @return This builder for chaining.
     */
    public Builder clearTableIdx() {
      bitField0_ = (bitField0_ & ~0x00000002);
      tableIdx_ = 0L;
      onChanged();
      return this;
    }

    private java.lang.Object path_ = "";
    /**
     * string path = 3;
     * @return The path.
     */
    public java.lang.String getPath() {
      java.lang.Object ref = path_;
      if (!(ref instanceof java.lang.String)) {
        com.google.protobuf.ByteString bs =
            (com.google.protobuf.ByteString) ref;
        java.lang.String s = bs.toStringUtf8();
        path_ = s;
        return s;
      } else {
        return (java.lang.String) ref;
      }
    }
    /**
     * string path = 3;
     * @return The bytes for path.
     */
    public com.google.protobuf.ByteString
        getPathBytes() {
      java.lang.Object ref = path_;
      if (ref instanceof String) {
        com.google.protobuf.ByteString b = 
            com.google.protobuf.ByteString.copyFromUtf8(
                (java.lang.String) ref);
        path_ = b;
        return b;
      } else {
        return (com.google.protobuf.ByteString) ref;
      }
    }
    /**
     * string path = 3;
     * @param value The path to set.
     * @return This builder for chaining.
     */
    public Builder setPath(
        java.lang.String value) {
      if (value == null) { throw new NullPointerException(); }
      path_ = value;
      bitField0_ |= 0x00000004;
      onChanged();
      return this;
    }
    /**
     * string path = 3;
     * @return This builder for chaining.
     */
    public Builder clearPath() {
      path_ = getDefaultInstance().getPath();
      bitField0_ = (bitField0_ & ~0x00000004);
      onChanged();
      return this;
    }
    /**
     * string path = 3;
     * @param value The bytes for path to set.
     * @return This builder for chaining.
     */
    public Builder setPathBytes(
        com.google.protobuf.ByteString value) {
      if (value == null) { throw new NullPointerException(); }
      checkByteStringIsUtf8(value);
      path_ = value;
      bitField0_ |= 0x00000004;
      onChanged();
      return this;
    }

    private int partitionId_ ;
    /**
     * int32 partitionId = 4;
     * @return The partitionId.
     */
    @java.lang.Override
    public int getPartitionId() {
      return partitionId_;
    }
    /**
     * int32 partitionId = 4;
     * @param value The partitionId to set.
     * @return This builder for chaining.
     */
    public Builder setPartitionId(int value) {

      partitionId_ = value;
      bitField0_ |= 0x00000008;
      onChanged();
      return this;
    }
    /**
     * int32 partitionId = 4;
     * @return This builder for chaining.
     */
    public Builder clearPartitionId() {
      bitField0_ = (bitField0_ & ~0x00000008);
      partitionId_ = 0;
      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:gs.rpc.groot.CommitDataLoadPb)
  }

  // @@protoc_insertion_point(class_scope:gs.rpc.groot.CommitDataLoadPb)
  private static final com.alibaba.graphscope.proto.groot.CommitDataLoadPb DEFAULT_INSTANCE;
  static {
    DEFAULT_INSTANCE = new com.alibaba.graphscope.proto.groot.CommitDataLoadPb();
  }

  public static com.alibaba.graphscope.proto.groot.CommitDataLoadPb getDefaultInstance() {
    return DEFAULT_INSTANCE;
  }

  private static final com.google.protobuf.Parser
      PARSER = new com.google.protobuf.AbstractParser() {
    @java.lang.Override
    public CommitDataLoadPb 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 com.alibaba.graphscope.proto.groot.CommitDataLoadPb getDefaultInstanceForType() {
    return DEFAULT_INSTANCE;
  }

}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy