Rabbit-R1/switch port/java/sources/androidx/compose/foundation/layout/InsetsValues.java
2024-05-21 17:08:36 -04:00

55 lines
2.5 KiB
Java

package androidx.compose.foundation.layout;
import kotlin.Metadata;
/* compiled from: WindowInsets.kt */
@Metadata(d1 = {"\u0000 \n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010\b\n\u0002\b\n\n\u0002\u0010\u000b\n\u0002\b\u0003\n\u0002\u0010\u000e\n\u0000\b\u0001\u0018\u00002\u00020\u0001B%\u0012\u0006\u0010\u0002\u001a\u00020\u0003\u0012\u0006\u0010\u0004\u001a\u00020\u0003\u0012\u0006\u0010\u0005\u001a\u00020\u0003\u0012\u0006\u0010\u0006\u001a\u00020\u0003¢\u0006\u0002\u0010\u0007J\u0013\u0010\r\u001a\u00020\u000e2\b\u0010\u000f\u001a\u0004\u0018\u00010\u0001H\u0096\u0002J\b\u0010\u0010\u001a\u00020\u0003H\u0016J\b\u0010\u0011\u001a\u00020\u0012H\u0016R\u0011\u0010\u0006\u001a\u00020\u0003¢\u0006\b\n\u0000\u001a\u0004\b\b\u0010\tR\u0011\u0010\u0002\u001a\u00020\u0003¢\u0006\b\n\u0000\u001a\u0004\b\n\u0010\tR\u0011\u0010\u0005\u001a\u00020\u0003¢\u0006\b\n\u0000\u001a\u0004\b\u000b\u0010\tR\u0011\u0010\u0004\u001a\u00020\u0003¢\u0006\b\n\u0000\u001a\u0004\b\f\u0010\\u0006\u0013"}, d2 = {"Landroidx/compose/foundation/layout/InsetsValues;", "", "left", "", "top", "right", "bottom", "(IIII)V", "getBottom", "()I", "getLeft", "getRight", "getTop", "equals", "", "other", "hashCode", "toString", "", "foundation-layout_release"}, k = 1, mv = {1, 8, 0}, xi = 48)
/* loaded from: classes.dex */
public final class InsetsValues {
private final int bottom;
private final int left;
private final int right;
private final int top;
public final int getBottom() {
return this.bottom;
}
public final int getLeft() {
return this.left;
}
public final int getRight() {
return this.right;
}
public final int getTop() {
return this.top;
}
public int hashCode() {
return (((((this.left * 31) + this.top) * 31) + this.right) * 31) + this.bottom;
}
public InsetsValues(int i, int i2, int i3, int i4) {
this.left = i;
this.top = i2;
this.right = i3;
this.bottom = i4;
}
public boolean equals(Object other) {
if (this == other) {
return true;
}
if (!(other instanceof InsetsValues)) {
return false;
}
InsetsValues insetsValues = (InsetsValues) other;
return this.left == insetsValues.left && this.top == insetsValues.top && this.right == insetsValues.right && this.bottom == insetsValues.bottom;
}
public String toString() {
return "InsetsValues(left=" + this.left + ", top=" + this.top + ", right=" + this.right + ", bottom=" + this.bottom + ')';
}
}