Uses of Interface
org.axonframework.eventstore.management.Criteria

Packages that use Criteria
org.axonframework.eventstore.jpa JPA Implementation of the EventStore. 
org.axonframework.eventstore.jpa.criteria   
org.axonframework.eventstore.management   
 

Uses of Criteria in org.axonframework.eventstore.jpa
 

Methods in org.axonframework.eventstore.jpa with parameters of type Criteria
 void JpaEventStore.visitEvents(Criteria criteria, EventVisitor visitor)
           
 

Uses of Criteria in org.axonframework.eventstore.jpa.criteria
 

Classes in org.axonframework.eventstore.jpa.criteria that implement Criteria
 class BinaryOperator
          Implementation of a binary operator for the Jpa Event Store.
 class CollectionOperator
          Abstract implementation to use for testing whether an item is present in a collection or not.
 class Equals
          Implementation of the EQUALS operator for a JPA Event Store.
 class JpaCriteria
          Abstract implementation of the Criteria interface for a JPA Event Store.
 class NotEquals
          Implementations of the NOT EQUALS operator for a JPA Event Store.
 class SimpleOperator
          Implementation of all simple operators (i.e. those with a structor of value operator value.
 

Methods in org.axonframework.eventstore.jpa.criteria that return Criteria
 Criteria JpaProperty.in(Object expression)
           
 Criteria JpaProperty.notIn(Object expression)
           
 

Methods in org.axonframework.eventstore.jpa.criteria with parameters of type Criteria
 JpaCriteria JpaCriteria.and(Criteria criteria)
           
 JpaCriteria JpaCriteria.or(Criteria criteria)
           
 

Uses of Criteria in org.axonframework.eventstore.management
 

Methods in org.axonframework.eventstore.management that return Criteria
 Criteria Criteria.and(Criteria criteria)
          Returns a criteria instance where both this and given criteria must match.
 Criteria Property.greaterThan(Object expression)
          Returns a criteria instance where the property must be "greater than" the given expression.
 Criteria Property.greaterThanEquals(Object expression)
          Returns a criteria instance where the property must be "greater than" or "equal to" the given expression.
 Criteria Property.in(Object expression)
          Returns a criteria instance where the property must be "in" the given expression.
 Criteria Property.is(Object expression)
          Returns a criteria instance where the property must "equal" the given expression.
 Criteria Property.isNot(Object expression)
          Returns a criteria instance where the property must be "not equal to" the given expression.
 Criteria Property.lessThan(Object expression)
          Returns a criteria instance where the property must be "less than" the given expression.
 Criteria Property.lessThanEquals(Object expression)
          Returns a criteria instance where the property must be "less than" or "equal to" the given expression.
 Criteria Property.notIn(Object expression)
          Returns a criteria instance where the property must be "not in" the given expression.
 Criteria Criteria.or(Criteria criteria)
          Returns a criteria instance where either this or the given criteria must match.
 

Methods in org.axonframework.eventstore.management with parameters of type Criteria
 Criteria Criteria.and(Criteria criteria)
          Returns a criteria instance where both this and given criteria must match.
 Criteria Criteria.or(Criteria criteria)
          Returns a criteria instance where either this or the given criteria must match.
 void EventStoreManagement.visitEvents(Criteria criteria, EventVisitor visitor)
          Loads all events available in the event store that match the given criteria and calls EventVisitor.doWithEvent(org.axonframework.domain.DomainEventMessage) for each event found.
 



Copyright © 2010-2012. All Rights Reserved.