Class LikePattern
- java.lang.Object
-
- org.apache.jackrabbit.oak.spi.query.fulltext.LikePattern
-
public class LikePattern extends Object
A pattern matcher.
-
-
Constructor Summary
Constructors Constructor Description LikePattern(String pattern)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetLowerBound()Get the lower bound if any.StringgetUpperBound()Get the upper bound if any.booleanmatches(String value)StringtoString()
-
-
-
Constructor Detail
-
LikePattern
public LikePattern(String pattern)
-
-
Method Detail
-
matches
public boolean matches(String value)
-
getLowerBound
public String getLowerBound()
Get the lower bound if any.- Returns:
- return the lower bound, or null if unbound
-
getUpperBound
public String getUpperBound()
Get the upper bound if any.- Returns:
- return the upper bound, or null if unbound
-
-