76 lines
2.1 KiB
Java
76 lines
2.1 KiB
Java
|
package o;
|
||
|
|
||
|
import android.os.Parcel;
|
||
|
import android.os.Parcelable;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public class pug implements Parcelable {
|
||
|
public static final Parcelable.Creator<pug> CREATOR = new Parcelable.Creator<pug>() { // from class: o.pug.3
|
||
|
@Override // android.os.Parcelable.Creator
|
||
|
public final /* synthetic */ pug createFromParcel(Parcel parcel) {
|
||
|
return new pug(parcel);
|
||
|
}
|
||
|
|
||
|
@Override // android.os.Parcelable.Creator
|
||
|
public final /* bridge */ /* synthetic */ pug[] newArray(int i) {
|
||
|
return new pug[i];
|
||
|
}
|
||
|
};
|
||
|
public final String c;
|
||
|
public final String e;
|
||
|
|
||
|
@Override // android.os.Parcelable
|
||
|
public int describeContents() {
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
public pug(String str, String str2) {
|
||
|
this.e = str;
|
||
|
this.c = str2;
|
||
|
}
|
||
|
|
||
|
public boolean equals(Object obj) {
|
||
|
if (this == obj) {
|
||
|
return true;
|
||
|
}
|
||
|
if (obj == null || getClass() != obj.getClass()) {
|
||
|
return false;
|
||
|
}
|
||
|
pug pugVar = (pug) obj;
|
||
|
String str = this.e;
|
||
|
if (str == null ? pugVar.e != null : !str.equals(pugVar.e)) {
|
||
|
return false;
|
||
|
}
|
||
|
String str2 = this.c;
|
||
|
String str3 = pugVar.c;
|
||
|
return str2 != null ? str2.equals(str3) : str3 == null;
|
||
|
}
|
||
|
|
||
|
public int hashCode() {
|
||
|
String str = this.e;
|
||
|
int hashCode = str != null ? str.hashCode() : 0;
|
||
|
String str2 = this.c;
|
||
|
return (hashCode * 31) + (str2 != null ? str2.hashCode() : 0);
|
||
|
}
|
||
|
|
||
|
public String toString() {
|
||
|
StringBuilder sb = new StringBuilder("AnalyticsKeyValueParam{key='");
|
||
|
sb.append(this.e);
|
||
|
sb.append("', value='");
|
||
|
sb.append(this.c);
|
||
|
sb.append("'}");
|
||
|
return sb.toString();
|
||
|
}
|
||
|
|
||
|
@Override // android.os.Parcelable
|
||
|
public void writeToParcel(Parcel parcel, int i) {
|
||
|
parcel.writeString(this.e);
|
||
|
parcel.writeString(this.c);
|
||
|
}
|
||
|
|
||
|
protected pug(Parcel parcel) {
|
||
|
this.e = parcel.readString();
|
||
|
this.c = parcel.readString();
|
||
|
}
|
||
|
}
|