TCloudVersionInfo.java
/**
* Autogenerated by Thrift Compiler (0.16.0)
*
* DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
* @generated
*/
package org.apache.doris.thrift;
@SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"})
@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.16.0)", date = "2026-05-14")
public class TCloudVersionInfo implements org.apache.thrift.TBase<TCloudVersionInfo, TCloudVersionInfo._Fields>, java.io.Serializable, Cloneable, Comparable<TCloudVersionInfo> {
private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("TCloudVersionInfo");
private static final org.apache.thrift.protocol.TField TABLE_ID_FIELD_DESC = new org.apache.thrift.protocol.TField("tableId", org.apache.thrift.protocol.TType.I64, (short)1);
private static final org.apache.thrift.protocol.TField PARTITION_ID_FIELD_DESC = new org.apache.thrift.protocol.TField("partitionId", org.apache.thrift.protocol.TType.I64, (short)2);
private static final org.apache.thrift.protocol.TField VERSION_FIELD_DESC = new org.apache.thrift.protocol.TField("version", org.apache.thrift.protocol.TType.I64, (short)3);
private static final org.apache.thrift.protocol.TField VERSION_UPDATE_TIME_FIELD_DESC = new org.apache.thrift.protocol.TField("versionUpdateTime", org.apache.thrift.protocol.TType.I64, (short)4);
private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new TCloudVersionInfoStandardSchemeFactory();
private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new TCloudVersionInfoTupleSchemeFactory();
public long tableId; // optional
public long partitionId; // optional
public long version; // optional
public long versionUpdateTime; // optional
/** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
public enum _Fields implements org.apache.thrift.TFieldIdEnum {
TABLE_ID((short)1, "tableId"),
PARTITION_ID((short)2, "partitionId"),
VERSION((short)3, "version"),
VERSION_UPDATE_TIME((short)4, "versionUpdateTime");
private static final java.util.Map<java.lang.String, _Fields> byName = new java.util.HashMap<java.lang.String, _Fields>();
static {
for (_Fields field : java.util.EnumSet.allOf(_Fields.class)) {
byName.put(field.getFieldName(), field);
}
}
/**
* Find the _Fields constant that matches fieldId, or null if its not found.
*/
@org.apache.thrift.annotation.Nullable
public static _Fields findByThriftId(int fieldId) {
switch(fieldId) {
case 1: // TABLE_ID
return TABLE_ID;
case 2: // PARTITION_ID
return PARTITION_ID;
case 3: // VERSION
return VERSION;
case 4: // VERSION_UPDATE_TIME
return VERSION_UPDATE_TIME;
default:
return null;
}
}
/**
* Find the _Fields constant that matches fieldId, throwing an exception
* if it is not found.
*/
public static _Fields findByThriftIdOrThrow(int fieldId) {
_Fields fields = findByThriftId(fieldId);
if (fields == null) throw new java.lang.IllegalArgumentException("Field " + fieldId + " doesn't exist!");
return fields;
}
/**
* Find the _Fields constant that matches name, or null if its not found.
*/
@org.apache.thrift.annotation.Nullable
public static _Fields findByName(java.lang.String name) {
return byName.get(name);
}
private final short _thriftId;
private final java.lang.String _fieldName;
_Fields(short thriftId, java.lang.String fieldName) {
_thriftId = thriftId;
_fieldName = fieldName;
}
public short getThriftFieldId() {
return _thriftId;
}
public java.lang.String getFieldName() {
return _fieldName;
}
}
// isset id assignments
private static final int __TABLEID_ISSET_ID = 0;
private static final int __PARTITIONID_ISSET_ID = 1;
private static final int __VERSION_ISSET_ID = 2;
private static final int __VERSIONUPDATETIME_ISSET_ID = 3;
private byte __isset_bitfield = 0;
private static final _Fields optionals[] = {_Fields.TABLE_ID,_Fields.PARTITION_ID,_Fields.VERSION,_Fields.VERSION_UPDATE_TIME};
public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap;
static {
java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class);
tmpMap.put(_Fields.TABLE_ID, new org.apache.thrift.meta_data.FieldMetaData("tableId", org.apache.thrift.TFieldRequirementType.OPTIONAL,
new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)));
tmpMap.put(_Fields.PARTITION_ID, new org.apache.thrift.meta_data.FieldMetaData("partitionId", org.apache.thrift.TFieldRequirementType.OPTIONAL,
new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)));
tmpMap.put(_Fields.VERSION, new org.apache.thrift.meta_data.FieldMetaData("version", org.apache.thrift.TFieldRequirementType.OPTIONAL,
new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)));
tmpMap.put(_Fields.VERSION_UPDATE_TIME, new org.apache.thrift.meta_data.FieldMetaData("versionUpdateTime", org.apache.thrift.TFieldRequirementType.OPTIONAL,
new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)));
metaDataMap = java.util.Collections.unmodifiableMap(tmpMap);
org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(TCloudVersionInfo.class, metaDataMap);
}
public TCloudVersionInfo() {
}
/**
* Performs a deep copy on <i>other</i>.
*/
public TCloudVersionInfo(TCloudVersionInfo other) {
__isset_bitfield = other.__isset_bitfield;
this.tableId = other.tableId;
this.partitionId = other.partitionId;
this.version = other.version;
this.versionUpdateTime = other.versionUpdateTime;
}
public TCloudVersionInfo deepCopy() {
return new TCloudVersionInfo(this);
}
@Override
public void clear() {
setTableIdIsSet(false);
this.tableId = 0;
setPartitionIdIsSet(false);
this.partitionId = 0;
setVersionIsSet(false);
this.version = 0;
setVersionUpdateTimeIsSet(false);
this.versionUpdateTime = 0;
}
public long getTableId() {
return this.tableId;
}
public TCloudVersionInfo setTableId(long tableId) {
this.tableId = tableId;
setTableIdIsSet(true);
return this;
}
public void unsetTableId() {
__isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __TABLEID_ISSET_ID);
}
/** Returns true if field tableId is set (has been assigned a value) and false otherwise */
public boolean isSetTableId() {
return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __TABLEID_ISSET_ID);
}
public void setTableIdIsSet(boolean value) {
__isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TABLEID_ISSET_ID, value);
}
public long getPartitionId() {
return this.partitionId;
}
public TCloudVersionInfo setPartitionId(long partitionId) {
this.partitionId = partitionId;
setPartitionIdIsSet(true);
return this;
}
public void unsetPartitionId() {
__isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __PARTITIONID_ISSET_ID);
}
/** Returns true if field partitionId is set (has been assigned a value) and false otherwise */
public boolean isSetPartitionId() {
return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __PARTITIONID_ISSET_ID);
}
public void setPartitionIdIsSet(boolean value) {
__isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __PARTITIONID_ISSET_ID, value);
}
public long getVersion() {
return this.version;
}
public TCloudVersionInfo setVersion(long version) {
this.version = version;
setVersionIsSet(true);
return this;
}
public void unsetVersion() {
__isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __VERSION_ISSET_ID);
}
/** Returns true if field version is set (has been assigned a value) and false otherwise */
public boolean isSetVersion() {
return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __VERSION_ISSET_ID);
}
public void setVersionIsSet(boolean value) {
__isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __VERSION_ISSET_ID, value);
}
public long getVersionUpdateTime() {
return this.versionUpdateTime;
}
public TCloudVersionInfo setVersionUpdateTime(long versionUpdateTime) {
this.versionUpdateTime = versionUpdateTime;
setVersionUpdateTimeIsSet(true);
return this;
}
public void unsetVersionUpdateTime() {
__isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __VERSIONUPDATETIME_ISSET_ID);
}
/** Returns true if field versionUpdateTime is set (has been assigned a value) and false otherwise */
public boolean isSetVersionUpdateTime() {
return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __VERSIONUPDATETIME_ISSET_ID);
}
public void setVersionUpdateTimeIsSet(boolean value) {
__isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __VERSIONUPDATETIME_ISSET_ID, value);
}
public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) {
switch (field) {
case TABLE_ID:
if (value == null) {
unsetTableId();
} else {
setTableId((java.lang.Long)value);
}
break;
case PARTITION_ID:
if (value == null) {
unsetPartitionId();
} else {
setPartitionId((java.lang.Long)value);
}
break;
case VERSION:
if (value == null) {
unsetVersion();
} else {
setVersion((java.lang.Long)value);
}
break;
case VERSION_UPDATE_TIME:
if (value == null) {
unsetVersionUpdateTime();
} else {
setVersionUpdateTime((java.lang.Long)value);
}
break;
}
}
@org.apache.thrift.annotation.Nullable
public java.lang.Object getFieldValue(_Fields field) {
switch (field) {
case TABLE_ID:
return getTableId();
case PARTITION_ID:
return getPartitionId();
case VERSION:
return getVersion();
case VERSION_UPDATE_TIME:
return getVersionUpdateTime();
}
throw new java.lang.IllegalStateException();
}
/** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */
public boolean isSet(_Fields field) {
if (field == null) {
throw new java.lang.IllegalArgumentException();
}
switch (field) {
case TABLE_ID:
return isSetTableId();
case PARTITION_ID:
return isSetPartitionId();
case VERSION:
return isSetVersion();
case VERSION_UPDATE_TIME:
return isSetVersionUpdateTime();
}
throw new java.lang.IllegalStateException();
}
@Override
public boolean equals(java.lang.Object that) {
if (that instanceof TCloudVersionInfo)
return this.equals((TCloudVersionInfo)that);
return false;
}
public boolean equals(TCloudVersionInfo that) {
if (that == null)
return false;
if (this == that)
return true;
boolean this_present_tableId = true && this.isSetTableId();
boolean that_present_tableId = true && that.isSetTableId();
if (this_present_tableId || that_present_tableId) {
if (!(this_present_tableId && that_present_tableId))
return false;
if (this.tableId != that.tableId)
return false;
}
boolean this_present_partitionId = true && this.isSetPartitionId();
boolean that_present_partitionId = true && that.isSetPartitionId();
if (this_present_partitionId || that_present_partitionId) {
if (!(this_present_partitionId && that_present_partitionId))
return false;
if (this.partitionId != that.partitionId)
return false;
}
boolean this_present_version = true && this.isSetVersion();
boolean that_present_version = true && that.isSetVersion();
if (this_present_version || that_present_version) {
if (!(this_present_version && that_present_version))
return false;
if (this.version != that.version)
return false;
}
boolean this_present_versionUpdateTime = true && this.isSetVersionUpdateTime();
boolean that_present_versionUpdateTime = true && that.isSetVersionUpdateTime();
if (this_present_versionUpdateTime || that_present_versionUpdateTime) {
if (!(this_present_versionUpdateTime && that_present_versionUpdateTime))
return false;
if (this.versionUpdateTime != that.versionUpdateTime)
return false;
}
return true;
}
@Override
public int hashCode() {
int hashCode = 1;
hashCode = hashCode * 8191 + ((isSetTableId()) ? 131071 : 524287);
if (isSetTableId())
hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(tableId);
hashCode = hashCode * 8191 + ((isSetPartitionId()) ? 131071 : 524287);
if (isSetPartitionId())
hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(partitionId);
hashCode = hashCode * 8191 + ((isSetVersion()) ? 131071 : 524287);
if (isSetVersion())
hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(version);
hashCode = hashCode * 8191 + ((isSetVersionUpdateTime()) ? 131071 : 524287);
if (isSetVersionUpdateTime())
hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(versionUpdateTime);
return hashCode;
}
@Override
public int compareTo(TCloudVersionInfo other) {
if (!getClass().equals(other.getClass())) {
return getClass().getName().compareTo(other.getClass().getName());
}
int lastComparison = 0;
lastComparison = java.lang.Boolean.compare(isSetTableId(), other.isSetTableId());
if (lastComparison != 0) {
return lastComparison;
}
if (isSetTableId()) {
lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.tableId, other.tableId);
if (lastComparison != 0) {
return lastComparison;
}
}
lastComparison = java.lang.Boolean.compare(isSetPartitionId(), other.isSetPartitionId());
if (lastComparison != 0) {
return lastComparison;
}
if (isSetPartitionId()) {
lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.partitionId, other.partitionId);
if (lastComparison != 0) {
return lastComparison;
}
}
lastComparison = java.lang.Boolean.compare(isSetVersion(), other.isSetVersion());
if (lastComparison != 0) {
return lastComparison;
}
if (isSetVersion()) {
lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.version, other.version);
if (lastComparison != 0) {
return lastComparison;
}
}
lastComparison = java.lang.Boolean.compare(isSetVersionUpdateTime(), other.isSetVersionUpdateTime());
if (lastComparison != 0) {
return lastComparison;
}
if (isSetVersionUpdateTime()) {
lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.versionUpdateTime, other.versionUpdateTime);
if (lastComparison != 0) {
return lastComparison;
}
}
return 0;
}
@org.apache.thrift.annotation.Nullable
public _Fields fieldForId(int fieldId) {
return _Fields.findByThriftId(fieldId);
}
public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException {
scheme(iprot).read(iprot, this);
}
public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException {
scheme(oprot).write(oprot, this);
}
@Override
public java.lang.String toString() {
java.lang.StringBuilder sb = new java.lang.StringBuilder("TCloudVersionInfo(");
boolean first = true;
if (isSetTableId()) {
sb.append("tableId:");
sb.append(this.tableId);
first = false;
}
if (isSetPartitionId()) {
if (!first) sb.append(", ");
sb.append("partitionId:");
sb.append(this.partitionId);
first = false;
}
if (isSetVersion()) {
if (!first) sb.append(", ");
sb.append("version:");
sb.append(this.version);
first = false;
}
if (isSetVersionUpdateTime()) {
if (!first) sb.append(", ");
sb.append("versionUpdateTime:");
sb.append(this.versionUpdateTime);
first = false;
}
sb.append(")");
return sb.toString();
}
public void validate() throws org.apache.thrift.TException {
// check for required fields
// check for sub-struct validity
}
private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOException {
try {
write(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(out)));
} catch (org.apache.thrift.TException te) {
throw new java.io.IOException(te);
}
}
private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.ClassNotFoundException {
try {
// it doesn't seem like you should have to do this, but java serialization is wacky, and doesn't call the default constructor.
__isset_bitfield = 0;
read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in)));
} catch (org.apache.thrift.TException te) {
throw new java.io.IOException(te);
}
}
private static class TCloudVersionInfoStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory {
public TCloudVersionInfoStandardScheme getScheme() {
return new TCloudVersionInfoStandardScheme();
}
}
private static class TCloudVersionInfoStandardScheme extends org.apache.thrift.scheme.StandardScheme<TCloudVersionInfo> {
public void read(org.apache.thrift.protocol.TProtocol iprot, TCloudVersionInfo struct) throws org.apache.thrift.TException {
org.apache.thrift.protocol.TField schemeField;
iprot.readStructBegin();
while (true)
{
schemeField = iprot.readFieldBegin();
if (schemeField.type == org.apache.thrift.protocol.TType.STOP) {
break;
}
switch (schemeField.id) {
case 1: // TABLE_ID
if (schemeField.type == org.apache.thrift.protocol.TType.I64) {
struct.tableId = iprot.readI64();
struct.setTableIdIsSet(true);
} else {
org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
}
break;
case 2: // PARTITION_ID
if (schemeField.type == org.apache.thrift.protocol.TType.I64) {
struct.partitionId = iprot.readI64();
struct.setPartitionIdIsSet(true);
} else {
org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
}
break;
case 3: // VERSION
if (schemeField.type == org.apache.thrift.protocol.TType.I64) {
struct.version = iprot.readI64();
struct.setVersionIsSet(true);
} else {
org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
}
break;
case 4: // VERSION_UPDATE_TIME
if (schemeField.type == org.apache.thrift.protocol.TType.I64) {
struct.versionUpdateTime = iprot.readI64();
struct.setVersionUpdateTimeIsSet(true);
} else {
org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
}
break;
default:
org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
}
iprot.readFieldEnd();
}
iprot.readStructEnd();
// check for required fields of primitive type, which can't be checked in the validate method
struct.validate();
}
public void write(org.apache.thrift.protocol.TProtocol oprot, TCloudVersionInfo struct) throws org.apache.thrift.TException {
struct.validate();
oprot.writeStructBegin(STRUCT_DESC);
if (struct.isSetTableId()) {
oprot.writeFieldBegin(TABLE_ID_FIELD_DESC);
oprot.writeI64(struct.tableId);
oprot.writeFieldEnd();
}
if (struct.isSetPartitionId()) {
oprot.writeFieldBegin(PARTITION_ID_FIELD_DESC);
oprot.writeI64(struct.partitionId);
oprot.writeFieldEnd();
}
if (struct.isSetVersion()) {
oprot.writeFieldBegin(VERSION_FIELD_DESC);
oprot.writeI64(struct.version);
oprot.writeFieldEnd();
}
if (struct.isSetVersionUpdateTime()) {
oprot.writeFieldBegin(VERSION_UPDATE_TIME_FIELD_DESC);
oprot.writeI64(struct.versionUpdateTime);
oprot.writeFieldEnd();
}
oprot.writeFieldStop();
oprot.writeStructEnd();
}
}
private static class TCloudVersionInfoTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory {
public TCloudVersionInfoTupleScheme getScheme() {
return new TCloudVersionInfoTupleScheme();
}
}
private static class TCloudVersionInfoTupleScheme extends org.apache.thrift.scheme.TupleScheme<TCloudVersionInfo> {
@Override
public void write(org.apache.thrift.protocol.TProtocol prot, TCloudVersionInfo struct) throws org.apache.thrift.TException {
org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot;
java.util.BitSet optionals = new java.util.BitSet();
if (struct.isSetTableId()) {
optionals.set(0);
}
if (struct.isSetPartitionId()) {
optionals.set(1);
}
if (struct.isSetVersion()) {
optionals.set(2);
}
if (struct.isSetVersionUpdateTime()) {
optionals.set(3);
}
oprot.writeBitSet(optionals, 4);
if (struct.isSetTableId()) {
oprot.writeI64(struct.tableId);
}
if (struct.isSetPartitionId()) {
oprot.writeI64(struct.partitionId);
}
if (struct.isSetVersion()) {
oprot.writeI64(struct.version);
}
if (struct.isSetVersionUpdateTime()) {
oprot.writeI64(struct.versionUpdateTime);
}
}
@Override
public void read(org.apache.thrift.protocol.TProtocol prot, TCloudVersionInfo struct) throws org.apache.thrift.TException {
org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot;
java.util.BitSet incoming = iprot.readBitSet(4);
if (incoming.get(0)) {
struct.tableId = iprot.readI64();
struct.setTableIdIsSet(true);
}
if (incoming.get(1)) {
struct.partitionId = iprot.readI64();
struct.setPartitionIdIsSet(true);
}
if (incoming.get(2)) {
struct.version = iprot.readI64();
struct.setVersionIsSet(true);
}
if (incoming.get(3)) {
struct.versionUpdateTime = iprot.readI64();
struct.setVersionUpdateTimeIsSet(true);
}
}
}
private static <S extends org.apache.thrift.scheme.IScheme> S scheme(org.apache.thrift.protocol.TProtocol proto) {
return (org.apache.thrift.scheme.StandardScheme.class.equals(proto.getScheme()) ? STANDARD_SCHEME_FACTORY : TUPLE_SCHEME_FACTORY).getScheme();
}
}