Class RegularExpression
java.lang.Object
com.aquima.interactions.framework.mask.impl.AbstractMask
com.aquima.interactions.framework.mask.impl.RegularExpression
- All Implemented Interfaces:
IMask
Mask which replaces each substring of a string value that matches a given regular expression with the given
replacement.
Example: StringValue("571518833") -> 57.15.18.833
Required parameters:- regexp-search: regular expression used for search
- replace: string to replace with
- toupper: true/false Apply to upper case BEFORE regular expression is evaluated (default=false).
- tolower: true/false Apply to lower case BEFORE regular expression is evaluated (default=false).
- Since:
- 6.0
- Author:
- Jon van Leuven
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected String
applySingleValue
(ISingleValue singleValue, IMaskContext context, ILanguage language) This method is called when this mask is applied.protected DataType[]
Should return the datatypes for which this mask can be applied.Methods inherited from class com.aquima.interactions.framework.mask.impl.AbstractMask
apply
-
Constructor Details
-
RegularExpression
public RegularExpression()
-
-
Method Details
-
applySingleValue
protected String applySingleValue(ISingleValue singleValue, IMaskContext context, ILanguage language) throws Exception Description copied from class:AbstractMask
This method is called when this mask is applied.- Specified by:
applySingleValue
in classAbstractMask
- Parameters:
singleValue
- The value, never null and never unknown.context
- Mask context- Returns:
- The applied mask result.
- Throws:
Exception
- When something went wrong.
-
getValidDataTypes
Description copied from class:AbstractMask
Should return the datatypes for which this mask can be applied.- Specified by:
getValidDataTypes
in classAbstractMask
- Returns:
- Array of datatypes.
-