Filter

abstract class Filter<K : Any>(filter: K)

A filter for a deep link, such as a mimeType.

Filters declared in a DeepLinkMatcher must be present in a DeepLinkRequest. On the other hand, a matching DeepLinkRequest may contain more filter info than is required by a DeepLinkMatcher

Parameters

filter

the value to filter by

Constructors

Link copied to clipboard
constructor(filter: K)

Functions

Link copied to clipboard
abstract fun filterRequest(request: DeepLinkRequest): Boolean

Matches a DeepLinkRequest to this Filter.