in amoro-common/src/main/gen-java/org/apache/amoro/api/UpdateColumn.java [490:560]
public boolean equals(UpdateColumn that) {
if (that == null)
return false;
if (this == that)
return true;
boolean this_present_name = true && this.isSetName();
boolean that_present_name = true && that.isSetName();
if (this_present_name || that_present_name) {
if (!(this_present_name && that_present_name))
return false;
if (!this.name.equals(that.name))
return false;
}
boolean this_present_parent = true && this.isSetParent();
boolean that_present_parent = true && that.isSetParent();
if (this_present_parent || that_present_parent) {
if (!(this_present_parent && that_present_parent))
return false;
if (!this.parent.equals(that.parent))
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_doc = true && this.isSetDoc();
boolean that_present_doc = true && that.isSetDoc();
if (this_present_doc || that_present_doc) {
if (!(this_present_doc && that_present_doc))
return false;
if (!this.doc.equals(that.doc))
return false;
}
boolean this_present_operate = true && this.isSetOperate();
boolean that_present_operate = true && that.isSetOperate();
if (this_present_operate || that_present_operate) {
if (!(this_present_operate && that_present_operate))
return false;
if (!this.operate.equals(that.operate))
return false;
}
boolean this_present_isOptional = true && this.isSetIsOptional();
boolean that_present_isOptional = true && that.isSetIsOptional();
if (this_present_isOptional || that_present_isOptional) {
if (!(this_present_isOptional && that_present_isOptional))
return false;
if (!this.isOptional.equals(that.isOptional))
return false;
}
boolean this_present_newName = true && this.isSetNewName();
boolean that_present_newName = true && that.isSetNewName();
if (this_present_newName || that_present_newName) {
if (!(this_present_newName && that_present_newName))
return false;
if (!this.newName.equals(that.newName))
return false;
}
return true;
}