in core/src/main/thrift-gen-java/org/apache/accumulo/core/tablet/thrift/TabletManagementClientService.java [1684:1745]
public boolean equals(unloadTablet_args that) {
if (that == null)
return false;
if (this == that)
return true;
boolean this_present_tinfo = true && this.isSetTinfo();
boolean that_present_tinfo = true && that.isSetTinfo();
if (this_present_tinfo || that_present_tinfo) {
if (!(this_present_tinfo && that_present_tinfo))
return false;
if (!this.tinfo.equals(that.tinfo))
return false;
}
boolean this_present_credentials = true && this.isSetCredentials();
boolean that_present_credentials = true && that.isSetCredentials();
if (this_present_credentials || that_present_credentials) {
if (!(this_present_credentials && that_present_credentials))
return false;
if (!this.credentials.equals(that.credentials))
return false;
}
boolean this_present_lock = true && this.isSetLock();
boolean that_present_lock = true && that.isSetLock();
if (this_present_lock || that_present_lock) {
if (!(this_present_lock && that_present_lock))
return false;
if (!this.lock.equals(that.lock))
return false;
}
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_goal = true && this.isSetGoal();
boolean that_present_goal = true && that.isSetGoal();
if (this_present_goal || that_present_goal) {
if (!(this_present_goal && that_present_goal))
return false;
if (!this.goal.equals(that.goal))
return false;
}
boolean this_present_requestTime = true;
boolean that_present_requestTime = true;
if (this_present_requestTime || that_present_requestTime) {
if (!(this_present_requestTime && that_present_requestTime))
return false;
if (this.requestTime != that.requestTime)
return false;
}
return true;
}