Package com.dooapp.gaedo.finders.expressions

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


   * Creates an expression checking this field is equals to (ignoring case) given text
   * @param comparedTo text we compare this value to
   * @return a {@link EqualsToIgnoreCaseExpression}
   */
  public QueryExpression equalsToIgnoreCase(String comparedTo) {
    return new EqualsToIgnoreCaseExpression(source, getFieldPath(), comparedTo);
  }
View Full Code Here

TOP

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

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.