in amoro-common/src/main/gen-java/org/apache/amoro/api/OptimizingTask.java [319:353]
public boolean equals(OptimizingTask that) {
if (that == null)
return false;
if (this == that)
return true;
boolean this_present_taskId = true && this.isSetTaskId();
boolean that_present_taskId = true && that.isSetTaskId();
if (this_present_taskId || that_present_taskId) {
if (!(this_present_taskId && that_present_taskId))
return false;
if (!this.taskId.equals(that.taskId))
return false;
}
boolean this_present_taskInput = true && this.isSetTaskInput();
boolean that_present_taskInput = true && that.isSetTaskInput();
if (this_present_taskInput || that_present_taskInput) {
if (!(this_present_taskInput && that_present_taskInput))
return false;
if (!this.taskInput.equals(that.taskInput))
return false;
}
boolean this_present_properties = true && this.isSetProperties();
boolean that_present_properties = true && that.isSetProperties();
if (this_present_properties || that_present_properties) {
if (!(this_present_properties && that_present_properties))
return false;
if (!this.properties.equals(that.properties))
return false;
}
return true;
}