Package org.byteliberi.easydriver.postgresql

Examples of org.byteliberi.easydriver.postgresql.Ilike


   * @param field Field name lays at the left of the operator, a <code>?</code>
   * is put at its right.
   * @return case insensitive like operator.
   */
  public static DualOperator newLikeCI(TableField<?> field) {
    return new Ilike(field);
  }
View Full Code Here


   * @param field Field name lays at the left of the operator.
   * @param right String which lays at the right of the operator.
   * @return case insensitive like operator.
   */
  public static DualOperator newLikeCI(TableField<?> field, String right) {
    return new Ilike(field, right);
    }
View Full Code Here

   * @param left left String which lays at the left of the operator.
   * @param right right String which lays at the right of the operator.
   * @return case insensitive like operator.
   */
  public static DualOperator newLikeCI(String left, String right) {
    return new Ilike(left, right);
  }
View Full Code Here

   * @param left Expression which lays at the left of the operator.
   * @param right Expression which lays at the right of the operator.
   * @return case insensitive like operator.
   */
  public static DualOperator newLikeCI(ExpressionAPI left, ExpressionAPI right) {
    return new Ilike(left, right);
  }
View Full Code Here

TOP

Related Classes of org.byteliberi.easydriver.postgresql.Ilike

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.