Methods Summary |
---|
public int | describeContents()
return 0;
|
public android.location.Location | getLocation()Returns the last known location according to the monitoring system.
return mLocation;
|
public int | getMonitoringStatus()Returns the new status associated with the monitoring system.
return mMonitoringStatus;
|
public int | getMonitoringType()Returns the type of the monitoring system that has a change on its state.
return mMonitoringType;
|
public int | getSourceTechnologies()Returns the source technologies that the status is associated to.
return mSourceTechnologies;
|
public java.lang.String | toString()
return String.format(
"GeofenceHardwareMonitorEvent: type=%d, status=%d, sources=%d, location=%s",
mMonitoringType,
mMonitoringStatus,
mSourceTechnologies,
mLocation);
|
public void | writeToParcel(android.os.Parcel parcel, int flags)
parcel.writeInt(mMonitoringType);
parcel.writeInt(mMonitoringStatus);
parcel.writeInt(mSourceTechnologies);
parcel.writeParcelable(mLocation, flags);
|