in src/main/thrift-gen-java/org/apache/accumulo/proxy/thrift/Key.java [467:519]
public boolean equals(Key that) {
if (that == null)
return false;
if (this == that)
return true;
boolean this_present_row = true && this.isSetRow();
boolean that_present_row = true && that.isSetRow();
if (this_present_row || that_present_row) {
if (!(this_present_row && that_present_row))
return false;
if (!this.row.equals(that.row))
return false;
}
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;
}
return true;
}