83 lines
2.8 KiB
Java
83 lines
2.8 KiB
Java
package com.google.android.gms.common;
|
|
|
|
import android.os.Parcel;
|
|
import android.os.Parcelable;
|
|
import com.google.android.gms.common.annotation.KeepForSdk;
|
|
import com.google.android.gms.common.internal.Objects;
|
|
import com.google.android.gms.common.internal.safeparcel.AbstractSafeParcelable;
|
|
import com.google.android.gms.common.internal.safeparcel.SafeParcelWriter;
|
|
import com.google.android.gms.common.internal.safeparcel.SafeParcelable;
|
|
import com.google.android.gms.measurement.api.AppMeasurementSdk;
|
|
|
|
@KeepForSdk
|
|
@SafeParcelable.Class(creator = "FeatureCreator")
|
|
/* loaded from: classes3.dex */
|
|
public class Feature extends AbstractSafeParcelable {
|
|
public static final Parcelable.Creator<Feature> CREATOR = new zzc();
|
|
|
|
@SafeParcelable.Field(getter = "getName", id = 1)
|
|
private final String zza;
|
|
|
|
@SafeParcelable.Field(getter = "getOldVersion", id = 2)
|
|
@Deprecated
|
|
private final int zzb;
|
|
|
|
@SafeParcelable.Field(defaultValue = "-1", getter = "getVersion", id = 3)
|
|
private final long zzc;
|
|
|
|
@SafeParcelable.Constructor
|
|
public Feature(@SafeParcelable.Param(id = 1) String str, @SafeParcelable.Param(id = 2) int i, @SafeParcelable.Param(id = 3) long j4) {
|
|
this.zza = str;
|
|
this.zzb = i;
|
|
this.zzc = j4;
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (obj instanceof Feature) {
|
|
Feature feature = (Feature) obj;
|
|
if (((getName() != null && getName().equals(feature.getName())) || (getName() == null && feature.getName() == null)) && getVersion() == feature.getVersion()) {
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
@KeepForSdk
|
|
public String getName() {
|
|
return this.zza;
|
|
}
|
|
|
|
@KeepForSdk
|
|
public long getVersion() {
|
|
long j4 = this.zzc;
|
|
return j4 == -1 ? this.zzb : j4;
|
|
}
|
|
|
|
public final int hashCode() {
|
|
return Objects.hashCode(getName(), Long.valueOf(getVersion()));
|
|
}
|
|
|
|
public final String toString() {
|
|
Objects.ToStringHelper stringHelper = Objects.toStringHelper(this);
|
|
stringHelper.add(AppMeasurementSdk.ConditionalUserProperty.NAME, getName());
|
|
stringHelper.add("version", Long.valueOf(getVersion()));
|
|
return stringHelper.toString();
|
|
}
|
|
|
|
@Override // android.os.Parcelable
|
|
public final void writeToParcel(Parcel parcel, int i) {
|
|
int beginObjectHeader = SafeParcelWriter.beginObjectHeader(parcel);
|
|
SafeParcelWriter.writeString(parcel, 1, getName(), false);
|
|
SafeParcelWriter.writeInt(parcel, 2, this.zzb);
|
|
SafeParcelWriter.writeLong(parcel, 3, getVersion());
|
|
SafeParcelWriter.finishObjectHeader(parcel, beginObjectHeader);
|
|
}
|
|
|
|
@KeepForSdk
|
|
public Feature(String str, long j4) {
|
|
this.zza = str;
|
|
this.zzc = j4;
|
|
this.zzb = -1;
|
|
}
|
|
}
|