Examples of EqualsToIgnoreCaseExpression


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
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.