in core/src/main/thrift-gen-java/org/apache/accumulo/core/tabletingest/thrift/TabletIngestClientService.java [5584:5645]
public boolean equals(startConditionalUpdate_args that) {
if (that == null)
return false;
if (this == that)
return true;
boolean this_present_tinfo = true && this.isSetTinfo();
boolean that_present_tinfo = true && that.isSetTinfo();
if (this_present_tinfo || that_present_tinfo) {
if (!(this_present_tinfo && that_present_tinfo))
return false;
if (!this.tinfo.equals(that.tinfo))
return false;
}
boolean this_present_credentials = true && this.isSetCredentials();
boolean that_present_credentials = true && that.isSetCredentials();
if (this_present_credentials || that_present_credentials) {
if (!(this_present_credentials && that_present_credentials))
return false;
if (!this.credentials.equals(that.credentials))
return false;
}
boolean this_present_authorizations = true && this.isSetAuthorizations();
boolean that_present_authorizations = true && that.isSetAuthorizations();
if (this_present_authorizations || that_present_authorizations) {
if (!(this_present_authorizations && that_present_authorizations))
return false;
if (!this.authorizations.equals(that.authorizations))
return false;
}
boolean this_present_tableID = true && this.isSetTableID();
boolean that_present_tableID = true && that.isSetTableID();
if (this_present_tableID || that_present_tableID) {
if (!(this_present_tableID && that_present_tableID))
return false;
if (!this.tableID.equals(that.tableID))
return false;
}
boolean this_present_durability = true && this.isSetDurability();
boolean that_present_durability = true && that.isSetDurability();
if (this_present_durability || that_present_durability) {
if (!(this_present_durability && that_present_durability))
return false;
if (!this.durability.equals(that.durability))
return false;
}
boolean this_present_classLoaderContext = true && this.isSetClassLoaderContext();
boolean that_present_classLoaderContext = true && that.isSetClassLoaderContext();
if (this_present_classLoaderContext || that_present_classLoaderContext) {
if (!(this_present_classLoaderContext && that_present_classLoaderContext))
return false;
if (!this.classLoaderContext.equals(that.classLoaderContext))
return false;
}
return true;
}