Java org.hibernate.criterion Subqueries fields, constructors, methods, implement or subclass

Example usage for Java org.hibernate.criterion Subqueries fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.hibernate.criterion Subqueries.

The text is from its open source code.

Method

Criterioneq(Object value, DetachedCriteria dc)
Creates a criterion which checks that the value of a given literal as being equal to the value in the subquery result.
CriterioneqAll(Object value, DetachedCriteria dc)
Creates a criterion which checks that the value of a literal equals ALL the values in the subquery result.
Criterionexists(DetachedCriteria dc)
Creates a criterion which checks for the existence of rows in the subquery result
Criterionge(Object value, DetachedCriteria dc)
Creates a criterion which checks that the value of a given literal as being greater-than-or-equal-to the value in the subquery result.
CriteriongeAll(Object value, DetachedCriteria dc)
Creates a criterion which checks that the value of a literal is greater-than-or-equal-to ALL the values in the subquery result.
CriteriongeSome(Object value, DetachedCriteria dc)
Creates a criterion which checks that the value of a literal is greater-than-or-equal-to SOME of the values in the subquery result.
Criteriongt(Object value, DetachedCriteria dc)
Creates a criterion which checks that the value of a given literal as being greater-than the value in the subquery result.
CriteriongtAll(Object value, DetachedCriteria dc)
Creates a criterion which checks that the value of a literal is greater-than ALL the values in the subquery result.
CriteriongtSome(Object value, DetachedCriteria dc)
Creates a criterion which checks that the value of a literal is greater-than SOME of the values in the subquery result.
Criterionin(Object value, DetachedCriteria dc)
Creates a criterion which checks that the value of a literal is IN the values in the subquery result.
Criterionle(Object value, DetachedCriteria dc)
Creates a criterion which checks that the value of a given literal as being less-than-or-equal-to the value in the subquery result.
CriterionleAll(Object value, DetachedCriteria dc)
Creates a criterion which checks that the value of a literal is less-than-or-equal-to ALL the values in the subquery result.
CriterionleSome(Object value, DetachedCriteria dc)
Creates a criterion which checks that the value of a literal is less-than-or-equal-to SOME of the values in the subquery result.
Criterionlt(Object value, DetachedCriteria dc)
Creates a criterion which checks that the value of a given literal as being less-than the value in the subquery result.
CriterionltAll(Object value, DetachedCriteria dc)
Creates a criterion which checks that the value of a literal is less-than ALL the values in the subquery result.
CriterionltSome(Object value, DetachedCriteria dc)
Creates a criterion which checks that the value of a literal is less-than SOME of the values in the subquery result.
Criterionne(Object value, DetachedCriteria dc)
Creates a criterion which checks that the value of a given literal as being not-equal to the value in the subquery result.
CriterionnotExists(DetachedCriteria dc)
Creates a criterion which checks for the non-existence of rows in the subquery result
CriterionnotIn(Object value, DetachedCriteria dc)
Creates a criterion which checks that the value of a literal is NOT IN the values in the subquery result.
CriterionpropertiesIn(String[] propertyNames, DetachedCriteria dc)
Creates a criterion which checks that the value of multiple given properties as being in to the set of values in the subquery result.
CriterionpropertiesNotIn(String[] propertyNames, DetachedCriteria dc)
Creates a criterion which checks that the value of multiple given properties as being not-in to the set of values in the subquery result.
CriterionpropertyEq(String propertyName, DetachedCriteria dc)
Creates a criterion which checks that the value of a given property as being equal to the set of values in the subquery result.
CriterionpropertyEqAll(String propertyName, DetachedCriteria dc)
Creates a criterion which checks that the value of a given property equals ALL the values in the subquery result.
CriterionpropertyGe(String propertyName, DetachedCriteria dc)
Creates a criterion which checks that the value of a given property is greater-than-or-equal-to the value in the subquery result.
CriterionpropertyGeAll(String propertyName, DetachedCriteria dc)
Creates a criterion which checks that the value of a given property is greater-than-or-equal-to ALL the values in the subquery result.
CriterionpropertyGeSome(String propertyName, DetachedCriteria dc)
Creates a criterion which checks that the value of a given property is greater-than-or-equal-to SOME of the values in the subquery result.
CriterionpropertyGt(String propertyName, DetachedCriteria dc)
Creates a criterion which checks that the value of a given property is greater-than the value in the subquery result.
CriterionpropertyGtAll(String propertyName, DetachedCriteria dc)
Creates a criterion which checks that the value of a given property is greater-than ALL the values in the subquery result.
CriterionpropertyGtSome(String propertyName, DetachedCriteria dc)
Creates a criterion which checks that the value of a given property is greater-than SOME of the values in the subquery result.
CriterionpropertyIn(String propertyName, DetachedCriteria dc)
Creates a criterion which checks that the value of a given property is in the set of values in the subquery result.
CriterionpropertyLe(String propertyName, DetachedCriteria dc)
Creates a criterion which checks that the value of a given property is less-than-or-equal-to the value in the subquery result.
CriterionpropertyLeAll(String propertyName, DetachedCriteria dc)
Creates a criterion which checks that the value of a given property is less-than-or-equal-to ALL the values in the subquery result.
CriterionpropertyLeSome(String propertyName, DetachedCriteria dc)
Creates a criterion which checks that the value of a given property is less-than-or-equal-to SOME of the values in the subquery result.
CriterionpropertyLt(String propertyName, DetachedCriteria dc)
Creates a criterion which checks that the value of a given property is less-than the value in the subquery result.
CriterionpropertyLtAll(String propertyName, DetachedCriteria dc)
Creates a criterion which checks that the value of a given property is less-than ALL the values in the subquery result.
CriterionpropertyLtSome(String propertyName, DetachedCriteria dc)
Creates a criterion which checks that the value of a given property is less-than SOME of the values in the subquery result.
CriterionpropertyNe(String propertyName, DetachedCriteria dc)
Creates a criterion which checks that the value of a given property is not equal to the value in the subquery result.
CriterionpropertyNotIn(String propertyName, DetachedCriteria dc)
Creates a criterion which checks that the value of a given property is not-in the set of values in the subquery result.