com.databricks.jdbc.client.impl.thrift.generated.TColumnDesc Maven / Gradle / Ivy
/**
* Autogenerated by Thrift Compiler (0.19.0)
*
* DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
*
* @generated
*/
package com.databricks.jdbc.client.impl.thrift.generated;
@SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"})
@javax.annotation.Generated(
value = "Autogenerated by Thrift Compiler (0.19.0)",
date = "2024-05-06")
public class TColumnDesc
implements org.apache.thrift.TBase,
java.io.Serializable,
Cloneable,
Comparable {
private static final org.apache.thrift.protocol.TStruct STRUCT_DESC =
new org.apache.thrift.protocol.TStruct("TColumnDesc");
private static final org.apache.thrift.protocol.TField COLUMN_NAME_FIELD_DESC =
new org.apache.thrift.protocol.TField(
"columnName", org.apache.thrift.protocol.TType.STRING, (short) 1);
private static final org.apache.thrift.protocol.TField TYPE_DESC_FIELD_DESC =
new org.apache.thrift.protocol.TField(
"typeDesc", org.apache.thrift.protocol.TType.STRUCT, (short) 2);
private static final org.apache.thrift.protocol.TField POSITION_FIELD_DESC =
new org.apache.thrift.protocol.TField(
"position", org.apache.thrift.protocol.TType.I32, (short) 3);
private static final org.apache.thrift.protocol.TField COMMENT_FIELD_DESC =
new org.apache.thrift.protocol.TField(
"comment", org.apache.thrift.protocol.TType.STRING, (short) 4);
private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY =
new TColumnDescStandardSchemeFactory();
private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY =
new TColumnDescTupleSchemeFactory();
public @org.apache.thrift.annotation.Nullable java.lang.String columnName; // required
public @org.apache.thrift.annotation.Nullable TTypeDesc typeDesc; // required
public int position; // required
public @org.apache.thrift.annotation.Nullable java.lang.String comment; // 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 {
COLUMN_NAME((short) 1, "columnName"),
TYPE_DESC((short) 2, "typeDesc"),
POSITION((short) 3, "position"),
COMMENT((short) 4, "comment");
private static final java.util.Map byName =
new java.util.HashMap();
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: // COLUMN_NAME
return COLUMN_NAME;
case 2: // TYPE_DESC
return TYPE_DESC;
case 3: // POSITION
return POSITION;
case 4: // COMMENT
return COMMENT;
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;
}
@Override
public short getThriftFieldId() {
return _thriftId;
}
@Override
public java.lang.String getFieldName() {
return _fieldName;
}
}
// isset id assignments
private static final int __POSITION_ISSET_ID = 0;
private byte __isset_bitfield = 0;
private static final _Fields optionals[] = {_Fields.COMMENT};
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.COLUMN_NAME,
new org.apache.thrift.meta_data.FieldMetaData(
"columnName",
org.apache.thrift.TFieldRequirementType.REQUIRED,
new org.apache.thrift.meta_data.FieldValueMetaData(
org.apache.thrift.protocol.TType.STRING)));
tmpMap.put(
_Fields.TYPE_DESC,
new org.apache.thrift.meta_data.FieldMetaData(
"typeDesc",
org.apache.thrift.TFieldRequirementType.REQUIRED,
new org.apache.thrift.meta_data.StructMetaData(
org.apache.thrift.protocol.TType.STRUCT, TTypeDesc.class)));
tmpMap.put(
_Fields.POSITION,
new org.apache.thrift.meta_data.FieldMetaData(
"position",
org.apache.thrift.TFieldRequirementType.REQUIRED,
new org.apache.thrift.meta_data.FieldValueMetaData(
org.apache.thrift.protocol.TType.I32)));
tmpMap.put(
_Fields.COMMENT,
new org.apache.thrift.meta_data.FieldMetaData(
"comment",
org.apache.thrift.TFieldRequirementType.OPTIONAL,
new org.apache.thrift.meta_data.FieldValueMetaData(
org.apache.thrift.protocol.TType.STRING)));
metaDataMap = java.util.Collections.unmodifiableMap(tmpMap);
org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(TColumnDesc.class, metaDataMap);
}
public TColumnDesc() {}
public TColumnDesc(java.lang.String columnName, TTypeDesc typeDesc, int position) {
this();
this.columnName = columnName;
this.typeDesc = typeDesc;
this.position = position;
setPositionIsSet(true);
}
/** Performs a deep copy on other. */
public TColumnDesc(TColumnDesc other) {
__isset_bitfield = other.__isset_bitfield;
if (other.isSetColumnName()) {
this.columnName = other.columnName;
}
if (other.isSetTypeDesc()) {
this.typeDesc = new TTypeDesc(other.typeDesc);
}
this.position = other.position;
if (other.isSetComment()) {
this.comment = other.comment;
}
}
@Override
public TColumnDesc deepCopy() {
return new TColumnDesc(this);
}
@Override
public void clear() {
this.columnName = null;
this.typeDesc = null;
setPositionIsSet(false);
this.position = 0;
this.comment = null;
}
@org.apache.thrift.annotation.Nullable
public java.lang.String getColumnName() {
return this.columnName;
}
public TColumnDesc setColumnName(
@org.apache.thrift.annotation.Nullable java.lang.String columnName) {
this.columnName = columnName;
return this;
}
public void unsetColumnName() {
this.columnName = null;
}
/** Returns true if field columnName is set (has been assigned a value) and false otherwise */
public boolean isSetColumnName() {
return this.columnName != null;
}
public void setColumnNameIsSet(boolean value) {
if (!value) {
this.columnName = null;
}
}
@org.apache.thrift.annotation.Nullable
public TTypeDesc getTypeDesc() {
return this.typeDesc;
}
public TColumnDesc setTypeDesc(@org.apache.thrift.annotation.Nullable TTypeDesc typeDesc) {
this.typeDesc = typeDesc;
return this;
}
public void unsetTypeDesc() {
this.typeDesc = null;
}
/** Returns true if field typeDesc is set (has been assigned a value) and false otherwise */
public boolean isSetTypeDesc() {
return this.typeDesc != null;
}
public void setTypeDescIsSet(boolean value) {
if (!value) {
this.typeDesc = null;
}
}
public int getPosition() {
return this.position;
}
public TColumnDesc setPosition(int position) {
this.position = position;
setPositionIsSet(true);
return this;
}
public void unsetPosition() {
__isset_bitfield =
org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __POSITION_ISSET_ID);
}
/** Returns true if field position is set (has been assigned a value) and false otherwise */
public boolean isSetPosition() {
return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __POSITION_ISSET_ID);
}
public void setPositionIsSet(boolean value) {
__isset_bitfield =
org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __POSITION_ISSET_ID, value);
}
@org.apache.thrift.annotation.Nullable
public java.lang.String getComment() {
return this.comment;
}
public TColumnDesc setComment(@org.apache.thrift.annotation.Nullable java.lang.String comment) {
this.comment = comment;
return this;
}
public void unsetComment() {
this.comment = null;
}
/** Returns true if field comment is set (has been assigned a value) and false otherwise */
public boolean isSetComment() {
return this.comment != null;
}
public void setCommentIsSet(boolean value) {
if (!value) {
this.comment = null;
}
}
@Override
public void setFieldValue(
_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) {
switch (field) {
case COLUMN_NAME:
if (value == null) {
unsetColumnName();
} else {
setColumnName((java.lang.String) value);
}
break;
case TYPE_DESC:
if (value == null) {
unsetTypeDesc();
} else {
setTypeDesc((TTypeDesc) value);
}
break;
case POSITION:
if (value == null) {
unsetPosition();
} else {
setPosition((java.lang.Integer) value);
}
break;
case COMMENT:
if (value == null) {
unsetComment();
} else {
setComment((java.lang.String) value);
}
break;
}
}
@org.apache.thrift.annotation.Nullable
@Override
public java.lang.Object getFieldValue(_Fields field) {
switch (field) {
case COLUMN_NAME:
return getColumnName();
case TYPE_DESC:
return getTypeDesc();
case POSITION:
return getPosition();
case COMMENT:
return getComment();
}
throw new java.lang.IllegalStateException();
}
/**
* Returns true if field corresponding to fieldID is set (has been assigned a value) and false
* otherwise
*/
@Override
public boolean isSet(_Fields field) {
if (field == null) {
throw new java.lang.IllegalArgumentException();
}
switch (field) {
case COLUMN_NAME:
return isSetColumnName();
case TYPE_DESC:
return isSetTypeDesc();
case POSITION:
return isSetPosition();
case COMMENT:
return isSetComment();
}
throw new java.lang.IllegalStateException();
}
@Override
public boolean equals(java.lang.Object that) {
if (that instanceof TColumnDesc) return this.equals((TColumnDesc) that);
return false;
}
public boolean equals(TColumnDesc that) {
if (that == null) return false;
if (this == that) return true;
boolean this_present_columnName = true && this.isSetColumnName();
boolean that_present_columnName = true && that.isSetColumnName();
if (this_present_columnName || that_present_columnName) {
if (!(this_present_columnName && that_present_columnName)) return false;
if (!this.columnName.equals(that.columnName)) return false;
}
boolean this_present_typeDesc = true && this.isSetTypeDesc();
boolean that_present_typeDesc = true && that.isSetTypeDesc();
if (this_present_typeDesc || that_present_typeDesc) {
if (!(this_present_typeDesc && that_present_typeDesc)) return false;
if (!this.typeDesc.equals(that.typeDesc)) return false;
}
boolean this_present_position = true;
boolean that_present_position = true;
if (this_present_position || that_present_position) {
if (!(this_present_position && that_present_position)) return false;
if (this.position != that.position) return false;
}
boolean this_present_comment = true && this.isSetComment();
boolean that_present_comment = true && that.isSetComment();
if (this_present_comment || that_present_comment) {
if (!(this_present_comment && that_present_comment)) return false;
if (!this.comment.equals(that.comment)) return false;
}
return true;
}
@Override
public int hashCode() {
int hashCode = 1;
hashCode = hashCode * 8191 + ((isSetColumnName()) ? 131071 : 524287);
if (isSetColumnName()) hashCode = hashCode * 8191 + columnName.hashCode();
hashCode = hashCode * 8191 + ((isSetTypeDesc()) ? 131071 : 524287);
if (isSetTypeDesc()) hashCode = hashCode * 8191 + typeDesc.hashCode();
hashCode = hashCode * 8191 + position;
hashCode = hashCode * 8191 + ((isSetComment()) ? 131071 : 524287);
if (isSetComment()) hashCode = hashCode * 8191 + comment.hashCode();
return hashCode;
}
@Override
public int compareTo(TColumnDesc other) {
if (!getClass().equals(other.getClass())) {
return getClass().getName().compareTo(other.getClass().getName());
}
int lastComparison = 0;
lastComparison = java.lang.Boolean.compare(isSetColumnName(), other.isSetColumnName());
if (lastComparison != 0) {
return lastComparison;
}
if (isSetColumnName()) {
lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.columnName, other.columnName);
if (lastComparison != 0) {
return lastComparison;
}
}
lastComparison = java.lang.Boolean.compare(isSetTypeDesc(), other.isSetTypeDesc());
if (lastComparison != 0) {
return lastComparison;
}
if (isSetTypeDesc()) {
lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.typeDesc, other.typeDesc);
if (lastComparison != 0) {
return lastComparison;
}
}
lastComparison = java.lang.Boolean.compare(isSetPosition(), other.isSetPosition());
if (lastComparison != 0) {
return lastComparison;
}
if (isSetPosition()) {
lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.position, other.position);
if (lastComparison != 0) {
return lastComparison;
}
}
lastComparison = java.lang.Boolean.compare(isSetComment(), other.isSetComment());
if (lastComparison != 0) {
return lastComparison;
}
if (isSetComment()) {
lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.comment, other.comment);
if (lastComparison != 0) {
return lastComparison;
}
}
return 0;
}
@org.apache.thrift.annotation.Nullable
@Override
public _Fields fieldForId(int fieldId) {
return _Fields.findByThriftId(fieldId);
}
@Override
public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException {
scheme(iprot).read(iprot, this);
}
@Override
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("TColumnDesc(");
boolean first = true;
sb.append("columnName:");
if (this.columnName == null) {
sb.append("null");
} else {
sb.append(this.columnName);
}
first = false;
if (!first) sb.append(", ");
sb.append("typeDesc:");
if (this.typeDesc == null) {
sb.append("null");
} else {
sb.append(this.typeDesc);
}
first = false;
if (!first) sb.append(", ");
sb.append("position:");
sb.append(this.position);
first = false;
if (isSetComment()) {
if (!first) sb.append(", ");
sb.append("comment:");
if (this.comment == null) {
sb.append("null");
} else {
sb.append(this.comment);
}
first = false;
}
sb.append(")");
return sb.toString();
}
public void validate() throws org.apache.thrift.TException {
// check for required fields
if (columnName == null) {
throw new org.apache.thrift.protocol.TProtocolException(
"Required field 'columnName' was not present! Struct: " + toString());
}
if (typeDesc == null) {
throw new org.apache.thrift.protocol.TProtocolException(
"Required field 'typeDesc' was not present! Struct: " + toString());
}
// alas, we cannot check 'position' because it's a primitive and you chose the non-beans
// generator.
// check for sub-struct validity
if (typeDesc != null) {
typeDesc.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 {
// 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 TColumnDescStandardSchemeFactory
implements org.apache.thrift.scheme.SchemeFactory {
@Override
public TColumnDescStandardScheme getScheme() {
return new TColumnDescStandardScheme();
}
}
private static class TColumnDescStandardScheme
extends org.apache.thrift.scheme.StandardScheme {
@Override
public void read(org.apache.thrift.protocol.TProtocol iprot, TColumnDesc 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: // COLUMN_NAME
if (schemeField.type == org.apache.thrift.protocol.TType.STRING) {
struct.columnName = iprot.readString();
struct.setColumnNameIsSet(true);
} else {
org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
}
break;
case 2: // TYPE_DESC
if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) {
struct.typeDesc = new TTypeDesc();
struct.typeDesc.read(iprot);
struct.setTypeDescIsSet(true);
} else {
org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
}
break;
case 3: // POSITION
if (schemeField.type == org.apache.thrift.protocol.TType.I32) {
struct.position = iprot.readI32();
struct.setPositionIsSet(true);
} else {
org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
}
break;
case 4: // COMMENT
if (schemeField.type == org.apache.thrift.protocol.TType.STRING) {
struct.comment = iprot.readString();
struct.setCommentIsSet(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
if (!struct.isSetPosition()) {
throw new org.apache.thrift.protocol.TProtocolException(
"Required field 'position' was not found in serialized data! Struct: " + toString());
}
struct.validate();
}
@Override
public void write(org.apache.thrift.protocol.TProtocol oprot, TColumnDesc struct)
throws org.apache.thrift.TException {
struct.validate();
oprot.writeStructBegin(STRUCT_DESC);
if (struct.columnName != null) {
oprot.writeFieldBegin(COLUMN_NAME_FIELD_DESC);
oprot.writeString(struct.columnName);
oprot.writeFieldEnd();
}
if (struct.typeDesc != null) {
oprot.writeFieldBegin(TYPE_DESC_FIELD_DESC);
struct.typeDesc.write(oprot);
oprot.writeFieldEnd();
}
oprot.writeFieldBegin(POSITION_FIELD_DESC);
oprot.writeI32(struct.position);
oprot.writeFieldEnd();
if (struct.comment != null) {
if (struct.isSetComment()) {
oprot.writeFieldBegin(COMMENT_FIELD_DESC);
oprot.writeString(struct.comment);
oprot.writeFieldEnd();
}
}
oprot.writeFieldStop();
oprot.writeStructEnd();
}
}
private static class TColumnDescTupleSchemeFactory
implements org.apache.thrift.scheme.SchemeFactory {
@Override
public TColumnDescTupleScheme getScheme() {
return new TColumnDescTupleScheme();
}
}
private static class TColumnDescTupleScheme
extends org.apache.thrift.scheme.TupleScheme {
@Override
public void write(org.apache.thrift.protocol.TProtocol prot, TColumnDesc struct)
throws org.apache.thrift.TException {
org.apache.thrift.protocol.TTupleProtocol oprot =
(org.apache.thrift.protocol.TTupleProtocol) prot;
oprot.writeString(struct.columnName);
struct.typeDesc.write(oprot);
oprot.writeI32(struct.position);
java.util.BitSet optionals = new java.util.BitSet();
if (struct.isSetComment()) {
optionals.set(0);
}
oprot.writeBitSet(optionals, 1);
if (struct.isSetComment()) {
oprot.writeString(struct.comment);
}
}
@Override
public void read(org.apache.thrift.protocol.TProtocol prot, TColumnDesc struct)
throws org.apache.thrift.TException {
org.apache.thrift.protocol.TTupleProtocol iprot =
(org.apache.thrift.protocol.TTupleProtocol) prot;
struct.columnName = iprot.readString();
struct.setColumnNameIsSet(true);
struct.typeDesc = new TTypeDesc();
struct.typeDesc.read(iprot);
struct.setTypeDescIsSet(true);
struct.position = iprot.readI32();
struct.setPositionIsSet(true);
java.util.BitSet incoming = iprot.readBitSet(1);
if (incoming.get(0)) {
struct.comment = iprot.readString();
struct.setCommentIsSet(true);
}
}
}
private static 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();
}
}