public interface TopiaQueryBuilderAddCriteriaStep<E extends TopiaEntity>
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> addNotEquals(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 not be equals to argumentTopiaQueryBuilderAddCriteriaOrRunQueryStep<E> addIn(String property, Collection<?> 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 one of the given valuesTopiaQueryBuilderAddCriteriaOrRunQueryStep<E> addNotIn(String property, Collection<?> 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 not be equals to any of the given valuesTopiaQueryBuilderAddCriteriaOrRunQueryStep<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 property of the entity must be a collection that contains valueTopiaQueryBuilderAddCriteriaOrRunQueryStep<E> addNotContains(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 property of the entity must be a collection that doesn't contain valueTopiaQueryBuilderAddCriteriaOrRunQueryStep<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, Collection<String> topiaIds)
TopiaQueryBuilderAddCriteriaOrRunQueryStep<E> addTopiaIdNotEquals(String property, String topiaId)
TopiaQueryBuilderAddCriteriaOrRunQueryStep<E> addTopiaIdNotIn(String property, Collection<String> topiaIds)
TopiaQueryBuilderRunQueryStep<E> setOrderByArguments(Set<String> orderByArguments)
TopiaQueryBuilderRunQueryStep<E> setOrderByArguments(String... orderByArguments)
TopiaQueryBuilderRunQueryStep<E> setOrderByArguments(Collection<org.nuiton.util.pagination.PaginationOrder> paginationOrders)
TopiaQueryBuilderAddCriteriaOrRunQueryStep<E> addFetch(String property)
TopiaQueryBuilderAddCriteriaOrRunQueryStep<E> addAllFetches(String property, String... otherProperties)
property - a property to load (fetch) with the entity(ies) (in a single query)otherProperties - an optional array of additional properties to load (fetch) with the entity(ies)TopiaQueryBuilderAddCriteriaOrRunQueryStep<E> addAllFetches(Collection<String> properties)
properties - a collection of properties to load (fetch) with the entity(ies) (in a single query)Copyright © 2004–2014 CodeLutin. All rights reserved.