in src/main/thrift-gen-java/org/apache/accumulo/proxy/thrift/ActiveCompaction.java [739:836]
public boolean equals(ActiveCompaction that) {
if (that == null)
return false;
if (this == that)
return true;
boolean this_present_extent = true && this.isSetExtent();
boolean that_present_extent = true && that.isSetExtent();
if (this_present_extent || that_present_extent) {
if (!(this_present_extent && that_present_extent))
return false;
if (!this.extent.equals(that.extent))
return false;
}
boolean this_present_age = true;
boolean that_present_age = true;
if (this_present_age || that_present_age) {
if (!(this_present_age && that_present_age))
return false;
if (this.age != that.age)
return false;
}
boolean this_present_inputFiles = true && this.isSetInputFiles();
boolean that_present_inputFiles = true && that.isSetInputFiles();
if (this_present_inputFiles || that_present_inputFiles) {
if (!(this_present_inputFiles && that_present_inputFiles))
return false;
if (!this.inputFiles.equals(that.inputFiles))
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;
}
boolean this_present_type = true && this.isSetType();
boolean that_present_type = true && that.isSetType();
if (this_present_type || that_present_type) {
if (!(this_present_type && that_present_type))
return false;
if (!this.type.equals(that.type))
return false;
}
boolean this_present_reason = true && this.isSetReason();
boolean that_present_reason = true && that.isSetReason();
if (this_present_reason || that_present_reason) {
if (!(this_present_reason && that_present_reason))
return false;
if (!this.reason.equals(that.reason))
return false;
}
boolean this_present_localityGroup = true && this.isSetLocalityGroup();
boolean that_present_localityGroup = true && that.isSetLocalityGroup();
if (this_present_localityGroup || that_present_localityGroup) {
if (!(this_present_localityGroup && that_present_localityGroup))
return false;
if (!this.localityGroup.equals(that.localityGroup))
return false;
}
boolean this_present_entriesRead = true;
boolean that_present_entriesRead = true;
if (this_present_entriesRead || that_present_entriesRead) {
if (!(this_present_entriesRead && that_present_entriesRead))
return false;
if (this.entriesRead != that.entriesRead)
return false;
}
boolean this_present_entriesWritten = true;
boolean that_present_entriesWritten = true;
if (this_present_entriesWritten || that_present_entriesWritten) {
if (!(this_present_entriesWritten && that_present_entriesWritten))
return false;
if (this.entriesWritten != that.entriesWritten)
return false;
}
boolean this_present_iterators = true && this.isSetIterators();
boolean that_present_iterators = true && that.isSetIterators();
if (this_present_iterators || that_present_iterators) {
if (!(this_present_iterators && that_present_iterators))
return false;
if (!this.iterators.equals(that.iterators))
return false;
}
return true;
}