Package com.indooratlas.android.sdk
Class IAWayfindingTags
- java.lang.Object
-
- com.indooratlas.android.sdk.IAWayfindingTags
-
- All Implemented Interfaces:
Parcelable
@Beta public final class IAWayfindingTags extends Object implements Parcelable
Enables tag based filtering in wayfinding routing.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
IAWayfindingTags.Mode
-
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<IAWayfindingTags>
CREATOR
static IAWayfindingTags
EXCLUDE_ACCESSIBLE_ONLY
accessible-only routes are excluded (wayfinding graph edges with "accessibleonly" tag)static IAWayfindingTags
EXCLUDE_INACCESSIBLE
inaccessible routes are excluded (wayfinding graph edges with "inaccessible" tag)IAWayfindingTags.Mode
excludeMode
Set<String>
excludeTags
IAWayfindingTags.Mode
includeMode
Set<String>
includeTags
static IAWayfindingTags
NONE
all routes in graph are included and any tags are ignored-
Fields inherited from interface android.os.Parcelable
CONTENTS_FILE_DESCRIPTOR, PARCELABLE_WRITE_RETURN_VALUE
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
IAWayfindingTags(Parcel in)
IAWayfindingTags(Collection<String> includeTags, Collection<String> excludeTags, IAWayfindingTags.Mode includeMode, IAWayfindingTags.Mode excludeMode)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
describeContents()
boolean
equals(Object o)
int
hashCode()
void
writeToParcel(Parcel dest, int flags)
-
-
-
Field Detail
-
NONE
@Beta public static final IAWayfindingTags NONE
all routes in graph are included and any tags are ignored
-
EXCLUDE_INACCESSIBLE
@Beta public static final IAWayfindingTags EXCLUDE_INACCESSIBLE
inaccessible routes are excluded (wayfinding graph edges with "inaccessible" tag)
-
EXCLUDE_ACCESSIBLE_ONLY
@Beta public static final IAWayfindingTags EXCLUDE_ACCESSIBLE_ONLY
accessible-only routes are excluded (wayfinding graph edges with "accessibleonly" tag)
-
includeMode
public final IAWayfindingTags.Mode includeMode
-
excludeMode
public final IAWayfindingTags.Mode excludeMode
-
CREATOR
public static final Parcelable.Creator<IAWayfindingTags> CREATOR
-
-
Constructor Detail
-
IAWayfindingTags
@Beta public IAWayfindingTags(@NonNull Collection<String> includeTags, @NonNull Collection<String> excludeTags, IAWayfindingTags.Mode includeMode, IAWayfindingTags.Mode excludeMode)
-
IAWayfindingTags
protected IAWayfindingTags(Parcel in)
-
-
Method Detail
-
describeContents
public int describeContents()
- Specified by:
describeContents
in interfaceParcelable
-
writeToParcel
public void writeToParcel(@NonNull Parcel dest, int flags)
- Specified by:
writeToParcel
in interfaceParcelable
-
-