Save This Page
Home » hibernate-distribution-3.3.1.GA-dist » org.hibernate » criterion » [javadoc | source]
org.hibernate.criterion
public final class: Expression [javadoc | source]
java.lang.Object
   org.hibernate.criterion.Restrictions
      org.hibernate.criterion.Expression
Deprecated! Use - Restrictions.

Method from org.hibernate.criterion.Expression Summary:
sql,   sql,   sql
Methods from org.hibernate.criterion.Restrictions:
allEq,   and,   between,   conjunction,   disjunction,   eq,   eqProperty,   ge,   geProperty,   gt,   gtProperty,   idEq,   ilike,   ilike,   in,   in,   isEmpty,   isNotEmpty,   isNotNull,   isNull,   le,   leProperty,   like,   like,   lt,   ltProperty,   naturalId,   ne,   neProperty,   not,   or,   sizeEq,   sizeGe,   sizeGt,   sizeLe,   sizeLt,   sizeNe,   sqlRestriction,   sqlRestriction,   sqlRestriction
Methods from java.lang.Object:
equals,   getClass,   hashCode,   notify,   notifyAll,   toString,   wait,   wait,   wait
Method from org.hibernate.criterion.Expression Detail:
 public static Criterion sql(String sql) 
Deprecated! use - org.hibernate.criterion.Restrictions#sqlRestriction(String)

      Deprecated!
    Apply a constraint expressed in SQL. Any occurrences of {alias} will be replaced by the table alias.
 public static Criterion sql(String sql,
    Object[] values,
    Type[] types) 
Deprecated! use - org.hibernate.criterion.Restrictions#sqlRestriction(String, Object[], Type[])

      Deprecated!
    Apply a constraint expressed in SQL, with the given JDBC parameters. Any occurrences of {alias} will be replaced by the table alias.
 public static Criterion sql(String sql,
    Object value,
    Type type) 
Deprecated! use - org.hibernate.criterion.Restrictions#sqlRestriction(String, Object, Type)

      Deprecated!
    Apply a constraint expressed in SQL, with the given JDBC parameter. Any occurrences of {alias} will be replaced by the table alias.