mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-30 11:02:31 -06:00
112 lines
5.6 KiB
Java
112 lines
5.6 KiB
Java
package androidx.compose.foundation.layout;
|
|
|
|
import kotlin.Metadata;
|
|
import kotlin.jvm.internal.DefaultConstructorMarker;
|
|
import kotlin.jvm.internal.Intrinsics;
|
|
|
|
/* compiled from: RowColumnImpl.kt */
|
|
@Metadata(d1 = {"\u0000*\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010\u0007\n\u0000\n\u0002\u0010\u000b\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0014\n\u0002\u0010\b\n\u0000\n\u0002\u0010\u000e\n\u0000\b\u0080\b\u0018\u00002\u00020\u0001B%\u0012\b\b\u0002\u0010\u0002\u001a\u00020\u0003\u0012\b\b\u0002\u0010\u0004\u001a\u00020\u0005\u0012\n\b\u0002\u0010\u0006\u001a\u0004\u0018\u00010\u0007¢\u0006\u0002\u0010\bJ\t\u0010\u0015\u001a\u00020\u0003HÆ\u0003J\t\u0010\u0016\u001a\u00020\u0005HÆ\u0003J\u000b\u0010\u0017\u001a\u0004\u0018\u00010\u0007HÆ\u0003J)\u0010\u0018\u001a\u00020\u00002\b\b\u0002\u0010\u0002\u001a\u00020\u00032\b\b\u0002\u0010\u0004\u001a\u00020\u00052\n\b\u0002\u0010\u0006\u001a\u0004\u0018\u00010\u0007HÆ\u0001J\u0013\u0010\u0019\u001a\u00020\u00052\b\u0010\u001a\u001a\u0004\u0018\u00010\u0001HÖ\u0003J\t\u0010\u001b\u001a\u00020\u001cHÖ\u0001J\t\u0010\u001d\u001a\u00020\u001eHÖ\u0001R\u001c\u0010\u0006\u001a\u0004\u0018\u00010\u0007X\u0086\u000e¢\u0006\u000e\n\u0000\u001a\u0004\b\t\u0010\n\"\u0004\b\u000b\u0010\fR\u001a\u0010\u0004\u001a\u00020\u0005X\u0086\u000e¢\u0006\u000e\n\u0000\u001a\u0004\b\r\u0010\u000e\"\u0004\b\u000f\u0010\u0010R\u001a\u0010\u0002\u001a\u00020\u0003X\u0086\u000e¢\u0006\u000e\n\u0000\u001a\u0004\b\u0011\u0010\u0012\"\u0004\b\u0013\u0010\u0014¨\u0006\u001f"}, d2 = {"Landroidx/compose/foundation/layout/RowColumnParentData;", "", "weight", "", "fill", "", "crossAxisAlignment", "Landroidx/compose/foundation/layout/CrossAxisAlignment;", "(FZLandroidx/compose/foundation/layout/CrossAxisAlignment;)V", "getCrossAxisAlignment", "()Landroidx/compose/foundation/layout/CrossAxisAlignment;", "setCrossAxisAlignment", "(Landroidx/compose/foundation/layout/CrossAxisAlignment;)V", "getFill", "()Z", "setFill", "(Z)V", "getWeight", "()F", "setWeight", "(F)V", "component1", "component2", "component3", "copy", "equals", "other", "hashCode", "", "toString", "", "foundation-layout_release"}, k = 1, mv = {1, 8, 0}, xi = 48)
|
|
/* loaded from: classes.dex */
|
|
public final /* data */ class RowColumnParentData {
|
|
private CrossAxisAlignment crossAxisAlignment;
|
|
private boolean fill;
|
|
private float weight;
|
|
|
|
public RowColumnParentData() {
|
|
this(0.0f, false, null, 7, null);
|
|
}
|
|
|
|
public static /* synthetic */ RowColumnParentData copy$default(RowColumnParentData rowColumnParentData, float f, boolean z, CrossAxisAlignment crossAxisAlignment, int i, Object obj) {
|
|
if ((i & 1) != 0) {
|
|
f = rowColumnParentData.weight;
|
|
}
|
|
if ((i & 2) != 0) {
|
|
z = rowColumnParentData.fill;
|
|
}
|
|
if ((i & 4) != 0) {
|
|
crossAxisAlignment = rowColumnParentData.crossAxisAlignment;
|
|
}
|
|
return rowColumnParentData.copy(f, z, crossAxisAlignment);
|
|
}
|
|
|
|
/* renamed from: component1, reason: from getter */
|
|
public final float getWeight() {
|
|
return this.weight;
|
|
}
|
|
|
|
/* renamed from: component2, reason: from getter */
|
|
public final boolean getFill() {
|
|
return this.fill;
|
|
}
|
|
|
|
/* renamed from: component3, reason: from getter */
|
|
public final CrossAxisAlignment getCrossAxisAlignment() {
|
|
return this.crossAxisAlignment;
|
|
}
|
|
|
|
public final RowColumnParentData copy(float weight, boolean fill, CrossAxisAlignment crossAxisAlignment) {
|
|
return new RowColumnParentData(weight, fill, crossAxisAlignment);
|
|
}
|
|
|
|
public boolean equals(Object other) {
|
|
if (this == other) {
|
|
return true;
|
|
}
|
|
if (!(other instanceof RowColumnParentData)) {
|
|
return false;
|
|
}
|
|
RowColumnParentData rowColumnParentData = (RowColumnParentData) other;
|
|
return Float.compare(this.weight, rowColumnParentData.weight) == 0 && this.fill == rowColumnParentData.fill && Intrinsics.areEqual(this.crossAxisAlignment, rowColumnParentData.crossAxisAlignment);
|
|
}
|
|
|
|
public final CrossAxisAlignment getCrossAxisAlignment() {
|
|
return this.crossAxisAlignment;
|
|
}
|
|
|
|
public final boolean getFill() {
|
|
return this.fill;
|
|
}
|
|
|
|
public final float getWeight() {
|
|
return this.weight;
|
|
}
|
|
|
|
/* JADX WARN: Multi-variable type inference failed */
|
|
public int hashCode() {
|
|
int hashCode = Float.hashCode(this.weight) * 31;
|
|
boolean z = this.fill;
|
|
int i = z;
|
|
if (z != 0) {
|
|
i = 1;
|
|
}
|
|
int i2 = (hashCode + i) * 31;
|
|
CrossAxisAlignment crossAxisAlignment = this.crossAxisAlignment;
|
|
return i2 + (crossAxisAlignment == null ? 0 : crossAxisAlignment.hashCode());
|
|
}
|
|
|
|
public final void setCrossAxisAlignment(CrossAxisAlignment crossAxisAlignment) {
|
|
this.crossAxisAlignment = crossAxisAlignment;
|
|
}
|
|
|
|
public final void setFill(boolean z) {
|
|
this.fill = z;
|
|
}
|
|
|
|
public final void setWeight(float f) {
|
|
this.weight = f;
|
|
}
|
|
|
|
public String toString() {
|
|
return "RowColumnParentData(weight=" + this.weight + ", fill=" + this.fill + ", crossAxisAlignment=" + this.crossAxisAlignment + ')';
|
|
}
|
|
|
|
public RowColumnParentData(float f, boolean z, CrossAxisAlignment crossAxisAlignment) {
|
|
this.weight = f;
|
|
this.fill = z;
|
|
this.crossAxisAlignment = crossAxisAlignment;
|
|
}
|
|
|
|
public /* synthetic */ RowColumnParentData(float f, boolean z, CrossAxisAlignment crossAxisAlignment, int i, DefaultConstructorMarker defaultConstructorMarker) {
|
|
this((i & 1) != 0 ? 0.0f : f, (i & 2) != 0 ? true : z, (i & 4) != 0 ? null : crossAxisAlignment);
|
|
}
|
|
}
|