cz.proto.IntervalYearMonthInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of clickzetta-java Show documentation
Show all versions of clickzetta-java Show documentation
The java SDK for clickzetta's Lakehouse
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: data_type.proto
package cz.proto;
/**
* Protobuf type {@code cz.proto.IntervalYearMonthInfo}
*/
public final class IntervalYearMonthInfo extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:cz.proto.IntervalYearMonthInfo)
IntervalYearMonthInfoOrBuilder {
private static final long serialVersionUID = 0L;
// Use IntervalYearMonthInfo.newBuilder() to construct.
private IntervalYearMonthInfo(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private IntervalYearMonthInfo() {
from_ = 0;
to_ = 0;
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(
UnusedPrivateParameter unused) {
return new IntervalYearMonthInfo();
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private IntervalYearMonthInfo(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
this();
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
com.google.protobuf.UnknownFieldSet.Builder unknownFields =
com.google.protobuf.UnknownFieldSet.newBuilder();
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
case 8: {
int rawValue = input.readEnum();
from_ = rawValue;
break;
}
case 16: {
int rawValue = input.readEnum();
to_ = rawValue;
break;
}
default: {
if (!parseUnknownField(
input, unknownFields, extensionRegistry, tag)) {
done = true;
}
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e).setUnfinishedMessage(this);
} finally {
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return cz.proto.DataTypeOuterClass.internal_static_cz_proto_IntervalYearMonthInfo_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return cz.proto.DataTypeOuterClass.internal_static_cz_proto_IntervalYearMonthInfo_fieldAccessorTable
.ensureFieldAccessorsInitialized(
cz.proto.IntervalYearMonthInfo.class, cz.proto.IntervalYearMonthInfo.Builder.class);
}
public static final int FROM_FIELD_NUMBER = 1;
private int from_;
/**
* .cz.proto.IntervalUnit from = 1;
* @return The enum numeric value on the wire for from.
*/
@java.lang.Override public int getFromValue() {
return from_;
}
/**
* .cz.proto.IntervalUnit from = 1;
* @return The from.
*/
@java.lang.Override public cz.proto.IntervalUnit getFrom() {
@SuppressWarnings("deprecation")
cz.proto.IntervalUnit result = cz.proto.IntervalUnit.valueOf(from_);
return result == null ? cz.proto.IntervalUnit.UNRECOGNIZED : result;
}
public static final int TO_FIELD_NUMBER = 2;
private int to_;
/**
* .cz.proto.IntervalUnit to = 2;
* @return The enum numeric value on the wire for to.
*/
@java.lang.Override public int getToValue() {
return to_;
}
/**
* .cz.proto.IntervalUnit to = 2;
* @return The to.
*/
@java.lang.Override public cz.proto.IntervalUnit getTo() {
@SuppressWarnings("deprecation")
cz.proto.IntervalUnit result = cz.proto.IntervalUnit.valueOf(to_);
return result == null ? cz.proto.IntervalUnit.UNRECOGNIZED : result;
}
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 (from_ != cz.proto.IntervalUnit.NONE_INTERVAL_UNIT.getNumber()) {
output.writeEnum(1, from_);
}
if (to_ != cz.proto.IntervalUnit.NONE_INTERVAL_UNIT.getNumber()) {
output.writeEnum(2, to_);
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (from_ != cz.proto.IntervalUnit.NONE_INTERVAL_UNIT.getNumber()) {
size += com.google.protobuf.CodedOutputStream
.computeEnumSize(1, from_);
}
if (to_ != cz.proto.IntervalUnit.NONE_INTERVAL_UNIT.getNumber()) {
size += com.google.protobuf.CodedOutputStream
.computeEnumSize(2, to_);
}
size += unknownFields.getSerializedSize();
memoizedSize = size;
return size;
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof cz.proto.IntervalYearMonthInfo)) {
return super.equals(obj);
}
cz.proto.IntervalYearMonthInfo other = (cz.proto.IntervalYearMonthInfo) obj;
if (from_ != other.from_) return false;
if (to_ != other.to_) return false;
if (!unknownFields.equals(other.unknownFields)) 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) + FROM_FIELD_NUMBER;
hash = (53 * hash) + from_;
hash = (37 * hash) + TO_FIELD_NUMBER;
hash = (53 * hash) + to_;
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static cz.proto.IntervalYearMonthInfo parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static cz.proto.IntervalYearMonthInfo parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static cz.proto.IntervalYearMonthInfo parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static cz.proto.IntervalYearMonthInfo parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static cz.proto.IntervalYearMonthInfo parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static cz.proto.IntervalYearMonthInfo parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static cz.proto.IntervalYearMonthInfo parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static cz.proto.IntervalYearMonthInfo 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 cz.proto.IntervalYearMonthInfo parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static cz.proto.IntervalYearMonthInfo 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 cz.proto.IntervalYearMonthInfo parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static cz.proto.IntervalYearMonthInfo 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(cz.proto.IntervalYearMonthInfo 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 cz.proto.IntervalYearMonthInfo}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:cz.proto.IntervalYearMonthInfo)
cz.proto.IntervalYearMonthInfoOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return cz.proto.DataTypeOuterClass.internal_static_cz_proto_IntervalYearMonthInfo_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return cz.proto.DataTypeOuterClass.internal_static_cz_proto_IntervalYearMonthInfo_fieldAccessorTable
.ensureFieldAccessorsInitialized(
cz.proto.IntervalYearMonthInfo.class, cz.proto.IntervalYearMonthInfo.Builder.class);
}
// Construct using cz.proto.IntervalYearMonthInfo.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
}
}
@java.lang.Override
public Builder clear() {
super.clear();
from_ = 0;
to_ = 0;
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return cz.proto.DataTypeOuterClass.internal_static_cz_proto_IntervalYearMonthInfo_descriptor;
}
@java.lang.Override
public cz.proto.IntervalYearMonthInfo getDefaultInstanceForType() {
return cz.proto.IntervalYearMonthInfo.getDefaultInstance();
}
@java.lang.Override
public cz.proto.IntervalYearMonthInfo build() {
cz.proto.IntervalYearMonthInfo result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public cz.proto.IntervalYearMonthInfo buildPartial() {
cz.proto.IntervalYearMonthInfo result = new cz.proto.IntervalYearMonthInfo(this);
result.from_ = from_;
result.to_ = to_;
onBuilt();
return result;
}
@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 cz.proto.IntervalYearMonthInfo) {
return mergeFrom((cz.proto.IntervalYearMonthInfo)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(cz.proto.IntervalYearMonthInfo other) {
if (other == cz.proto.IntervalYearMonthInfo.getDefaultInstance()) return this;
if (other.from_ != 0) {
setFromValue(other.getFromValue());
}
if (other.to_ != 0) {
setToValue(other.getToValue());
}
this.mergeUnknownFields(other.unknownFields);
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 {
cz.proto.IntervalYearMonthInfo parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (cz.proto.IntervalYearMonthInfo) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int from_ = 0;
/**
* .cz.proto.IntervalUnit from = 1;
* @return The enum numeric value on the wire for from.
*/
@java.lang.Override public int getFromValue() {
return from_;
}
/**
* .cz.proto.IntervalUnit from = 1;
* @param value The enum numeric value on the wire for from to set.
* @return This builder for chaining.
*/
public Builder setFromValue(int value) {
from_ = value;
onChanged();
return this;
}
/**
* .cz.proto.IntervalUnit from = 1;
* @return The from.
*/
@java.lang.Override
public cz.proto.IntervalUnit getFrom() {
@SuppressWarnings("deprecation")
cz.proto.IntervalUnit result = cz.proto.IntervalUnit.valueOf(from_);
return result == null ? cz.proto.IntervalUnit.UNRECOGNIZED : result;
}
/**
* .cz.proto.IntervalUnit from = 1;
* @param value The from to set.
* @return This builder for chaining.
*/
public Builder setFrom(cz.proto.IntervalUnit value) {
if (value == null) {
throw new NullPointerException();
}
from_ = value.getNumber();
onChanged();
return this;
}
/**
* .cz.proto.IntervalUnit from = 1;
* @return This builder for chaining.
*/
public Builder clearFrom() {
from_ = 0;
onChanged();
return this;
}
private int to_ = 0;
/**
* .cz.proto.IntervalUnit to = 2;
* @return The enum numeric value on the wire for to.
*/
@java.lang.Override public int getToValue() {
return to_;
}
/**
* .cz.proto.IntervalUnit to = 2;
* @param value The enum numeric value on the wire for to to set.
* @return This builder for chaining.
*/
public Builder setToValue(int value) {
to_ = value;
onChanged();
return this;
}
/**
* .cz.proto.IntervalUnit to = 2;
* @return The to.
*/
@java.lang.Override
public cz.proto.IntervalUnit getTo() {
@SuppressWarnings("deprecation")
cz.proto.IntervalUnit result = cz.proto.IntervalUnit.valueOf(to_);
return result == null ? cz.proto.IntervalUnit.UNRECOGNIZED : result;
}
/**
* .cz.proto.IntervalUnit to = 2;
* @param value The to to set.
* @return This builder for chaining.
*/
public Builder setTo(cz.proto.IntervalUnit value) {
if (value == null) {
throw new NullPointerException();
}
to_ = value.getNumber();
onChanged();
return this;
}
/**
* .cz.proto.IntervalUnit to = 2;
* @return This builder for chaining.
*/
public Builder clearTo() {
to_ = 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:cz.proto.IntervalYearMonthInfo)
}
// @@protoc_insertion_point(class_scope:cz.proto.IntervalYearMonthInfo)
private static final cz.proto.IntervalYearMonthInfo DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new cz.proto.IntervalYearMonthInfo();
}
public static cz.proto.IntervalYearMonthInfo getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public IntervalYearMonthInfo parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new IntervalYearMonthInfo(input, extensionRegistry);
}
};
public static com.google.protobuf.Parser parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
@java.lang.Override
public cz.proto.IntervalYearMonthInfo getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy