78 lines
1.9 KiB
Java
78 lines
1.9 KiB
Java
|
package o;
|
||
|
|
||
|
import android.os.Parcel;
|
||
|
import android.os.Parcelable;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public final class UR extends UV {
|
||
|
public static final Parcelable.Creator<UR> CREATOR = new Parcelable.Creator<UR>() { // from class: o.UR.1
|
||
|
@Override // android.os.Parcelable.Creator
|
||
|
public final /* synthetic */ UR createFromParcel(Parcel parcel) {
|
||
|
return new UR(parcel);
|
||
|
}
|
||
|
|
||
|
@Override // android.os.Parcelable.Creator
|
||
|
public final /* bridge */ /* synthetic */ UR[] newArray(int i) {
|
||
|
return new UR[i];
|
||
|
}
|
||
|
};
|
||
|
public boolean b;
|
||
|
|
||
|
@Override // android.os.Parcelable
|
||
|
public final int describeContents() {
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
private UR(RVV rvv) {
|
||
|
this.r = rvv.e;
|
||
|
this.s = rvv.c;
|
||
|
this.b = rvv.b;
|
||
|
}
|
||
|
|
||
|
public static RVV b() {
|
||
|
return new RVV((byte) 0);
|
||
|
}
|
||
|
|
||
|
public final boolean equals(Object obj) {
|
||
|
if (this == obj) {
|
||
|
return true;
|
||
|
}
|
||
|
return obj != null && getClass() == obj.getClass() && this.b == ((UR) obj).b;
|
||
|
}
|
||
|
|
||
|
@Override // android.os.Parcelable
|
||
|
public final void writeToParcel(Parcel parcel, int i) {
|
||
|
parcel.writeByte(this.b ? (byte) 1 : (byte) 0);
|
||
|
parcel.writeByte(this.r ? (byte) 1 : (byte) 0);
|
||
|
parcel.writeInt(this.s);
|
||
|
}
|
||
|
|
||
|
protected UR(Parcel parcel) {
|
||
|
this.b = parcel.readByte() != 0;
|
||
|
this.r = parcel.readByte() != 0;
|
||
|
this.s = parcel.readInt();
|
||
|
}
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public static final class RVV {
|
||
|
public boolean b;
|
||
|
public int c;
|
||
|
boolean e;
|
||
|
|
||
|
private RVV() {
|
||
|
}
|
||
|
|
||
|
/* synthetic */ RVV(byte b) {
|
||
|
this();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public final int hashCode() {
|
||
|
return this.b ? 1 : 0;
|
||
|
}
|
||
|
|
||
|
public /* synthetic */ UR(RVV rvv, byte b) {
|
||
|
this(rvv);
|
||
|
}
|
||
|
}
|