Open Source Repository

Home /hibernate/hibernate-3.2.6.ga | Repository Home



org/hibernate/criterion/NullExpression.java
//$Id: NullExpression.java 5685 2005-02-12 07:19:50Z steveebersole $
package org.hibernate.criterion;


import org.hibernate.Criteria;
import org.hibernate.HibernateException;
import org.hibernate.engine.TypedValue;
import org.hibernate.util.StringHelper;

/**
 * Constrains a property to be null
 @author Gavin King
 */
public class NullExpression implements Criterion {

  private final String propertyName;

  private static final TypedValue[] NO_VALUES = new TypedValue[0];

  protected NullExpression(String propertyName) {
    this.propertyName = propertyName;
  }

  public String toSqlString(Criteria criteria, CriteriaQuery criteriaQuery
  throws HibernateException {
    String[] columns = criteriaQuery.getColumnsUsingProjection(criteria, propertyName);
    String result = StringHelper.join(
      " and ",
      StringHelper.suffixcolumns, " is null" )
    );
    if (columns.length>1result = '(' + result + ')';
    return result;

    //TODO: get SQL rendering out of this package!
  }

  public TypedValue[] getTypedValues(Criteria criteria, CriteriaQuery criteriaQuery
  throws HibernateException {
    return NO_VALUES;
  }

  public String toString() {
    return propertyName + " is null";
  }

}