Package com.dooapp.gaedo.finders.expressions

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

Related Classes of com.dooapp.gaedo.finders.expressions.MatchesRegexpExpression

Copyright © 2018 www.massapicom. 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.