what-the-bank/sources/com/facetec/sdk/ec.java

41 lines
952 B
Java

package com.facetec.sdk;
import java.util.Map;
import java.util.Set;
/* loaded from: classes.dex */
public final class ec extends eb {
private final ey<String, eb> a = new ey<>();
public final void b(String str, eb ebVar) {
ey<String, eb> eyVar = this.a;
if (ebVar == null) {
ebVar = ea.a;
}
eyVar.put(str, ebVar);
}
public final void e(String str, String str2) {
b(str, str2 == null ? ea.a : new eh(str2));
}
public final void e(String str, Number number) {
b(str, number == null ? ea.a : new eh(number));
}
public final Set<Map.Entry<String, eb>> k() {
return this.a.entrySet();
}
public final boolean equals(Object obj) {
if (obj != this) {
return (obj instanceof ec) && ((ec) obj).a.equals(this.a);
}
return true;
}
public final int hashCode() {
return this.a.hashCode();
}
}