public interface TopiaQueryBuilderAddCriteriaStep<E extends TopiaEntity>
| Modifier and Type | Method and Description |
|---|---|
TopiaQueryBuilderAddCriteriaOrRunQueryStep<E> |
addContains(String property,
Object value) |
TopiaQueryBuilderAddCriteriaOrRunQueryStep<E> |
addEquals(String property,
Object value) |
TopiaQueryBuilderAddCriteriaOrRunQueryStep<E> |
addIn(String property,
Iterable<Object> values) |
TopiaQueryBuilderAddCriteriaOrRunQueryStep<E> |
addNotNull(String property) |
TopiaQueryBuilderAddCriteriaOrRunQueryStep<E> |
addNull(String property) |
TopiaQueryBuilderAddCriteriaOrRunQueryStep<E> |
addTopiaIdEquals(String property,
String topiaId)
This method has the same behavior as
addEquals(String, Object) but
you don't need to have the entity but only the topiaId. |
TopiaQueryBuilderAddCriteriaOrRunQueryStep<E> |
addTopiaIdIn(String property,
Iterable<String> topiaIds) |
TopiaQueryBuilderRunQueryStep<E> |
setOrderByArguments(Set<String> orderByArguments) |
TopiaQueryBuilderRunQueryStep<E> |
setOrderByArguments(String... orderByArguments) |
TopiaQueryBuilderAddCriteriaOrRunQueryStep<E> addEquals(String property, Object value)
property - the name of a field of the queried entity, must be
a one-to-one or a many-to-one property.value - the value the field of the entity must be equals to argumentTopiaQueryBuilderAddCriteriaOrRunQueryStep<E> addIn(String property, Iterable<Object> values)
property - the name of a field of the queried entity, must be
a one-to-one or a many-to-one propertyvalues - the value the field of the entity must be equals to argumentTopiaQueryBuilderAddCriteriaOrRunQueryStep<E> addContains(String property, Object value)
property - the name of a field of the queried entity, must be
a one-to-many or a many-to-many propertyvalue - the value the field of the entity must be equals to argumentTopiaQueryBuilderAddCriteriaOrRunQueryStep<E> addNull(String property)
property - the name of a field of the queried entity, must be
a one-to-one or a many-to-one propertyTopiaQueryBuilderAddCriteriaOrRunQueryStep<E> addNotNull(String property)
property - the name of a field of the queried entity, must be
a one-to-one or a many-to-one propertyTopiaQueryBuilderAddCriteriaOrRunQueryStep<E> addTopiaIdEquals(String property, String topiaId)
addEquals(String, Object) but
you don't need to have the entity but only the topiaId.property - the name of a field of the queried entity, must be
a one-to-one or a many-to-one propertytopiaId - theTopiaQueryBuilderAddCriteriaOrRunQueryStep<E> addTopiaIdIn(String property, Iterable<String> topiaIds)
TopiaQueryBuilderRunQueryStep<E> setOrderByArguments(Set<String> orderByArguments)
TopiaQueryBuilderRunQueryStep<E> setOrderByArguments(String... orderByArguments)
Copyright © 2004–2013 CodeLutin. All rights reserved.