doc / ch.tutteli.atrium.logic.creating.charsequence.contains.searchers.impl

Package ch.tutteli.atrium.logic.creating.charsequence.contains.searchers.impl

Contains implementations of CharSequenceContains.Searcher

Types

IgnoringCaseIndexSearcher

class IgnoringCaseIndexSearcher : CharSequenceContains.Searcher<IgnoringCaseSearchBehaviour, Any>

Represents a Searcher which implements the IgnoringCaseSearchBehaviour behaviour and uses CharSequence.indexOf to find expected objects.

IgnoringCaseRegexSearcher

class IgnoringCaseRegexSearcher : CharSequenceContains.Searcher<IgnoringCaseSearchBehaviour, String>

Represents a Searcher which implements the IgnoringCaseSearchBehaviour behaviour and evaluates the matches of a given regular expression on the input of the search.

IndexSearcher

class IndexSearcher : CharSequenceContains.Searcher<NoOpSearchBehaviour, Any>

Represents a Searcher which uses CharSequence.indexOf to find expected objects.

RegexSearcher

class RegexSearcher : CharSequenceContains.Searcher<NoOpSearchBehaviour, Regex>

Represents a Searcher which evaluates the matches of a given regular expression on the input of the search.