CharSeq

A predicate which matches against character-sequence values.

Constructors

Link copied to clipboard
constructor(value: String, op: ConfigPredicate.StrEqualOp)

Properties

Link copied to clipboard
open override val op: ConfigPredicate.StrEqualOp

The predicate operation to perform.

Link copied to clipboard
open override val value: String

The predicate value to match against.

Functions

Link copied to clipboard
open fun and(p0: Predicate<in String>): Predicate<String>
Link copied to clipboard
open operator override fun invoke(p1: String): Boolean

Tests the given value against the predicate value using the operation.

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