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 |
AuditId.eq(Object id)
Apply an "equal" constraint
|
AuditCriterion |
AuditRelatedId.eq(Object id)
Applies an "equals" criteria predicate.
|
AuditCriterion |
AuditProperty.eq(T value)
Apply an "equal" constraint
|
AuditCriterion |
AuditProperty.eqProperty(String otherPropertyName)
Apply an "equal" constraint to another property
|
AuditCriterion |
AuditProperty.eqProperty(String otherAlias,
String otherPropertyName)
Apply an "equal" constraint to another property
|
AuditCriterion |
AuditProperty.ge(T value)
Apply a "greater than or equal" constraint
|
AuditCriterion |
AuditProperty.geProperty(String otherPropertyName)
Apply a "greater than or equal" constraint to another property
|
AuditCriterion |
AuditProperty.geProperty(String otherAlias,
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(String otherPropertyName)
Apply a "greater than" constraint to another property
|
AuditCriterion |
AuditProperty.gtProperty(String otherAlias,
String otherPropertyName)
Apply a "greater than" constraint to another property
|
AuditCriterion |
AuditId.hasChanged() |
AuditCriterion |
AuditProperty.hasChanged() |
AuditCriterion |
AuditId.hasNotChanged() |
AuditCriterion |
AuditProperty.hasNotChanged() |
AuditCriterion |
AuditProperty.ilike(String value,
MatchMode matchMode)
Deprecated.
since 5.2, use
AuditProperty.ilike(String, MatchMode) . |
AuditCriterion |
AuditProperty.ilike(String value,
MatchMode matchMode)
Apply on "ilike" constraint
|
AuditCriterion |
AuditProperty.ilike(T value)
Apply an "ilike" constraint
|
AuditCriterion |
AuditProperty.in(Collection values)
Apply an "in" constraint
|
AuditCriterion |
AuditRelatedId.in(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(String otherPropertyName)
Apply a "less than or equal" constraint to another property
|
AuditCriterion |
AuditProperty.leProperty(String otherAlias,
String otherPropertyName)
Apply a "less than or equal" constraint to another property
|
AuditCriterion |
AuditProperty.like(String value,
MatchMode matchMode)
Deprecated.
since 5.2, use
AuditProperty.like(String, MatchMode) . |
AuditCriterion |
AuditProperty.like(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(String otherPropertyName)
Apply a "less than" constraint to another property
|
AuditCriterion |
AuditProperty.ltProperty(String otherAlias,
String otherPropertyName)
Apply a "less than" constraint to another property
|
AuditCriterion |
AuditId.ne(Object id)
Apply a "not equal" constraint
|
AuditCriterion |
AuditRelatedId.ne(Object id)
Applies a "not equals" criteria predicate.
|
AuditCriterion |
AuditProperty.ne(T value)
Apply a "not equal" constraint
|
AuditCriterion |
AuditProperty.neProperty(String otherPropertyName)
Apply a "not equal" constraint to another property
|
AuditCriterion |
AuditProperty.neProperty(String otherAlias,
String otherPropertyName)
Apply a "not equal" constraint to another property
|
Modifier and Type | Method and Description |
---|---|
AggregatedAuditExpression |
AggregatedAuditExpression.add(AuditCriterion criterion) |
AuditConjunction |
AuditConjunction.add(AuditCriterion criterion) |
AuditDisjunction |
AuditDisjunction.add(AuditCriterion criterion) |
ExtendableCriterion |
ExtendableCriterion.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,
String op) |
NotAuditExpression(AuditCriterion criterion) |
Modifier and Type | Field and Description |
---|---|
protected List<AuditCriterion> |
AbstractAuditQuery.criterions |
Modifier and Type | Method and Description |
---|---|
AuditQuery |
AbstractAuditQuery.add(AuditCriterion criterion) |
AuditAssociationQueryImpl<Q> |
AuditAssociationQueryImpl.add(AuditCriterion criterion) |
Copyright © 2021 JBoss by Red Hat. All rights reserved.