Uses of Interface
org.hibernate.envers.query.criteria.AuditCriterion

Packages that use AuditCriterion
org.hibernate.envers.query   
org.hibernate.envers.query.criteria   
org.hibernate.envers.query.impl   
 

Uses of AuditCriterion in org.hibernate.envers.query
 

Methods in org.hibernate.envers.query that return AuditCriterion
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.
 

Methods in org.hibernate.envers.query with parameters of type AuditCriterion
 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.
 

Uses of AuditCriterion in org.hibernate.envers.query.criteria
 

Classes in org.hibernate.envers.query.criteria that implement AuditCriterion
 class AggregatedAuditExpression
           
 class AuditConjunction
           
 class AuditDisjunction
           
 class BetweenAuditExpression
           
 class IdentifierEqAuditExpression
          A criterion that expresses that the id of an entity is equal or not equal to some specified value.
 class InAuditExpression
           
 class LogicalAuditExpression
           
 class NotAuditExpression
           
 class NotNullAuditExpression
           
 class NullAuditExpression
           
 class PropertyAuditExpression
           
 class RelatedAuditExpression
           
 class RevisionTypeAuditExpression
           
 class SimpleAuditExpression
           
 

Methods in org.hibernate.envers.query.criteria that return AuditCriterion
 AuditCriterion AuditProperty.between(T lo, T hi)
          Apply a "between" constraint
 AuditCriterion AuditRelatedId.eq(Object id)
          Apply an "equal" constraint
 AuditCriterion AuditId.eq(Object id)
          Apply an "equal" constraint
 AuditCriterion AuditProperty.eq(T value)
          Apply an "equal" constraint
 AuditCriterion AuditProperty.eqProperty(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.gt(T value)
          Apply a "greater than" constraint
 AuditCriterion AuditProperty.gtProperty(String otherPropertyName)
          Apply a "greater than" constraint to another property
 AuditCriterion AuditProperty.in(Collection values)
          Apply an "in" constraint
 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.like(String value, org.hibernate.criterion.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 AuditRelatedId.ne(Object id)
          Apply a "not equal" constraint
 AuditCriterion AuditId.ne(Object id)
          Apply a "not equal" constraint
 AuditCriterion AuditProperty.ne(T value)
          Apply a "not equal" constraint
 AuditCriterion AuditProperty.neProperty(String otherPropertyName)
          Apply a "not equal" constraint to another property
 

Methods in org.hibernate.envers.query.criteria with parameters of type AuditCriterion
 ExtendableCriterion ExtendableCriterion.add(AuditCriterion criterion)
           
 AuditDisjunction AuditDisjunction.add(AuditCriterion criterion)
           
 AuditConjunction AuditConjunction.add(AuditCriterion criterion)
           
 AggregatedAuditExpression AggregatedAuditExpression.add(AuditCriterion criterion)
           
 

Constructors in org.hibernate.envers.query.criteria with parameters of type AuditCriterion
LogicalAuditExpression(AuditCriterion lhs, AuditCriterion rhs, String op)
           
NotAuditExpression(AuditCriterion criterion)
           
 

Uses of AuditCriterion in org.hibernate.envers.query.impl
 

Fields in org.hibernate.envers.query.impl with type parameters of type AuditCriterion
protected  List<AuditCriterion> AbstractAuditQuery.criterions
           
 

Methods in org.hibernate.envers.query.impl with parameters of type AuditCriterion
 AuditQuery AbstractAuditQuery.add(AuditCriterion criterion)
           
 



Copyright © 2002-2009 Red Hat Middleware, LLC. All Rights Reserved