package defpackage;

import android.graphics.Point;

/* JADX INFO: renamed from: ˉᵕː, reason: contains not printable characters */
/* JADX INFO: loaded from: classes3.dex */
public final class C1212 {

    /* JADX INFO: renamed from: ʽˈˋ, reason: contains not printable characters */
    public final int f5139;

    /* JADX INFO: renamed from: ːˏᵟᵯ, reason: contains not printable characters */
    public final Point f5140;

    /* JADX INFO: renamed from: ᵲᵶᵳˈ, reason: contains not printable characters */
    public final int f5141;

    public C1212(int i, int i2, Point point) {
        int i3 = point.x;
        int i4 = point.y;
        this.f5141 = i;
        this.f5139 = i2;
        this.f5140 = new Point(i3, i4);
    }

    public final boolean equals(Object obj) {
        if (obj == this) {
            return true;
        }
        if (obj instanceof C1212) {
            C1212 c1212 = (C1212) obj;
            if (this.f5141 == c1212.f5141 && this.f5139 == c1212.f5139 && this.f5140.equals(c1212.f5140)) {
                return true;
            }
        }
        return false;
    }

    public final int hashCode() {
        return this.f5140.hashCode() + (((this.f5141 * 31) + this.f5139) * 31);
    }

    public final String toString() {
        StringBuilder sb = new StringBuilder("RoundedCornerCompat{position=");
        int i = this.f5141;
        sb.append(i != 0 ? i != 1 ? i != 2 ? i != 3 ? "Invalid" : "BottomLeft" : "BottomRight" : "TopRight" : "TopLeft");
        sb.append(", radius=");
        sb.append(this.f5139);
        sb.append(", center=");
        sb.append(this.f5140);
        sb.append('}');
        return sb.toString();
    }
}
