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

com.alibaba.graphscope.proto.groot.VersionedSchemaResp 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/schema.proto

package com.alibaba.graphscope.proto.groot;

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

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

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

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

  public static final int RESP_FIELD_NUMBER = 1;
  private com.alibaba.graphscope.proto.groot.Response resp_;
  /**
   * .gs.rpc.groot.Response resp = 1;
   * @return Whether the resp field is set.
   */
  @java.lang.Override
  public boolean hasResp() {
    return resp_ != null;
  }
  /**
   * .gs.rpc.groot.Response resp = 1;
   * @return The resp.
   */
  @java.lang.Override
  public com.alibaba.graphscope.proto.groot.Response getResp() {
    return resp_ == null ? com.alibaba.graphscope.proto.groot.Response.getDefaultInstance() : resp_;
  }
  /**
   * .gs.rpc.groot.Response resp = 1;
   */
  @java.lang.Override
  public com.alibaba.graphscope.proto.groot.ResponseOrBuilder getRespOrBuilder() {
    return resp_ == null ? com.alibaba.graphscope.proto.groot.Response.getDefaultInstance() : resp_;
  }

  public static final int SCHEMA_FIELD_NUMBER = 2;
  private com.alibaba.graphscope.proto.groot.SchemaProto schema_;
  /**
   * .gs.rpc.groot.SchemaProto schema = 2;
   * @return Whether the schema field is set.
   */
  @java.lang.Override
  public boolean hasSchema() {
    return schema_ != null;
  }
  /**
   * .gs.rpc.groot.SchemaProto schema = 2;
   * @return The schema.
   */
  @java.lang.Override
  public com.alibaba.graphscope.proto.groot.SchemaProto getSchema() {
    return schema_ == null ? com.alibaba.graphscope.proto.groot.SchemaProto.getDefaultInstance() : schema_;
  }
  /**
   * .gs.rpc.groot.SchemaProto schema = 2;
   */
  @java.lang.Override
  public com.alibaba.graphscope.proto.groot.SchemaProtoOrBuilder getSchemaOrBuilder() {
    return schema_ == null ? com.alibaba.graphscope.proto.groot.SchemaProto.getDefaultInstance() : schema_;
  }

  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 (resp_ != null) {
      output.writeMessage(1, getResp());
    }
    if (schema_ != null) {
      output.writeMessage(2, getSchema());
    }
    getUnknownFields().writeTo(output);
  }

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

    size = 0;
    if (resp_ != null) {
      size += com.google.protobuf.CodedOutputStream
        .computeMessageSize(1, getResp());
    }
    if (schema_ != null) {
      size += com.google.protobuf.CodedOutputStream
        .computeMessageSize(2, getSchema());
    }
    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.VersionedSchemaResp)) {
      return super.equals(obj);
    }
    com.alibaba.graphscope.proto.groot.VersionedSchemaResp other = (com.alibaba.graphscope.proto.groot.VersionedSchemaResp) obj;

    if (hasResp() != other.hasResp()) return false;
    if (hasResp()) {
      if (!getResp()
          .equals(other.getResp())) return false;
    }
    if (hasSchema() != other.hasSchema()) return false;
    if (hasSchema()) {
      if (!getSchema()
          .equals(other.getSchema())) 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 (hasResp()) {
      hash = (37 * hash) + RESP_FIELD_NUMBER;
      hash = (53 * hash) + getResp().hashCode();
    }
    if (hasSchema()) {
      hash = (37 * hash) + SCHEMA_FIELD_NUMBER;
      hash = (53 * hash) + getSchema().hashCode();
    }
    hash = (29 * hash) + getUnknownFields().hashCode();
    memoizedHashCode = hash;
    return hash;
  }

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

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

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

    }

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

    }
    @java.lang.Override
    public Builder clear() {
      super.clear();
      bitField0_ = 0;
      resp_ = null;
      if (respBuilder_ != null) {
        respBuilder_.dispose();
        respBuilder_ = null;
      }
      schema_ = null;
      if (schemaBuilder_ != null) {
        schemaBuilder_.dispose();
        schemaBuilder_ = null;
      }
      return this;
    }

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

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

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

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

    private void buildPartial0(com.alibaba.graphscope.proto.groot.VersionedSchemaResp result) {
      int from_bitField0_ = bitField0_;
      if (((from_bitField0_ & 0x00000001) != 0)) {
        result.resp_ = respBuilder_ == null
            ? resp_
            : respBuilder_.build();
      }
      if (((from_bitField0_ & 0x00000002) != 0)) {
        result.schema_ = schemaBuilder_ == null
            ? schema_
            : schemaBuilder_.build();
      }
    }

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

    public Builder mergeFrom(com.alibaba.graphscope.proto.groot.VersionedSchemaResp other) {
      if (other == com.alibaba.graphscope.proto.groot.VersionedSchemaResp.getDefaultInstance()) return this;
      if (other.hasResp()) {
        mergeResp(other.getResp());
      }
      if (other.hasSchema()) {
        mergeSchema(other.getSchema());
      }
      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(
                  getRespFieldBuilder().getBuilder(),
                  extensionRegistry);
              bitField0_ |= 0x00000001;
              break;
            } // case 10
            case 18: {
              input.readMessage(
                  getSchemaFieldBuilder().getBuilder(),
                  extensionRegistry);
              bitField0_ |= 0x00000002;
              break;
            } // case 18
            default: {
              if (!super.parseUnknownField(input, extensionRegistry, tag)) {
                done = true; // was an endgroup tag
              }
              break;
            } // default:
          } // switch (tag)
        } // while (!done)
      } catch (com.google.protobuf.InvalidProtocolBufferException e) {
        throw e.unwrapIOException();
      } finally {
        onChanged();
      } // finally
      return this;
    }
    private int bitField0_;

    private com.alibaba.graphscope.proto.groot.Response resp_;
    private com.google.protobuf.SingleFieldBuilderV3<
        com.alibaba.graphscope.proto.groot.Response, com.alibaba.graphscope.proto.groot.Response.Builder, com.alibaba.graphscope.proto.groot.ResponseOrBuilder> respBuilder_;
    /**
     * .gs.rpc.groot.Response resp = 1;
     * @return Whether the resp field is set.
     */
    public boolean hasResp() {
      return ((bitField0_ & 0x00000001) != 0);
    }
    /**
     * .gs.rpc.groot.Response resp = 1;
     * @return The resp.
     */
    public com.alibaba.graphscope.proto.groot.Response getResp() {
      if (respBuilder_ == null) {
        return resp_ == null ? com.alibaba.graphscope.proto.groot.Response.getDefaultInstance() : resp_;
      } else {
        return respBuilder_.getMessage();
      }
    }
    /**
     * .gs.rpc.groot.Response resp = 1;
     */
    public Builder setResp(com.alibaba.graphscope.proto.groot.Response value) {
      if (respBuilder_ == null) {
        if (value == null) {
          throw new NullPointerException();
        }
        resp_ = value;
      } else {
        respBuilder_.setMessage(value);
      }
      bitField0_ |= 0x00000001;
      onChanged();
      return this;
    }
    /**
     * .gs.rpc.groot.Response resp = 1;
     */
    public Builder setResp(
        com.alibaba.graphscope.proto.groot.Response.Builder builderForValue) {
      if (respBuilder_ == null) {
        resp_ = builderForValue.build();
      } else {
        respBuilder_.setMessage(builderForValue.build());
      }
      bitField0_ |= 0x00000001;
      onChanged();
      return this;
    }
    /**
     * .gs.rpc.groot.Response resp = 1;
     */
    public Builder mergeResp(com.alibaba.graphscope.proto.groot.Response value) {
      if (respBuilder_ == null) {
        if (((bitField0_ & 0x00000001) != 0) &&
          resp_ != null &&
          resp_ != com.alibaba.graphscope.proto.groot.Response.getDefaultInstance()) {
          getRespBuilder().mergeFrom(value);
        } else {
          resp_ = value;
        }
      } else {
        respBuilder_.mergeFrom(value);
      }
      bitField0_ |= 0x00000001;
      onChanged();
      return this;
    }
    /**
     * .gs.rpc.groot.Response resp = 1;
     */
    public Builder clearResp() {
      bitField0_ = (bitField0_ & ~0x00000001);
      resp_ = null;
      if (respBuilder_ != null) {
        respBuilder_.dispose();
        respBuilder_ = null;
      }
      onChanged();
      return this;
    }
    /**
     * .gs.rpc.groot.Response resp = 1;
     */
    public com.alibaba.graphscope.proto.groot.Response.Builder getRespBuilder() {
      bitField0_ |= 0x00000001;
      onChanged();
      return getRespFieldBuilder().getBuilder();
    }
    /**
     * .gs.rpc.groot.Response resp = 1;
     */
    public com.alibaba.graphscope.proto.groot.ResponseOrBuilder getRespOrBuilder() {
      if (respBuilder_ != null) {
        return respBuilder_.getMessageOrBuilder();
      } else {
        return resp_ == null ?
            com.alibaba.graphscope.proto.groot.Response.getDefaultInstance() : resp_;
      }
    }
    /**
     * .gs.rpc.groot.Response resp = 1;
     */
    private com.google.protobuf.SingleFieldBuilderV3<
        com.alibaba.graphscope.proto.groot.Response, com.alibaba.graphscope.proto.groot.Response.Builder, com.alibaba.graphscope.proto.groot.ResponseOrBuilder> 
        getRespFieldBuilder() {
      if (respBuilder_ == null) {
        respBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
            com.alibaba.graphscope.proto.groot.Response, com.alibaba.graphscope.proto.groot.Response.Builder, com.alibaba.graphscope.proto.groot.ResponseOrBuilder>(
                getResp(),
                getParentForChildren(),
                isClean());
        resp_ = null;
      }
      return respBuilder_;
    }

    private com.alibaba.graphscope.proto.groot.SchemaProto schema_;
    private com.google.protobuf.SingleFieldBuilderV3<
        com.alibaba.graphscope.proto.groot.SchemaProto, com.alibaba.graphscope.proto.groot.SchemaProto.Builder, com.alibaba.graphscope.proto.groot.SchemaProtoOrBuilder> schemaBuilder_;
    /**
     * .gs.rpc.groot.SchemaProto schema = 2;
     * @return Whether the schema field is set.
     */
    public boolean hasSchema() {
      return ((bitField0_ & 0x00000002) != 0);
    }
    /**
     * .gs.rpc.groot.SchemaProto schema = 2;
     * @return The schema.
     */
    public com.alibaba.graphscope.proto.groot.SchemaProto getSchema() {
      if (schemaBuilder_ == null) {
        return schema_ == null ? com.alibaba.graphscope.proto.groot.SchemaProto.getDefaultInstance() : schema_;
      } else {
        return schemaBuilder_.getMessage();
      }
    }
    /**
     * .gs.rpc.groot.SchemaProto schema = 2;
     */
    public Builder setSchema(com.alibaba.graphscope.proto.groot.SchemaProto value) {
      if (schemaBuilder_ == null) {
        if (value == null) {
          throw new NullPointerException();
        }
        schema_ = value;
      } else {
        schemaBuilder_.setMessage(value);
      }
      bitField0_ |= 0x00000002;
      onChanged();
      return this;
    }
    /**
     * .gs.rpc.groot.SchemaProto schema = 2;
     */
    public Builder setSchema(
        com.alibaba.graphscope.proto.groot.SchemaProto.Builder builderForValue) {
      if (schemaBuilder_ == null) {
        schema_ = builderForValue.build();
      } else {
        schemaBuilder_.setMessage(builderForValue.build());
      }
      bitField0_ |= 0x00000002;
      onChanged();
      return this;
    }
    /**
     * .gs.rpc.groot.SchemaProto schema = 2;
     */
    public Builder mergeSchema(com.alibaba.graphscope.proto.groot.SchemaProto value) {
      if (schemaBuilder_ == null) {
        if (((bitField0_ & 0x00000002) != 0) &&
          schema_ != null &&
          schema_ != com.alibaba.graphscope.proto.groot.SchemaProto.getDefaultInstance()) {
          getSchemaBuilder().mergeFrom(value);
        } else {
          schema_ = value;
        }
      } else {
        schemaBuilder_.mergeFrom(value);
      }
      bitField0_ |= 0x00000002;
      onChanged();
      return this;
    }
    /**
     * .gs.rpc.groot.SchemaProto schema = 2;
     */
    public Builder clearSchema() {
      bitField0_ = (bitField0_ & ~0x00000002);
      schema_ = null;
      if (schemaBuilder_ != null) {
        schemaBuilder_.dispose();
        schemaBuilder_ = null;
      }
      onChanged();
      return this;
    }
    /**
     * .gs.rpc.groot.SchemaProto schema = 2;
     */
    public com.alibaba.graphscope.proto.groot.SchemaProto.Builder getSchemaBuilder() {
      bitField0_ |= 0x00000002;
      onChanged();
      return getSchemaFieldBuilder().getBuilder();
    }
    /**
     * .gs.rpc.groot.SchemaProto schema = 2;
     */
    public com.alibaba.graphscope.proto.groot.SchemaProtoOrBuilder getSchemaOrBuilder() {
      if (schemaBuilder_ != null) {
        return schemaBuilder_.getMessageOrBuilder();
      } else {
        return schema_ == null ?
            com.alibaba.graphscope.proto.groot.SchemaProto.getDefaultInstance() : schema_;
      }
    }
    /**
     * .gs.rpc.groot.SchemaProto schema = 2;
     */
    private com.google.protobuf.SingleFieldBuilderV3<
        com.alibaba.graphscope.proto.groot.SchemaProto, com.alibaba.graphscope.proto.groot.SchemaProto.Builder, com.alibaba.graphscope.proto.groot.SchemaProtoOrBuilder> 
        getSchemaFieldBuilder() {
      if (schemaBuilder_ == null) {
        schemaBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
            com.alibaba.graphscope.proto.groot.SchemaProto, com.alibaba.graphscope.proto.groot.SchemaProto.Builder, com.alibaba.graphscope.proto.groot.SchemaProtoOrBuilder>(
                getSchema(),
                getParentForChildren(),
                isClean());
        schema_ = null;
      }
      return schemaBuilder_;
    }
    @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.VersionedSchemaResp)
  }

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

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

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

}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy