org.apache.manifoldcf.crawler.interfaces
Class RegExpCriteria

java.lang.Object
  extended by org.apache.manifoldcf.crawler.interfaces.RegExpCriteria

public class RegExpCriteria
extends java.lang.Object

Class which describes a regular expression specification.


Field Summary
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
RegExpCriteria(java.lang.String regExp, boolean isInsensitive)
          Constructor.
 
Method Summary
 java.lang.String getRegexpString()
          Get regexp string.
 boolean isInsensitive()
          Get whether case insensitive or not.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

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.

Constructor Detail

RegExpCriteria

public RegExpCriteria(java.lang.String regExp,
                      boolean isInsensitive)
Constructor.

Method Detail

getRegexpString

public java.lang.String getRegexpString()
Get regexp string.


isInsensitive

public boolean isInsensitive()
Get whether case insensitive or not.