Package com.intercom.api.types
Interface TextAreaComponent._FinalStage
-
- All Known Implementing Classes:
TextAreaComponent.Builder
- Enclosing class:
- TextAreaComponent
public static interface TextAreaComponent._FinalStage
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TextAreaComponentbuild()TextAreaComponent._FinalStagedisabled(java.lang.Boolean disabled)TextAreaComponent._FinalStagedisabled(java.util.Optional<java.lang.Boolean> disabled)Styles the input and prevents the action.TextAreaComponent._FinalStageerror(java.lang.Boolean error)TextAreaComponent._FinalStageerror(java.util.Optional<java.lang.Boolean> error)Styles the input as failed.TextAreaComponent._FinalStagelabel(java.lang.String label)TextAreaComponent._FinalStagelabel(java.util.Optional<java.lang.String> label)The text shown above the text area.TextAreaComponent._FinalStageplaceholder(java.lang.String placeholder)TextAreaComponent._FinalStageplaceholder(java.util.Optional<java.lang.String> placeholder)An example value shown inside the component when it's empty.TextAreaComponent._FinalStagevalue(java.lang.String value)TextAreaComponent._FinalStagevalue(java.util.Optional<java.lang.String> value)An entered value which is already inside the component.
-
-
-
Method Detail
-
build
TextAreaComponent build()
-
label
TextAreaComponent._FinalStage label(java.util.Optional<java.lang.String> label)
The text shown above the text area.
-
label
TextAreaComponent._FinalStage label(java.lang.String label)
-
placeholder
TextAreaComponent._FinalStage placeholder(java.util.Optional<java.lang.String> placeholder)
An example value shown inside the component when it's empty.
-
placeholder
TextAreaComponent._FinalStage placeholder(java.lang.String placeholder)
-
value
TextAreaComponent._FinalStage value(java.util.Optional<java.lang.String> value)
An entered value which is already inside the component.
-
value
TextAreaComponent._FinalStage value(java.lang.String value)
-
error
TextAreaComponent._FinalStage error(java.util.Optional<java.lang.Boolean> error)
Styles the input as failed. Default is false.
-
error
TextAreaComponent._FinalStage error(java.lang.Boolean error)
-
disabled
TextAreaComponent._FinalStage disabled(java.util.Optional<java.lang.Boolean> disabled)
Styles the input and prevents the action. Default is false.
-
disabled
TextAreaComponent._FinalStage disabled(java.lang.Boolean disabled)
-
-