in src/main/thrift-gen-java/org/apache/accumulo/proxy/thrift/ColumnUpdate.java [508:569]
public boolean equals(ColumnUpdate that) {
if (that == null)
return false;
if (this == that)
return true;
boolean this_present_colFamily = true && this.isSetColFamily();
boolean that_present_colFamily = true && that.isSetColFamily();
if (this_present_colFamily || that_present_colFamily) {
if (!(this_present_colFamily && that_present_colFamily))
return false;
if (!this.colFamily.equals(that.colFamily))
return false;
}
boolean this_present_colQualifier = true && this.isSetColQualifier();
boolean that_present_colQualifier = true && that.isSetColQualifier();
if (this_present_colQualifier || that_present_colQualifier) {
if (!(this_present_colQualifier && that_present_colQualifier))
return false;
if (!this.colQualifier.equals(that.colQualifier))
return false;
}
boolean this_present_colVisibility = true && this.isSetColVisibility();
boolean that_present_colVisibility = true && that.isSetColVisibility();
if (this_present_colVisibility || that_present_colVisibility) {
if (!(this_present_colVisibility && that_present_colVisibility))
return false;
if (!this.colVisibility.equals(that.colVisibility))
return false;
}
boolean this_present_timestamp = true && this.isSetTimestamp();
boolean that_present_timestamp = true && that.isSetTimestamp();
if (this_present_timestamp || that_present_timestamp) {
if (!(this_present_timestamp && that_present_timestamp))
return false;
if (this.timestamp != that.timestamp)
return false;
}
boolean this_present_value = true && this.isSetValue();
boolean that_present_value = true && that.isSetValue();
if (this_present_value || that_present_value) {
if (!(this_present_value && that_present_value))
return false;
if (!this.value.equals(that.value))
return false;
}
boolean this_present_deleteCell = true && this.isSetDeleteCell();
boolean that_present_deleteCell = true && that.isSetDeleteCell();
if (this_present_deleteCell || that_present_deleteCell) {
if (!(this_present_deleteCell && that_present_deleteCell))
return false;
if (this.deleteCell != that.deleteCell)
return false;
}
return true;
}