Interface InputTextStepProperty<T>
- All Superinterfaces:
StepProperty<T>
- All Known Subinterfaces:
NumberStepProperty
,StringStepProperty
Step property that takes a user input in a text field as an input.
Used by
InputTextStepPropertyBuilder
- Since:
- 2.0.0
-
Method Summary
Modifier and TypeMethodDescriptionReturns the default value of the input text field.Returns the placeholder of the input text field.boolean
Returns flag for whether this step property must have a value assigned.Methods inherited from interface com.experian.datastudio.sdk.api.step.configuration.StepProperty
createConfig, getDefaultValue, getId, getValue, hasDefaultValue, isDisabled, onValueChanged, shouldRebuildIndex, validateState
-
Method Details
-
isRequired
boolean isRequired()Returns flag for whether this step property must have a value assigned.- Specified by:
isRequired
in interfaceStepProperty<T>
- Returns:
- Flag for requirement of a value to be assigned
-
getPlaceHolder
String getPlaceHolder()Returns the placeholder of the input text field. A placeholder is a hint is displayed in the input field before the user enters a value.- Returns:
- PlaceHolder hint to be displayed in input field
-
getDefaultValue
Returns the default value of the input text field.- Specified by:
getDefaultValue
in interfaceStepProperty<T>
- Returns:
- Value of default text field value
-