Methods Summary |
---|
public int | describeContents()
return 0;
|
public int | getId()Returns the id of this request.
return mId;
|
public int | getLastTransition()Returns the last transition of this geofence.
return mRequest.getLastTransition();
|
public double | getLatitude()Returns the latitude of this geofence.
return mRequest.getLatitude();
|
public double | getLongitude()Returns the longitude of this geofence.
return mRequest.getLongitude();
|
public int | getMonitorTransitions()Returns transitions monitored for this geofence.
return mRequest.getMonitorTransitions();
|
public int | getNotificationResponsiveness()Returns the notification responsiveness of this geofence.
return mRequest.getNotificationResponsiveness();
|
public double | getRadius()Returns the radius of this geofence.
return mRequest.getRadius();
|
int | getSourceTechnologies()Returns the source technologies to track this geofence.
return mRequest.getSourceTechnologies();
|
int | getType()Returns the type of the geofence for the current request.
return mRequest.getType();
|
public int | getUnknownTimer()Returns the unknownTimer of this geofence.
return mRequest.getUnknownTimer();
|
public java.lang.String | toString()
StringBuilder builder = new StringBuilder();
builder.append("id=");
builder.append(mId);
builder.append(", type=");
builder.append(mRequest.getType());
builder.append(", latitude=");
builder.append(mRequest.getLatitude());
builder.append(", longitude=");
builder.append(mRequest.getLongitude());
builder.append(", radius=");
builder.append(mRequest.getRadius());
builder.append(", lastTransition=");
builder.append(mRequest.getLastTransition());
builder.append(", unknownTimer=");
builder.append(mRequest.getUnknownTimer());
builder.append(", monitorTransitions=");
builder.append(mRequest.getMonitorTransitions());
builder.append(", notificationResponsiveness=");
builder.append(mRequest.getNotificationResponsiveness());
builder.append(", sourceTechnologies=");
builder.append(mRequest.getSourceTechnologies());
return builder.toString();
|
public void | writeToParcel(android.os.Parcel parcel, int flags)
parcel.writeInt(getType());
parcel.writeDouble(getLatitude());
parcel.writeDouble(getLongitude());
parcel.writeDouble(getRadius());
parcel.writeInt(getLastTransition());
parcel.writeInt(getMonitorTransitions());
parcel.writeInt(getUnknownTimer());
parcel.writeInt(getNotificationResponsiveness());
parcel.writeInt(getSourceTechnologies());
parcel.writeInt(getId());
|