Class RegexpPatternMapper
- java.lang.Object
-
- org.apache.maven.shared.model.fileset.mappers.RegexpPatternMapper
-
- All Implemented Interfaces:
FileNameMapper
public class RegexpPatternMapper extends java.lang.Object implements FileNameMapper
Implementation of RegexpPatternMapper that returns either the source file name or it processed by a matching Regular Expression and its replacement.This is a RegexpPatternMapper for the copy and move tasks.
-
-
Field Summary
Fields Modifier and Type Field Description private java.util.regex.Pattern
fromPattern
private java.lang.String
toReplaceExpression
-
Constructor Summary
Constructors Constructor Description RegexpPatternMapper()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
mapFileName(java.lang.String sourceFileName)
Returns the target filename for the given source file.void
setFrom(java.lang.String from)
Sets the from part of the transformation rule.void
setTo(java.lang.String to)
Sets the to part of the transformation rule.
-
-
-
Method Detail
-
setFrom
public void setFrom(java.lang.String from)
Description copied from interface:FileNameMapper
Sets the from part of the transformation rule.- Specified by:
setFrom
in interfaceFileNameMapper
- Parameters:
from
- the source
-
setTo
public void setTo(java.lang.String to)
Description copied from interface:FileNameMapper
Sets the to part of the transformation rule.- Specified by:
setTo
in interfaceFileNameMapper
- Parameters:
to
- the destination
-
mapFileName
public java.lang.String mapFileName(java.lang.String sourceFileName)
Description copied from interface:FileNameMapper
Returns the target filename for the given source file.If the given rule doesn't apply to the source file, the implementation must return null. SourceFileScanner will then omit the source file in question.
- Specified by:
mapFileName
in interfaceFileNameMapper
- Parameters:
sourceFileName
- the name of the source file relative to some given base directory- Returns:
- the target filename for the given source file
-
-