29 lines
708 B
Java
29 lines
708 B
Java
package o;
|
|
|
|
import java.util.Arrays;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public final class PoK {
|
|
private final int h;
|
|
public static final PoK b = new PoK(0);
|
|
public static final PoK a = new PoK(1);
|
|
public static final PoK c = new PoK(2);
|
|
public static final PoK e = new PoK(3);
|
|
public static final PoK d = new PoK(4);
|
|
|
|
public final int hashCode() {
|
|
return Arrays.hashCode(new Object[]{Integer.valueOf(this.h)});
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
return obj != null && getClass() == obj.getClass() && this.h == ((PoK) obj).h;
|
|
}
|
|
|
|
private PoK(int i) {
|
|
this.h = i;
|
|
}
|
|
}
|