Matcher

class Matcher(ids: Int) : Filter<Identifiable?>

Matcher

Constructors

Matcher
Link copied to clipboard
fun Matcher(vararg ids: Int)

Functions

accept
Link copied to clipboard
open override fun accept(identifiable: Identifiable?): Boolean

Determines if the item satisfies the rules of this filter.

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

{@inheritDoc}