- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
64 lines
1.6 KiB
Java
64 lines
1.6 KiB
Java
package com.applovin.impl;
|
|
|
|
import java.util.Map;
|
|
import java.util.Objects;
|
|
import java.util.UUID;
|
|
|
|
/* loaded from: classes.dex */
|
|
public class v7 {
|
|
private final String b;
|
|
private final Map c;
|
|
private final String a = UUID.randomUUID().toString();
|
|
private final long d = System.currentTimeMillis();
|
|
|
|
public long a() {
|
|
return this.d;
|
|
}
|
|
|
|
public String b() {
|
|
return this.a;
|
|
}
|
|
|
|
public String c() {
|
|
return this.b;
|
|
}
|
|
|
|
public Map d() {
|
|
return this.c;
|
|
}
|
|
|
|
public String toString() {
|
|
return "Event{name='" + this.b + "', id='" + this.a + "', creationTimestampMillis=" + this.d + ", parameters=" + this.c + '}';
|
|
}
|
|
|
|
public v7(String str, Map map) {
|
|
this.b = str;
|
|
this.c = map;
|
|
}
|
|
|
|
public boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (obj == null || getClass() != obj.getClass()) {
|
|
return false;
|
|
}
|
|
v7 v7Var = (v7) obj;
|
|
if (this.d == v7Var.d && Objects.equals(this.b, v7Var.b) && Objects.equals(this.c, v7Var.c)) {
|
|
return Objects.equals(this.a, v7Var.a);
|
|
}
|
|
return false;
|
|
}
|
|
|
|
public int hashCode() {
|
|
String str = this.b;
|
|
int hashCode = (str != null ? str.hashCode() : 0) * 31;
|
|
Map map = this.c;
|
|
int hashCode2 = (hashCode + (map != null ? map.hashCode() : 0)) * 31;
|
|
long j = this.d;
|
|
int i = (hashCode2 + ((int) (j ^ (j >>> 32)))) * 31;
|
|
String str2 = this.a;
|
|
return i + (str2 != null ? str2.hashCode() : 0);
|
|
}
|
|
}
|