|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface Property
Represents a property of the Domain Event entry stored by an Event Store. Typically, these properties must be the "indexed" values, such as timeStamp, aggregate identifier, etc.
Method Summary | |
---|---|
Criteria |
greaterThan(Object expression)
Returns a criteria instance where the property must be "greater than" the given expression . |
Criteria |
greaterThanEquals(Object expression)
Returns a criteria instance where the property must be "greater than" or "equal to" the given expression . |
Criteria |
in(Object expression)
Returns a criteria instance where the property must be "in" the given expression . |
Criteria |
is(Object expression)
Returns a criteria instance where the property must "equal" the given expression . |
Criteria |
isNot(Object expression)
Returns a criteria instance where the property must be "not equal to" the given expression . |
Criteria |
lessThan(Object expression)
Returns a criteria instance where the property must be "less than" the given expression . |
Criteria |
lessThanEquals(Object expression)
Returns a criteria instance where the property must be "less than" or "equal to" the given expression . |
Criteria |
notIn(Object expression)
Returns a criteria instance where the property must be "not in" the given expression . |
Method Detail |
---|
Criteria lessThan(Object expression)
expression
. Some event
stores also allow the given expression to be a property.
expression
- The expression to match against the property
Criteria lessThanEquals(Object expression)
expression
. Some event stores also allow the given expression to be a property.
expression
- The expression to match against the property
Criteria greaterThan(Object expression)
expression
. Some
event stores also allow the given expression to be a property.
expression
- The expression to match against the property
Criteria greaterThanEquals(Object expression)
expression
. Some event stores also allow the given expression to be a property.
expression
- The expression to match against the property
Criteria is(Object expression)
expression
. Some event stores
also allow the given expression to be a property.
expression
- The expression to match against the property
Criteria isNot(Object expression)
expression
. Some
event stores also allow the given expression to be a property.
expression
- The expression to match against the property
Criteria in(Object expression)
expression
. Some event stores
also allow the given expression to be a property.
Note that the given expression
must describe a collection of some sort.
expression
- The expression to match against the property
Criteria notIn(Object expression)
expression
. Some event
stores also allow the given expression to be a property.
expression
- The expression to match against the property
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |