what-the-bank/sources/com/google/android/gms/location/Geofence.java

126 lines
4.1 KiB
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package com.google.android.gms.location;
import com.google.android.gms.common.internal.Preconditions;
import com.google.android.gms.common.util.DefaultClock;
import com.google.android.gms.maps.model.BitmapDescriptorFactory;
/* loaded from: classes2.dex */
public interface Geofence {
public static final int GEOFENCE_TRANSITION_DWELL = 4;
public static final int GEOFENCE_TRANSITION_ENTER = 1;
public static final int GEOFENCE_TRANSITION_EXIT = 2;
public static final long NEVER_EXPIRE = -1;
/* loaded from: classes.dex */
public @interface GeofenceTransition {
}
/* loaded from: classes.dex */
public @interface TransitionTypes {
}
long getExpirationTime();
double getLatitude();
int getLoiteringDelay();
double getLongitude();
int getNotificationResponsiveness();
float getRadius();
String getRequestId();
int getTransitionTypes();
/* loaded from: classes2.dex */
public static final class Builder {
private double zze;
private double zzf;
private float zzg;
private String zza = null;
private int zzb = 0;
private long zzc = Long.MIN_VALUE;
private short zzd = -1;
private int zzh = 0;
private int zzi = -1;
public final Builder setCircularRegion(double d, double d2, float f) {
boolean z = d >= -90.0d && d <= 90.0d;
StringBuilder sb = new StringBuilder(42);
sb.append("Invalid latitude: ");
sb.append(d);
Preconditions.checkArgument(z, sb.toString());
boolean z2 = d2 >= -180.0d && d2 <= 180.0d;
StringBuilder sb2 = new StringBuilder(43);
sb2.append("Invalid longitude: ");
sb2.append(d2);
Preconditions.checkArgument(z2, sb2.toString());
boolean z3 = f > BitmapDescriptorFactory.HUE_RED;
StringBuilder sb3 = new StringBuilder(31);
sb3.append("Invalid radius: ");
sb3.append(f);
Preconditions.checkArgument(z3, sb3.toString());
this.zzd = (short) 1;
this.zze = d;
this.zzf = d2;
this.zzg = f;
return this;
}
public final Builder setExpirationDuration(long j) {
if (j < 0) {
this.zzc = -1L;
} else {
this.zzc = DefaultClock.getInstance().elapsedRealtime() + j;
}
return this;
}
public final Builder setRequestId(String str) {
this.zza = (String) Preconditions.checkNotNull(str, "Request ID can't be set to null");
return this;
}
public final Geofence build() {
if (this.zza == null) {
throw new IllegalArgumentException("Request ID not set.");
}
int i = this.zzb;
if (i == 0) {
throw new IllegalArgumentException("Transitions types not set.");
}
if ((i & 4) != 0 && this.zzi < 0) {
throw new IllegalArgumentException("Non-negative loitering delay needs to be set when transition types include GEOFENCE_TRANSITION_DWELL.");
}
if (this.zzc == Long.MIN_VALUE) {
throw new IllegalArgumentException("Expiration not set.");
}
if (this.zzd == -1) {
throw new IllegalArgumentException("Geofence region not set.");
}
if (this.zzh < 0) {
throw new IllegalArgumentException("Notification responsiveness should be nonnegative.");
}
return new com.google.android.gms.internal.location.zzbj(this.zza, this.zzb, (short) 1, this.zze, this.zzf, this.zzg, this.zzc, this.zzh, this.zzi);
}
public final Builder setTransitionTypes(int i) {
this.zzb = i;
return this;
}
public final Builder setNotificationResponsiveness(int i) {
this.zzh = i;
return this;
}
public final Builder setLoiteringDelay(int i) {
this.zzi = i;
return this;
}
}
}