Package | Description |
---|---|
org.hibernate.envers.query | |
org.hibernate.envers.query.criteria | |
org.hibernate.envers.query.criteria.internal | |
org.hibernate.envers.query.internal.impl |
Modifier and Type | Method and Description |
---|---|
static AuditCriterion |
AuditEntity.and(AuditCriterion lhs,
AuditCriterion rhs)
Return the conjuction of two criterions.
|
static AuditCriterion |
AuditEntity.not(AuditCriterion expression)
Return the negation of a criterion.
|
static AuditCriterion |
AuditEntity.or(AuditCriterion lhs,
AuditCriterion rhs)
Return the disjuction of two criterions.
|
Modifier and Type | Method and Description |
---|---|
AuditAssociationQuery<Q> |
AuditAssociationQuery.add(AuditCriterion criterion) |
AuditQuery |
AuditQuery.add(AuditCriterion criterion) |
static AuditCriterion |
AuditEntity.and(AuditCriterion lhs,
AuditCriterion rhs)
Return the conjuction of two criterions.
|
static AuditCriterion |
AuditEntity.not(AuditCriterion expression)
Return the negation of a criterion.
|
static AuditCriterion |
AuditEntity.or(AuditCriterion lhs,
AuditCriterion rhs)
Return the disjuction of two criterions.
|
Modifier and Type | Class and Description |
---|---|
class |
AggregatedAuditExpression |
class |
AuditConjunction |
class |
AuditDisjunction |
Modifier and Type | Method and Description |
---|---|
AuditCriterion |
AuditProperty.between(T lo,
T hi)
Apply a "between" constraint
|
AuditCriterion |
AuditRelatedId.eq(java.lang.Object id)
Applies an "equals" criteria predicate.
|
AuditCriterion |
AuditId.eq(java.lang.Object id)
Apply an "equal" constraint
|
AuditCriterion |
AuditProperty.eq(T value)
Apply an "equal" constraint
|
AuditCriterion |
AuditProperty.eqProperty(java.lang.String otherPropertyName)
Apply an "equal" constraint to another property
|
AuditCriterion |
AuditProperty.eqProperty(java.lang.String otherAlias,
java.lang.String otherPropertyName)
Apply an "equal" constraint to another property
|
AuditCriterion |
AuditProperty.ge(T value)
Apply a "greater than or equal" constraint
|
AuditCriterion |
AuditProperty.geProperty(java.lang.String otherPropertyName)
Apply a "greater than or equal" constraint to another property
|
AuditCriterion |
AuditProperty.geProperty(java.lang.String otherAlias,
java.lang.String otherPropertyName)
Apply a "greater than or equal" constraint to another property
|
AuditCriterion |
AuditProperty.gt(T value)
Apply a "greater than" constraint
|
AuditCriterion |
AuditProperty.gtProperty(java.lang.String otherPropertyName)
Apply a "greater than" constraint to another property
|
AuditCriterion |
AuditProperty.gtProperty(java.lang.String otherAlias,
java.lang.String otherPropertyName)
Apply a "greater than" constraint to another property
|
AuditCriterion |
AuditProperty.hasChanged() |
AuditCriterion |
AuditId.hasChanged() |
AuditCriterion |
AuditProperty.hasNotChanged() |
AuditCriterion |
AuditId.hasNotChanged() |
AuditCriterion |
AuditProperty.ilike(java.lang.String value,
MatchMode matchMode)
Apply an "ilike" constraint
|
AuditCriterion |
AuditProperty.ilike(T value)
Apply an "ilike" constraint
|
AuditCriterion |
AuditProperty.in(java.util.Collection values)
Apply an "in" constraint
|
AuditCriterion |
AuditRelatedId.in(java.lang.Object[] values)
Applies an "in" criteria predicate.
|
AuditCriterion |
AuditProperty.in(T[] values)
Apply an "in" constraint
|
AuditCriterion |
AuditProperty.isNotNull()
Apply an "is not null" constraint to the another property
|
AuditCriterion |
AuditProperty.isNull()
Apply an "is null" constraint
|
AuditCriterion |
AuditProperty.le(T value)
Apply a "less than or equal" constraint
|
AuditCriterion |
AuditProperty.leProperty(java.lang.String otherPropertyName)
Apply a "less than or equal" constraint to another property
|
AuditCriterion |
AuditProperty.leProperty(java.lang.String otherAlias,
java.lang.String otherPropertyName)
Apply a "less than or equal" constraint to another property
|
AuditCriterion |
AuditProperty.like(java.lang.String value,
MatchMode matchMode)
Apply a "like" constraint
|
AuditCriterion |
AuditProperty.like(T value)
Apply a "like" constraint
|
AuditCriterion |
AuditProperty.lt(T value)
Apply a "less than" constraint
|
AuditCriterion |
AuditProperty.ltProperty(java.lang.String otherPropertyName)
Apply a "less than" constraint to another property
|
AuditCriterion |
AuditProperty.ltProperty(java.lang.String otherAlias,
java.lang.String otherPropertyName)
Apply a "less than" constraint to another property
|
AuditCriterion |
AuditRelatedId.ne(java.lang.Object id)
Applies a "not equals" criteria predicate.
|
AuditCriterion |
AuditId.ne(java.lang.Object id)
Apply a "not equal" constraint
|
AuditCriterion |
AuditProperty.ne(T value)
Apply a "not equal" constraint
|
AuditCriterion |
AuditProperty.neProperty(java.lang.String otherPropertyName)
Apply a "not equal" constraint to another property
|
AuditCriterion |
AuditProperty.neProperty(java.lang.String otherAlias,
java.lang.String otherPropertyName)
Apply a "not equal" constraint to another property
|
Modifier and Type | Method and Description |
---|---|
ExtendableCriterion |
ExtendableCriterion.add(AuditCriterion criterion) |
AuditConjunction |
AuditConjunction.add(AuditCriterion criterion) |
AuditDisjunction |
AuditDisjunction.add(AuditCriterion criterion) |
AggregatedAuditExpression |
AggregatedAuditExpression.add(AuditCriterion criterion) |
Modifier and Type | Class and Description |
---|---|
class |
BetweenAuditExpression |
class |
IdentifierEqAuditExpression
A criterion that expresses that the id of an entity is equal or not equal to some specified value.
|
class |
IlikeAuditExpression |
class |
InAuditExpression |
class |
LogicalAuditExpression |
class |
NotAuditExpression |
class |
NotNullAuditExpression |
class |
NullAuditExpression |
class |
PropertyAuditExpression |
class |
RelatedAuditEqualityExpression |
class |
RelatedAuditInExpression |
class |
RevisionTypeAuditExpression |
class |
SimpleAuditExpression |
Constructor and Description |
---|
LogicalAuditExpression(AuditCriterion lhs,
AuditCriterion rhs,
java.lang.String op) |
NotAuditExpression(AuditCriterion criterion) |
Modifier and Type | Field and Description |
---|---|
protected java.util.List<AuditCriterion> |
AbstractAuditQuery.criterions |
Modifier and Type | Method and Description |
---|---|
AuditQuery |
AbstractAuditQuery.add(AuditCriterion criterion) |
AuditAssociationQueryImpl<Q> |
AuditAssociationQueryImpl.add(AuditCriterion criterion) |
Copyright © 2001-2018 Red Hat, Inc. All Rights Reserved.