Package com.indooratlas.android.sdk
Class IAGeofenceRequest
- java.lang.Object
-
- com.indooratlas.android.sdk.IAGeofenceRequest
-
- All Implemented Interfaces:
Parcelable
public final class IAGeofenceRequest extends Object implements Parcelable
Provides the list of geofences to monitor for the SDK along with the initial trigger specification
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
IAGeofenceRequest.Builder
-
Nested classes/interfaces inherited from interface android.os.Parcelable
Parcelable.ClassLoaderCreator<T extends Object>, Parcelable.Creator<T extends Object>
-
-
Field Summary
Fields Modifier and Type Field Description static Parcelable.Creator<IAGeofenceRequest>
CREATOR
-
Fields inherited from interface android.os.Parcelable
CONTENTS_FILE_DESCRIPTOR, PARCELABLE_WRITE_RETURN_VALUE
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
IAGeofenceRequest(Parcel in)
IAGeofenceRequest(IAGeofenceRequest.Builder builder)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
describeContents()
boolean
equals(Object o)
List<IAGeofence>
getGeofences()
Return the list of geofences in this IAGeofenceRequest.boolean
hasCloudGeofences()
int
hashCode()
void
writeToParcel(Parcel dest, int flags)
-
-
-
Field Detail
-
CREATOR
public static final Parcelable.Creator<IAGeofenceRequest> CREATOR
-
-
Constructor Detail
-
IAGeofenceRequest
public IAGeofenceRequest(IAGeofenceRequest.Builder builder)
-
IAGeofenceRequest
protected IAGeofenceRequest(Parcel in)
-
-
Method Detail
-
getGeofences
public List<IAGeofence> getGeofences()
Return the list of geofences in this IAGeofenceRequest.- Returns:
- List of the geofences in this request.
- See Also:
IAGeofenceRequest.Builder.withGeofences(List)
,IAGeofenceRequest.Builder.withGeofence(IAGeofence)
-
hasCloudGeofences
public boolean hasCloudGeofences()
- Returns:
- Does this request include cloud geofences
-
describeContents
public int describeContents()
- Specified by:
describeContents
in interfaceParcelable
-
writeToParcel
public void writeToParcel(Parcel dest, int flags)
- Specified by:
writeToParcel
in interfaceParcelable
-
-