1// Signature format: 2.0
2package android.location {
3
4  @Deprecated public class GeocoderParams implements android.os.Parcelable {
5    ctor @Deprecated public GeocoderParams(android.content.Context);
6    ctor @Deprecated public GeocoderParams(android.content.Context, java.util.Locale);
7    ctor @Deprecated public GeocoderParams(int, String, @Nullable String, java.util.Locale);
8    method @Deprecated public int describeContents();
9    method @Deprecated @Nullable public String getClientAttributionTag();
10    method @Deprecated @NonNull public String getClientPackage();
11    method @Deprecated public int getClientUid();
12    method @Deprecated @NonNull public java.util.Locale getLocale();
13    method @Deprecated public void writeToParcel(android.os.Parcel, int);
14    field @Deprecated @NonNull public static final android.os.Parcelable.Creator<android.location.GeocoderParams> CREATOR;
15  }
16
17}
18
19package com.android.location.provider {
20
21  @Deprecated public final class FusedLocationHardware {
22    method @Deprecated public void flushBatchedLocations();
23    method @Deprecated public int getSupportedBatchSize();
24    method @Deprecated public int getVersion();
25    method @Deprecated public void injectDeviceContext(int);
26    method @Deprecated public void injectDiagnosticData(String);
27    method @Deprecated public void registerSink(com.android.location.provider.FusedLocationHardwareSink, android.os.Looper);
28    method @Deprecated public void requestBatchOfLocations(int);
29    method @Deprecated public void startBatching(int, com.android.location.provider.GmsFusedBatchOptions);
30    method @Deprecated public void stopBatching(int);
31    method @Deprecated public boolean supportsDeviceContextInjection();
32    method @Deprecated public boolean supportsDiagnosticDataInjection();
33    method @Deprecated public void unregisterSink(com.android.location.provider.FusedLocationHardwareSink);
34    method @Deprecated public void updateBatchingOptions(int, com.android.location.provider.GmsFusedBatchOptions);
35  }
36
37  @Deprecated public class FusedLocationHardwareSink {
38    ctor @Deprecated public FusedLocationHardwareSink();
39    method @Deprecated public void onCapabilities(int);
40    method @Deprecated public void onDiagnosticDataAvailable(String);
41    method @Deprecated public void onLocationAvailable(android.location.Location[]);
42    method @Deprecated public void onStatusChanged(int);
43  }
44
45  @Deprecated public abstract class GeocodeProvider {
46    ctor @Deprecated public GeocodeProvider();
47    method @Deprecated public android.os.IBinder getBinder();
48    method @Deprecated public abstract String onGetFromLocation(double, double, int, android.location.GeocoderParams, java.util.List<android.location.Address>);
49    method @Deprecated public abstract String onGetFromLocationName(String, double, double, double, double, int, android.location.GeocoderParams, java.util.List<android.location.Address>);
50  }
51
52  @Deprecated public class GmsFusedBatchOptions {
53    ctor @Deprecated public GmsFusedBatchOptions();
54    method @Deprecated public int getFlags();
55    method @Deprecated public double getMaxPowerAllocationInMW();
56    method @Deprecated public long getPeriodInNS();
57    method @Deprecated public float getSmallestDisplacementMeters();
58    method @Deprecated public int getSourcesToUse();
59    method @Deprecated public boolean isFlagSet(int);
60    method @Deprecated public boolean isSourceToUseSet(int);
61    method @Deprecated public void resetFlag(int);
62    method @Deprecated public void resetSourceToUse(int);
63    method @Deprecated public void setFlag(int);
64    method @Deprecated public void setMaxPowerAllocationInMW(double);
65    method @Deprecated public void setPeriodInNS(long);
66    method @Deprecated public void setSmallestDisplacementMeters(float);
67    method @Deprecated public void setSourceToUse(int);
68  }
69
70  @Deprecated public static final class GmsFusedBatchOptions.BatchFlags {
71    ctor @Deprecated public GmsFusedBatchOptions.BatchFlags();
72    field @Deprecated public static int CALLBACK_ON_LOCATION_FIX;
73    field @Deprecated public static int WAKEUP_ON_FIFO_FULL;
74  }
75
76  @Deprecated public static final class GmsFusedBatchOptions.SourceTechnologies {
77    ctor @Deprecated public GmsFusedBatchOptions.SourceTechnologies();
78    field @Deprecated public static int BLUETOOTH;
79    field @Deprecated public static int CELL;
80    field @Deprecated public static int GNSS;
81    field @Deprecated public static int SENSORS;
82    field @Deprecated public static int WIFI;
83  }
84
85}
86
87