Package org.refcodes.textual
Interface ReplaceTextBuilder
-
- All Superinterfaces:
Text<ReplaceTextBuilder>
,TextAccessor
,TextAccessor.TextBuilder<ReplaceTextBuilder>
,TextAccessor.TextMutator
,TextAccessor.TextProperty
,TextAccessor.TextProvider
- All Known Implementing Classes:
ReplaceTextBuilderImpl
public interface ReplaceTextBuilder extends Text<ReplaceTextBuilder>
The Interface ReplaceTextBuilder.- Author:
- steiner
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.refcodes.textual.TextAccessor
TextAccessor.TextBuilder<B extends TextAccessor.TextBuilder<B>>, TextAccessor.TextMutator, TextAccessor.TextProperty, TextAccessor.TextProvider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description java.lang.String
getFindText()
Retrieves the find text from the find text property.java.lang.String
getReplaceText()
Retrieves the replace text from the replace text property.void
setFindText(java.lang.String aFindText)
Sets the find text for the find text property.void
setReplaceText(java.lang.String aReplaceText)
Sets the replace text for the replace text property.default ReplaceTextBuilder
withFindText(java.lang.String aFindText)
Sets the find text for the find text property.default ReplaceTextBuilder
withReplaceText(java.lang.String aReplaceText)
Sets the replace text for the replace text property.-
Methods inherited from interface org.refcodes.textual.TextAccessor
getText
-
Methods inherited from interface org.refcodes.textual.TextAccessor.TextBuilder
withText
-
Methods inherited from interface org.refcodes.textual.TextAccessor.TextMutator
setText, setText
-
Methods inherited from interface org.refcodes.textual.TextAccessor.TextProvider
toString, toStrings
-
-
-
-
Method Detail
-
getReplaceText
java.lang.String getReplaceText()
Retrieves the replace text from the replace text property.- Returns:
- The replace text stored by the replace text property.
-
setReplaceText
void setReplaceText(java.lang.String aReplaceText)
Sets the replace text for the replace text property.- Parameters:
aReplaceText
- The replace text to be stored by the text align mode property.
-
withReplaceText
default ReplaceTextBuilder withReplaceText(java.lang.String aReplaceText)
Sets the replace text for the replace text property.- Parameters:
aReplaceText
- The replace text to be stored by the text align mode property.- Returns:
- The builder for applying multiple build operations.
-
getFindText
java.lang.String getFindText()
Retrieves the find text from the find text property.- Returns:
- The find text stored by the find text property.
-
setFindText
void setFindText(java.lang.String aFindText)
Sets the find text for the find text property.- Parameters:
aFindText
- The find text to be stored by the text align mode property.
-
withFindText
default ReplaceTextBuilder withFindText(java.lang.String aFindText)
Sets the find text for the find text property.- Parameters:
aFindText
- The find text to be stored by the text align mode property.- Returns:
- The builder for applying multiple build operations.
-
-