Exemplo n.º 1
0
 @Override
 public void write(org.apache.thrift.protocol.TProtocol prot, JobConfInfo struct)
     throws org.apache.thrift.TException {
   TTupleProtocol oprot = (TTupleProtocol) prot;
   BitSet optionals = new BitSet();
   if (struct.isSetOutputFile()) {
     optionals.set(0);
   }
   oprot.writeBitSet(optionals, 1);
   if (struct.isSetOutputFile()) {
     oprot.writeString(struct.outputFile);
   }
 }
Exemplo n.º 2
0
  public boolean equals(JobConfInfo that) {
    if (that == null) return false;

    boolean this_present_outputFile = true && this.isSetOutputFile();
    boolean that_present_outputFile = true && that.isSetOutputFile();
    if (this_present_outputFile || that_present_outputFile) {
      if (!(this_present_outputFile && that_present_outputFile)) return false;
      if (!this.outputFile.equals(that.outputFile)) return false;
    }

    return true;
  }
Exemplo n.º 3
0
  @Override
  public int compareTo(JobConfInfo other) {
    if (!getClass().equals(other.getClass())) {
      return getClass().getName().compareTo(other.getClass().getName());
    }

    int lastComparison = 0;

    lastComparison = Boolean.valueOf(isSetOutputFile()).compareTo(other.isSetOutputFile());
    if (lastComparison != 0) {
      return lastComparison;
    }
    if (isSetOutputFile()) {
      lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.outputFile, other.outputFile);
      if (lastComparison != 0) {
        return lastComparison;
      }
    }
    return 0;
  }
Exemplo n.º 4
0
 /** Performs a deep copy on <i>other</i>. */
 public JobConfInfo(JobConfInfo other) {
   if (other.isSetOutputFile()) {
     this.outputFile = other.outputFile;
   }
 }