FilterCondition

fun interface FilterCondition

定义一个函数式接口,用于确定是否应用过滤条件。 这个接口的主要作用是提供一个标准方法来检查给定的过滤器是否满足某个条件。

Inheritors

Types

Link copied to clipboard
object Companion

伴生对象,用于定义一些预设的过滤条件。

Functions

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

检查给定的过滤器是否满足此条件。