Initial version -- added millennium read funcionality
This commit is contained in:
@@ -0,0 +1,72 @@
|
||||
package com.google.android.gms.location;
|
||||
|
||||
import android.os.Parcel;
|
||||
import android.os.Parcelable;
|
||||
import com.google.android.gms.common.internal.safeparcel.AbstractSafeParcelable;
|
||||
import com.google.android.gms.common.internal.safeparcel.SafeParcelWriter;
|
||||
import java.util.ArrayList;
|
||||
import java.util.Collection;
|
||||
import java.util.Collections;
|
||||
import java.util.List;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-location@@21.2.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
public final class LocationSettingsRequest extends AbstractSafeParcelable {
|
||||
public static final Parcelable.Creator<LocationSettingsRequest> CREATOR = new zzah();
|
||||
private final List zza;
|
||||
private final boolean zzb;
|
||||
private final boolean zzc;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-location@@21.2.0 */
|
||||
public static final class Builder {
|
||||
private final ArrayList zza = new ArrayList();
|
||||
private boolean zzb = false;
|
||||
private boolean zzc = false;
|
||||
|
||||
public Builder addAllLocationRequests(Collection<LocationRequest> collection) {
|
||||
for (LocationRequest locationRequest : collection) {
|
||||
if (locationRequest != null) {
|
||||
this.zza.add(locationRequest);
|
||||
}
|
||||
}
|
||||
return this;
|
||||
}
|
||||
|
||||
public Builder addLocationRequest(LocationRequest locationRequest) {
|
||||
if (locationRequest != null) {
|
||||
this.zza.add(locationRequest);
|
||||
}
|
||||
return this;
|
||||
}
|
||||
|
||||
public LocationSettingsRequest build() {
|
||||
return new LocationSettingsRequest(this.zza, this.zzb, this.zzc);
|
||||
}
|
||||
|
||||
public Builder setAlwaysShow(boolean z) {
|
||||
this.zzb = z;
|
||||
return this;
|
||||
}
|
||||
|
||||
public Builder setNeedBle(boolean z) {
|
||||
this.zzc = z;
|
||||
return this;
|
||||
}
|
||||
}
|
||||
|
||||
LocationSettingsRequest(List list, boolean z, boolean z2) {
|
||||
this.zza = list;
|
||||
this.zzb = z;
|
||||
this.zzc = z2;
|
||||
}
|
||||
|
||||
@Override // android.os.Parcelable
|
||||
public void writeToParcel(Parcel parcel, int i) {
|
||||
List list = this.zza;
|
||||
int iBeginObjectHeader = SafeParcelWriter.beginObjectHeader(parcel);
|
||||
SafeParcelWriter.writeTypedList(parcel, 1, Collections.unmodifiableList(list), false);
|
||||
SafeParcelWriter.writeBoolean(parcel, 2, this.zzb);
|
||||
SafeParcelWriter.writeBoolean(parcel, 3, this.zzc);
|
||||
SafeParcelWriter.finishObjectHeader(parcel, iBeginObjectHeader);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user