Class 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.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • 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.