package j0;

import android.view.View;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Map;

/* JADX INFO: compiled from: TransitionValues.java */
/* JADX INFO: loaded from: classes.dex */
public class s {

    /* JADX INFO: renamed from: b, reason: collision with root package name */
    public View f5039b;

    /* JADX INFO: renamed from: a, reason: collision with root package name */
    public final Map<String, Object> f5038a = new HashMap();

    /* JADX INFO: renamed from: c, reason: collision with root package name */
    final ArrayList<m> f5040c = new ArrayList<>();

    @Deprecated
    public s() {
    }

    public boolean equals(Object obj) {
        if (!(obj instanceof s)) {
            return false;
        }
        s sVar = (s) obj;
        return this.f5039b == sVar.f5039b && this.f5038a.equals(sVar.f5038a);
    }

    public int hashCode() {
        return (this.f5039b.hashCode() * 31) + this.f5038a.hashCode();
    }

    public String toString() {
        String str = (("TransitionValues@" + Integer.toHexString(hashCode()) + ":\n") + "    view = " + this.f5039b + "\n") + "    values:";
        for (String str2 : this.f5038a.keySet()) {
            str = str + "    " + str2 + ": " + this.f5038a.get(str2) + "\n";
        }
        return str;
    }

    public s(View view) {
        this.f5039b = view;
    }
}
