Uses of Class
org.ofbiz.core.entity.EntityFindOptions
Packages that use EntityFindOptions
-
Uses of EntityFindOptions in org.ofbiz.core.entity
Methods in org.ofbiz.core.entity that return EntityFindOptionsModifier and TypeMethodDescriptionEntityFindOptions.distinct()Same assetDistinct(true).EntityFindOptions.fetchSize(int fetchSize) Same assetFetchSize(int).static EntityFindOptionsEntityFindOptions.findOptions()Creates a newEntityFindOptions.EntityFindOptions.forwardOnly()Same as using bothsetSpecifyTypeAndConcur(true)andsetResultSetType(TYPE_FORWARD_ONLY).EntityFindOptions.maxResults(int maxResults) Same assetMaxResults(int).EntityFindOptions.range(int offset, int maxResults) Specifies the range of results to find.EntityFindOptions.readOnly()Same as using bothsetSpecifyTypeAndConcur(true)andsetResultSetConcurrency(int)setResultSetConcurrency(CONCUR_READ_ONLY)}.EntityFindOptions.scrollInsensitive()Same as using bothsetSpecifyTypeAndConcur(true)andsetResultSetType(TYPE_SCROLL_INSENSITIVE).EntityFindOptions.scrollSensitive()Same as using bothsetSpecifyTypeAndConcur(true)andsetResultSetType(TYPE_SCROLL_SENSITIVE).EntityFindOptions.updatable()Same as using bothsetSpecifyTypeAndConcur(true)andsetResultSetConcurrency(int)setResultSetConcurrency(CONCUR_UPDATABLE)}.Methods in org.ofbiz.core.entity with parameters of type EntityFindOptionsModifier and TypeMethodDescriptionintGenericDAO.count(ModelEntity modelEntity, String fieldName, EntityCondition entityCondition, EntityFindOptions findOptions) intGenericHelper.count(ModelEntity modelEntity, String fieldName, EntityCondition entityCondition, EntityFindOptions findOptions) Returns the count of the results that matches the specified conditionintGenericHelperDAO.count(ModelEntity modelEntity, String fieldName, EntityCondition entityCondition, EntityFindOptions findOptions) intMemoryHelper.count(ModelEntity modelEntity, String fieldName, EntityCondition entityCondition, EntityFindOptions findOptions) intDelegatorInterface.countByAnd(String entityName, String fieldName, List<? extends EntityCondition> expressions, EntityFindOptions findOptions) intGenericDelegator.countByAnd(String entityName, String fieldName, List<? extends EntityCondition> expressions, EntityFindOptions findOptions) Returns the count of the results that match all of the specified expressions (i.e.intLockedDatabaseGenericDelegator.countByAnd(String entityName, String fieldName, List<? extends EntityCondition> expressions, EntityFindOptions findOptions) intDelegatorInterface.countByCondition(String entityName, String fieldName, EntityCondition condition, EntityFindOptions findOptions) intGenericDelegator.countByCondition(String entityName, String fieldName, EntityCondition entityCondition, EntityFindOptions findOptions) Returns the count of the results that match any of the specified expressions (ie: combined using OR).intLockedDatabaseGenericDelegator.countByCondition(String entityName, String fieldName, EntityCondition condition, EntityFindOptions findOptions) intDelegatorInterface.countByOr(String entityName, String fieldName, List<? extends EntityCondition> expressions, EntityFindOptions findOptions) intGenericDelegator.countByOr(String entityName, String fieldName, List<? extends EntityCondition> expressions, EntityFindOptions findOptions) Returns the count of the results that match any of the specified expressions (i.e.intLockedDatabaseGenericDelegator.countByOr(String entityName, String fieldName, List<? extends EntityCondition> expressions, EntityFindOptions findOptions) DelegatorInterface.findListIteratorByCondition(String entityName, EntityCondition whereEntityCondition, EntityCondition havingEntityCondition, Collection<String> fieldsToSelect, List<String> orderBy, EntityFindOptions findOptions) GenericDelegator.findListIteratorByCondition(String entityName, EntityCondition whereEntityCondition, EntityCondition havingEntityCondition, Collection<String> fieldsToSelect, List<String> orderBy, EntityFindOptions findOptions) Finds GenericValues by the given conditions.GenericHelper.findListIteratorByCondition(ModelEntity modelEntity, EntityCondition whereEntityCondition, EntityCondition havingEntityCondition, Collection<String> fieldsToSelect, List<String> orderBy, EntityFindOptions findOptions) Finds GenericValues by the conditions specified in the EntityCondition object, the the EntityCondition javadoc for more details.GenericHelperDAO.findListIteratorByCondition(ModelEntity modelEntity, EntityCondition whereEntityCondition, EntityCondition havingEntityCondition, Collection<String> fieldsToSelect, List<String> orderBy, EntityFindOptions findOptions) Finds GenericValues by the conditions specified in the EntityCondition object, the the EntityCondition javadoc for more details.LockedDatabaseGenericDelegator.findListIteratorByCondition(String entityName, EntityCondition whereEntityCondition, EntityCondition havingEntityCondition, Collection<String> fieldsToSelect, List<String> orderBy, EntityFindOptions findOptions) MemoryHelper.findListIteratorByCondition(ModelEntity modelEntity, EntityCondition whereEntityCondition, EntityCondition havingEntityCondition, Collection<String> fieldsToSelect, List<String> orderBy, EntityFindOptions findOptions) The memory implementation does the *minimum* that it can to allow tests to work.GenericDAO.selectByCondition(ModelEntity modelEntity, EntityCondition entityCondition, Collection<String> fieldsToSelect, List<String> orderBy, EntityFindOptions findOptions) Finds GenericValues by the conditions specified in the EntityCondition object, see the EntityCondition javadoc for more details.GenericDAO.selectListIteratorByCondition(ModelEntity modelEntity, EntityCondition whereEntityCondition, EntityCondition havingEntityCondition, Collection<String> fieldsToSelect, List<String> orderBy, EntityFindOptions findOptions) Finds GenericValues by the conditions specified in the EntityCondition object, the the EntityCondition javadoc for more details.