42 lines
994 B
Java
42 lines
994 B
Java
package o;
|
|
|
|
import android.graphics.Rect;
|
|
|
|
/* loaded from: classes.dex */
|
|
public final class wbK {
|
|
final nPm d;
|
|
|
|
private wbK(nPm npm) {
|
|
C14957gcv.e(npm, "");
|
|
this.d = npm;
|
|
}
|
|
|
|
/* JADX WARN: 'this' call moved to the top of the method (can break code semantics) */
|
|
public wbK(Rect rect) {
|
|
this(new nPm(rect));
|
|
C14957gcv.e(rect, "");
|
|
}
|
|
|
|
public final String toString() {
|
|
StringBuilder sb = new StringBuilder("WindowMetrics { bounds: ");
|
|
nPm npm = this.d;
|
|
sb.append(new Rect(npm.d, npm.c, npm.e, npm.a));
|
|
sb.append(" }");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (obj == null || !C14957gcv.b(getClass(), obj.getClass())) {
|
|
return false;
|
|
}
|
|
return C14957gcv.b(this.d, ((wbK) obj).d);
|
|
}
|
|
|
|
public final int hashCode() {
|
|
return this.d.hashCode();
|
|
}
|
|
}
|