36 lines
843 B
Java
36 lines
843 B
Java
package o;
|
|
|
|
/* renamed from: o.aAy, reason: case insensitive filesystem */
|
|
/* loaded from: classes.dex */
|
|
public final class C1332aAy {
|
|
public final String e;
|
|
|
|
public C1332aAy(String str) {
|
|
if (str == null) {
|
|
throw new NullPointerException("name is null");
|
|
}
|
|
this.e = str;
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (obj instanceof C1332aAy) {
|
|
return this.e.equals(((C1332aAy) obj).e);
|
|
}
|
|
return false;
|
|
}
|
|
|
|
public final int hashCode() {
|
|
return this.e.hashCode() ^ 1000003;
|
|
}
|
|
|
|
public final String toString() {
|
|
StringBuilder sb = new StringBuilder("Encoding{name=\"");
|
|
sb.append(this.e);
|
|
sb.append("\"}");
|
|
return sb.toString();
|
|
}
|
|
}
|