package t6;

import androidx.annotation.Nullable;

/* JADX INFO: loaded from: classes2.dex */
public final class c {

    /* JADX INFO: renamed from: a, reason: collision with root package name */
    public final String f32984a;

    public c(String str) {
        if (str == null) {
            throw new NullPointerException("name is null");
        }
        this.f32984a = str;
    }

    public boolean equals(@Nullable Object obj) {
        if (this == obj) {
            return true;
        }
        if (!(obj instanceof c)) {
            return false;
        }
        return this.f32984a.equals(((c) obj).f32984a);
    }

    public final int hashCode() {
        return this.f32984a.hashCode() ^ 1000003;
    }

    public final String toString() {
        return defpackage.e.o(new StringBuilder("Encoding{name=\""), this.f32984a, "\"}");
    }
}
