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 classIAWayfindingTags.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>CREATORstatic IAWayfindingTagsEXCLUDE_ACCESSIBLE_ONLYaccessible-only routes are excluded (wayfinding graph edges with "accessibleonly" tag)static IAWayfindingTagsEXCLUDE_INACCESSIBLEinaccessible routes are excluded (wayfinding graph edges with "inaccessible" tag)IAWayfindingTags.ModeexcludeModeSet<String>excludeTagsIAWayfindingTags.ModeincludeModeSet<String>includeTagsstatic IAWayfindingTagsNONEall 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 protectedIAWayfindingTags(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 intdescribeContents()booleanequals(Object o)inthashCode()voidwriteToParcel(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:
describeContentsin interfaceParcelable
-
writeToParcel
public void writeToParcel(@NonNull Parcel dest, int flags)
- Specified by:
writeToParcelin interfaceParcelable
-
-