Searched defs:Geofence (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/location/java/android/location/
H A DGeofence.java29 public final class Geofence implements Parcelable { class in inherits:Parcelable
47 public static Geofence createCircle(double latitude, double longitude, float radius) {
48 return new Geofence(latitude, longitude, radius);
51 private Geofence(double latitude, double longitude, float radius) { method in class:Geofence
101 public static final Parcelable.Creator<Geofence> CREATOR = new Parcelable.Creator<Geofence>() {
103 public Geofence createFromParcel(Parcel in) {
109 return Geofence.createCircle(latitude, longitude, radius);
112 public Geofence[] newArray(int size) {
113 return new Geofence[siz
[all...]

Completed in 169 milliseconds