Package com.dooapp.gaedo.finders.expressions

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


   * Create an expression checking this field contains the given String
   * @param contained string that field should contain
   * @return a {@link ContainsStringExpression}
   */
  public QueryExpression contains(String contained) {
    return new ContainsStringExpression(source, getFieldPath(), contained);
  }
View Full Code Here


   * Create an expression checking this field contains the given String
   * @param contained string that field should contain
   * @return a {@link ContainsStringExpression}
   */
  public QueryExpression contains(String contained) {
    return new ContainsStringExpression(source, contained);
  }
View Full Code Here

   * Create an expression checking this field contains the given String
   * @param contained string that field should contain
   * @return a {@link ContainsStringExpression}
   */
  public QueryExpression contains(String contained) {
    return new ContainsStringExpression(source, getFieldPath(), contained);
  }
View Full Code Here

   * Create an expression checking this field contains the given String
   * @param contained string that field should contain
   * @return a {@link ContainsStringExpression}
   */
  public QueryExpression contains(String contained) {
    return new ContainsStringExpression(source, getFieldPath(), contained);
  }
View Full Code Here

TOP

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

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.