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

com.vesoft.nebula.proto.common.Duration 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;

/**
 * 
 **
 * Only 4 and 8 byte integers are supported by protobuf.
 * These integers are encoded as varints on wire.
 * If the memory footprint is a concern, we should implement our
 * own codec scheme for some of messages like `Duration' and `Date'.
 * 
* * Protobuf type {@code nebula.proto.common.Duration} */ public final class Duration extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:nebula.proto.common.Duration) DurationOrBuilder { private static final long serialVersionUID = 0L; // Use Duration.newBuilder() to construct. private Duration(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } private Duration() { } @java.lang.Override @SuppressWarnings({"unused"}) protected java.lang.Object newInstance( UnusedPrivateParameter unused) { return new Duration(); } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.vesoft.nebula.proto.common.Common.internal_static_nebula_proto_common_Duration_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.vesoft.nebula.proto.common.Common.internal_static_nebula_proto_common_Duration_fieldAccessorTable .ensureFieldAccessorsInitialized( com.vesoft.nebula.proto.common.Duration.class, com.vesoft.nebula.proto.common.Duration.Builder.class); } public static final int IS_MONTH_BASED_FIELD_NUMBER = 1; private boolean isMonthBased_ = false; /** * bool is_month_based = 1; * @return The isMonthBased. */ @java.lang.Override public boolean getIsMonthBased() { return isMonthBased_; } public static final int YEAR_FIELD_NUMBER = 2; private int year_ = 0; /** * int32 year = 2; * @return The year. */ @java.lang.Override public int getYear() { return year_; } public static final int MONTH_FIELD_NUMBER = 3; private int month_ = 0; /** * int32 month = 3; * @return The month. */ @java.lang.Override public int getMonth() { return month_; } public static final int DAY_FIELD_NUMBER = 4; private int day_ = 0; /** * int32 day = 4; * @return The day. */ @java.lang.Override public int getDay() { return day_; } public static final int HOUR_FIELD_NUMBER = 5; private int hour_ = 0; /** * int32 hour = 5; * @return The hour. */ @java.lang.Override public int getHour() { return hour_; } public static final int MINUTE_FIELD_NUMBER = 6; private int minute_ = 0; /** * int32 minute = 6; * @return The minute. */ @java.lang.Override public int getMinute() { return minute_; } public static final int SEC_FIELD_NUMBER = 7; private int sec_ = 0; /** * int32 sec = 7; * @return The sec. */ @java.lang.Override public int getSec() { return sec_; } public static final int MICROSEC_FIELD_NUMBER = 8; private int microsec_ = 0; /** * int32 microsec = 8; * @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 (isMonthBased_ != false) { output.writeBool(1, isMonthBased_); } if (year_ != 0) { output.writeInt32(2, year_); } if (month_ != 0) { output.writeInt32(3, month_); } if (day_ != 0) { output.writeInt32(4, day_); } if (hour_ != 0) { output.writeInt32(5, hour_); } if (minute_ != 0) { output.writeInt32(6, minute_); } if (sec_ != 0) { output.writeInt32(7, sec_); } if (microsec_ != 0) { output.writeInt32(8, microsec_); } getUnknownFields().writeTo(output); } @java.lang.Override public int getSerializedSize() { int size = memoizedSize; if (size != -1) return size; size = 0; if (isMonthBased_ != false) { size += com.google.protobuf.CodedOutputStream .computeBoolSize(1, isMonthBased_); } if (year_ != 0) { size += com.google.protobuf.CodedOutputStream .computeInt32Size(2, year_); } if (month_ != 0) { size += com.google.protobuf.CodedOutputStream .computeInt32Size(3, month_); } if (day_ != 0) { size += com.google.protobuf.CodedOutputStream .computeInt32Size(4, day_); } if (hour_ != 0) { size += com.google.protobuf.CodedOutputStream .computeInt32Size(5, hour_); } if (minute_ != 0) { size += com.google.protobuf.CodedOutputStream .computeInt32Size(6, minute_); } if (sec_ != 0) { size += com.google.protobuf.CodedOutputStream .computeInt32Size(7, sec_); } if (microsec_ != 0) { size += com.google.protobuf.CodedOutputStream .computeInt32Size(8, 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.Duration)) { return super.equals(obj); } com.vesoft.nebula.proto.common.Duration other = (com.vesoft.nebula.proto.common.Duration) obj; if (getIsMonthBased() != other.getIsMonthBased()) return false; 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) + IS_MONTH_BASED_FIELD_NUMBER; hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean( getIsMonthBased()); 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.Duration parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.vesoft.nebula.proto.common.Duration 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.Duration parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.vesoft.nebula.proto.common.Duration 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.Duration parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.vesoft.nebula.proto.common.Duration 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.Duration parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static com.vesoft.nebula.proto.common.Duration 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.Duration parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } public static com.vesoft.nebula.proto.common.Duration 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.Duration 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.Duration 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.Duration 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; } /** *
   **
   * Only 4 and 8 byte integers are supported by protobuf.
   * These integers are encoded as varints on wire.
   * If the memory footprint is a concern, we should implement our
   * own codec scheme for some of messages like `Duration' and `Date'.
   * 
* * Protobuf type {@code nebula.proto.common.Duration} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:nebula.proto.common.Duration) com.vesoft.nebula.proto.common.DurationOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.vesoft.nebula.proto.common.Common.internal_static_nebula_proto_common_Duration_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.vesoft.nebula.proto.common.Common.internal_static_nebula_proto_common_Duration_fieldAccessorTable .ensureFieldAccessorsInitialized( com.vesoft.nebula.proto.common.Duration.class, com.vesoft.nebula.proto.common.Duration.Builder.class); } // Construct using com.vesoft.nebula.proto.common.Duration.newBuilder() private Builder() { } private Builder( com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); } @java.lang.Override public Builder clear() { super.clear(); bitField0_ = 0; isMonthBased_ = false; 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_Duration_descriptor; } @java.lang.Override public com.vesoft.nebula.proto.common.Duration getDefaultInstanceForType() { return com.vesoft.nebula.proto.common.Duration.getDefaultInstance(); } @java.lang.Override public com.vesoft.nebula.proto.common.Duration build() { com.vesoft.nebula.proto.common.Duration result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @java.lang.Override public com.vesoft.nebula.proto.common.Duration buildPartial() { com.vesoft.nebula.proto.common.Duration result = new com.vesoft.nebula.proto.common.Duration(this); if (bitField0_ != 0) { buildPartial0(result); } onBuilt(); return result; } private void buildPartial0(com.vesoft.nebula.proto.common.Duration result) { int from_bitField0_ = bitField0_; if (((from_bitField0_ & 0x00000001) != 0)) { result.isMonthBased_ = isMonthBased_; } if (((from_bitField0_ & 0x00000002) != 0)) { result.year_ = year_; } if (((from_bitField0_ & 0x00000004) != 0)) { result.month_ = month_; } if (((from_bitField0_ & 0x00000008) != 0)) { result.day_ = day_; } if (((from_bitField0_ & 0x00000010) != 0)) { result.hour_ = hour_; } if (((from_bitField0_ & 0x00000020) != 0)) { result.minute_ = minute_; } if (((from_bitField0_ & 0x00000040) != 0)) { result.sec_ = sec_; } if (((from_bitField0_ & 0x00000080) != 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.Duration) { return mergeFrom((com.vesoft.nebula.proto.common.Duration)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(com.vesoft.nebula.proto.common.Duration other) { if (other == com.vesoft.nebula.proto.common.Duration.getDefaultInstance()) return this; if (other.getIsMonthBased() != false) { setIsMonthBased(other.getIsMonthBased()); } 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: { isMonthBased_ = input.readBool(); bitField0_ |= 0x00000001; break; } // case 8 case 16: { year_ = input.readInt32(); bitField0_ |= 0x00000002; break; } // case 16 case 24: { month_ = input.readInt32(); bitField0_ |= 0x00000004; break; } // case 24 case 32: { day_ = input.readInt32(); bitField0_ |= 0x00000008; break; } // case 32 case 40: { hour_ = input.readInt32(); bitField0_ |= 0x00000010; break; } // case 40 case 48: { minute_ = input.readInt32(); bitField0_ |= 0x00000020; break; } // case 48 case 56: { sec_ = input.readInt32(); bitField0_ |= 0x00000040; break; } // case 56 case 64: { microsec_ = input.readInt32(); bitField0_ |= 0x00000080; break; } // case 64 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 boolean isMonthBased_ ; /** * bool is_month_based = 1; * @return The isMonthBased. */ @java.lang.Override public boolean getIsMonthBased() { return isMonthBased_; } /** * bool is_month_based = 1; * @param value The isMonthBased to set. * @return This builder for chaining. */ public Builder setIsMonthBased(boolean value) { isMonthBased_ = value; bitField0_ |= 0x00000001; onChanged(); return this; } /** * bool is_month_based = 1; * @return This builder for chaining. */ public Builder clearIsMonthBased() { bitField0_ = (bitField0_ & ~0x00000001); isMonthBased_ = false; onChanged(); return this; } private int year_ ; /** * int32 year = 2; * @return The year. */ @java.lang.Override public int getYear() { return year_; } /** * int32 year = 2; * @param value The year to set. * @return This builder for chaining. */ public Builder setYear(int value) { year_ = value; bitField0_ |= 0x00000002; onChanged(); return this; } /** * int32 year = 2; * @return This builder for chaining. */ public Builder clearYear() { bitField0_ = (bitField0_ & ~0x00000002); year_ = 0; onChanged(); return this; } private int month_ ; /** * int32 month = 3; * @return The month. */ @java.lang.Override public int getMonth() { return month_; } /** * int32 month = 3; * @param value The month to set. * @return This builder for chaining. */ public Builder setMonth(int value) { month_ = value; bitField0_ |= 0x00000004; onChanged(); return this; } /** * int32 month = 3; * @return This builder for chaining. */ public Builder clearMonth() { bitField0_ = (bitField0_ & ~0x00000004); month_ = 0; onChanged(); return this; } private int day_ ; /** * int32 day = 4; * @return The day. */ @java.lang.Override public int getDay() { return day_; } /** * int32 day = 4; * @param value The day to set. * @return This builder for chaining. */ public Builder setDay(int value) { day_ = value; bitField0_ |= 0x00000008; onChanged(); return this; } /** * int32 day = 4; * @return This builder for chaining. */ public Builder clearDay() { bitField0_ = (bitField0_ & ~0x00000008); day_ = 0; onChanged(); return this; } private int hour_ ; /** * int32 hour = 5; * @return The hour. */ @java.lang.Override public int getHour() { return hour_; } /** * int32 hour = 5; * @param value The hour to set. * @return This builder for chaining. */ public Builder setHour(int value) { hour_ = value; bitField0_ |= 0x00000010; onChanged(); return this; } /** * int32 hour = 5; * @return This builder for chaining. */ public Builder clearHour() { bitField0_ = (bitField0_ & ~0x00000010); hour_ = 0; onChanged(); return this; } private int minute_ ; /** * int32 minute = 6; * @return The minute. */ @java.lang.Override public int getMinute() { return minute_; } /** * int32 minute = 6; * @param value The minute to set. * @return This builder for chaining. */ public Builder setMinute(int value) { minute_ = value; bitField0_ |= 0x00000020; onChanged(); return this; } /** * int32 minute = 6; * @return This builder for chaining. */ public Builder clearMinute() { bitField0_ = (bitField0_ & ~0x00000020); minute_ = 0; onChanged(); return this; } private int sec_ ; /** * int32 sec = 7; * @return The sec. */ @java.lang.Override public int getSec() { return sec_; } /** * int32 sec = 7; * @param value The sec to set. * @return This builder for chaining. */ public Builder setSec(int value) { sec_ = value; bitField0_ |= 0x00000040; onChanged(); return this; } /** * int32 sec = 7; * @return This builder for chaining. */ public Builder clearSec() { bitField0_ = (bitField0_ & ~0x00000040); sec_ = 0; onChanged(); return this; } private int microsec_ ; /** * int32 microsec = 8; * @return The microsec. */ @java.lang.Override public int getMicrosec() { return microsec_; } /** * int32 microsec = 8; * @param value The microsec to set. * @return This builder for chaining. */ public Builder setMicrosec(int value) { microsec_ = value; bitField0_ |= 0x00000080; onChanged(); return this; } /** * int32 microsec = 8; * @return This builder for chaining. */ public Builder clearMicrosec() { bitField0_ = (bitField0_ & ~0x00000080); 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.Duration) } // @@protoc_insertion_point(class_scope:nebula.proto.common.Duration) private static final com.vesoft.nebula.proto.common.Duration DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new com.vesoft.nebula.proto.common.Duration(); } public static com.vesoft.nebula.proto.common.Duration getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { @java.lang.Override public Duration 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.Duration getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy