|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.axonframework.eventstore.jpa.criteria.JpaProperty
public class JpaProperty
Property implementation for JPA Event Store.
Constructor Summary | |
---|---|
JpaProperty(String propertyName)
Initializes a property for the given propertyName . |
Method Summary | |
---|---|
JpaCriteria |
greaterThan(Object expression)
Returns a criteria instance where the property must be "greater than" the given expression . |
JpaCriteria |
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 . |
JpaCriteria |
is(Object expression)
Returns a criteria instance where the property must "equal" the given expression . |
JpaCriteria |
isNot(Object expression)
Returns a criteria instance where the property must be "not equal to" the given expression . |
JpaCriteria |
lessThan(Object expression)
Returns a criteria instance where the property must be "less than" the given expression . |
JpaCriteria |
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 . |
void |
parse(String entryKey,
StringBuilder stringBuilder)
Parse the property value to a valid EJQL expression. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public JpaProperty(String propertyName)
propertyName
.
propertyName
- The name of the propertyMethod Detail |
---|
public JpaCriteria lessThan(Object expression)
Property
expression
. Some event
stores also allow the given expression to be a property.
lessThan
in interface Property
expression
- The expression to match against the property
public JpaCriteria lessThanEquals(Object expression)
Property
expression
. Some event stores also allow the given expression to be a property.
lessThanEquals
in interface Property
expression
- The expression to match against the property
public JpaCriteria greaterThan(Object expression)
Property
expression
. Some
event stores also allow the given expression to be a property.
greaterThan
in interface Property
expression
- The expression to match against the property
public JpaCriteria greaterThanEquals(Object expression)
Property
expression
. Some event stores also allow the given expression to be a property.
greaterThanEquals
in interface Property
expression
- The expression to match against the property
public JpaCriteria is(Object expression)
Property
expression
. Some event stores
also allow the given expression to be a property.
is
in interface Property
expression
- The expression to match against the property
public JpaCriteria isNot(Object expression)
Property
expression
. Some
event stores also allow the given expression to be a property.
isNot
in interface Property
expression
- The expression to match against the property
public Criteria in(Object expression)
Property
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.
in
in interface Property
expression
- The expression to match against the property
public Criteria notIn(Object expression)
Property
expression
. Some event
stores also allow the given expression to be a property.
notIn
in interface Property
expression
- The expression to match against the property
public void parse(String entryKey, StringBuilder stringBuilder)
entryKey
- The variable assigned to the entry holding the propertystringBuilder
- The builder to append the expression to
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |