Package org.hibernate.ejb.criteria.predicate

Examples of org.hibernate.ejb.criteria.predicate.ComparisonPredicate


  /**
   * {@inheritDoc}
   */
  public Predicate equal(Expression<?> x, Expression<?> y) {
    //noinspection SuspiciousNameCombination
    return new ComparisonPredicate( this, ComparisonOperator.EQUAL, x, y );
  }
View Full Code Here


  /**
   * {@inheritDoc}
   */
  public Predicate notEqual(Expression<?> x, Expression<?> y) {
    //noinspection SuspiciousNameCombination
    return new ComparisonPredicate( this, ComparisonOperator.NOT_EQUAL, x, y );
  }
View Full Code Here

  /**
   * {@inheritDoc}
   */
  public Predicate equal(Expression<?> x, Object y) {
    //noinspection SuspiciousNameCombination
    return new ComparisonPredicate( this, ComparisonOperator.EQUAL, x, y );
  }
View Full Code Here

  /**
   * {@inheritDoc}
   */
  public Predicate notEqual(Expression<?> x, Object y) {
    //noinspection SuspiciousNameCombination
    return new ComparisonPredicate( this, ComparisonOperator.NOT_EQUAL, x, y );
  }
View Full Code Here

  /**
   * {@inheritDoc}
   */
  public <Y extends Comparable<? super Y>> Predicate greaterThan(Expression<? extends Y> x, Expression<? extends Y> y) {
    //noinspection SuspiciousNameCombination
    return new ComparisonPredicate( this, ComparisonOperator.GREATER_THAN, x, y );
  }
View Full Code Here

   */
  public <Y extends Comparable<? super Y>> Predicate lessThan(
      Expression<? extends Y> x,
      Expression<? extends Y> y) {
    //noinspection SuspiciousNameCombination
    return new ComparisonPredicate( this, ComparisonOperator.LESS_THAN, x, y );
  }
View Full Code Here

   */
  public <Y extends Comparable<? super Y>> Predicate greaterThanOrEqualTo(
      Expression<? extends Y> x,
      Expression<? extends Y> y) {
    //noinspection SuspiciousNameCombination
    return new ComparisonPredicate( this, ComparisonOperator.GREATER_THAN_OR_EQUAL, x, y );
  }
View Full Code Here

   */
  public <Y extends Comparable<? super Y>> Predicate lessThanOrEqualTo(
      Expression<? extends Y> x,
      Expression<? extends Y> y) {
    //noinspection SuspiciousNameCombination
    return new ComparisonPredicate( this, ComparisonOperator.LESS_THAN_OR_EQUAL, x, y );
  }
View Full Code Here

   */
  public <Y extends Comparable<? super Y>> Predicate greaterThan(
      Expression<? extends Y> x,
      Y y) {
    //noinspection SuspiciousNameCombination
    return new ComparisonPredicate( this, ComparisonOperator.GREATER_THAN, x, y );
  }
View Full Code Here

   */
  public <Y extends Comparable<? super Y>> Predicate lessThan(
      Expression<? extends Y> x,
      Y y) {
    //noinspection SuspiciousNameCombination
    return new ComparisonPredicate( this, ComparisonOperator.LESS_THAN, x, y );
  }
View Full Code Here

TOP

Related Classes of org.hibernate.ejb.criteria.predicate.ComparisonPredicate

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.