in src-gen/com/facebook/buck/frontend/thrift/RuleKeyStoreLogEntry.java [565:653]
public boolean equals(RuleKeyStoreLogEntry that) {
if (that == null)
return false;
if (this == that)
return true;
boolean this_present_storeId = true && this.isSetStoreId();
boolean that_present_storeId = true && that.isSetStoreId();
if (this_present_storeId || that_present_storeId) {
if (!(this_present_storeId && that_present_storeId))
return false;
if (!this.storeId.equals(that.storeId))
return false;
}
boolean this_present_storeTTLSeconds = true && this.isSetStoreTTLSeconds();
boolean that_present_storeTTLSeconds = true && that.isSetStoreTTLSeconds();
if (this_present_storeTTLSeconds || that_present_storeTTLSeconds) {
if (!(this_present_storeTTLSeconds && that_present_storeTTLSeconds))
return false;
if (this.storeTTLSeconds != that.storeTTLSeconds)
return false;
}
boolean this_present_lastStoreEpochSeconds = true && this.isSetLastStoreEpochSeconds();
boolean that_present_lastStoreEpochSeconds = true && that.isSetLastStoreEpochSeconds();
if (this_present_lastStoreEpochSeconds || that_present_lastStoreEpochSeconds) {
if (!(this_present_lastStoreEpochSeconds && that_present_lastStoreEpochSeconds))
return false;
if (this.lastStoreEpochSeconds != that.lastStoreEpochSeconds)
return false;
}
boolean this_present_lastAttemptedStoreEpochSeconds = true && this.isSetLastAttemptedStoreEpochSeconds();
boolean that_present_lastAttemptedStoreEpochSeconds = true && that.isSetLastAttemptedStoreEpochSeconds();
if (this_present_lastAttemptedStoreEpochSeconds || that_present_lastAttemptedStoreEpochSeconds) {
if (!(this_present_lastAttemptedStoreEpochSeconds && that_present_lastAttemptedStoreEpochSeconds))
return false;
if (this.lastAttemptedStoreEpochSeconds != that.lastAttemptedStoreEpochSeconds)
return false;
}
boolean this_present_lastFetchEpochSeconds = true && this.isSetLastFetchEpochSeconds();
boolean that_present_lastFetchEpochSeconds = true && that.isSetLastFetchEpochSeconds();
if (this_present_lastFetchEpochSeconds || that_present_lastFetchEpochSeconds) {
if (!(this_present_lastFetchEpochSeconds && that_present_lastFetchEpochSeconds))
return false;
if (this.lastFetchEpochSeconds != that.lastFetchEpochSeconds)
return false;
}
boolean this_present_repository = true && this.isSetRepository();
boolean that_present_repository = true && that.isSetRepository();
if (this_present_repository || that_present_repository) {
if (!(this_present_repository && that_present_repository))
return false;
if (!this.repository.equals(that.repository))
return false;
}
boolean this_present_scheduleType = true && this.isSetScheduleType();
boolean that_present_scheduleType = true && that.isSetScheduleType();
if (this_present_scheduleType || that_present_scheduleType) {
if (!(this_present_scheduleType && that_present_scheduleType))
return false;
if (!this.scheduleType.equals(that.scheduleType))
return false;
}
boolean this_present_fetchCount = true && this.isSetFetchCount();
boolean that_present_fetchCount = true && that.isSetFetchCount();
if (this_present_fetchCount || that_present_fetchCount) {
if (!(this_present_fetchCount && that_present_fetchCount))
return false;
if (this.fetchCount != that.fetchCount)
return false;
}
boolean this_present_attemptedStoreCount = true && this.isSetAttemptedStoreCount();
boolean that_present_attemptedStoreCount = true && that.isSetAttemptedStoreCount();
if (this_present_attemptedStoreCount || that_present_attemptedStoreCount) {
if (!(this_present_attemptedStoreCount && that_present_attemptedStoreCount))
return false;
if (this.attemptedStoreCount != that.attemptedStoreCount)
return false;
}
return true;
}