in core/src/main/thrift-gen-java/org/apache/accumulo/core/tabletserver/thrift/ActiveCompaction.java [867:982]
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_ssiList = true && this.isSetSsiList();
boolean that_present_ssiList = true && that.isSetSsiList();
if (this_present_ssiList || that_present_ssiList) {
if (!(this_present_ssiList && that_present_ssiList))
return false;
if (!this.ssiList.equals(that.ssiList))
return false;
}
boolean this_present_ssio = true && this.isSetSsio();
boolean that_present_ssio = true && that.isSetSsio();
if (this_present_ssio || that_present_ssio) {
if (!(this_present_ssio && that_present_ssio))
return false;
if (!this.ssio.equals(that.ssio))
return false;
}
boolean this_present_timesPaused = true;
boolean that_present_timesPaused = true;
if (this_present_timesPaused || that_present_timesPaused) {
if (!(this_present_timesPaused && that_present_timesPaused))
return false;
if (this.timesPaused != that.timesPaused)
return false;
}
return true;
}