Uses of Class
org.hibernate.sql.ComparisonRestriction.Operator
-
Packages that use ComparisonRestriction.Operator Package Description org.hibernate.sql This package contains helper classes for rendering SQL fragments and SQL statements. -
-
Uses of ComparisonRestriction.Operator in org.hibernate.sql
Methods in org.hibernate.sql that return ComparisonRestriction.Operator Modifier and Type Method Description static ComparisonRestriction.Operator
ComparisonRestriction.Operator. valueOf(String name)
Returns the enum constant of this type with the specified name.static ComparisonRestriction.Operator[]
ComparisonRestriction.Operator. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.hibernate.sql with parameters of type ComparisonRestriction.Operator Modifier and Type Method Description SimpleSelect
SimpleSelect. addRestriction(String lhs, ComparisonRestriction.Operator op, String rhs)
Appends a restriction based on the comparison betweenlhs
andrhs
.Update
Update. addRestriction(String column, ComparisonRestriction.Operator op, String value)
Constructors in org.hibernate.sql with parameters of type ComparisonRestriction.Operator Constructor Description ComparisonRestriction(String lhs, ComparisonRestriction.Operator operator, String rhs)
-