Package org.gradle.api.file
Interface ExpandDetails
public interface ExpandDetails
Additional configuration parameters for
ContentFilterable.expand(Map, Action)
action.- Since:
- 7.2
-
Method Summary
Modifier and TypeMethodDescriptionControls if the underlyingSimpleTemplateEngine
escapes backslashes in the file before processing.
-
Method Details
-
getEscapeBackslash
Controls if the underlyingSimpleTemplateEngine
escapes backslashes in the file before processing. If this is set tofalse
then escape sequences in the processed files (\n
,\t
,\\
, etc) are converted to the symbols that they represent, so, for example\n
becomes newline. If set totrue
then escape sequences are left as is.Default value is
false
.
-