Matcher

class Matcher(patterns: Pattern?) : Filter<Actionable?>

Matcher

Constructors

Matcher
Link copied to clipboard
fun Matcher(vararg patterns: Pattern?)

Functions

accept
Link copied to clipboard
open override fun accept(actionable: Actionable?): Boolean

Determines if the item satisfies the rules of this filter.

and
Link copied to clipboard
open fun and(p0: Predicate<in Actionable?>): Predicate<Actionable?>
negate
Link copied to clipboard
open fun negate(): Predicate<Actionable?>
or
Link copied to clipboard
open fun or(p0: Predicate<in Actionable?>): Predicate<Actionable?>
test
Link copied to clipboard
open override fun test(t: Actionable?): Boolean

{@inheritDoc}

Properties

patterns
Link copied to clipboard
val patterns: Array<out Pattern?>