Class LikePattern


  • public class LikePattern
    extends java.lang.Object
    A pattern matcher.
    • Constructor Summary

      Constructors 
      Constructor Description
      LikePattern​(java.lang.String pattern)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getLowerBound()
      Get the lower bound if any.
      java.lang.String getUpperBound()
      Get the upper bound if any.
      boolean matches​(java.lang.String value)  
      java.lang.String toString()  
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • LikePattern

        public LikePattern​(java.lang.String pattern)
    • Method Detail

      • matches

        public boolean matches​(java.lang.String value)
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object
      • getLowerBound

        public java.lang.String getLowerBound()
        Get the lower bound if any.
        Returns:
        return the lower bound, or null if unbound
      • getUpperBound

        public java.lang.String getUpperBound()
        Get the upper bound if any.
        Returns:
        return the upper bound, or null if unbound