|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use MongoCriteria | |
|---|---|
| org.axonframework.mongo3.eventstore | |
| org.axonframework.mongo3.eventstore.criteria | |
| Uses of MongoCriteria in org.axonframework.mongo3.eventstore |
|---|
| Methods in org.axonframework.mongo3.eventstore with parameters of type MongoCriteria | |
|---|---|
com.mongodb.client.MongoCursor |
StorageStrategy.findEvents(com.mongodb.client.MongoCollection<org.bson.Document> collection,
MongoCriteria criteria)
Find all events that match the given criteria in the given collection |
com.mongodb.client.MongoCursor<org.bson.Document> |
DocumentPerEventStorageStrategy.findEvents(com.mongodb.client.MongoCollection<org.bson.Document> collection,
MongoCriteria criteria)
|
com.mongodb.client.MongoCursor<org.bson.Document> |
DocumentPerCommitStorageStrategy.findEvents(com.mongodb.client.MongoCollection<org.bson.Document> collection,
MongoCriteria criteria)
|
| Uses of MongoCriteria in org.axonframework.mongo3.eventstore.criteria |
|---|
| Subclasses of MongoCriteria in org.axonframework.mongo3.eventstore.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.mongo3.eventstore.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.mongo3.eventstore.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. |
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||