AtLeastCheckerOption
|
interface AtLeastCheckerOption<out T : CharSequence, out S : CharSequenceContains.SearchBehaviour> : WithTimesCheckerOption<T, S>
Represents the extension point for another option after a contains at least -check within a sophisticated
contains assertion building process for CharSequence.
|
AtLeastCheckerOptionImpl
|
open class AtLeastCheckerOptionImpl<out T : CharSequence, out S : CharSequenceContains.SearchBehaviour> : AtLeastCheckerOptionBase<T, S>, AtLeastCheckerOption<T, S>
Represents the builder of a contains at least -check within the fluent API of a sophisticated
contains assertion for CharSequence.
|
AtMostCheckerOption
|
interface AtMostCheckerOption<out T : CharSequence, out S : CharSequenceContains.SearchBehaviour> : CharSequenceContains.CheckerOption<T, S>
Represents the extension point for another option after a contains at least once but at most -check within
a sophisticated contains assertion building process for CharSequence.
|
AtMostCheckerOptionImpl
|
open class AtMostCheckerOptionImpl<out T : CharSequence, out S : CharSequenceContains.SearchBehaviour> : AtMostCheckerOptionBase<T, S>, AtMostCheckerOption<T, S>
Represents the builder of a contains at least once but at most check within the fluent API of a
sophisticated contains assertion for CharSequence.
|
ButAtMostCheckerOption
|
interface ButAtMostCheckerOption<out T : CharSequence, out S : CharSequenceContains.SearchBehaviour> : CharSequenceContains.CheckerOption<T, S>
Represents the extension point for another option after a contains at least but at most -check within
a sophisticated contains assertion building process for CharSequence.
|
ButAtMostCheckerOptionImpl
|
open class ButAtMostCheckerOptionImpl<out T : CharSequence, out S : CharSequenceContains.SearchBehaviour> : ButAtMostCheckerOptionBase<T, S>, ButAtMostCheckerOption<T, S>
Represents the builder of the second step of a contains at least but at most check within the
fluent API of a sophisticated contains assertion for CharSequence.
|
ExactlyCheckerOption
|
interface ExactlyCheckerOption<out T : CharSequence, out S : CharSequenceContains.SearchBehaviour> : CharSequenceContains.CheckerOption<T, S>
Represents the extension point for another option after a contains exactly -check within
a sophisticated contains assertion building process for CharSequence.
|
ExactlyCheckerOptionImpl
|
open class ExactlyCheckerOptionImpl<out T : CharSequence, out S : CharSequenceContains.SearchBehaviour> : ExactlyCheckerOptionBase<T, S>, ExactlyCheckerOption<T, S>
Represents the builder of a contains exactly check within the fluent API of a sophisticated
contains assertion for CharSequence.
|
NotCheckerOption
|
interface NotCheckerOption<out T : CharSequence, out S : CharSequenceContains.SearchBehaviour> : CharSequenceContains.CheckerOption<T, S>
Represents the extension point for another option after a contains not at all -check within
a sophisticated contains assertion building process for CharSequence.
|
NotCheckerOptionImpl
|
open class NotCheckerOptionImpl<out T : CharSequence, out S : CharSequenceContains.SearchBehaviour> : NotCheckerOptionBase<T, S>, NotCheckerOption<T, S>
Represents the builder of a contains not at all check within the fluent API of a sophisticated
contains assertion for CharSequence.
|
NotOrAtMostCheckerOption
|
interface NotOrAtMostCheckerOption<out T : CharSequence, out S : CharSequenceContains.SearchBehaviour> : CharSequenceContains.CheckerOption<T, S>
Represents the extension point for another option after a contains not or at most -check within
a sophisticated contains assertion building process for CharSequence.
|
NotOrAtMostCheckerOptionImpl
|
open class NotOrAtMostCheckerOptionImpl<out T : CharSequence, out S : CharSequenceContains.SearchBehaviour> : NotOrAtMostCheckerOptionBase<T, S>, NotOrAtMostCheckerOption<T, S>
Represents the builder of a contains not or at most check within the fluent API of a
sophisticated contains assertion for CharSequence.
|