com.vesoft.nebula.proto.common.ZonedTime 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.ZonedTime}
*/
public final class ZonedTime extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:nebula.proto.common.ZonedTime)
ZonedTimeOrBuilder {
private static final long serialVersionUID = 0L;
// Use ZonedTime.newBuilder() to construct.
private ZonedTime(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private ZonedTime() {
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(
UnusedPrivateParameter unused) {
return new ZonedTime();
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.vesoft.nebula.proto.common.Common.internal_static_nebula_proto_common_ZonedTime_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.vesoft.nebula.proto.common.Common.internal_static_nebula_proto_common_ZonedTime_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.vesoft.nebula.proto.common.ZonedTime.class, com.vesoft.nebula.proto.common.ZonedTime.Builder.class);
}
public static final int HOUR_FIELD_NUMBER = 1;
private int hour_ = 0;
/**
* uint32 hour = 1;
* @return The hour.
*/
@java.lang.Override
public int getHour() {
return hour_;
}
public static final int MINUTE_FIELD_NUMBER = 2;
private int minute_ = 0;
/**
* uint32 minute = 2;
* @return The minute.
*/
@java.lang.Override
public int getMinute() {
return minute_;
}
public static final int SEC_FIELD_NUMBER = 3;
private int sec_ = 0;
/**
* uint32 sec = 3;
* @return The sec.
*/
@java.lang.Override
public int getSec() {
return sec_;
}
public static final int MICROSEC_FIELD_NUMBER = 4;
private int microsec_ = 0;
/**
* uint32 microsec = 4;
* @return The microsec.
*/
@java.lang.Override
public int getMicrosec() {
return microsec_;
}
public static final int OFFSET_FIELD_NUMBER = 5;
private int offset_ = 0;
/**
* int32 offset = 5;
* @return The offset.
*/
@java.lang.Override
public int getOffset() {
return offset_;
}
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 (hour_ != 0) {
output.writeUInt32(1, hour_);
}
if (minute_ != 0) {
output.writeUInt32(2, minute_);
}
if (sec_ != 0) {
output.writeUInt32(3, sec_);
}
if (microsec_ != 0) {
output.writeUInt32(4, microsec_);
}
if (offset_ != 0) {
output.writeInt32(5, offset_);
}
getUnknownFields().writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (hour_ != 0) {
size += com.google.protobuf.CodedOutputStream
.computeUInt32Size(1, hour_);
}
if (minute_ != 0) {
size += com.google.protobuf.CodedOutputStream
.computeUInt32Size(2, minute_);
}
if (sec_ != 0) {
size += com.google.protobuf.CodedOutputStream
.computeUInt32Size(3, sec_);
}
if (microsec_ != 0) {
size += com.google.protobuf.CodedOutputStream
.computeUInt32Size(4, microsec_);
}
if (offset_ != 0) {
size += com.google.protobuf.CodedOutputStream
.computeInt32Size(5, offset_);
}
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.ZonedTime)) {
return super.equals(obj);
}
com.vesoft.nebula.proto.common.ZonedTime other = (com.vesoft.nebula.proto.common.ZonedTime) obj;
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 (getOffset()
!= other.getOffset()) 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) + 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 = (37 * hash) + OFFSET_FIELD_NUMBER;
hash = (53 * hash) + getOffset();
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.vesoft.nebula.proto.common.ZonedTime parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.vesoft.nebula.proto.common.ZonedTime 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.ZonedTime parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.vesoft.nebula.proto.common.ZonedTime 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.ZonedTime parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.vesoft.nebula.proto.common.ZonedTime 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.ZonedTime parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.vesoft.nebula.proto.common.ZonedTime 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.ZonedTime parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static com.vesoft.nebula.proto.common.ZonedTime 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.ZonedTime 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.ZonedTime 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.ZonedTime 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.ZonedTime}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:nebula.proto.common.ZonedTime)
com.vesoft.nebula.proto.common.ZonedTimeOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.vesoft.nebula.proto.common.Common.internal_static_nebula_proto_common_ZonedTime_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.vesoft.nebula.proto.common.Common.internal_static_nebula_proto_common_ZonedTime_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.vesoft.nebula.proto.common.ZonedTime.class, com.vesoft.nebula.proto.common.ZonedTime.Builder.class);
}
// Construct using com.vesoft.nebula.proto.common.ZonedTime.newBuilder()
private Builder() {
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
hour_ = 0;
minute_ = 0;
sec_ = 0;
microsec_ = 0;
offset_ = 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_ZonedTime_descriptor;
}
@java.lang.Override
public com.vesoft.nebula.proto.common.ZonedTime getDefaultInstanceForType() {
return com.vesoft.nebula.proto.common.ZonedTime.getDefaultInstance();
}
@java.lang.Override
public com.vesoft.nebula.proto.common.ZonedTime build() {
com.vesoft.nebula.proto.common.ZonedTime result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public com.vesoft.nebula.proto.common.ZonedTime buildPartial() {
com.vesoft.nebula.proto.common.ZonedTime result = new com.vesoft.nebula.proto.common.ZonedTime(this);
if (bitField0_ != 0) { buildPartial0(result); }
onBuilt();
return result;
}
private void buildPartial0(com.vesoft.nebula.proto.common.ZonedTime result) {
int from_bitField0_ = bitField0_;
if (((from_bitField0_ & 0x00000001) != 0)) {
result.hour_ = hour_;
}
if (((from_bitField0_ & 0x00000002) != 0)) {
result.minute_ = minute_;
}
if (((from_bitField0_ & 0x00000004) != 0)) {
result.sec_ = sec_;
}
if (((from_bitField0_ & 0x00000008) != 0)) {
result.microsec_ = microsec_;
}
if (((from_bitField0_ & 0x00000010) != 0)) {
result.offset_ = offset_;
}
}
@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.ZonedTime) {
return mergeFrom((com.vesoft.nebula.proto.common.ZonedTime)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.vesoft.nebula.proto.common.ZonedTime other) {
if (other == com.vesoft.nebula.proto.common.ZonedTime.getDefaultInstance()) return this;
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());
}
if (other.getOffset() != 0) {
setOffset(other.getOffset());
}
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: {
hour_ = input.readUInt32();
bitField0_ |= 0x00000001;
break;
} // case 8
case 16: {
minute_ = input.readUInt32();
bitField0_ |= 0x00000002;
break;
} // case 16
case 24: {
sec_ = input.readUInt32();
bitField0_ |= 0x00000004;
break;
} // case 24
case 32: {
microsec_ = input.readUInt32();
bitField0_ |= 0x00000008;
break;
} // case 32
case 40: {
offset_ = input.readInt32();
bitField0_ |= 0x00000010;
break;
} // case 40
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 hour_ ;
/**
* uint32 hour = 1;
* @return The hour.
*/
@java.lang.Override
public int getHour() {
return hour_;
}
/**
* uint32 hour = 1;
* @param value The hour to set.
* @return This builder for chaining.
*/
public Builder setHour(int value) {
hour_ = value;
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
* uint32 hour = 1;
* @return This builder for chaining.
*/
public Builder clearHour() {
bitField0_ = (bitField0_ & ~0x00000001);
hour_ = 0;
onChanged();
return this;
}
private int minute_ ;
/**
* uint32 minute = 2;
* @return The minute.
*/
@java.lang.Override
public int getMinute() {
return minute_;
}
/**
* uint32 minute = 2;
* @param value The minute to set.
* @return This builder for chaining.
*/
public Builder setMinute(int value) {
minute_ = value;
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
* uint32 minute = 2;
* @return This builder for chaining.
*/
public Builder clearMinute() {
bitField0_ = (bitField0_ & ~0x00000002);
minute_ = 0;
onChanged();
return this;
}
private int sec_ ;
/**
* uint32 sec = 3;
* @return The sec.
*/
@java.lang.Override
public int getSec() {
return sec_;
}
/**
* uint32 sec = 3;
* @param value The sec to set.
* @return This builder for chaining.
*/
public Builder setSec(int value) {
sec_ = value;
bitField0_ |= 0x00000004;
onChanged();
return this;
}
/**
* uint32 sec = 3;
* @return This builder for chaining.
*/
public Builder clearSec() {
bitField0_ = (bitField0_ & ~0x00000004);
sec_ = 0;
onChanged();
return this;
}
private int microsec_ ;
/**
* uint32 microsec = 4;
* @return The microsec.
*/
@java.lang.Override
public int getMicrosec() {
return microsec_;
}
/**
* uint32 microsec = 4;
* @param value The microsec to set.
* @return This builder for chaining.
*/
public Builder setMicrosec(int value) {
microsec_ = value;
bitField0_ |= 0x00000008;
onChanged();
return this;
}
/**
* uint32 microsec = 4;
* @return This builder for chaining.
*/
public Builder clearMicrosec() {
bitField0_ = (bitField0_ & ~0x00000008);
microsec_ = 0;
onChanged();
return this;
}
private int offset_ ;
/**
* int32 offset = 5;
* @return The offset.
*/
@java.lang.Override
public int getOffset() {
return offset_;
}
/**
* int32 offset = 5;
* @param value The offset to set.
* @return This builder for chaining.
*/
public Builder setOffset(int value) {
offset_ = value;
bitField0_ |= 0x00000010;
onChanged();
return this;
}
/**
* int32 offset = 5;
* @return This builder for chaining.
*/
public Builder clearOffset() {
bitField0_ = (bitField0_ & ~0x00000010);
offset_ = 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.ZonedTime)
}
// @@protoc_insertion_point(class_scope:nebula.proto.common.ZonedTime)
private static final com.vesoft.nebula.proto.common.ZonedTime DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.vesoft.nebula.proto.common.ZonedTime();
}
public static com.vesoft.nebula.proto.common.ZonedTime getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public ZonedTime 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.ZonedTime getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}