Map
of variables with the content and replaces the content with the result. Variables are denoted in the String
by the syntax ${variableName}
. The contents will be altered by replacing each variable of the form ${variableName}
with the value returned by variables.getValue("variableName")
. WARNING: there is no going back to the original contents after the interpolation is done. If you need to do different interpolations on the same original contents, use the method {@link #asString(Map)} instead.
@param variables aMap
of variables to interpolate
@return this for chaining
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|