Interface BooleanStepPropertyBuilder
- All Superinterfaces:
StepPropertyBuilder<BooleanStepPropertyBuilder,
BooleanStepProperty, Boolean>
public interface BooleanStepPropertyBuilder
extends StepPropertyBuilder<BooleanStepPropertyBuilder,BooleanStepProperty,Boolean>
Builder for step property that takes a boolean value as an input.
- Since:
- 2.0.0
-
Method Summary
Modifier and TypeMethodDescriptionwithDefaultValue
(boolean value) Configures the default value of the step property that takes a boolean value as an input.withDefaultValue
(Function<DefaultValueContext, Boolean> defaultValueSupplier) Configures the default value of the input text field with context.Methods inherited from interface com.experian.datastudio.sdk.api.step.configuration.stepproperties.StepPropertyBuilder
build, withIsDisabledSupplier, withLabelSupplier, withOnValueChanged, withOnValueChanged, withShouldRebuildIndex, withValueSupplier
-
Method Details
-
withDefaultValue
Configures the default value of the step property that takes a boolean value as an input.- Parameters:
value
- default boolean value- Returns:
- Boolean step property builder
-
withDefaultValue
BooleanStepPropertyBuilder withDefaultValue(Function<DefaultValueContext, Boolean> defaultValueSupplier) Configures the default value of the input text field with context.- Parameters:
defaultValueSupplier
- supplier for the default text field value- Returns:
- Input text step property builder
- Since:
- 2.4.0
-