Examples of MatchesRegexpExpression


Examples of com.dooapp.gaedo.finders.expressions.MatchesRegexpExpression

   * Creates an expression checking this field matches given regular expression
   * @param pattern against which text is checked
   * @return a {@link MatchesRegexpExpression}
   */
  public QueryExpression matches(Pattern pattern) {
    return new MatchesRegexpExpression(source, getFieldPath(), pattern);
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.