com.databricks.jdbc.client.impl.thrift.generated.TDBSqlResultFormat 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 TDBSqlResultFormat
extends org.apache.thrift.TUnion {
private static final org.apache.thrift.protocol.TStruct STRUCT_DESC =
new org.apache.thrift.protocol.TStruct("TDBSqlResultFormat");
private static final org.apache.thrift.protocol.TField ARROW_FORMAT_FIELD_DESC =
new org.apache.thrift.protocol.TField(
"arrowFormat", org.apache.thrift.protocol.TType.STRUCT, (short) 1);
private static final org.apache.thrift.protocol.TField CSV_FORMAT_FIELD_DESC =
new org.apache.thrift.protocol.TField(
"csvFormat", org.apache.thrift.protocol.TType.STRUCT, (short) 2);
private static final org.apache.thrift.protocol.TField JSON_ARRAY_FORMAT_FIELD_DESC =
new org.apache.thrift.protocol.TField(
"jsonArrayFormat", org.apache.thrift.protocol.TType.STRUCT, (short) 3);
/**
* The set of fields this struct contains, along with convenience methods for finding and
* manipulating them.
*/
public enum _Fields implements org.apache.thrift.TFieldIdEnum {
ARROW_FORMAT((short) 1, "arrowFormat"),
CSV_FORMAT((short) 2, "csvFormat"),
JSON_ARRAY_FORMAT((short) 3, "jsonArrayFormat");
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: // ARROW_FORMAT
return ARROW_FORMAT;
case 2: // CSV_FORMAT
return CSV_FORMAT;
case 3: // JSON_ARRAY_FORMAT
return JSON_ARRAY_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;
}
@Override
public short getThriftFieldId() {
return _thriftId;
}
@Override
public java.lang.String getFieldName() {
return _fieldName;
}
}
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.ARROW_FORMAT,
new org.apache.thrift.meta_data.FieldMetaData(
"arrowFormat",
org.apache.thrift.TFieldRequirementType.OPTIONAL,
new org.apache.thrift.meta_data.StructMetaData(
org.apache.thrift.protocol.TType.STRUCT, TDBSqlArrowFormat.class)));
tmpMap.put(
_Fields.CSV_FORMAT,
new org.apache.thrift.meta_data.FieldMetaData(
"csvFormat",
org.apache.thrift.TFieldRequirementType.OPTIONAL,
new org.apache.thrift.meta_data.StructMetaData(
org.apache.thrift.protocol.TType.STRUCT, TDBSqlCsvFormat.class)));
tmpMap.put(
_Fields.JSON_ARRAY_FORMAT,
new org.apache.thrift.meta_data.FieldMetaData(
"jsonArrayFormat",
org.apache.thrift.TFieldRequirementType.OPTIONAL,
new org.apache.thrift.meta_data.StructMetaData(
org.apache.thrift.protocol.TType.STRUCT, TDBSqlJsonArrayFormat.class)));
metaDataMap = java.util.Collections.unmodifiableMap(tmpMap);
org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(
TDBSqlResultFormat.class, metaDataMap);
}
public TDBSqlResultFormat() {
super();
}
public TDBSqlResultFormat(_Fields setField, java.lang.Object value) {
super(setField, value);
}
public TDBSqlResultFormat(TDBSqlResultFormat other) {
super(other);
}
@Override
public TDBSqlResultFormat deepCopy() {
return new TDBSqlResultFormat(this);
}
public static TDBSqlResultFormat arrowFormat(TDBSqlArrowFormat value) {
TDBSqlResultFormat x = new TDBSqlResultFormat();
x.setArrowFormat(value);
return x;
}
public static TDBSqlResultFormat csvFormat(TDBSqlCsvFormat value) {
TDBSqlResultFormat x = new TDBSqlResultFormat();
x.setCsvFormat(value);
return x;
}
public static TDBSqlResultFormat jsonArrayFormat(TDBSqlJsonArrayFormat value) {
TDBSqlResultFormat x = new TDBSqlResultFormat();
x.setJsonArrayFormat(value);
return x;
}
@Override
protected void checkType(_Fields setField, java.lang.Object value)
throws java.lang.ClassCastException {
switch (setField) {
case ARROW_FORMAT:
if (value instanceof TDBSqlArrowFormat) {
break;
}
throw new java.lang.ClassCastException(
"Was expecting value of type TDBSqlArrowFormat for field 'arrowFormat', but got "
+ value.getClass().getSimpleName());
case CSV_FORMAT:
if (value instanceof TDBSqlCsvFormat) {
break;
}
throw new java.lang.ClassCastException(
"Was expecting value of type TDBSqlCsvFormat for field 'csvFormat', but got "
+ value.getClass().getSimpleName());
case JSON_ARRAY_FORMAT:
if (value instanceof TDBSqlJsonArrayFormat) {
break;
}
throw new java.lang.ClassCastException(
"Was expecting value of type TDBSqlJsonArrayFormat for field 'jsonArrayFormat', but got "
+ value.getClass().getSimpleName());
default:
throw new java.lang.IllegalArgumentException("Unknown field id " + setField);
}
}
@Override
protected java.lang.Object standardSchemeReadValue(
org.apache.thrift.protocol.TProtocol iprot, org.apache.thrift.protocol.TField field)
throws org.apache.thrift.TException {
_Fields setField = _Fields.findByThriftId(field.id);
if (setField != null) {
switch (setField) {
case ARROW_FORMAT:
if (field.type == ARROW_FORMAT_FIELD_DESC.type) {
TDBSqlArrowFormat arrowFormat;
arrowFormat = new TDBSqlArrowFormat();
arrowFormat.read(iprot);
return arrowFormat;
} else {
org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
return null;
}
case CSV_FORMAT:
if (field.type == CSV_FORMAT_FIELD_DESC.type) {
TDBSqlCsvFormat csvFormat;
csvFormat = new TDBSqlCsvFormat();
csvFormat.read(iprot);
return csvFormat;
} else {
org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
return null;
}
case JSON_ARRAY_FORMAT:
if (field.type == JSON_ARRAY_FORMAT_FIELD_DESC.type) {
TDBSqlJsonArrayFormat jsonArrayFormat;
jsonArrayFormat = new TDBSqlJsonArrayFormat();
jsonArrayFormat.read(iprot);
return jsonArrayFormat;
} else {
org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
return null;
}
default:
throw new java.lang.IllegalStateException(
"setField wasn't null, but didn't match any of the case statements!");
}
} else {
org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
return null;
}
}
@Override
protected void standardSchemeWriteValue(org.apache.thrift.protocol.TProtocol oprot)
throws org.apache.thrift.TException {
switch (setField_) {
case ARROW_FORMAT:
TDBSqlArrowFormat arrowFormat = (TDBSqlArrowFormat) value_;
arrowFormat.write(oprot);
return;
case CSV_FORMAT:
TDBSqlCsvFormat csvFormat = (TDBSqlCsvFormat) value_;
csvFormat.write(oprot);
return;
case JSON_ARRAY_FORMAT:
TDBSqlJsonArrayFormat jsonArrayFormat = (TDBSqlJsonArrayFormat) value_;
jsonArrayFormat.write(oprot);
return;
default:
throw new java.lang.IllegalStateException(
"Cannot write union with unknown field " + setField_);
}
}
@Override
protected java.lang.Object tupleSchemeReadValue(
org.apache.thrift.protocol.TProtocol iprot, short fieldID)
throws org.apache.thrift.TException {
_Fields setField = _Fields.findByThriftId(fieldID);
if (setField != null) {
switch (setField) {
case ARROW_FORMAT:
TDBSqlArrowFormat arrowFormat;
arrowFormat = new TDBSqlArrowFormat();
arrowFormat.read(iprot);
return arrowFormat;
case CSV_FORMAT:
TDBSqlCsvFormat csvFormat;
csvFormat = new TDBSqlCsvFormat();
csvFormat.read(iprot);
return csvFormat;
case JSON_ARRAY_FORMAT:
TDBSqlJsonArrayFormat jsonArrayFormat;
jsonArrayFormat = new TDBSqlJsonArrayFormat();
jsonArrayFormat.read(iprot);
return jsonArrayFormat;
default:
throw new java.lang.IllegalStateException(
"setField wasn't null, but didn't match any of the case statements!");
}
} else {
throw new org.apache.thrift.protocol.TProtocolException(
"Couldn't find a field with field id " + fieldID);
}
}
@Override
protected void tupleSchemeWriteValue(org.apache.thrift.protocol.TProtocol oprot)
throws org.apache.thrift.TException {
switch (setField_) {
case ARROW_FORMAT:
TDBSqlArrowFormat arrowFormat = (TDBSqlArrowFormat) value_;
arrowFormat.write(oprot);
return;
case CSV_FORMAT:
TDBSqlCsvFormat csvFormat = (TDBSqlCsvFormat) value_;
csvFormat.write(oprot);
return;
case JSON_ARRAY_FORMAT:
TDBSqlJsonArrayFormat jsonArrayFormat = (TDBSqlJsonArrayFormat) value_;
jsonArrayFormat.write(oprot);
return;
default:
throw new java.lang.IllegalStateException(
"Cannot write union with unknown field " + setField_);
}
}
@Override
protected org.apache.thrift.protocol.TField getFieldDesc(_Fields setField) {
switch (setField) {
case ARROW_FORMAT:
return ARROW_FORMAT_FIELD_DESC;
case CSV_FORMAT:
return CSV_FORMAT_FIELD_DESC;
case JSON_ARRAY_FORMAT:
return JSON_ARRAY_FORMAT_FIELD_DESC;
default:
throw new java.lang.IllegalArgumentException("Unknown field id " + setField);
}
}
@Override
protected org.apache.thrift.protocol.TStruct getStructDesc() {
return STRUCT_DESC;
}
@Override
protected _Fields enumForId(short id) {
return _Fields.findByThriftIdOrThrow(id);
}
@org.apache.thrift.annotation.Nullable
@Override
public _Fields fieldForId(int fieldId) {
return _Fields.findByThriftId(fieldId);
}
public TDBSqlArrowFormat getArrowFormat() {
if (getSetField() == _Fields.ARROW_FORMAT) {
return (TDBSqlArrowFormat) getFieldValue();
} else {
throw new java.lang.RuntimeException(
"Cannot get field 'arrowFormat' because union is currently set to "
+ getFieldDesc(getSetField()).name);
}
}
public void setArrowFormat(TDBSqlArrowFormat value) {
setField_ = _Fields.ARROW_FORMAT;
value_ = java.util.Objects.requireNonNull(value, "_Fields.ARROW_FORMAT");
}
public TDBSqlCsvFormat getCsvFormat() {
if (getSetField() == _Fields.CSV_FORMAT) {
return (TDBSqlCsvFormat) getFieldValue();
} else {
throw new java.lang.RuntimeException(
"Cannot get field 'csvFormat' because union is currently set to "
+ getFieldDesc(getSetField()).name);
}
}
public void setCsvFormat(TDBSqlCsvFormat value) {
setField_ = _Fields.CSV_FORMAT;
value_ = java.util.Objects.requireNonNull(value, "_Fields.CSV_FORMAT");
}
public TDBSqlJsonArrayFormat getJsonArrayFormat() {
if (getSetField() == _Fields.JSON_ARRAY_FORMAT) {
return (TDBSqlJsonArrayFormat) getFieldValue();
} else {
throw new java.lang.RuntimeException(
"Cannot get field 'jsonArrayFormat' because union is currently set to "
+ getFieldDesc(getSetField()).name);
}
}
public void setJsonArrayFormat(TDBSqlJsonArrayFormat value) {
setField_ = _Fields.JSON_ARRAY_FORMAT;
value_ = java.util.Objects.requireNonNull(value, "_Fields.JSON_ARRAY_FORMAT");
}
public boolean isSetArrowFormat() {
return setField_ == _Fields.ARROW_FORMAT;
}
public boolean isSetCsvFormat() {
return setField_ == _Fields.CSV_FORMAT;
}
public boolean isSetJsonArrayFormat() {
return setField_ == _Fields.JSON_ARRAY_FORMAT;
}
public boolean equals(java.lang.Object other) {
if (other instanceof TDBSqlResultFormat) {
return equals((TDBSqlResultFormat) other);
} else {
return false;
}
}
public boolean equals(TDBSqlResultFormat other) {
return other != null
&& getSetField() == other.getSetField()
&& getFieldValue().equals(other.getFieldValue());
}
@Override
public int compareTo(TDBSqlResultFormat other) {
int lastComparison =
org.apache.thrift.TBaseHelper.compareTo(getSetField(), other.getSetField());
if (lastComparison == 0) {
return org.apache.thrift.TBaseHelper.compareTo(getFieldValue(), other.getFieldValue());
}
return lastComparison;
}
@Override
public int hashCode() {
java.util.List list = new java.util.ArrayList();
list.add(this.getClass().getName());
org.apache.thrift.TFieldIdEnum setField = getSetField();
if (setField != null) {
list.add(setField.getThriftFieldId());
java.lang.Object value = getFieldValue();
if (value instanceof org.apache.thrift.TEnum) {
list.add(((org.apache.thrift.TEnum) getFieldValue()).getValue());
} else {
list.add(value);
}
}
return list.hashCode();
}
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);
}
}
}