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

com.vesoft.nebula.proto.common.LocalDatetime Maven / Gradle / Ivy

The newest version!
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: common.proto

// Protobuf Java Version: 3.25.1
package com.vesoft.nebula.proto.common;

/**
 * Protobuf type {@code nebula.proto.common.LocalDatetime}
 */
public final class LocalDatetime extends
    com.google.protobuf.GeneratedMessageV3 implements
    // @@protoc_insertion_point(message_implements:nebula.proto.common.LocalDatetime)
    LocalDatetimeOrBuilder {
private static final long serialVersionUID = 0L;
  // Use LocalDatetime.newBuilder() to construct.
  private LocalDatetime(com.google.protobuf.GeneratedMessageV3.Builder builder) {
    super(builder);
  }
  private LocalDatetime() {
  }

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

  public static final com.google.protobuf.Descriptors.Descriptor
      getDescriptor() {
    return com.vesoft.nebula.proto.common.Common.internal_static_nebula_proto_common_LocalDatetime_descriptor;
  }

  @java.lang.Override
  protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
      internalGetFieldAccessorTable() {
    return com.vesoft.nebula.proto.common.Common.internal_static_nebula_proto_common_LocalDatetime_fieldAccessorTable
        .ensureFieldAccessorsInitialized(
            com.vesoft.nebula.proto.common.LocalDatetime.class, com.vesoft.nebula.proto.common.LocalDatetime.Builder.class);
  }

  public static final int YEAR_FIELD_NUMBER = 1;
  private int year_ = 0;
  /**
   * int32 year = 1;
   * @return The year.
   */
  @java.lang.Override
  public int getYear() {
    return year_;
  }

  public static final int MONTH_FIELD_NUMBER = 2;
  private int month_ = 0;
  /**
   * uint32 month = 2;
   * @return The month.
   */
  @java.lang.Override
  public int getMonth() {
    return month_;
  }

  public static final int DAY_FIELD_NUMBER = 3;
  private int day_ = 0;
  /**
   * uint32 day = 3;
   * @return The day.
   */
  @java.lang.Override
  public int getDay() {
    return day_;
  }

  public static final int HOUR_FIELD_NUMBER = 4;
  private int hour_ = 0;
  /**
   * uint32 hour = 4;
   * @return The hour.
   */
  @java.lang.Override
  public int getHour() {
    return hour_;
  }

  public static final int MINUTE_FIELD_NUMBER = 5;
  private int minute_ = 0;
  /**
   * uint32 minute = 5;
   * @return The minute.
   */
  @java.lang.Override
  public int getMinute() {
    return minute_;
  }

  public static final int SEC_FIELD_NUMBER = 6;
  private int sec_ = 0;
  /**
   * uint32 sec = 6;
   * @return The sec.
   */
  @java.lang.Override
  public int getSec() {
    return sec_;
  }

  public static final int MICROSEC_FIELD_NUMBER = 7;
  private int microsec_ = 0;
  /**
   * uint32 microsec = 7;
   * @return The microsec.
   */
  @java.lang.Override
  public int getMicrosec() {
    return microsec_;
  }

  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 (year_ != 0) {
      output.writeInt32(1, year_);
    }
    if (month_ != 0) {
      output.writeUInt32(2, month_);
    }
    if (day_ != 0) {
      output.writeUInt32(3, day_);
    }
    if (hour_ != 0) {
      output.writeUInt32(4, hour_);
    }
    if (minute_ != 0) {
      output.writeUInt32(5, minute_);
    }
    if (sec_ != 0) {
      output.writeUInt32(6, sec_);
    }
    if (microsec_ != 0) {
      output.writeUInt32(7, microsec_);
    }
    getUnknownFields().writeTo(output);
  }

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

    size = 0;
    if (year_ != 0) {
      size += com.google.protobuf.CodedOutputStream
        .computeInt32Size(1, year_);
    }
    if (month_ != 0) {
      size += com.google.protobuf.CodedOutputStream
        .computeUInt32Size(2, month_);
    }
    if (day_ != 0) {
      size += com.google.protobuf.CodedOutputStream
        .computeUInt32Size(3, day_);
    }
    if (hour_ != 0) {
      size += com.google.protobuf.CodedOutputStream
        .computeUInt32Size(4, hour_);
    }
    if (minute_ != 0) {
      size += com.google.protobuf.CodedOutputStream
        .computeUInt32Size(5, minute_);
    }
    if (sec_ != 0) {
      size += com.google.protobuf.CodedOutputStream
        .computeUInt32Size(6, sec_);
    }
    if (microsec_ != 0) {
      size += com.google.protobuf.CodedOutputStream
        .computeUInt32Size(7, microsec_);
    }
    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.vesoft.nebula.proto.common.LocalDatetime)) {
      return super.equals(obj);
    }
    com.vesoft.nebula.proto.common.LocalDatetime other = (com.vesoft.nebula.proto.common.LocalDatetime) obj;

    if (getYear()
        != other.getYear()) return false;
    if (getMonth()
        != other.getMonth()) return false;
    if (getDay()
        != other.getDay()) return false;
    if (getHour()
        != other.getHour()) return false;
    if (getMinute()
        != other.getMinute()) return false;
    if (getSec()
        != other.getSec()) return false;
    if (getMicrosec()
        != other.getMicrosec()) 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();
    hash = (37 * hash) + YEAR_FIELD_NUMBER;
    hash = (53 * hash) + getYear();
    hash = (37 * hash) + MONTH_FIELD_NUMBER;
    hash = (53 * hash) + getMonth();
    hash = (37 * hash) + DAY_FIELD_NUMBER;
    hash = (53 * hash) + getDay();
    hash = (37 * hash) + HOUR_FIELD_NUMBER;
    hash = (53 * hash) + getHour();
    hash = (37 * hash) + MINUTE_FIELD_NUMBER;
    hash = (53 * hash) + getMinute();
    hash = (37 * hash) + SEC_FIELD_NUMBER;
    hash = (53 * hash) + getSec();
    hash = (37 * hash) + MICROSEC_FIELD_NUMBER;
    hash = (53 * hash) + getMicrosec();
    hash = (29 * hash) + getUnknownFields().hashCode();
    memoizedHashCode = hash;
    return hash;
  }

  public static com.vesoft.nebula.proto.common.LocalDatetime parseFrom(
      java.nio.ByteBuffer data)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data);
  }
  public static com.vesoft.nebula.proto.common.LocalDatetime parseFrom(
      java.nio.ByteBuffer data,
      com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data, extensionRegistry);
  }
  public static com.vesoft.nebula.proto.common.LocalDatetime parseFrom(
      com.google.protobuf.ByteString data)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data);
  }
  public static com.vesoft.nebula.proto.common.LocalDatetime parseFrom(
      com.google.protobuf.ByteString data,
      com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data, extensionRegistry);
  }
  public static com.vesoft.nebula.proto.common.LocalDatetime parseFrom(byte[] data)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data);
  }
  public static com.vesoft.nebula.proto.common.LocalDatetime parseFrom(
      byte[] data,
      com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data, extensionRegistry);
  }
  public static com.vesoft.nebula.proto.common.LocalDatetime parseFrom(java.io.InputStream input)
      throws java.io.IOException {
    return com.google.protobuf.GeneratedMessageV3
        .parseWithIOException(PARSER, input);
  }
  public static com.vesoft.nebula.proto.common.LocalDatetime 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.vesoft.nebula.proto.common.LocalDatetime parseDelimitedFrom(java.io.InputStream input)
      throws java.io.IOException {
    return com.google.protobuf.GeneratedMessageV3
        .parseDelimitedWithIOException(PARSER, input);
  }

  public static com.vesoft.nebula.proto.common.LocalDatetime 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.vesoft.nebula.proto.common.LocalDatetime parseFrom(
      com.google.protobuf.CodedInputStream input)
      throws java.io.IOException {
    return com.google.protobuf.GeneratedMessageV3
        .parseWithIOException(PARSER, input);
  }
  public static com.vesoft.nebula.proto.common.LocalDatetime 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.vesoft.nebula.proto.common.LocalDatetime 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 nebula.proto.common.LocalDatetime}
   */
  public static final class Builder extends
      com.google.protobuf.GeneratedMessageV3.Builder implements
      // @@protoc_insertion_point(builder_implements:nebula.proto.common.LocalDatetime)
      com.vesoft.nebula.proto.common.LocalDatetimeOrBuilder {
    public static final com.google.protobuf.Descriptors.Descriptor
        getDescriptor() {
      return com.vesoft.nebula.proto.common.Common.internal_static_nebula_proto_common_LocalDatetime_descriptor;
    }

    @java.lang.Override
    protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
        internalGetFieldAccessorTable() {
      return com.vesoft.nebula.proto.common.Common.internal_static_nebula_proto_common_LocalDatetime_fieldAccessorTable
          .ensureFieldAccessorsInitialized(
              com.vesoft.nebula.proto.common.LocalDatetime.class, com.vesoft.nebula.proto.common.LocalDatetime.Builder.class);
    }

    // Construct using com.vesoft.nebula.proto.common.LocalDatetime.newBuilder()
    private Builder() {

    }

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

    }
    @java.lang.Override
    public Builder clear() {
      super.clear();
      bitField0_ = 0;
      year_ = 0;
      month_ = 0;
      day_ = 0;
      hour_ = 0;
      minute_ = 0;
      sec_ = 0;
      microsec_ = 0;
      return this;
    }

    @java.lang.Override
    public com.google.protobuf.Descriptors.Descriptor
        getDescriptorForType() {
      return com.vesoft.nebula.proto.common.Common.internal_static_nebula_proto_common_LocalDatetime_descriptor;
    }

    @java.lang.Override
    public com.vesoft.nebula.proto.common.LocalDatetime getDefaultInstanceForType() {
      return com.vesoft.nebula.proto.common.LocalDatetime.getDefaultInstance();
    }

    @java.lang.Override
    public com.vesoft.nebula.proto.common.LocalDatetime build() {
      com.vesoft.nebula.proto.common.LocalDatetime result = buildPartial();
      if (!result.isInitialized()) {
        throw newUninitializedMessageException(result);
      }
      return result;
    }

    @java.lang.Override
    public com.vesoft.nebula.proto.common.LocalDatetime buildPartial() {
      com.vesoft.nebula.proto.common.LocalDatetime result = new com.vesoft.nebula.proto.common.LocalDatetime(this);
      if (bitField0_ != 0) { buildPartial0(result); }
      onBuilt();
      return result;
    }

    private void buildPartial0(com.vesoft.nebula.proto.common.LocalDatetime result) {
      int from_bitField0_ = bitField0_;
      if (((from_bitField0_ & 0x00000001) != 0)) {
        result.year_ = year_;
      }
      if (((from_bitField0_ & 0x00000002) != 0)) {
        result.month_ = month_;
      }
      if (((from_bitField0_ & 0x00000004) != 0)) {
        result.day_ = day_;
      }
      if (((from_bitField0_ & 0x00000008) != 0)) {
        result.hour_ = hour_;
      }
      if (((from_bitField0_ & 0x00000010) != 0)) {
        result.minute_ = minute_;
      }
      if (((from_bitField0_ & 0x00000020) != 0)) {
        result.sec_ = sec_;
      }
      if (((from_bitField0_ & 0x00000040) != 0)) {
        result.microsec_ = microsec_;
      }
    }

    @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 com.vesoft.nebula.proto.common.LocalDatetime) {
        return mergeFrom((com.vesoft.nebula.proto.common.LocalDatetime)other);
      } else {
        super.mergeFrom(other);
        return this;
      }
    }

    public Builder mergeFrom(com.vesoft.nebula.proto.common.LocalDatetime other) {
      if (other == com.vesoft.nebula.proto.common.LocalDatetime.getDefaultInstance()) return this;
      if (other.getYear() != 0) {
        setYear(other.getYear());
      }
      if (other.getMonth() != 0) {
        setMonth(other.getMonth());
      }
      if (other.getDay() != 0) {
        setDay(other.getDay());
      }
      if (other.getHour() != 0) {
        setHour(other.getHour());
      }
      if (other.getMinute() != 0) {
        setMinute(other.getMinute());
      }
      if (other.getSec() != 0) {
        setSec(other.getSec());
      }
      if (other.getMicrosec() != 0) {
        setMicrosec(other.getMicrosec());
      }
      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 8: {
              year_ = input.readInt32();
              bitField0_ |= 0x00000001;
              break;
            } // case 8
            case 16: {
              month_ = input.readUInt32();
              bitField0_ |= 0x00000002;
              break;
            } // case 16
            case 24: {
              day_ = input.readUInt32();
              bitField0_ |= 0x00000004;
              break;
            } // case 24
            case 32: {
              hour_ = input.readUInt32();
              bitField0_ |= 0x00000008;
              break;
            } // case 32
            case 40: {
              minute_ = input.readUInt32();
              bitField0_ |= 0x00000010;
              break;
            } // case 40
            case 48: {
              sec_ = input.readUInt32();
              bitField0_ |= 0x00000020;
              break;
            } // case 48
            case 56: {
              microsec_ = input.readUInt32();
              bitField0_ |= 0x00000040;
              break;
            } // case 56
            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 int year_ ;
    /**
     * int32 year = 1;
     * @return The year.
     */
    @java.lang.Override
    public int getYear() {
      return year_;
    }
    /**
     * int32 year = 1;
     * @param value The year to set.
     * @return This builder for chaining.
     */
    public Builder setYear(int value) {

      year_ = value;
      bitField0_ |= 0x00000001;
      onChanged();
      return this;
    }
    /**
     * int32 year = 1;
     * @return This builder for chaining.
     */
    public Builder clearYear() {
      bitField0_ = (bitField0_ & ~0x00000001);
      year_ = 0;
      onChanged();
      return this;
    }

    private int month_ ;
    /**
     * uint32 month = 2;
     * @return The month.
     */
    @java.lang.Override
    public int getMonth() {
      return month_;
    }
    /**
     * uint32 month = 2;
     * @param value The month to set.
     * @return This builder for chaining.
     */
    public Builder setMonth(int value) {

      month_ = value;
      bitField0_ |= 0x00000002;
      onChanged();
      return this;
    }
    /**
     * uint32 month = 2;
     * @return This builder for chaining.
     */
    public Builder clearMonth() {
      bitField0_ = (bitField0_ & ~0x00000002);
      month_ = 0;
      onChanged();
      return this;
    }

    private int day_ ;
    /**
     * uint32 day = 3;
     * @return The day.
     */
    @java.lang.Override
    public int getDay() {
      return day_;
    }
    /**
     * uint32 day = 3;
     * @param value The day to set.
     * @return This builder for chaining.
     */
    public Builder setDay(int value) {

      day_ = value;
      bitField0_ |= 0x00000004;
      onChanged();
      return this;
    }
    /**
     * uint32 day = 3;
     * @return This builder for chaining.
     */
    public Builder clearDay() {
      bitField0_ = (bitField0_ & ~0x00000004);
      day_ = 0;
      onChanged();
      return this;
    }

    private int hour_ ;
    /**
     * uint32 hour = 4;
     * @return The hour.
     */
    @java.lang.Override
    public int getHour() {
      return hour_;
    }
    /**
     * uint32 hour = 4;
     * @param value The hour to set.
     * @return This builder for chaining.
     */
    public Builder setHour(int value) {

      hour_ = value;
      bitField0_ |= 0x00000008;
      onChanged();
      return this;
    }
    /**
     * uint32 hour = 4;
     * @return This builder for chaining.
     */
    public Builder clearHour() {
      bitField0_ = (bitField0_ & ~0x00000008);
      hour_ = 0;
      onChanged();
      return this;
    }

    private int minute_ ;
    /**
     * uint32 minute = 5;
     * @return The minute.
     */
    @java.lang.Override
    public int getMinute() {
      return minute_;
    }
    /**
     * uint32 minute = 5;
     * @param value The minute to set.
     * @return This builder for chaining.
     */
    public Builder setMinute(int value) {

      minute_ = value;
      bitField0_ |= 0x00000010;
      onChanged();
      return this;
    }
    /**
     * uint32 minute = 5;
     * @return This builder for chaining.
     */
    public Builder clearMinute() {
      bitField0_ = (bitField0_ & ~0x00000010);
      minute_ = 0;
      onChanged();
      return this;
    }

    private int sec_ ;
    /**
     * uint32 sec = 6;
     * @return The sec.
     */
    @java.lang.Override
    public int getSec() {
      return sec_;
    }
    /**
     * uint32 sec = 6;
     * @param value The sec to set.
     * @return This builder for chaining.
     */
    public Builder setSec(int value) {

      sec_ = value;
      bitField0_ |= 0x00000020;
      onChanged();
      return this;
    }
    /**
     * uint32 sec = 6;
     * @return This builder for chaining.
     */
    public Builder clearSec() {
      bitField0_ = (bitField0_ & ~0x00000020);
      sec_ = 0;
      onChanged();
      return this;
    }

    private int microsec_ ;
    /**
     * uint32 microsec = 7;
     * @return The microsec.
     */
    @java.lang.Override
    public int getMicrosec() {
      return microsec_;
    }
    /**
     * uint32 microsec = 7;
     * @param value The microsec to set.
     * @return This builder for chaining.
     */
    public Builder setMicrosec(int value) {

      microsec_ = value;
      bitField0_ |= 0x00000040;
      onChanged();
      return this;
    }
    /**
     * uint32 microsec = 7;
     * @return This builder for chaining.
     */
    public Builder clearMicrosec() {
      bitField0_ = (bitField0_ & ~0x00000040);
      microsec_ = 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:nebula.proto.common.LocalDatetime)
  }

  // @@protoc_insertion_point(class_scope:nebula.proto.common.LocalDatetime)
  private static final com.vesoft.nebula.proto.common.LocalDatetime DEFAULT_INSTANCE;
  static {
    DEFAULT_INSTANCE = new com.vesoft.nebula.proto.common.LocalDatetime();
  }

  public static com.vesoft.nebula.proto.common.LocalDatetime getDefaultInstance() {
    return DEFAULT_INSTANCE;
  }

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

}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy