Class FileFilter
- java.lang.Object
-
- org.wildfly.galleon.plugin.config.FileFilter
-
public class FileFilter extends java.lang.Object- Author:
- Stuart Douglas, Alexey Loubyansky
-
-
Constructor Summary
Constructors Constructor Description FileFilter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object o)java.lang.StringgetPattern()inthashCode()booleanisInclude()booleanmatches(java.lang.String filePath)Returns true if the file matches the regular expressionvoidsetInclude()voidsetPatternString(java.lang.String patternString)java.lang.StringtoString()
-
-
-
Method Detail
-
setPatternString
public void setPatternString(java.lang.String patternString)
-
setInclude
public void setInclude()
-
getPattern
public java.lang.String getPattern()
-
matches
public boolean matches(java.lang.String filePath)
Returns true if the file matches the regular expression
-
isInclude
public boolean isInclude()
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-