TExternalSearchQuery.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-08-04")
public class TExternalSearchQuery extends org.apache.thrift.TUnion<TExternalSearchQuery, TExternalSearchQuery._Fields> {
private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("TExternalSearchQuery");
private static final org.apache.thrift.protocol.TField VECTOR_FIELD_DESC = new org.apache.thrift.protocol.TField("vector", org.apache.thrift.protocol.TType.STRUCT, (short)1);
private static final org.apache.thrift.protocol.TField FULL_TEXT_FIELD_DESC = new org.apache.thrift.protocol.TField("full_text", org.apache.thrift.protocol.TType.STRUCT, (short)2);
/** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
public enum _Fields implements org.apache.thrift.TFieldIdEnum {
VECTOR((short)1, "vector"),
FULL_TEXT((short)2, "full_text");
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: // VECTOR
return VECTOR;
case 2: // FULL_TEXT
return FULL_TEXT;
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;
}
}
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.VECTOR, new org.apache.thrift.meta_data.FieldMetaData("vector", org.apache.thrift.TFieldRequirementType.OPTIONAL,
new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, TVectorSearchParams.class)));
tmpMap.put(_Fields.FULL_TEXT, new org.apache.thrift.meta_data.FieldMetaData("full_text", org.apache.thrift.TFieldRequirementType.OPTIONAL,
new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, TFullTextSearchParams.class)));
metaDataMap = java.util.Collections.unmodifiableMap(tmpMap);
org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(TExternalSearchQuery.class, metaDataMap);
}
public TExternalSearchQuery() {
super();
}
public TExternalSearchQuery(_Fields setField, java.lang.Object value) {
super(setField, value);
}
public TExternalSearchQuery(TExternalSearchQuery other) {
super(other);
}
public TExternalSearchQuery deepCopy() {
return new TExternalSearchQuery(this);
}
public static TExternalSearchQuery vector(TVectorSearchParams value) {
TExternalSearchQuery x = new TExternalSearchQuery();
x.setVector(value);
return x;
}
public static TExternalSearchQuery full_text(TFullTextSearchParams value) {
TExternalSearchQuery x = new TExternalSearchQuery();
x.setFullText(value);
return x;
}
@Override
protected void checkType(_Fields setField, java.lang.Object value) throws java.lang.ClassCastException {
switch (setField) {
case VECTOR:
if (value instanceof TVectorSearchParams) {
break;
}
throw new java.lang.ClassCastException("Was expecting value of type TVectorSearchParams for field 'vector', but got " + value.getClass().getSimpleName());
case FULL_TEXT:
if (value instanceof TFullTextSearchParams) {
break;
}
throw new java.lang.ClassCastException("Was expecting value of type TFullTextSearchParams for field 'full_text', 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 VECTOR:
if (field.type == VECTOR_FIELD_DESC.type) {
TVectorSearchParams vector;
vector = new TVectorSearchParams();
vector.read(iprot);
return vector;
} else {
org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
return null;
}
case FULL_TEXT:
if (field.type == FULL_TEXT_FIELD_DESC.type) {
TFullTextSearchParams full_text;
full_text = new TFullTextSearchParams();
full_text.read(iprot);
return full_text;
} 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 VECTOR:
TVectorSearchParams vector = (TVectorSearchParams)value_;
vector.write(oprot);
return;
case FULL_TEXT:
TFullTextSearchParams full_text = (TFullTextSearchParams)value_;
full_text.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 VECTOR:
TVectorSearchParams vector;
vector = new TVectorSearchParams();
vector.read(iprot);
return vector;
case FULL_TEXT:
TFullTextSearchParams full_text;
full_text = new TFullTextSearchParams();
full_text.read(iprot);
return full_text;
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 VECTOR:
TVectorSearchParams vector = (TVectorSearchParams)value_;
vector.write(oprot);
return;
case FULL_TEXT:
TFullTextSearchParams full_text = (TFullTextSearchParams)value_;
full_text.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 VECTOR:
return VECTOR_FIELD_DESC;
case FULL_TEXT:
return FULL_TEXT_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
public _Fields fieldForId(int fieldId) {
return _Fields.findByThriftId(fieldId);
}
public TVectorSearchParams getVector() {
if (getSetField() == _Fields.VECTOR) {
return (TVectorSearchParams)getFieldValue();
} else {
throw new java.lang.RuntimeException("Cannot get field 'vector' because union is currently set to " + getFieldDesc(getSetField()).name);
}
}
public void setVector(TVectorSearchParams value) {
setField_ = _Fields.VECTOR;
value_ = java.util.Objects.requireNonNull(value,"_Fields.VECTOR");
}
public TFullTextSearchParams getFullText() {
if (getSetField() == _Fields.FULL_TEXT) {
return (TFullTextSearchParams)getFieldValue();
} else {
throw new java.lang.RuntimeException("Cannot get field 'full_text' because union is currently set to " + getFieldDesc(getSetField()).name);
}
}
public void setFullText(TFullTextSearchParams value) {
setField_ = _Fields.FULL_TEXT;
value_ = java.util.Objects.requireNonNull(value,"_Fields.FULL_TEXT");
}
public boolean isSetVector() {
return setField_ == _Fields.VECTOR;
}
public boolean isSetFullText() {
return setField_ == _Fields.FULL_TEXT;
}
public boolean equals(java.lang.Object other) {
if (other instanceof TExternalSearchQuery) {
return equals((TExternalSearchQuery)other);
} else {
return false;
}
}
public boolean equals(TExternalSearchQuery other) {
return other != null && getSetField() == other.getSetField() && getFieldValue().equals(other.getFieldValue());
}
@Override
public int compareTo(TExternalSearchQuery 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<java.lang.Object> list = new java.util.ArrayList<java.lang.Object>();
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);
}
}
}