Package com.dooapp.gaedo.finders.expressions

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


   * Creates an expression checking this field ends with the given string
   * @param end text that should be at end of this field
   * @return a {@link EndsWithExpression}
   */
  public QueryExpression endsWith(String end) {
    return new EndsWithExpression(source, getFieldPath(), end);
  }
View Full Code Here


   * Creates an expression checking this field ends with the given string
   * @param end text that should be at end of this field
   * @return a {@link EndsWithExpression}
   */
  public QueryExpression endsWith(String end) {
    return new EndsWithExpression(source, end);
  }
View Full Code Here

   * Creates an expression checking this field ends with the given string
   * @param end text that should be at end of this field
   * @return a {@link EndsWithExpression}
   */
  public QueryExpression endsWith(String end) {
    return new EndsWithExpression(source, getFieldPath(), end);
  }
View Full Code Here

   * Creates an expression checking this field ends with the given string
   * @param end text that should be at end of this field
   * @return a {@link EndsWithExpression}
   */
  public QueryExpression endsWith(String end) {
    return new EndsWithExpression(source, getFieldPath(), end);
  }
View Full Code Here

TOP

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

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.