in src/main/thrift-gen-java/org/apache/accumulo/proxy/thrift/ConditionalUpdates.java [303:328]
public boolean equals(ConditionalUpdates that) {
if (that == null)
return false;
if (this == that)
return true;
boolean this_present_conditions = true && this.isSetConditions();
boolean that_present_conditions = true && that.isSetConditions();
if (this_present_conditions || that_present_conditions) {
if (!(this_present_conditions && that_present_conditions))
return false;
if (!this.conditions.equals(that.conditions))
return false;
}
boolean this_present_updates = true && this.isSetUpdates();
boolean that_present_updates = true && that.isSetUpdates();
if (this_present_updates || that_present_updates) {
if (!(this_present_updates && that_present_updates))
return false;
if (!this.updates.equals(that.updates))
return false;
}
return true;
}