Subqueriespublic class Subqueries extends Object Factory class for criterion instances that represent expressions
involving subqueries. |
Methods Summary |
---|
public static Criterion | eq(java.lang.Object value, DetachedCriteria dc)
return new SimpleSubqueryExpression(value, "=", null, dc);
| public static Criterion | eqAll(java.lang.Object value, DetachedCriteria dc)
return new SimpleSubqueryExpression(value, "=", "all", dc);
| public static Criterion | exists(DetachedCriteria dc)
return new ExistsSubqueryExpression("exists", dc);
| public static Criterion | ge(java.lang.Object value, DetachedCriteria dc)
return new SimpleSubqueryExpression(value, ">=", null, dc);
| public static Criterion | geAll(java.lang.Object value, DetachedCriteria dc)
return new SimpleSubqueryExpression(value, ">=", "all", dc);
| public static Criterion | geSome(java.lang.Object value, DetachedCriteria dc)
return new SimpleSubqueryExpression(value, ">=", "some", dc);
| public static Criterion | gt(java.lang.Object value, DetachedCriteria dc)
return new SimpleSubqueryExpression(value, ">", null, dc);
| public static Criterion | gtAll(java.lang.Object value, DetachedCriteria dc)
return new SimpleSubqueryExpression(value, ">", "all", dc);
| public static Criterion | gtSome(java.lang.Object value, DetachedCriteria dc)
return new SimpleSubqueryExpression(value, ">", "some", dc);
| public static Criterion | in(java.lang.Object value, DetachedCriteria dc)
return new SimpleSubqueryExpression(value, "in", null, dc);
| public static Criterion | le(java.lang.Object value, DetachedCriteria dc)
return new SimpleSubqueryExpression(value, "<=", null, dc);
| public static Criterion | leAll(java.lang.Object value, DetachedCriteria dc)
return new SimpleSubqueryExpression(value, "<=", "all", dc);
| public static Criterion | leSome(java.lang.Object value, DetachedCriteria dc)
return new SimpleSubqueryExpression(value, "<=", "some", dc);
| public static Criterion | lt(java.lang.Object value, DetachedCriteria dc)
return new SimpleSubqueryExpression(value, "<", null, dc);
| public static Criterion | ltAll(java.lang.Object value, DetachedCriteria dc)
return new SimpleSubqueryExpression(value, "<", "all", dc);
| public static Criterion | ltSome(java.lang.Object value, DetachedCriteria dc)
return new SimpleSubqueryExpression(value, "<", "some", dc);
| public static Criterion | ne(java.lang.Object value, DetachedCriteria dc)
return new SimpleSubqueryExpression(value, "<>", null, dc);
| public static Criterion | notExists(DetachedCriteria dc)
return new ExistsSubqueryExpression("not exists", dc);
| public static Criterion | notIn(java.lang.Object value, DetachedCriteria dc)
return new SimpleSubqueryExpression(value, "not in", null, dc);
| public static Criterion | propertyEq(java.lang.String propertyName, DetachedCriteria dc)
return new PropertySubqueryExpression(propertyName, "=", null, dc);
| public static Criterion | propertyEqAll(java.lang.String propertyName, DetachedCriteria dc)
return new PropertySubqueryExpression(propertyName, "=", "all", dc);
| public static Criterion | propertyGe(java.lang.String propertyName, DetachedCriteria dc)
return new PropertySubqueryExpression(propertyName, ">=", null, dc);
| public static Criterion | propertyGeAll(java.lang.String propertyName, DetachedCriteria dc)
return new PropertySubqueryExpression(propertyName, ">=", "all", dc);
| public static Criterion | propertyGeSome(java.lang.String propertyName, DetachedCriteria dc)
return new PropertySubqueryExpression(propertyName, ">=", "some", dc);
| public static Criterion | propertyGt(java.lang.String propertyName, DetachedCriteria dc)
return new PropertySubqueryExpression(propertyName, ">", null, dc);
| public static Criterion | propertyGtAll(java.lang.String propertyName, DetachedCriteria dc)
return new PropertySubqueryExpression(propertyName, ">", "all", dc);
| public static Criterion | propertyGtSome(java.lang.String propertyName, DetachedCriteria dc)
return new PropertySubqueryExpression(propertyName, ">", "some", dc);
| public static Criterion | propertyIn(java.lang.String propertyName, DetachedCriteria dc)
return new PropertySubqueryExpression(propertyName, "in", null, dc);
| public static Criterion | propertyLe(java.lang.String propertyName, DetachedCriteria dc)
return new PropertySubqueryExpression(propertyName, "<=", null, dc);
| public static Criterion | propertyLeAll(java.lang.String propertyName, DetachedCriteria dc)
return new PropertySubqueryExpression(propertyName, "<=", "all", dc);
| public static Criterion | propertyLeSome(java.lang.String propertyName, DetachedCriteria dc)
return new PropertySubqueryExpression(propertyName, "<=", "some", dc);
| public static Criterion | propertyLt(java.lang.String propertyName, DetachedCriteria dc)
return new PropertySubqueryExpression(propertyName, "<", null, dc);
| public static Criterion | propertyLtAll(java.lang.String propertyName, DetachedCriteria dc)
return new PropertySubqueryExpression(propertyName, "<", "all", dc);
| public static Criterion | propertyLtSome(java.lang.String propertyName, DetachedCriteria dc)
return new PropertySubqueryExpression(propertyName, "<", "some", dc);
| public static Criterion | propertyNe(java.lang.String propertyName, DetachedCriteria dc)
return new PropertySubqueryExpression(propertyName, "<>", null, dc);
| public static Criterion | propertyNotIn(java.lang.String propertyName, DetachedCriteria dc)
return new PropertySubqueryExpression(propertyName, "not in", null, dc);
|
|