Class RegExpCriteria
- java.lang.Object
-
- org.apache.manifoldcf.crawler.interfaces.RegExpCriteria
-
public class RegExpCriteria extends java.lang.Object
Class which describes a regular expression specification.
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
_rcsid
protected boolean
isInsensitive
If true, means the regexp is case insensitive.protected java.lang.String
regExp
The regexp string.
-
Constructor Summary
Constructors Constructor Description RegExpCriteria(java.lang.String regExp, boolean isInsensitive)
Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getRegexpString()
Get regexp string.boolean
isInsensitive()
Get whether case insensitive or not.
-
-
-
Field Detail
-
_rcsid
public static final java.lang.String _rcsid
- See Also:
- Constant Field Values
-
isInsensitive
protected boolean isInsensitive
If true, means the regexp is case insensitive.
-
regExp
protected java.lang.String regExp
The regexp string.
-
-