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)
Copyright © 2004–2014 CodeLutin. All rights reserved.