FilterCondition

fun interface FilterCondition

Functional interface for determining whether to apply a filter condition.

The main purpose of this interface is to provide a standard method to check if a given filter meets a certain condition.

Inheritors

Types

Link copied to clipboard
object Companion

Companion object for defining preset filter conditions.

Functions

Link copied to clipboard
abstract fun matches(filter: Filter<*>): Boolean

Checks if the given filter meets this condition.