@Override public int compareTo(QueryResult other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; lastComparison = Boolean.valueOf(isSetDocumentType()).compareTo(other.isSetDocumentType()); if (lastComparison != 0) { return lastComparison; } if (isSetDocumentType()) { lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.documentType, other.documentType); if (lastComparison != 0) { return lastComparison; } } lastComparison = Boolean.valueOf(isSetId()).compareTo(other.isSetId()); if (lastComparison != 0) { return lastComparison; } if (isSetId()) { lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.id, other.id); if (lastComparison != 0) { return lastComparison; } } return 0; }
/** Performs a deep copy on <i>other</i>. */ public QueryResult(QueryResult other) { if (other.isSetDocumentType()) { this.documentType = other.documentType; } if (other.isSetId()) { this.id = other.id; } }
@Override public void read(org.apache.thrift.protocol.TProtocol prot, QueryResult struct) throws org.apache.thrift.TException { TTupleProtocol iprot = (TTupleProtocol) prot; BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { struct.documentType = DocumentType.findByValue(iprot.readI32()); struct.setDocumentTypeIsSet(true); } if (incoming.get(1)) { struct.id = iprot.readString(); struct.setIdIsSet(true); } }
@Override public void write(org.apache.thrift.protocol.TProtocol prot, QueryResult struct) throws org.apache.thrift.TException { TTupleProtocol oprot = (TTupleProtocol) prot; BitSet optionals = new BitSet(); if (struct.isSetDocumentType()) { optionals.set(0); } if (struct.isSetId()) { optionals.set(1); } oprot.writeBitSet(optionals, 2); if (struct.isSetDocumentType()) { oprot.writeI32(struct.documentType.getValue()); } if (struct.isSetId()) { oprot.writeString(struct.id); } }
public boolean equals(QueryResult that) { if (that == null) return false; boolean this_present_documentType = true && this.isSetDocumentType(); boolean that_present_documentType = true && that.isSetDocumentType(); if (this_present_documentType || that_present_documentType) { if (!(this_present_documentType && that_present_documentType)) return false; if (!this.documentType.equals(that.documentType)) return false; } boolean this_present_id = true && this.isSetId(); boolean that_present_id = true && that.isSetId(); if (this_present_id || that_present_id) { if (!(this_present_id && that_present_id)) return false; if (!this.id.equals(that.id)) return false; } return true; }
public void read(org.apache.thrift.protocol.TProtocol iprot, QueryResult 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: // DOCUMENT_TYPE if (schemeField.type == org.apache.thrift.protocol.TType.I32) { struct.documentType = DocumentType.findByValue(iprot.readI32()); struct.setDocumentTypeIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; case 2: // ID if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.id = iprot.readString(); struct.setIdIsSet(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, QueryResult struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); if (struct.documentType != null) { oprot.writeFieldBegin(DOCUMENT_TYPE_FIELD_DESC); oprot.writeI32(struct.documentType.getValue()); oprot.writeFieldEnd(); } if (struct.id != null) { oprot.writeFieldBegin(ID_FIELD_DESC); oprot.writeString(struct.id); oprot.writeFieldEnd(); } oprot.writeFieldStop(); oprot.writeStructEnd(); }