THivePartition.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 THivePartition implements org.apache.thrift.TBase<THivePartition, THivePartition._Fields>, java.io.Serializable, Cloneable, Comparable<THivePartition> {
private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("THivePartition");
private static final org.apache.thrift.protocol.TField VALUES_FIELD_DESC = new org.apache.thrift.protocol.TField("values", org.apache.thrift.protocol.TType.LIST, (short)1);
private static final org.apache.thrift.protocol.TField LOCATION_FIELD_DESC = new org.apache.thrift.protocol.TField("location", org.apache.thrift.protocol.TType.STRUCT, (short)2);
private static final org.apache.thrift.protocol.TField FILE_FORMAT_FIELD_DESC = new org.apache.thrift.protocol.TField("file_format", org.apache.thrift.protocol.TType.I32, (short)3);
private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new THivePartitionStandardSchemeFactory();
private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new THivePartitionTupleSchemeFactory();
public @org.apache.thrift.annotation.Nullable java.util.List<java.lang.String> values; // optional
public @org.apache.thrift.annotation.Nullable THiveLocationParams location; // optional
/**
*
* @see org.apache.doris.thrift.TFileFormatType
*/
public @org.apache.thrift.annotation.Nullable org.apache.doris.thrift.TFileFormatType file_format; // 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 {
VALUES((short)1, "values"),
LOCATION((short)2, "location"),
/**
*
* @see org.apache.doris.thrift.TFileFormatType
*/
FILE_FORMAT((short)3, "file_format");
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: // VALUES
return VALUES;
case 2: // LOCATION
return LOCATION;
case 3: // FILE_FORMAT
return FILE_FORMAT;
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 _Fields optionals[] = {_Fields.VALUES,_Fields.LOCATION,_Fields.FILE_FORMAT};
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.VALUES, new org.apache.thrift.meta_data.FieldMetaData("values", org.apache.thrift.TFieldRequirementType.OPTIONAL,
new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST,
new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))));
tmpMap.put(_Fields.LOCATION, new org.apache.thrift.meta_data.FieldMetaData("location", org.apache.thrift.TFieldRequirementType.OPTIONAL,
new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, THiveLocationParams.class)));
tmpMap.put(_Fields.FILE_FORMAT, new org.apache.thrift.meta_data.FieldMetaData("file_format", org.apache.thrift.TFieldRequirementType.OPTIONAL,
new org.apache.thrift.meta_data.EnumMetaData(org.apache.thrift.protocol.TType.ENUM, org.apache.doris.thrift.TFileFormatType.class)));
metaDataMap = java.util.Collections.unmodifiableMap(tmpMap);
org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(THivePartition.class, metaDataMap);
}
public THivePartition() {
}
/**
* Performs a deep copy on <i>other</i>.
*/
public THivePartition(THivePartition other) {
if (other.isSetValues()) {
java.util.List<java.lang.String> __this__values = new java.util.ArrayList<java.lang.String>(other.values);
this.values = __this__values;
}
if (other.isSetLocation()) {
this.location = new THiveLocationParams(other.location);
}
if (other.isSetFileFormat()) {
this.file_format = other.file_format;
}
}
public THivePartition deepCopy() {
return new THivePartition(this);
}
@Override
public void clear() {
this.values = null;
this.location = null;
this.file_format = null;
}
public int getValuesSize() {
return (this.values == null) ? 0 : this.values.size();
}
@org.apache.thrift.annotation.Nullable
public java.util.Iterator<java.lang.String> getValuesIterator() {
return (this.values == null) ? null : this.values.iterator();
}
public void addToValues(java.lang.String elem) {
if (this.values == null) {
this.values = new java.util.ArrayList<java.lang.String>();
}
this.values.add(elem);
}
@org.apache.thrift.annotation.Nullable
public java.util.List<java.lang.String> getValues() {
return this.values;
}
public THivePartition setValues(@org.apache.thrift.annotation.Nullable java.util.List<java.lang.String> values) {
this.values = values;
return this;
}
public void unsetValues() {
this.values = null;
}
/** Returns true if field values is set (has been assigned a value) and false otherwise */
public boolean isSetValues() {
return this.values != null;
}
public void setValuesIsSet(boolean value) {
if (!value) {
this.values = null;
}
}
@org.apache.thrift.annotation.Nullable
public THiveLocationParams getLocation() {
return this.location;
}
public THivePartition setLocation(@org.apache.thrift.annotation.Nullable THiveLocationParams location) {
this.location = location;
return this;
}
public void unsetLocation() {
this.location = null;
}
/** Returns true if field location is set (has been assigned a value) and false otherwise */
public boolean isSetLocation() {
return this.location != null;
}
public void setLocationIsSet(boolean value) {
if (!value) {
this.location = null;
}
}
/**
*
* @see org.apache.doris.thrift.TFileFormatType
*/
@org.apache.thrift.annotation.Nullable
public org.apache.doris.thrift.TFileFormatType getFileFormat() {
return this.file_format;
}
/**
*
* @see org.apache.doris.thrift.TFileFormatType
*/
public THivePartition setFileFormat(@org.apache.thrift.annotation.Nullable org.apache.doris.thrift.TFileFormatType file_format) {
this.file_format = file_format;
return this;
}
public void unsetFileFormat() {
this.file_format = null;
}
/** Returns true if field file_format is set (has been assigned a value) and false otherwise */
public boolean isSetFileFormat() {
return this.file_format != null;
}
public void setFileFormatIsSet(boolean value) {
if (!value) {
this.file_format = null;
}
}
public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) {
switch (field) {
case VALUES:
if (value == null) {
unsetValues();
} else {
setValues((java.util.List<java.lang.String>)value);
}
break;
case LOCATION:
if (value == null) {
unsetLocation();
} else {
setLocation((THiveLocationParams)value);
}
break;
case FILE_FORMAT:
if (value == null) {
unsetFileFormat();
} else {
setFileFormat((org.apache.doris.thrift.TFileFormatType)value);
}
break;
}
}
@org.apache.thrift.annotation.Nullable
public java.lang.Object getFieldValue(_Fields field) {
switch (field) {
case VALUES:
return getValues();
case LOCATION:
return getLocation();
case FILE_FORMAT:
return getFileFormat();
}
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 VALUES:
return isSetValues();
case LOCATION:
return isSetLocation();
case FILE_FORMAT:
return isSetFileFormat();
}
throw new java.lang.IllegalStateException();
}
@Override
public boolean equals(java.lang.Object that) {
if (that instanceof THivePartition)
return this.equals((THivePartition)that);
return false;
}
public boolean equals(THivePartition that) {
if (that == null)
return false;
if (this == that)
return true;
boolean this_present_values = true && this.isSetValues();
boolean that_present_values = true && that.isSetValues();
if (this_present_values || that_present_values) {
if (!(this_present_values && that_present_values))
return false;
if (!this.values.equals(that.values))
return false;
}
boolean this_present_location = true && this.isSetLocation();
boolean that_present_location = true && that.isSetLocation();
if (this_present_location || that_present_location) {
if (!(this_present_location && that_present_location))
return false;
if (!this.location.equals(that.location))
return false;
}
boolean this_present_file_format = true && this.isSetFileFormat();
boolean that_present_file_format = true && that.isSetFileFormat();
if (this_present_file_format || that_present_file_format) {
if (!(this_present_file_format && that_present_file_format))
return false;
if (!this.file_format.equals(that.file_format))
return false;
}
return true;
}
@Override
public int hashCode() {
int hashCode = 1;
hashCode = hashCode * 8191 + ((isSetValues()) ? 131071 : 524287);
if (isSetValues())
hashCode = hashCode * 8191 + values.hashCode();
hashCode = hashCode * 8191 + ((isSetLocation()) ? 131071 : 524287);
if (isSetLocation())
hashCode = hashCode * 8191 + location.hashCode();
hashCode = hashCode * 8191 + ((isSetFileFormat()) ? 131071 : 524287);
if (isSetFileFormat())
hashCode = hashCode * 8191 + file_format.getValue();
return hashCode;
}
@Override
public int compareTo(THivePartition other) {
if (!getClass().equals(other.getClass())) {
return getClass().getName().compareTo(other.getClass().getName());
}
int lastComparison = 0;
lastComparison = java.lang.Boolean.compare(isSetValues(), other.isSetValues());
if (lastComparison != 0) {
return lastComparison;
}
if (isSetValues()) {
lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.values, other.values);
if (lastComparison != 0) {
return lastComparison;
}
}
lastComparison = java.lang.Boolean.compare(isSetLocation(), other.isSetLocation());
if (lastComparison != 0) {
return lastComparison;
}
if (isSetLocation()) {
lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.location, other.location);
if (lastComparison != 0) {
return lastComparison;
}
}
lastComparison = java.lang.Boolean.compare(isSetFileFormat(), other.isSetFileFormat());
if (lastComparison != 0) {
return lastComparison;
}
if (isSetFileFormat()) {
lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.file_format, other.file_format);
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("THivePartition(");
boolean first = true;
if (isSetValues()) {
sb.append("values:");
if (this.values == null) {
sb.append("null");
} else {
sb.append(this.values);
}
first = false;
}
if (isSetLocation()) {
if (!first) sb.append(", ");
sb.append("location:");
if (this.location == null) {
sb.append("null");
} else {
sb.append(this.location);
}
first = false;
}
if (isSetFileFormat()) {
if (!first) sb.append(", ");
sb.append("file_format:");
if (this.file_format == null) {
sb.append("null");
} else {
sb.append(this.file_format);
}
first = false;
}
sb.append(")");
return sb.toString();
}
public void validate() throws org.apache.thrift.TException {
// check for required fields
// check for sub-struct validity
if (location != null) {
location.validate();
}
}
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 {
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 THivePartitionStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory {
public THivePartitionStandardScheme getScheme() {
return new THivePartitionStandardScheme();
}
}
private static class THivePartitionStandardScheme extends org.apache.thrift.scheme.StandardScheme<THivePartition> {
public void read(org.apache.thrift.protocol.TProtocol iprot, THivePartition 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: // VALUES
if (schemeField.type == org.apache.thrift.protocol.TType.LIST) {
{
org.apache.thrift.protocol.TList _list150 = iprot.readListBegin();
struct.values = new java.util.ArrayList<java.lang.String>(_list150.size);
@org.apache.thrift.annotation.Nullable java.lang.String _elem151;
for (int _i152 = 0; _i152 < _list150.size; ++_i152)
{
_elem151 = iprot.readString();
struct.values.add(_elem151);
}
iprot.readListEnd();
}
struct.setValuesIsSet(true);
} else {
org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
}
break;
case 2: // LOCATION
if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) {
struct.location = new THiveLocationParams();
struct.location.read(iprot);
struct.setLocationIsSet(true);
} else {
org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
}
break;
case 3: // FILE_FORMAT
if (schemeField.type == org.apache.thrift.protocol.TType.I32) {
struct.file_format = org.apache.doris.thrift.TFileFormatType.findByValue(iprot.readI32());
struct.setFileFormatIsSet(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, THivePartition struct) throws org.apache.thrift.TException {
struct.validate();
oprot.writeStructBegin(STRUCT_DESC);
if (struct.values != null) {
if (struct.isSetValues()) {
oprot.writeFieldBegin(VALUES_FIELD_DESC);
{
oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.values.size()));
for (java.lang.String _iter153 : struct.values)
{
oprot.writeString(_iter153);
}
oprot.writeListEnd();
}
oprot.writeFieldEnd();
}
}
if (struct.location != null) {
if (struct.isSetLocation()) {
oprot.writeFieldBegin(LOCATION_FIELD_DESC);
struct.location.write(oprot);
oprot.writeFieldEnd();
}
}
if (struct.file_format != null) {
if (struct.isSetFileFormat()) {
oprot.writeFieldBegin(FILE_FORMAT_FIELD_DESC);
oprot.writeI32(struct.file_format.getValue());
oprot.writeFieldEnd();
}
}
oprot.writeFieldStop();
oprot.writeStructEnd();
}
}
private static class THivePartitionTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory {
public THivePartitionTupleScheme getScheme() {
return new THivePartitionTupleScheme();
}
}
private static class THivePartitionTupleScheme extends org.apache.thrift.scheme.TupleScheme<THivePartition> {
@Override
public void write(org.apache.thrift.protocol.TProtocol prot, THivePartition 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.isSetValues()) {
optionals.set(0);
}
if (struct.isSetLocation()) {
optionals.set(1);
}
if (struct.isSetFileFormat()) {
optionals.set(2);
}
oprot.writeBitSet(optionals, 3);
if (struct.isSetValues()) {
{
oprot.writeI32(struct.values.size());
for (java.lang.String _iter154 : struct.values)
{
oprot.writeString(_iter154);
}
}
}
if (struct.isSetLocation()) {
struct.location.write(oprot);
}
if (struct.isSetFileFormat()) {
oprot.writeI32(struct.file_format.getValue());
}
}
@Override
public void read(org.apache.thrift.protocol.TProtocol prot, THivePartition struct) throws org.apache.thrift.TException {
org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot;
java.util.BitSet incoming = iprot.readBitSet(3);
if (incoming.get(0)) {
{
org.apache.thrift.protocol.TList _list155 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING);
struct.values = new java.util.ArrayList<java.lang.String>(_list155.size);
@org.apache.thrift.annotation.Nullable java.lang.String _elem156;
for (int _i157 = 0; _i157 < _list155.size; ++_i157)
{
_elem156 = iprot.readString();
struct.values.add(_elem156);
}
}
struct.setValuesIsSet(true);
}
if (incoming.get(1)) {
struct.location = new THiveLocationParams();
struct.location.read(iprot);
struct.setLocationIsSet(true);
}
if (incoming.get(2)) {
struct.file_format = org.apache.doris.thrift.TFileFormatType.findByValue(iprot.readI32());
struct.setFileFormatIsSet(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();
}
}