33 lines
1.2 KiB
Java
33 lines
1.2 KiB
Java
package com.google.android.gms.location;
|
|
|
|
import com.google.android.gms.common.api.CommonStatusCodes;
|
|
import com.pingan.ai.face.common.PaFaceConstants;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public final class GeofenceStatusCodes extends CommonStatusCodes {
|
|
public static final int GEOFENCE_INSUFFICIENT_LOCATION_PERMISSION = 1004;
|
|
public static final int GEOFENCE_NOT_AVAILABLE = 1000;
|
|
public static final int GEOFENCE_REQUEST_TOO_FREQUENT = 1005;
|
|
public static final int GEOFENCE_TOO_MANY_GEOFENCES = 1001;
|
|
public static final int GEOFENCE_TOO_MANY_PENDING_INTENTS = 1002;
|
|
|
|
private GeofenceStatusCodes() {
|
|
}
|
|
|
|
public static String getStatusCodeString(int i) {
|
|
switch (i) {
|
|
case 1000:
|
|
return "GEOFENCE_NOT_AVAILABLE";
|
|
case 1001:
|
|
return "GEOFENCE_TOO_MANY_GEOFENCES";
|
|
case 1002:
|
|
return "GEOFENCE_TOO_MANY_PENDING_INTENTS";
|
|
case PaFaceConstants.MotionType.BLINK_EYE /* 1003 */:
|
|
default:
|
|
return CommonStatusCodes.getStatusCodeString(i);
|
|
case 1004:
|
|
return "GEOFENCE_INSUFFICIENT_LOCATION_PERMISSION";
|
|
}
|
|
}
|
|
}
|