@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 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;
  }