OptionsStepImpl
class OptionsStepImpl<T, R>(val featureExtractionStep: FeatureExtractorBuilder.FeatureExtractionStep<T>, val featureExtraction: (T) -> Option<R>) : FeatureExtractorBuilder.OptionsStep<T, R> (source)
Constructors
Link copied to clipboard
constructor(featureExtractionStep: FeatureExtractorBuilder.FeatureExtractionStep<T>, featureExtraction: (T) -> Option<R>)
Functions
Link copied to clipboard
open fun withOptions(configuration: FeatureExpectOptionsChooser<R>.() -> Unit): FeatureExtractorBuilder.FinalStep<T, R>
Allows to define the FeatureExpectOptions via an FeatureExpectOptionsChooser-lambda which provides convenience functions.
open override fun withOptions(expectOptions: FeatureExpectOptions<R>): FeatureExtractorBuilder.FinalStep<T, R>
Uses the given expectOptions.
Link copied to clipboard
States explicitly that no optional FeatureExpectOptions are defined, which means, the FeatureExtractor will create a new AssertionContainer based on the previously defined mandatory options but without any optional options or in other words, the default values are used for the optional options.