Package | Description |
---|---|
org.hibernate |
This package defines the central Hibernate APIs.
|
org.hibernate.criterion |
A framework for defining restriction criteria and order criteria.
|
org.hibernate.internal |
An internal package containing mostly implementations of central Hibernate APIs.
|
Modifier and Type | Method and Description |
---|---|
Criteria |
Criteria.add(Criterion criterion)
Add a
restriction to constrain the results to be
retrieved. |
Criteria |
Criteria.createAlias(String associationPath,
String alias,
int joinType,
Criterion withClause)
Deprecated.
|
Criteria |
Criteria.createAlias(String associationPath,
String alias,
JoinType joinType,
Criterion withClause)
Join an association using the specified join-type, assigning an alias
to the joined association.
|
Criteria |
Criteria.createCriteria(String associationPath,
String alias,
int joinType,
Criterion withClause)
|
Criteria |
Criteria.createCriteria(String associationPath,
String alias,
JoinType joinType,
Criterion withClause)
Create a new Criteria, "rooted" at the associated entity,
assigning the given alias and using the specified join type.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractEmptinessExpression
Implementation of AbstractEmptinessExpression.
|
class |
BetweenExpression
Constrains a property to between two values
|
class |
Conjunction |
class |
Disjunction |
class |
EmptyExpression |
class |
Example
Support for query by example.
|
class |
ExistsSubqueryExpression |
class |
IdentifierEqExpression
An identifier constraint
|
class |
IlikeExpression
Deprecated.
|
class |
InExpression
Constrains the property to a specified list of values
|
class |
Junction
A sequence of a logical expressions combined by some
associative logical operator
|
class |
LikeExpression
A criterion representing a "like" expression
|
class |
LogicalExpression
Superclass of binary logical expressions
|
class |
NaturalIdentifier |
class |
NotEmptyExpression |
class |
NotExpression
Negates another criterion
|
class |
NotNullExpression
Constrains a property to be non-null
|
class |
NullExpression
Constrains a property to be null
|
class |
PropertiesSubqueryExpression
A comparison between several properties value in the outer query and the result of a multicolumn subquery.
|
class |
PropertyExpression
superclass for comparisons between two properties (with SQL binary operators)
|
class |
PropertySubqueryExpression
A comparison between a property value in the outer query and the
result of a subquery
|
class |
SimpleExpression
superclass for "simple" comparisons (with SQL binary operators)
|
class |
SimpleSubqueryExpression
A comparison between a constant value and the the result of a subquery
|
class |
SizeExpression |
class |
SQLCriterion
A SQL fragment.
|
class |
SubqueryExpression |
Modifier and Type | Method and Description |
---|---|
static Criterion |
Restrictions.allEq(Map propertyNameValues)
Apply an "equals" constraint to each property in the
key set of a Map
|
Criterion |
Property.between(Object min,
Object max) |
static Criterion |
Restrictions.between(String propertyName,
Object lo,
Object hi)
Apply a "between" constraint to the named property
|
Criterion |
Property.eq(DetachedCriteria subselect) |
static Criterion |
Subqueries.eq(Object value,
DetachedCriteria dc) |
Criterion |
Property.eqAll(DetachedCriteria subselect) |
static Criterion |
Subqueries.eqAll(Object value,
DetachedCriteria dc) |
Criterion |
Property.eqOrIsNull(Object value) |
static Criterion |
Restrictions.eqOrIsNull(String propertyName,
Object value)
Apply an "equal" constraint to the named property.
|
static Criterion |
Subqueries.exists(DetachedCriteria dc) |
Criterion |
Property.ge(DetachedCriteria subselect) |
static Criterion |
Subqueries.ge(Object value,
DetachedCriteria dc) |
Criterion |
Property.geAll(DetachedCriteria subselect) |
static Criterion |
Subqueries.geAll(Object value,
DetachedCriteria dc) |
Criterion |
Property.geSome(DetachedCriteria subselect) |
static Criterion |
Subqueries.geSome(Object value,
DetachedCriteria dc) |
Criterion |
Property.gt(DetachedCriteria subselect) |
static Criterion |
Subqueries.gt(Object value,
DetachedCriteria dc) |
Criterion |
Property.gtAll(DetachedCriteria subselect) |
static Criterion |
Subqueries.gtAll(Object value,
DetachedCriteria dc) |
Criterion |
Property.gtSome(DetachedCriteria subselect) |
static Criterion |
Subqueries.gtSome(Object value,
DetachedCriteria dc) |
static Criterion |
Restrictions.idEq(Object value)
Apply an "equal" constraint to the identifier property
|
static Criterion |
Restrictions.ilike(String propertyName,
Object value)
A case-insensitive "like", similar to Postgres ilike
operator
|
static Criterion |
Restrictions.ilike(String propertyName,
String value,
MatchMode matchMode)
A case-insensitive "like", similar to Postgres ilike
operator
|
Criterion |
Property.in(Collection values) |
Criterion |
Property.in(DetachedCriteria subselect) |
Criterion |
Property.in(Object[] values) |
static Criterion |
Subqueries.in(Object value,
DetachedCriteria dc) |
static Criterion |
Restrictions.in(String propertyName,
Collection values)
Apply an "in" constraint to the named property
|
static Criterion |
Restrictions.in(String propertyName,
Object[] values)
Apply an "in" constraint to the named property
|
Criterion |
Property.isEmpty() |
static Criterion |
Restrictions.isEmpty(String propertyName)
Constrain a collection valued property to be empty
|
Criterion |
Property.isNotEmpty() |
static Criterion |
Restrictions.isNotEmpty(String propertyName)
Constrain a collection valued property to be non-empty
|
Criterion |
Property.isNotNull() |
static Criterion |
Restrictions.isNotNull(String propertyName)
Apply an "is not null" constraint to the named property
|
Criterion |
Property.isNull() |
static Criterion |
Restrictions.isNull(String propertyName)
Apply an "is null" constraint to the named property
|
Criterion |
Property.le(DetachedCriteria subselect) |
static Criterion |
Subqueries.le(Object value,
DetachedCriteria dc) |
Criterion |
Property.leAll(DetachedCriteria subselect) |
static Criterion |
Subqueries.leAll(Object value,
DetachedCriteria dc) |
Criterion |
Property.leSome(DetachedCriteria subselect) |
static Criterion |
Subqueries.leSome(Object value,
DetachedCriteria dc) |
Criterion |
Property.lt(DetachedCriteria subselect) |
static Criterion |
Subqueries.lt(Object value,
DetachedCriteria dc) |
Criterion |
Property.ltAll(DetachedCriteria subselect) |
static Criterion |
Subqueries.ltAll(Object value,
DetachedCriteria dc) |
Criterion |
Property.ltSome(DetachedCriteria subselect) |
static Criterion |
Subqueries.ltSome(Object value,
DetachedCriteria dc) |
Criterion |
Property.ne(DetachedCriteria subselect) |
static Criterion |
Subqueries.ne(Object value,
DetachedCriteria dc) |
Criterion |
Property.neOrIsNotNull(Object value) |
static Criterion |
Restrictions.neOrIsNotNull(String propertyName,
Object value)
Apply a "not equal" constraint to the named property.
|
static Criterion |
Restrictions.not(Criterion expression)
Return the negation of an expression
|
static Criterion |
Subqueries.notExists(DetachedCriteria dc) |
Criterion |
Property.notIn(DetachedCriteria subselect) |
static Criterion |
Subqueries.notIn(Object value,
DetachedCriteria dc) |
static Criterion |
Subqueries.propertiesEq(String[] propertyNames,
DetachedCriteria dc) |
static Criterion |
Subqueries.propertiesIn(String[] propertyNames,
DetachedCriteria dc) |
static Criterion |
Subqueries.propertiesNotEq(String[] propertyNames,
DetachedCriteria dc) |
static Criterion |
Subqueries.propertiesNotIn(String[] propertyNames,
DetachedCriteria dc) |
static Criterion |
Subqueries.propertyEq(String propertyName,
DetachedCriteria dc) |
static Criterion |
Subqueries.propertyEqAll(String propertyName,
DetachedCriteria dc) |
static Criterion |
Subqueries.propertyGe(String propertyName,
DetachedCriteria dc) |
static Criterion |
Subqueries.propertyGeAll(String propertyName,
DetachedCriteria dc) |
static Criterion |
Subqueries.propertyGeSome(String propertyName,
DetachedCriteria dc) |
static Criterion |
Subqueries.propertyGt(String propertyName,
DetachedCriteria dc) |
static Criterion |
Subqueries.propertyGtAll(String propertyName,
DetachedCriteria dc) |
static Criterion |
Subqueries.propertyGtSome(String propertyName,
DetachedCriteria dc) |
static Criterion |
Subqueries.propertyIn(String propertyName,
DetachedCriteria dc) |
static Criterion |
Subqueries.propertyLe(String propertyName,
DetachedCriteria dc) |
static Criterion |
Subqueries.propertyLeAll(String propertyName,
DetachedCriteria dc) |
static Criterion |
Subqueries.propertyLeSome(String propertyName,
DetachedCriteria dc) |
static Criterion |
Subqueries.propertyLt(String propertyName,
DetachedCriteria dc) |
static Criterion |
Subqueries.propertyLtAll(String propertyName,
DetachedCriteria dc) |
static Criterion |
Subqueries.propertyLtSome(String propertyName,
DetachedCriteria dc) |
static Criterion |
Subqueries.propertyNe(String propertyName,
DetachedCriteria dc) |
static Criterion |
Subqueries.propertyNotIn(String propertyName,
DetachedCriteria dc) |
static Criterion |
Restrictions.sizeEq(String propertyName,
int size)
Constrain a collection valued property by size
|
static Criterion |
Restrictions.sizeGe(String propertyName,
int size)
Constrain a collection valued property by size
|
static Criterion |
Restrictions.sizeGt(String propertyName,
int size)
Constrain a collection valued property by size
|
static Criterion |
Restrictions.sizeLe(String propertyName,
int size)
Constrain a collection valued property by size
|
static Criterion |
Restrictions.sizeLt(String propertyName,
int size)
Constrain a collection valued property by size
|
static Criterion |
Restrictions.sizeNe(String propertyName,
int size)
Constrain a collection valued property by size
|
static Criterion |
Expression.sql(String sql)
Deprecated.
|
static Criterion |
Expression.sql(String sql,
Object[] values,
Type[] types)
Deprecated.
|
static Criterion |
Expression.sql(String sql,
Object value,
Type type)
Deprecated.
|
static Criterion |
Restrictions.sqlRestriction(String sql)
Apply a constraint expressed in SQL.
|
static Criterion |
Restrictions.sqlRestriction(String sql,
Object[] values,
Type[] types)
Apply a constraint expressed in SQL, with the given JDBC
parameters.
|
static Criterion |
Restrictions.sqlRestriction(String sql,
Object value,
Type type)
Apply a constraint expressed in SQL, with the given JDBC
parameter.
|
Modifier and Type | Method and Description |
---|---|
Iterable<Criterion> |
Junction.conditions() |
Modifier and Type | Method and Description |
---|---|
Junction |
Junction.add(Criterion criterion) |
DetachedCriteria |
DetachedCriteria.add(Criterion criterion) |
static Conjunction |
Restrictions.and(Criterion... predicates)
Return the conjuction of multiple expressions
|
static LogicalExpression |
Restrictions.and(Criterion lhs,
Criterion rhs)
Return the conjuction of two expressions
|
DetachedCriteria |
DetachedCriteria.createAlias(String associationPath,
String alias,
int joinType,
Criterion withClause)
|
DetachedCriteria |
DetachedCriteria.createAlias(String associationPath,
String alias,
JoinType joinType,
Criterion withClause) |
DetachedCriteria |
DetachedCriteria.createCriteria(String associationPath,
String alias,
int joinType,
Criterion withClause)
|
DetachedCriteria |
DetachedCriteria.createCriteria(String associationPath,
String alias,
JoinType joinType,
Criterion withClause) |
static Criterion |
Restrictions.not(Criterion expression)
Return the negation of an expression
|
static Disjunction |
Restrictions.or(Criterion... predicates)
Return the disjuction of multiple expressions
|
static LogicalExpression |
Restrictions.or(Criterion lhs,
Criterion rhs)
Return the disjuction of two expressions
|
Constructor and Description |
---|
LogicalExpression(Criterion lhs,
Criterion rhs,
String op) |
NotExpression(Criterion criterion) |
Modifier and Type | Method and Description |
---|---|
Criterion |
CriteriaImpl.CriterionEntry.getCriterion() |
Criterion |
CriteriaImpl.Subcriteria.getWithClause() |
Modifier and Type | Method and Description |
---|---|
Criteria |
CriteriaImpl.add(Criteria criteriaInst,
Criterion expression) |
Criteria |
CriteriaImpl.add(Criterion expression) |
Criteria |
CriteriaImpl.Subcriteria.add(Criterion expression) |
Criteria |
CriteriaImpl.createAlias(String associationPath,
String alias,
int joinType,
Criterion withClause) |
Criteria |
CriteriaImpl.Subcriteria.createAlias(String associationPath,
String alias,
int joinType,
Criterion withClause) |
Criteria |
CriteriaImpl.createAlias(String associationPath,
String alias,
JoinType joinType,
Criterion withClause) |
Criteria |
CriteriaImpl.Subcriteria.createAlias(String associationPath,
String alias,
JoinType joinType,
Criterion withClause) |
Criteria |
CriteriaImpl.createCriteria(String associationPath,
String alias,
int joinType,
Criterion withClause) |
Criteria |
CriteriaImpl.Subcriteria.createCriteria(String associationPath,
String alias,
int joinType,
Criterion withClause) |
Criteria |
CriteriaImpl.createCriteria(String associationPath,
String alias,
JoinType joinType,
Criterion withClause) |
Criteria |
CriteriaImpl.Subcriteria.createCriteria(String associationPath,
String alias,
JoinType joinType,
Criterion withClause) |
Copyright © 2018 JBoss by Red Hat. All rights reserved.