android.location.Geocoder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of androidstub Show documentation
Show all versions of androidstub Show documentation
provide android hidden api definition ,helper for android super framework development
package android.location;
public final class Geocoder
{
public Geocoder(android.content.Context context, java.util.Locale locale) { throw new RuntimeException("Stub!"); }
public Geocoder(android.content.Context context) { throw new RuntimeException("Stub!"); }
public static boolean isPresent() { throw new RuntimeException("Stub!"); }
public java.util.List getFromLocation(double latitude, double longitude, int maxResults) throws java.io.IOException { throw new RuntimeException("Stub!"); }
public java.util.List getFromLocationName(java.lang.String locationName, int maxResults) throws java.io.IOException { throw new RuntimeException("Stub!"); }
public java.util.List getFromLocationName(java.lang.String locationName, int maxResults, double lowerLeftLatitude, double lowerLeftLongitude, double upperRightLatitude, double upperRightLongitude) throws java.io.IOException { throw new RuntimeException("Stub!"); }
}