- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
50 lines
1.5 KiB
Java
50 lines
1.5 KiB
Java
package com.google.firebase.heartbeatinfo;
|
|
|
|
import java.util.List;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class AutoValue_HeartBeatResult extends HeartBeatResult {
|
|
public final List usedDates;
|
|
public final String userAgent;
|
|
|
|
@Override // com.google.firebase.heartbeatinfo.HeartBeatResult
|
|
public List getUsedDates() {
|
|
return this.usedDates;
|
|
}
|
|
|
|
@Override // com.google.firebase.heartbeatinfo.HeartBeatResult
|
|
public String getUserAgent() {
|
|
return this.userAgent;
|
|
}
|
|
|
|
public AutoValue_HeartBeatResult(String str, List list) {
|
|
if (str == null) {
|
|
throw new NullPointerException("Null userAgent");
|
|
}
|
|
this.userAgent = str;
|
|
if (list == null) {
|
|
throw new NullPointerException("Null usedDates");
|
|
}
|
|
this.usedDates = list;
|
|
}
|
|
|
|
public String toString() {
|
|
return "HeartBeatResult{userAgent=" + this.userAgent + ", usedDates=" + this.usedDates + "}";
|
|
}
|
|
|
|
public boolean equals(Object obj) {
|
|
if (obj == this) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof HeartBeatResult)) {
|
|
return false;
|
|
}
|
|
HeartBeatResult heartBeatResult = (HeartBeatResult) obj;
|
|
return this.userAgent.equals(heartBeatResult.getUserAgent()) && this.usedDates.equals(heartBeatResult.getUsedDates());
|
|
}
|
|
|
|
public int hashCode() {
|
|
return ((this.userAgent.hashCode() ^ 1000003) * 1000003) ^ this.usedDates.hashCode();
|
|
}
|
|
}
|