Uses of Class
org.axonframework.eventstore.mongo.criteria.MongoCriteria

Packages that use MongoCriteria
org.axonframework.eventstore.mongo   
org.axonframework.eventstore.mongo.criteria   
 

Uses of MongoCriteria in org.axonframework.eventstore.mongo
 

Methods in org.axonframework.eventstore.mongo with parameters of type MongoCriteria
 com.mongodb.DBCursor StorageStrategy.findEvents(com.mongodb.DBCollection collection, MongoCriteria criteria)
          Find all events that match the given criteria in the given collection
 com.mongodb.DBCursor DocumentPerEventStorageStrategy.findEvents(com.mongodb.DBCollection collection, MongoCriteria criteria)
           
 com.mongodb.DBCursor DocumentPerCommitStorageStrategy.findEvents(com.mongodb.DBCollection collection, MongoCriteria criteria)
           
 

Uses of MongoCriteria in org.axonframework.eventstore.mongo.criteria
 

Subclasses of MongoCriteria in org.axonframework.eventstore.mongo.criteria
 class And
          Representation of an AND operator for Mongo selection criteria.
 class CollectionCriteria
          Implementation of Collection operators for the Mongo Criteria, such as "In" and "NotIn".
 class Equals
          Representation of an Equals operator for Mongo selection criteria.
 class Or
          Represents the OR operator for use by the Mongo Event Store.
 class SimpleMongoOperator
          Implementation of the simple Mongo Operators (those without special structural requirements), such as Less Than, Less Than Equals, etc.
 

Methods in org.axonframework.eventstore.mongo.criteria that return MongoCriteria
 MongoCriteria MongoProperty.greaterThan(Object expression)
           
 MongoCriteria MongoProperty.greaterThanEquals(Object expression)
           
 MongoCriteria MongoProperty.in(Object expression)
           
 MongoCriteria MongoProperty.is(Object expression)
           
 MongoCriteria MongoProperty.isNot(Object expression)
           
 MongoCriteria MongoProperty.lessThan(Object expression)
           
 MongoCriteria MongoProperty.lessThanEquals(Object expression)
           
 MongoCriteria MongoProperty.notIn(Object expression)
           
 

Constructors in org.axonframework.eventstore.mongo.criteria with parameters of type MongoCriteria
And(MongoCriteria criteria1, MongoCriteria criteria2)
          Returns a criterium that requires both criteria1 and criteria2 to be true.
Or(MongoCriteria criteria1, MongoCriteria criteria2)
          Initializes an OR operator where one of the given criteria must evaluate to true.
 



Copyright © 2010-2016. All Rights Reserved.