Interface CommercePriceModifierPersistence

All Superinterfaces:
com.liferay.portal.kernel.service.persistence.BasePersistence<CommercePriceModifier>, com.liferay.portal.kernel.service.persistence.change.tracking.CTPersistence<CommercePriceModifier>

@ProviderType public interface CommercePriceModifierPersistence extends com.liferay.portal.kernel.service.persistence.BasePersistence<CommercePriceModifier>, com.liferay.portal.kernel.service.persistence.change.tracking.CTPersistence<CommercePriceModifier>
The persistence interface for the commerce price modifier service.

Caching information and settings can be found in portal.properties

See Also:
Generated:
  • Method Details

    • findByUuid

      List<CommercePriceModifier> findByUuid(String uuid)
      Returns all the commerce price modifiers where uuid = ?.
      Parameters:
      uuid - the uuid
      Returns:
      the matching commerce price modifiers
    • findByUuid

      List<CommercePriceModifier> findByUuid(String uuid, int start, int end)
      Returns a range of all the commerce price modifiers where uuid = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from CommercePriceModifierModelImpl.

      Parameters:
      uuid - the uuid
      start - the lower bound of the range of commerce price modifiers
      end - the upper bound of the range of commerce price modifiers (not inclusive)
      Returns:
      the range of matching commerce price modifiers
    • findByUuid

      List<CommercePriceModifier> findByUuid(String uuid, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<CommercePriceModifier> orderByComparator)
      Returns an ordered range of all the commerce price modifiers where uuid = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from CommercePriceModifierModelImpl.

      Parameters:
      uuid - the uuid
      start - the lower bound of the range of commerce price modifiers
      end - the upper bound of the range of commerce price modifiers (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching commerce price modifiers
    • findByUuid

      List<CommercePriceModifier> findByUuid(String uuid, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<CommercePriceModifier> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the commerce price modifiers where uuid = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from CommercePriceModifierModelImpl.

      Parameters:
      uuid - the uuid
      start - the lower bound of the range of commerce price modifiers
      end - the upper bound of the range of commerce price modifiers (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching commerce price modifiers
    • findByUuid_First

      CommercePriceModifier findByUuid_First(String uuid, com.liferay.portal.kernel.util.OrderByComparator<CommercePriceModifier> orderByComparator) throws NoSuchPriceModifierException
      Returns the first commerce price modifier in the ordered set where uuid = ?.
      Parameters:
      uuid - the uuid
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching commerce price modifier
      Throws:
      NoSuchPriceModifierException - if a matching commerce price modifier could not be found
    • fetchByUuid_First

      CommercePriceModifier fetchByUuid_First(String uuid, com.liferay.portal.kernel.util.OrderByComparator<CommercePriceModifier> orderByComparator)
      Returns the first commerce price modifier in the ordered set where uuid = ?.
      Parameters:
      uuid - the uuid
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching commerce price modifier, or null if a matching commerce price modifier could not be found
    • findByUuid_Last

      CommercePriceModifier findByUuid_Last(String uuid, com.liferay.portal.kernel.util.OrderByComparator<CommercePriceModifier> orderByComparator) throws NoSuchPriceModifierException
      Returns the last commerce price modifier in the ordered set where uuid = ?.
      Parameters:
      uuid - the uuid
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching commerce price modifier
      Throws:
      NoSuchPriceModifierException - if a matching commerce price modifier could not be found
    • fetchByUuid_Last

      CommercePriceModifier fetchByUuid_Last(String uuid, com.liferay.portal.kernel.util.OrderByComparator<CommercePriceModifier> orderByComparator)
      Returns the last commerce price modifier in the ordered set where uuid = ?.
      Parameters:
      uuid - the uuid
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching commerce price modifier, or null if a matching commerce price modifier could not be found
    • findByUuid_PrevAndNext

      CommercePriceModifier[] findByUuid_PrevAndNext(long commercePriceModifierId, String uuid, com.liferay.portal.kernel.util.OrderByComparator<CommercePriceModifier> orderByComparator) throws NoSuchPriceModifierException
      Returns the commerce price modifiers before and after the current commerce price modifier in the ordered set where uuid = ?.
      Parameters:
      commercePriceModifierId - the primary key of the current commerce price modifier
      uuid - the uuid
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next commerce price modifier
      Throws:
      NoSuchPriceModifierException - if a commerce price modifier with the primary key could not be found
    • removeByUuid

      void removeByUuid(String uuid)
      Removes all the commerce price modifiers where uuid = ? from the database.
      Parameters:
      uuid - the uuid
    • countByUuid

      int countByUuid(String uuid)
      Returns the number of commerce price modifiers where uuid = ?.
      Parameters:
      uuid - the uuid
      Returns:
      the number of matching commerce price modifiers
    • findByUUID_G

      CommercePriceModifier findByUUID_G(String uuid, long groupId) throws NoSuchPriceModifierException
      Returns the commerce price modifier where uuid = ? and groupId = ? or throws a NoSuchPriceModifierException if it could not be found.
      Parameters:
      uuid - the uuid
      groupId - the group ID
      Returns:
      the matching commerce price modifier
      Throws:
      NoSuchPriceModifierException - if a matching commerce price modifier could not be found
    • fetchByUUID_G

      CommercePriceModifier fetchByUUID_G(String uuid, long groupId)
      Returns the commerce price modifier where uuid = ? and groupId = ? or returns null if it could not be found. Uses the finder cache.
      Parameters:
      uuid - the uuid
      groupId - the group ID
      Returns:
      the matching commerce price modifier, or null if a matching commerce price modifier could not be found
    • fetchByUUID_G

      CommercePriceModifier fetchByUUID_G(String uuid, long groupId, boolean useFinderCache)
      Returns the commerce price modifier where uuid = ? and groupId = ? or returns null if it could not be found, optionally using the finder cache.
      Parameters:
      uuid - the uuid
      groupId - the group ID
      useFinderCache - whether to use the finder cache
      Returns:
      the matching commerce price modifier, or null if a matching commerce price modifier could not be found
    • removeByUUID_G

      CommercePriceModifier removeByUUID_G(String uuid, long groupId) throws NoSuchPriceModifierException
      Removes the commerce price modifier where uuid = ? and groupId = ? from the database.
      Parameters:
      uuid - the uuid
      groupId - the group ID
      Returns:
      the commerce price modifier that was removed
      Throws:
      NoSuchPriceModifierException
    • countByUUID_G

      int countByUUID_G(String uuid, long groupId)
      Returns the number of commerce price modifiers where uuid = ? and groupId = ?.
      Parameters:
      uuid - the uuid
      groupId - the group ID
      Returns:
      the number of matching commerce price modifiers
    • findByUuid_C

      List<CommercePriceModifier> findByUuid_C(String uuid, long companyId)
      Returns all the commerce price modifiers where uuid = ? and companyId = ?.
      Parameters:
      uuid - the uuid
      companyId - the company ID
      Returns:
      the matching commerce price modifiers
    • findByUuid_C

      List<CommercePriceModifier> findByUuid_C(String uuid, long companyId, int start, int end)
      Returns a range of all the commerce price modifiers where uuid = ? and companyId = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from CommercePriceModifierModelImpl.

      Parameters:
      uuid - the uuid
      companyId - the company ID
      start - the lower bound of the range of commerce price modifiers
      end - the upper bound of the range of commerce price modifiers (not inclusive)
      Returns:
      the range of matching commerce price modifiers
    • findByUuid_C

      List<CommercePriceModifier> findByUuid_C(String uuid, long companyId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<CommercePriceModifier> orderByComparator)
      Returns an ordered range of all the commerce price modifiers where uuid = ? and companyId = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from CommercePriceModifierModelImpl.

      Parameters:
      uuid - the uuid
      companyId - the company ID
      start - the lower bound of the range of commerce price modifiers
      end - the upper bound of the range of commerce price modifiers (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching commerce price modifiers
    • findByUuid_C

      List<CommercePriceModifier> findByUuid_C(String uuid, long companyId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<CommercePriceModifier> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the commerce price modifiers where uuid = ? and companyId = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from CommercePriceModifierModelImpl.

      Parameters:
      uuid - the uuid
      companyId - the company ID
      start - the lower bound of the range of commerce price modifiers
      end - the upper bound of the range of commerce price modifiers (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching commerce price modifiers
    • findByUuid_C_First

      CommercePriceModifier findByUuid_C_First(String uuid, long companyId, com.liferay.portal.kernel.util.OrderByComparator<CommercePriceModifier> orderByComparator) throws NoSuchPriceModifierException
      Returns the first commerce price modifier in the ordered set where uuid = ? and companyId = ?.
      Parameters:
      uuid - the uuid
      companyId - the company ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching commerce price modifier
      Throws:
      NoSuchPriceModifierException - if a matching commerce price modifier could not be found
    • fetchByUuid_C_First

      CommercePriceModifier fetchByUuid_C_First(String uuid, long companyId, com.liferay.portal.kernel.util.OrderByComparator<CommercePriceModifier> orderByComparator)
      Returns the first commerce price modifier in the ordered set where uuid = ? and companyId = ?.
      Parameters:
      uuid - the uuid
      companyId - the company ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching commerce price modifier, or null if a matching commerce price modifier could not be found
    • findByUuid_C_Last

      CommercePriceModifier findByUuid_C_Last(String uuid, long companyId, com.liferay.portal.kernel.util.OrderByComparator<CommercePriceModifier> orderByComparator) throws NoSuchPriceModifierException
      Returns the last commerce price modifier in the ordered set where uuid = ? and companyId = ?.
      Parameters:
      uuid - the uuid
      companyId - the company ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching commerce price modifier
      Throws:
      NoSuchPriceModifierException - if a matching commerce price modifier could not be found
    • fetchByUuid_C_Last

      CommercePriceModifier fetchByUuid_C_Last(String uuid, long companyId, com.liferay.portal.kernel.util.OrderByComparator<CommercePriceModifier> orderByComparator)
      Returns the last commerce price modifier in the ordered set where uuid = ? and companyId = ?.
      Parameters:
      uuid - the uuid
      companyId - the company ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching commerce price modifier, or null if a matching commerce price modifier could not be found
    • findByUuid_C_PrevAndNext

      CommercePriceModifier[] findByUuid_C_PrevAndNext(long commercePriceModifierId, String uuid, long companyId, com.liferay.portal.kernel.util.OrderByComparator<CommercePriceModifier> orderByComparator) throws NoSuchPriceModifierException
      Returns the commerce price modifiers before and after the current commerce price modifier in the ordered set where uuid = ? and companyId = ?.
      Parameters:
      commercePriceModifierId - the primary key of the current commerce price modifier
      uuid - the uuid
      companyId - the company ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next commerce price modifier
      Throws:
      NoSuchPriceModifierException - if a commerce price modifier with the primary key could not be found
    • removeByUuid_C

      void removeByUuid_C(String uuid, long companyId)
      Removes all the commerce price modifiers where uuid = ? and companyId = ? from the database.
      Parameters:
      uuid - the uuid
      companyId - the company ID
    • countByUuid_C

      int countByUuid_C(String uuid, long companyId)
      Returns the number of commerce price modifiers where uuid = ? and companyId = ?.
      Parameters:
      uuid - the uuid
      companyId - the company ID
      Returns:
      the number of matching commerce price modifiers
    • findByCompanyId

      List<CommercePriceModifier> findByCompanyId(long companyId)
      Returns all the commerce price modifiers where companyId = ?.
      Parameters:
      companyId - the company ID
      Returns:
      the matching commerce price modifiers
    • findByCompanyId

      List<CommercePriceModifier> findByCompanyId(long companyId, int start, int end)
      Returns a range of all the commerce price modifiers where companyId = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from CommercePriceModifierModelImpl.

      Parameters:
      companyId - the company ID
      start - the lower bound of the range of commerce price modifiers
      end - the upper bound of the range of commerce price modifiers (not inclusive)
      Returns:
      the range of matching commerce price modifiers
    • findByCompanyId

      List<CommercePriceModifier> findByCompanyId(long companyId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<CommercePriceModifier> orderByComparator)
      Returns an ordered range of all the commerce price modifiers where companyId = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from CommercePriceModifierModelImpl.

      Parameters:
      companyId - the company ID
      start - the lower bound of the range of commerce price modifiers
      end - the upper bound of the range of commerce price modifiers (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching commerce price modifiers
    • findByCompanyId

      List<CommercePriceModifier> findByCompanyId(long companyId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<CommercePriceModifier> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the commerce price modifiers where companyId = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from CommercePriceModifierModelImpl.

      Parameters:
      companyId - the company ID
      start - the lower bound of the range of commerce price modifiers
      end - the upper bound of the range of commerce price modifiers (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching commerce price modifiers
    • findByCompanyId_First

      CommercePriceModifier findByCompanyId_First(long companyId, com.liferay.portal.kernel.util.OrderByComparator<CommercePriceModifier> orderByComparator) throws NoSuchPriceModifierException
      Returns the first commerce price modifier in the ordered set where companyId = ?.
      Parameters:
      companyId - the company ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching commerce price modifier
      Throws:
      NoSuchPriceModifierException - if a matching commerce price modifier could not be found
    • fetchByCompanyId_First

      CommercePriceModifier fetchByCompanyId_First(long companyId, com.liferay.portal.kernel.util.OrderByComparator<CommercePriceModifier> orderByComparator)
      Returns the first commerce price modifier in the ordered set where companyId = ?.
      Parameters:
      companyId - the company ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching commerce price modifier, or null if a matching commerce price modifier could not be found
    • findByCompanyId_Last

      CommercePriceModifier findByCompanyId_Last(long companyId, com.liferay.portal.kernel.util.OrderByComparator<CommercePriceModifier> orderByComparator) throws NoSuchPriceModifierException
      Returns the last commerce price modifier in the ordered set where companyId = ?.
      Parameters:
      companyId - the company ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching commerce price modifier
      Throws:
      NoSuchPriceModifierException - if a matching commerce price modifier could not be found
    • fetchByCompanyId_Last

      CommercePriceModifier fetchByCompanyId_Last(long companyId, com.liferay.portal.kernel.util.OrderByComparator<CommercePriceModifier> orderByComparator)
      Returns the last commerce price modifier in the ordered set where companyId = ?.
      Parameters:
      companyId - the company ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching commerce price modifier, or null if a matching commerce price modifier could not be found
    • findByCompanyId_PrevAndNext

      CommercePriceModifier[] findByCompanyId_PrevAndNext(long commercePriceModifierId, long companyId, com.liferay.portal.kernel.util.OrderByComparator<CommercePriceModifier> orderByComparator) throws NoSuchPriceModifierException
      Returns the commerce price modifiers before and after the current commerce price modifier in the ordered set where companyId = ?.
      Parameters:
      commercePriceModifierId - the primary key of the current commerce price modifier
      companyId - the company ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next commerce price modifier
      Throws:
      NoSuchPriceModifierException - if a commerce price modifier with the primary key could not be found
    • removeByCompanyId

      void removeByCompanyId(long companyId)
      Removes all the commerce price modifiers where companyId = ? from the database.
      Parameters:
      companyId - the company ID
    • countByCompanyId

      int countByCompanyId(long companyId)
      Returns the number of commerce price modifiers where companyId = ?.
      Parameters:
      companyId - the company ID
      Returns:
      the number of matching commerce price modifiers
    • findByCommercePriceListId

      List<CommercePriceModifier> findByCommercePriceListId(long commercePriceListId)
      Returns all the commerce price modifiers where commercePriceListId = ?.
      Parameters:
      commercePriceListId - the commerce price list ID
      Returns:
      the matching commerce price modifiers
    • findByCommercePriceListId

      List<CommercePriceModifier> findByCommercePriceListId(long commercePriceListId, int start, int end)
      Returns a range of all the commerce price modifiers where commercePriceListId = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from CommercePriceModifierModelImpl.

      Parameters:
      commercePriceListId - the commerce price list ID
      start - the lower bound of the range of commerce price modifiers
      end - the upper bound of the range of commerce price modifiers (not inclusive)
      Returns:
      the range of matching commerce price modifiers
    • findByCommercePriceListId

      List<CommercePriceModifier> findByCommercePriceListId(long commercePriceListId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<CommercePriceModifier> orderByComparator)
      Returns an ordered range of all the commerce price modifiers where commercePriceListId = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from CommercePriceModifierModelImpl.

      Parameters:
      commercePriceListId - the commerce price list ID
      start - the lower bound of the range of commerce price modifiers
      end - the upper bound of the range of commerce price modifiers (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching commerce price modifiers
    • findByCommercePriceListId

      List<CommercePriceModifier> findByCommercePriceListId(long commercePriceListId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<CommercePriceModifier> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the commerce price modifiers where commercePriceListId = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from CommercePriceModifierModelImpl.

      Parameters:
      commercePriceListId - the commerce price list ID
      start - the lower bound of the range of commerce price modifiers
      end - the upper bound of the range of commerce price modifiers (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching commerce price modifiers
    • findByCommercePriceListId_First

      CommercePriceModifier findByCommercePriceListId_First(long commercePriceListId, com.liferay.portal.kernel.util.OrderByComparator<CommercePriceModifier> orderByComparator) throws NoSuchPriceModifierException
      Returns the first commerce price modifier in the ordered set where commercePriceListId = ?.
      Parameters:
      commercePriceListId - the commerce price list ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching commerce price modifier
      Throws:
      NoSuchPriceModifierException - if a matching commerce price modifier could not be found
    • fetchByCommercePriceListId_First

      CommercePriceModifier fetchByCommercePriceListId_First(long commercePriceListId, com.liferay.portal.kernel.util.OrderByComparator<CommercePriceModifier> orderByComparator)
      Returns the first commerce price modifier in the ordered set where commercePriceListId = ?.
      Parameters:
      commercePriceListId - the commerce price list ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching commerce price modifier, or null if a matching commerce price modifier could not be found
    • findByCommercePriceListId_Last

      CommercePriceModifier findByCommercePriceListId_Last(long commercePriceListId, com.liferay.portal.kernel.util.OrderByComparator<CommercePriceModifier> orderByComparator) throws NoSuchPriceModifierException
      Returns the last commerce price modifier in the ordered set where commercePriceListId = ?.
      Parameters:
      commercePriceListId - the commerce price list ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching commerce price modifier
      Throws:
      NoSuchPriceModifierException - if a matching commerce price modifier could not be found
    • fetchByCommercePriceListId_Last

      CommercePriceModifier fetchByCommercePriceListId_Last(long commercePriceListId, com.liferay.portal.kernel.util.OrderByComparator<CommercePriceModifier> orderByComparator)
      Returns the last commerce price modifier in the ordered set where commercePriceListId = ?.
      Parameters:
      commercePriceListId - the commerce price list ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching commerce price modifier, or null if a matching commerce price modifier could not be found
    • findByCommercePriceListId_PrevAndNext

      CommercePriceModifier[] findByCommercePriceListId_PrevAndNext(long commercePriceModifierId, long commercePriceListId, com.liferay.portal.kernel.util.OrderByComparator<CommercePriceModifier> orderByComparator) throws NoSuchPriceModifierException
      Returns the commerce price modifiers before and after the current commerce price modifier in the ordered set where commercePriceListId = ?.
      Parameters:
      commercePriceModifierId - the primary key of the current commerce price modifier
      commercePriceListId - the commerce price list ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next commerce price modifier
      Throws:
      NoSuchPriceModifierException - if a commerce price modifier with the primary key could not be found
    • removeByCommercePriceListId

      void removeByCommercePriceListId(long commercePriceListId)
      Removes all the commerce price modifiers where commercePriceListId = ? from the database.
      Parameters:
      commercePriceListId - the commerce price list ID
    • countByCommercePriceListId

      int countByCommercePriceListId(long commercePriceListId)
      Returns the number of commerce price modifiers where commercePriceListId = ?.
      Parameters:
      commercePriceListId - the commerce price list ID
      Returns:
      the number of matching commerce price modifiers
    • findByC_T

      List<CommercePriceModifier> findByC_T(long companyId, String target)
      Returns all the commerce price modifiers where companyId = ? and target = ?.
      Parameters:
      companyId - the company ID
      target - the target
      Returns:
      the matching commerce price modifiers
    • findByC_T

      List<CommercePriceModifier> findByC_T(long companyId, String target, int start, int end)
      Returns a range of all the commerce price modifiers where companyId = ? and target = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from CommercePriceModifierModelImpl.

      Parameters:
      companyId - the company ID
      target - the target
      start - the lower bound of the range of commerce price modifiers
      end - the upper bound of the range of commerce price modifiers (not inclusive)
      Returns:
      the range of matching commerce price modifiers
    • findByC_T

      List<CommercePriceModifier> findByC_T(long companyId, String target, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<CommercePriceModifier> orderByComparator)
      Returns an ordered range of all the commerce price modifiers where companyId = ? and target = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from CommercePriceModifierModelImpl.

      Parameters:
      companyId - the company ID
      target - the target
      start - the lower bound of the range of commerce price modifiers
      end - the upper bound of the range of commerce price modifiers (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching commerce price modifiers
    • findByC_T

      List<CommercePriceModifier> findByC_T(long companyId, String target, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<CommercePriceModifier> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the commerce price modifiers where companyId = ? and target = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from CommercePriceModifierModelImpl.

      Parameters:
      companyId - the company ID
      target - the target
      start - the lower bound of the range of commerce price modifiers
      end - the upper bound of the range of commerce price modifiers (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching commerce price modifiers
    • findByC_T_First

      CommercePriceModifier findByC_T_First(long companyId, String target, com.liferay.portal.kernel.util.OrderByComparator<CommercePriceModifier> orderByComparator) throws NoSuchPriceModifierException
      Returns the first commerce price modifier in the ordered set where companyId = ? and target = ?.
      Parameters:
      companyId - the company ID
      target - the target
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching commerce price modifier
      Throws:
      NoSuchPriceModifierException - if a matching commerce price modifier could not be found
    • fetchByC_T_First

      CommercePriceModifier fetchByC_T_First(long companyId, String target, com.liferay.portal.kernel.util.OrderByComparator<CommercePriceModifier> orderByComparator)
      Returns the first commerce price modifier in the ordered set where companyId = ? and target = ?.
      Parameters:
      companyId - the company ID
      target - the target
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching commerce price modifier, or null if a matching commerce price modifier could not be found
    • findByC_T_Last

      CommercePriceModifier findByC_T_Last(long companyId, String target, com.liferay.portal.kernel.util.OrderByComparator<CommercePriceModifier> orderByComparator) throws NoSuchPriceModifierException
      Returns the last commerce price modifier in the ordered set where companyId = ? and target = ?.
      Parameters:
      companyId - the company ID
      target - the target
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching commerce price modifier
      Throws:
      NoSuchPriceModifierException - if a matching commerce price modifier could not be found
    • fetchByC_T_Last

      CommercePriceModifier fetchByC_T_Last(long companyId, String target, com.liferay.portal.kernel.util.OrderByComparator<CommercePriceModifier> orderByComparator)
      Returns the last commerce price modifier in the ordered set where companyId = ? and target = ?.
      Parameters:
      companyId - the company ID
      target - the target
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching commerce price modifier, or null if a matching commerce price modifier could not be found
    • findByC_T_PrevAndNext

      CommercePriceModifier[] findByC_T_PrevAndNext(long commercePriceModifierId, long companyId, String target, com.liferay.portal.kernel.util.OrderByComparator<CommercePriceModifier> orderByComparator) throws NoSuchPriceModifierException
      Returns the commerce price modifiers before and after the current commerce price modifier in the ordered set where companyId = ? and target = ?.
      Parameters:
      commercePriceModifierId - the primary key of the current commerce price modifier
      companyId - the company ID
      target - the target
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next commerce price modifier
      Throws:
      NoSuchPriceModifierException - if a commerce price modifier with the primary key could not be found
    • removeByC_T

      void removeByC_T(long companyId, String target)
      Removes all the commerce price modifiers where companyId = ? and target = ? from the database.
      Parameters:
      companyId - the company ID
      target - the target
    • countByC_T

      int countByC_T(long companyId, String target)
      Returns the number of commerce price modifiers where companyId = ? and target = ?.
      Parameters:
      companyId - the company ID
      target - the target
      Returns:
      the number of matching commerce price modifiers
    • findByLtD_S

      List<CommercePriceModifier> findByLtD_S(Date displayDate, int status)
      Returns all the commerce price modifiers where displayDate < ? and status = ?.
      Parameters:
      displayDate - the display date
      status - the status
      Returns:
      the matching commerce price modifiers
    • findByLtD_S

      List<CommercePriceModifier> findByLtD_S(Date displayDate, int status, int start, int end)
      Returns a range of all the commerce price modifiers where displayDate < ? and status = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from CommercePriceModifierModelImpl.

      Parameters:
      displayDate - the display date
      status - the status
      start - the lower bound of the range of commerce price modifiers
      end - the upper bound of the range of commerce price modifiers (not inclusive)
      Returns:
      the range of matching commerce price modifiers
    • findByLtD_S

      List<CommercePriceModifier> findByLtD_S(Date displayDate, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<CommercePriceModifier> orderByComparator)
      Returns an ordered range of all the commerce price modifiers where displayDate < ? and status = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from CommercePriceModifierModelImpl.

      Parameters:
      displayDate - the display date
      status - the status
      start - the lower bound of the range of commerce price modifiers
      end - the upper bound of the range of commerce price modifiers (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching commerce price modifiers
    • findByLtD_S

      List<CommercePriceModifier> findByLtD_S(Date displayDate, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<CommercePriceModifier> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the commerce price modifiers where displayDate < ? and status = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from CommercePriceModifierModelImpl.

      Parameters:
      displayDate - the display date
      status - the status
      start - the lower bound of the range of commerce price modifiers
      end - the upper bound of the range of commerce price modifiers (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching commerce price modifiers
    • findByLtD_S_First

      CommercePriceModifier findByLtD_S_First(Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<CommercePriceModifier> orderByComparator) throws NoSuchPriceModifierException
      Returns the first commerce price modifier in the ordered set where displayDate < ? and status = ?.
      Parameters:
      displayDate - the display date
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching commerce price modifier
      Throws:
      NoSuchPriceModifierException - if a matching commerce price modifier could not be found
    • fetchByLtD_S_First

      CommercePriceModifier fetchByLtD_S_First(Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<CommercePriceModifier> orderByComparator)
      Returns the first commerce price modifier in the ordered set where displayDate < ? and status = ?.
      Parameters:
      displayDate - the display date
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching commerce price modifier, or null if a matching commerce price modifier could not be found
    • findByLtD_S_Last

      CommercePriceModifier findByLtD_S_Last(Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<CommercePriceModifier> orderByComparator) throws NoSuchPriceModifierException
      Returns the last commerce price modifier in the ordered set where displayDate < ? and status = ?.
      Parameters:
      displayDate - the display date
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching commerce price modifier
      Throws:
      NoSuchPriceModifierException - if a matching commerce price modifier could not be found
    • fetchByLtD_S_Last

      CommercePriceModifier fetchByLtD_S_Last(Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<CommercePriceModifier> orderByComparator)
      Returns the last commerce price modifier in the ordered set where displayDate < ? and status = ?.
      Parameters:
      displayDate - the display date
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching commerce price modifier, or null if a matching commerce price modifier could not be found
    • findByLtD_S_PrevAndNext

      CommercePriceModifier[] findByLtD_S_PrevAndNext(long commercePriceModifierId, Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<CommercePriceModifier> orderByComparator) throws NoSuchPriceModifierException
      Returns the commerce price modifiers before and after the current commerce price modifier in the ordered set where displayDate < ? and status = ?.
      Parameters:
      commercePriceModifierId - the primary key of the current commerce price modifier
      displayDate - the display date
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next commerce price modifier
      Throws:
      NoSuchPriceModifierException - if a commerce price modifier with the primary key could not be found
    • removeByLtD_S

      void removeByLtD_S(Date displayDate, int status)
      Removes all the commerce price modifiers where displayDate < ? and status = ? from the database.
      Parameters:
      displayDate - the display date
      status - the status
    • countByLtD_S

      int countByLtD_S(Date displayDate, int status)
      Returns the number of commerce price modifiers where displayDate < ? and status = ?.
      Parameters:
      displayDate - the display date
      status - the status
      Returns:
      the number of matching commerce price modifiers
    • findByLtE_S

      List<CommercePriceModifier> findByLtE_S(Date expirationDate, int status)
      Returns all the commerce price modifiers where expirationDate < ? and status = ?.
      Parameters:
      expirationDate - the expiration date
      status - the status
      Returns:
      the matching commerce price modifiers
    • findByLtE_S

      List<CommercePriceModifier> findByLtE_S(Date expirationDate, int status, int start, int end)
      Returns a range of all the commerce price modifiers where expirationDate < ? and status = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from CommercePriceModifierModelImpl.

      Parameters:
      expirationDate - the expiration date
      status - the status
      start - the lower bound of the range of commerce price modifiers
      end - the upper bound of the range of commerce price modifiers (not inclusive)
      Returns:
      the range of matching commerce price modifiers
    • findByLtE_S

      List<CommercePriceModifier> findByLtE_S(Date expirationDate, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<CommercePriceModifier> orderByComparator)
      Returns an ordered range of all the commerce price modifiers where expirationDate < ? and status = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from CommercePriceModifierModelImpl.

      Parameters:
      expirationDate - the expiration date
      status - the status
      start - the lower bound of the range of commerce price modifiers
      end - the upper bound of the range of commerce price modifiers (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching commerce price modifiers
    • findByLtE_S

      List<CommercePriceModifier> findByLtE_S(Date expirationDate, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<CommercePriceModifier> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the commerce price modifiers where expirationDate < ? and status = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from CommercePriceModifierModelImpl.

      Parameters:
      expirationDate - the expiration date
      status - the status
      start - the lower bound of the range of commerce price modifiers
      end - the upper bound of the range of commerce price modifiers (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching commerce price modifiers
    • findByLtE_S_First

      CommercePriceModifier findByLtE_S_First(Date expirationDate, int status, com.liferay.portal.kernel.util.OrderByComparator<CommercePriceModifier> orderByComparator) throws NoSuchPriceModifierException
      Returns the first commerce price modifier in the ordered set where expirationDate < ? and status = ?.
      Parameters:
      expirationDate - the expiration date
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching commerce price modifier
      Throws:
      NoSuchPriceModifierException - if a matching commerce price modifier could not be found
    • fetchByLtE_S_First

      CommercePriceModifier fetchByLtE_S_First(Date expirationDate, int status, com.liferay.portal.kernel.util.OrderByComparator<CommercePriceModifier> orderByComparator)
      Returns the first commerce price modifier in the ordered set where expirationDate < ? and status = ?.
      Parameters:
      expirationDate - the expiration date
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching commerce price modifier, or null if a matching commerce price modifier could not be found
    • findByLtE_S_Last

      CommercePriceModifier findByLtE_S_Last(Date expirationDate, int status, com.liferay.portal.kernel.util.OrderByComparator<CommercePriceModifier> orderByComparator) throws NoSuchPriceModifierException
      Returns the last commerce price modifier in the ordered set where expirationDate < ? and status = ?.
      Parameters:
      expirationDate - the expiration date
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching commerce price modifier
      Throws:
      NoSuchPriceModifierException - if a matching commerce price modifier could not be found
    • fetchByLtE_S_Last

      CommercePriceModifier fetchByLtE_S_Last(Date expirationDate, int status, com.liferay.portal.kernel.util.OrderByComparator<CommercePriceModifier> orderByComparator)
      Returns the last commerce price modifier in the ordered set where expirationDate < ? and status = ?.
      Parameters:
      expirationDate - the expiration date
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching commerce price modifier, or null if a matching commerce price modifier could not be found
    • findByLtE_S_PrevAndNext

      CommercePriceModifier[] findByLtE_S_PrevAndNext(long commercePriceModifierId, Date expirationDate, int status, com.liferay.portal.kernel.util.OrderByComparator<CommercePriceModifier> orderByComparator) throws NoSuchPriceModifierException
      Returns the commerce price modifiers before and after the current commerce price modifier in the ordered set where expirationDate < ? and status = ?.
      Parameters:
      commercePriceModifierId - the primary key of the current commerce price modifier
      expirationDate - the expiration date
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next commerce price modifier
      Throws:
      NoSuchPriceModifierException - if a commerce price modifier with the primary key could not be found
    • removeByLtE_S

      void removeByLtE_S(Date expirationDate, int status)
      Removes all the commerce price modifiers where expirationDate < ? and status = ? from the database.
      Parameters:
      expirationDate - the expiration date
      status - the status
    • countByLtE_S

      int countByLtE_S(Date expirationDate, int status)
      Returns the number of commerce price modifiers where expirationDate < ? and status = ?.
      Parameters:
      expirationDate - the expiration date
      status - the status
      Returns:
      the number of matching commerce price modifiers
    • findByG_C_S

      List<CommercePriceModifier> findByG_C_S(long groupId, long companyId, int status)
      Returns all the commerce price modifiers where groupId = ? and companyId = ? and status = ?.
      Parameters:
      groupId - the group ID
      companyId - the company ID
      status - the status
      Returns:
      the matching commerce price modifiers
    • findByG_C_S

      List<CommercePriceModifier> findByG_C_S(long groupId, long companyId, int status, int start, int end)
      Returns a range of all the commerce price modifiers where groupId = ? and companyId = ? and status = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from CommercePriceModifierModelImpl.

      Parameters:
      groupId - the group ID
      companyId - the company ID
      status - the status
      start - the lower bound of the range of commerce price modifiers
      end - the upper bound of the range of commerce price modifiers (not inclusive)
      Returns:
      the range of matching commerce price modifiers
    • findByG_C_S

      List<CommercePriceModifier> findByG_C_S(long groupId, long companyId, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<CommercePriceModifier> orderByComparator)
      Returns an ordered range of all the commerce price modifiers where groupId = ? and companyId = ? and status = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from CommercePriceModifierModelImpl.

      Parameters:
      groupId - the group ID
      companyId - the company ID
      status - the status
      start - the lower bound of the range of commerce price modifiers
      end - the upper bound of the range of commerce price modifiers (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching commerce price modifiers
    • findByG_C_S

      List<CommercePriceModifier> findByG_C_S(long groupId, long companyId, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<CommercePriceModifier> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the commerce price modifiers where groupId = ? and companyId = ? and status = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from CommercePriceModifierModelImpl.

      Parameters:
      groupId - the group ID
      companyId - the company ID
      status - the status
      start - the lower bound of the range of commerce price modifiers
      end - the upper bound of the range of commerce price modifiers (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching commerce price modifiers
    • findByG_C_S_First

      CommercePriceModifier findByG_C_S_First(long groupId, long companyId, int status, com.liferay.portal.kernel.util.OrderByComparator<CommercePriceModifier> orderByComparator) throws NoSuchPriceModifierException
      Returns the first commerce price modifier in the ordered set where groupId = ? and companyId = ? and status = ?.
      Parameters:
      groupId - the group ID
      companyId - the company ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching commerce price modifier
      Throws:
      NoSuchPriceModifierException - if a matching commerce price modifier could not be found
    • fetchByG_C_S_First

      CommercePriceModifier fetchByG_C_S_First(long groupId, long companyId, int status, com.liferay.portal.kernel.util.OrderByComparator<CommercePriceModifier> orderByComparator)
      Returns the first commerce price modifier in the ordered set where groupId = ? and companyId = ? and status = ?.
      Parameters:
      groupId - the group ID
      companyId - the company ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching commerce price modifier, or null if a matching commerce price modifier could not be found
    • findByG_C_S_Last

      CommercePriceModifier findByG_C_S_Last(long groupId, long companyId, int status, com.liferay.portal.kernel.util.OrderByComparator<CommercePriceModifier> orderByComparator) throws NoSuchPriceModifierException
      Returns the last commerce price modifier in the ordered set where groupId = ? and companyId = ? and status = ?.
      Parameters:
      groupId - the group ID
      companyId - the company ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching commerce price modifier
      Throws:
      NoSuchPriceModifierException - if a matching commerce price modifier could not be found
    • fetchByG_C_S_Last

      CommercePriceModifier fetchByG_C_S_Last(long groupId, long companyId, int status, com.liferay.portal.kernel.util.OrderByComparator<CommercePriceModifier> orderByComparator)
      Returns the last commerce price modifier in the ordered set where groupId = ? and companyId = ? and status = ?.
      Parameters:
      groupId - the group ID
      companyId - the company ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching commerce price modifier, or null if a matching commerce price modifier could not be found
    • findByG_C_S_PrevAndNext

      CommercePriceModifier[] findByG_C_S_PrevAndNext(long commercePriceModifierId, long groupId, long companyId, int status, com.liferay.portal.kernel.util.OrderByComparator<CommercePriceModifier> orderByComparator) throws NoSuchPriceModifierException
      Returns the commerce price modifiers before and after the current commerce price modifier in the ordered set where groupId = ? and companyId = ? and status = ?.
      Parameters:
      commercePriceModifierId - the primary key of the current commerce price modifier
      groupId - the group ID
      companyId - the company ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next commerce price modifier
      Throws:
      NoSuchPriceModifierException - if a commerce price modifier with the primary key could not be found
    • findByG_C_S

      List<CommercePriceModifier> findByG_C_S(long[] groupIds, long companyId, int status)
      Returns all the commerce price modifiers where groupId = any ? and companyId = ? and status = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from CommercePriceModifierModelImpl.

      Parameters:
      groupIds - the group IDs
      companyId - the company ID
      status - the status
      Returns:
      the matching commerce price modifiers
    • findByG_C_S

      List<CommercePriceModifier> findByG_C_S(long[] groupIds, long companyId, int status, int start, int end)
      Returns a range of all the commerce price modifiers where groupId = any ? and companyId = ? and status = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from CommercePriceModifierModelImpl.

      Parameters:
      groupIds - the group IDs
      companyId - the company ID
      status - the status
      start - the lower bound of the range of commerce price modifiers
      end - the upper bound of the range of commerce price modifiers (not inclusive)
      Returns:
      the range of matching commerce price modifiers
    • findByG_C_S

      List<CommercePriceModifier> findByG_C_S(long[] groupIds, long companyId, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<CommercePriceModifier> orderByComparator)
      Returns an ordered range of all the commerce price modifiers where groupId = any ? and companyId = ? and status = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from CommercePriceModifierModelImpl.

      Parameters:
      groupIds - the group IDs
      companyId - the company ID
      status - the status
      start - the lower bound of the range of commerce price modifiers
      end - the upper bound of the range of commerce price modifiers (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching commerce price modifiers
    • findByG_C_S

      List<CommercePriceModifier> findByG_C_S(long[] groupIds, long companyId, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<CommercePriceModifier> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the commerce price modifiers where groupId = ? and companyId = ? and status = ?, optionally using the finder cache.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from CommercePriceModifierModelImpl.

      Parameters:
      groupIds - the group IDs
      companyId - the company ID
      status - the status
      start - the lower bound of the range of commerce price modifiers
      end - the upper bound of the range of commerce price modifiers (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching commerce price modifiers
    • removeByG_C_S

      void removeByG_C_S(long groupId, long companyId, int status)
      Removes all the commerce price modifiers where groupId = ? and companyId = ? and status = ? from the database.
      Parameters:
      groupId - the group ID
      companyId - the company ID
      status - the status
    • countByG_C_S

      int countByG_C_S(long groupId, long companyId, int status)
      Returns the number of commerce price modifiers where groupId = ? and companyId = ? and status = ?.
      Parameters:
      groupId - the group ID
      companyId - the company ID
      status - the status
      Returns:
      the number of matching commerce price modifiers
    • countByG_C_S

      int countByG_C_S(long[] groupIds, long companyId, int status)
      Returns the number of commerce price modifiers where groupId = any ? and companyId = ? and status = ?.
      Parameters:
      groupIds - the group IDs
      companyId - the company ID
      status - the status
      Returns:
      the number of matching commerce price modifiers
    • findByG_C_NotS

      List<CommercePriceModifier> findByG_C_NotS(long groupId, long companyId, int status)
      Returns all the commerce price modifiers where groupId = ? and companyId = ? and status ≠ ?.
      Parameters:
      groupId - the group ID
      companyId - the company ID
      status - the status
      Returns:
      the matching commerce price modifiers
    • findByG_C_NotS

      List<CommercePriceModifier> findByG_C_NotS(long groupId, long companyId, int status, int start, int end)
      Returns a range of all the commerce price modifiers where groupId = ? and companyId = ? and status ≠ ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from CommercePriceModifierModelImpl.

      Parameters:
      groupId - the group ID
      companyId - the company ID
      status - the status
      start - the lower bound of the range of commerce price modifiers
      end - the upper bound of the range of commerce price modifiers (not inclusive)
      Returns:
      the range of matching commerce price modifiers
    • findByG_C_NotS

      List<CommercePriceModifier> findByG_C_NotS(long groupId, long companyId, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<CommercePriceModifier> orderByComparator)
      Returns an ordered range of all the commerce price modifiers where groupId = ? and companyId = ? and status ≠ ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from CommercePriceModifierModelImpl.

      Parameters:
      groupId - the group ID
      companyId - the company ID
      status - the status
      start - the lower bound of the range of commerce price modifiers
      end - the upper bound of the range of commerce price modifiers (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching commerce price modifiers
    • findByG_C_NotS

      List<CommercePriceModifier> findByG_C_NotS(long groupId, long companyId, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<CommercePriceModifier> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the commerce price modifiers where groupId = ? and companyId = ? and status ≠ ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from CommercePriceModifierModelImpl.

      Parameters:
      groupId - the group ID
      companyId - the company ID
      status - the status
      start - the lower bound of the range of commerce price modifiers
      end - the upper bound of the range of commerce price modifiers (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching commerce price modifiers
    • findByG_C_NotS_First

      CommercePriceModifier findByG_C_NotS_First(long groupId, long companyId, int status, com.liferay.portal.kernel.util.OrderByComparator<CommercePriceModifier> orderByComparator) throws NoSuchPriceModifierException
      Returns the first commerce price modifier in the ordered set where groupId = ? and companyId = ? and status ≠ ?.
      Parameters:
      groupId - the group ID
      companyId - the company ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching commerce price modifier
      Throws:
      NoSuchPriceModifierException - if a matching commerce price modifier could not be found
    • fetchByG_C_NotS_First

      CommercePriceModifier fetchByG_C_NotS_First(long groupId, long companyId, int status, com.liferay.portal.kernel.util.OrderByComparator<CommercePriceModifier> orderByComparator)
      Returns the first commerce price modifier in the ordered set where groupId = ? and companyId = ? and status ≠ ?.
      Parameters:
      groupId - the group ID
      companyId - the company ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching commerce price modifier, or null if a matching commerce price modifier could not be found
    • findByG_C_NotS_Last

      CommercePriceModifier findByG_C_NotS_Last(long groupId, long companyId, int status, com.liferay.portal.kernel.util.OrderByComparator<CommercePriceModifier> orderByComparator) throws NoSuchPriceModifierException
      Returns the last commerce price modifier in the ordered set where groupId = ? and companyId = ? and status ≠ ?.
      Parameters:
      groupId - the group ID
      companyId - the company ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching commerce price modifier
      Throws:
      NoSuchPriceModifierException - if a matching commerce price modifier could not be found
    • fetchByG_C_NotS_Last

      CommercePriceModifier fetchByG_C_NotS_Last(long groupId, long companyId, int status, com.liferay.portal.kernel.util.OrderByComparator<CommercePriceModifier> orderByComparator)
      Returns the last commerce price modifier in the ordered set where groupId = ? and companyId = ? and status ≠ ?.
      Parameters:
      groupId - the group ID
      companyId - the company ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching commerce price modifier, or null if a matching commerce price modifier could not be found
    • findByG_C_NotS_PrevAndNext

      CommercePriceModifier[] findByG_C_NotS_PrevAndNext(long commercePriceModifierId, long groupId, long companyId, int status, com.liferay.portal.kernel.util.OrderByComparator<CommercePriceModifier> orderByComparator) throws NoSuchPriceModifierException
      Returns the commerce price modifiers before and after the current commerce price modifier in the ordered set where groupId = ? and companyId = ? and status ≠ ?.
      Parameters:
      commercePriceModifierId - the primary key of the current commerce price modifier
      groupId - the group ID
      companyId - the company ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next commerce price modifier
      Throws:
      NoSuchPriceModifierException - if a commerce price modifier with the primary key could not be found
    • findByG_C_NotS

      List<CommercePriceModifier> findByG_C_NotS(long[] groupIds, long companyId, int status)
      Returns all the commerce price modifiers where groupId = any ? and companyId = ? and status ≠ ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from CommercePriceModifierModelImpl.

      Parameters:
      groupIds - the group IDs
      companyId - the company ID
      status - the status
      Returns:
      the matching commerce price modifiers
    • findByG_C_NotS

      List<CommercePriceModifier> findByG_C_NotS(long[] groupIds, long companyId, int status, int start, int end)
      Returns a range of all the commerce price modifiers where groupId = any ? and companyId = ? and status ≠ ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from CommercePriceModifierModelImpl.

      Parameters:
      groupIds - the group IDs
      companyId - the company ID
      status - the status
      start - the lower bound of the range of commerce price modifiers
      end - the upper bound of the range of commerce price modifiers (not inclusive)
      Returns:
      the range of matching commerce price modifiers
    • findByG_C_NotS

      List<CommercePriceModifier> findByG_C_NotS(long[] groupIds, long companyId, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<CommercePriceModifier> orderByComparator)
      Returns an ordered range of all the commerce price modifiers where groupId = any ? and companyId = ? and status ≠ ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from CommercePriceModifierModelImpl.

      Parameters:
      groupIds - the group IDs
      companyId - the company ID
      status - the status
      start - the lower bound of the range of commerce price modifiers
      end - the upper bound of the range of commerce price modifiers (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching commerce price modifiers
    • findByG_C_NotS

      List<CommercePriceModifier> findByG_C_NotS(long[] groupIds, long companyId, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<CommercePriceModifier> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the commerce price modifiers where groupId = ? and companyId = ? and status ≠ ?, optionally using the finder cache.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from CommercePriceModifierModelImpl.

      Parameters:
      groupIds - the group IDs
      companyId - the company ID
      status - the status
      start - the lower bound of the range of commerce price modifiers
      end - the upper bound of the range of commerce price modifiers (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching commerce price modifiers
    • removeByG_C_NotS

      void removeByG_C_NotS(long groupId, long companyId, int status)
      Removes all the commerce price modifiers where groupId = ? and companyId = ? and status ≠ ? from the database.
      Parameters:
      groupId - the group ID
      companyId - the company ID
      status - the status
    • countByG_C_NotS

      int countByG_C_NotS(long groupId, long companyId, int status)
      Returns the number of commerce price modifiers where groupId = ? and companyId = ? and status ≠ ?.
      Parameters:
      groupId - the group ID
      companyId - the company ID
      status - the status
      Returns:
      the number of matching commerce price modifiers
    • countByG_C_NotS

      int countByG_C_NotS(long[] groupIds, long companyId, int status)
      Returns the number of commerce price modifiers where groupId = any ? and companyId = ? and status ≠ ?.
      Parameters:
      groupIds - the group IDs
      companyId - the company ID
      status - the status
      Returns:
      the number of matching commerce price modifiers
    • findByERC_C

      CommercePriceModifier findByERC_C(String externalReferenceCode, long companyId) throws NoSuchPriceModifierException
      Returns the commerce price modifier where externalReferenceCode = ? and companyId = ? or throws a NoSuchPriceModifierException if it could not be found.
      Parameters:
      externalReferenceCode - the external reference code
      companyId - the company ID
      Returns:
      the matching commerce price modifier
      Throws:
      NoSuchPriceModifierException - if a matching commerce price modifier could not be found
    • fetchByERC_C

      CommercePriceModifier fetchByERC_C(String externalReferenceCode, long companyId)
      Returns the commerce price modifier where externalReferenceCode = ? and companyId = ? or returns null if it could not be found. Uses the finder cache.
      Parameters:
      externalReferenceCode - the external reference code
      companyId - the company ID
      Returns:
      the matching commerce price modifier, or null if a matching commerce price modifier could not be found
    • fetchByERC_C

      CommercePriceModifier fetchByERC_C(String externalReferenceCode, long companyId, boolean useFinderCache)
      Returns the commerce price modifier where externalReferenceCode = ? and companyId = ? or returns null if it could not be found, optionally using the finder cache.
      Parameters:
      externalReferenceCode - the external reference code
      companyId - the company ID
      useFinderCache - whether to use the finder cache
      Returns:
      the matching commerce price modifier, or null if a matching commerce price modifier could not be found
    • removeByERC_C

      CommercePriceModifier removeByERC_C(String externalReferenceCode, long companyId) throws NoSuchPriceModifierException
      Removes the commerce price modifier where externalReferenceCode = ? and companyId = ? from the database.
      Parameters:
      externalReferenceCode - the external reference code
      companyId - the company ID
      Returns:
      the commerce price modifier that was removed
      Throws:
      NoSuchPriceModifierException
    • countByERC_C

      int countByERC_C(String externalReferenceCode, long companyId)
      Returns the number of commerce price modifiers where externalReferenceCode = ? and companyId = ?.
      Parameters:
      externalReferenceCode - the external reference code
      companyId - the company ID
      Returns:
      the number of matching commerce price modifiers
    • cacheResult

      void cacheResult(CommercePriceModifier commercePriceModifier)
      Caches the commerce price modifier in the entity cache if it is enabled.
      Parameters:
      commercePriceModifier - the commerce price modifier
    • cacheResult

      void cacheResult(List<CommercePriceModifier> commercePriceModifiers)
      Caches the commerce price modifiers in the entity cache if it is enabled.
      Parameters:
      commercePriceModifiers - the commerce price modifiers
    • create

      CommercePriceModifier create(long commercePriceModifierId)
      Creates a new commerce price modifier with the primary key. Does not add the commerce price modifier to the database.
      Parameters:
      commercePriceModifierId - the primary key for the new commerce price modifier
      Returns:
      the new commerce price modifier
    • remove

      CommercePriceModifier remove(long commercePriceModifierId) throws NoSuchPriceModifierException
      Removes the commerce price modifier with the primary key from the database. Also notifies the appropriate model listeners.
      Parameters:
      commercePriceModifierId - the primary key of the commerce price modifier
      Returns:
      the commerce price modifier that was removed
      Throws:
      NoSuchPriceModifierException - if a commerce price modifier with the primary key could not be found
    • updateImpl

      CommercePriceModifier updateImpl(CommercePriceModifier commercePriceModifier)
    • findByPrimaryKey

      CommercePriceModifier findByPrimaryKey(long commercePriceModifierId) throws NoSuchPriceModifierException
      Returns the commerce price modifier with the primary key or throws a NoSuchPriceModifierException if it could not be found.
      Parameters:
      commercePriceModifierId - the primary key of the commerce price modifier
      Returns:
      the commerce price modifier
      Throws:
      NoSuchPriceModifierException - if a commerce price modifier with the primary key could not be found
    • fetchByPrimaryKey

      CommercePriceModifier fetchByPrimaryKey(long commercePriceModifierId)
      Returns the commerce price modifier with the primary key or returns null if it could not be found.
      Parameters:
      commercePriceModifierId - the primary key of the commerce price modifier
      Returns:
      the commerce price modifier, or null if a commerce price modifier with the primary key could not be found
    • findAll

      Returns all the commerce price modifiers.
      Returns:
      the commerce price modifiers
    • findAll

      List<CommercePriceModifier> findAll(int start, int end)
      Returns a range of all the commerce price modifiers.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from CommercePriceModifierModelImpl.

      Parameters:
      start - the lower bound of the range of commerce price modifiers
      end - the upper bound of the range of commerce price modifiers (not inclusive)
      Returns:
      the range of commerce price modifiers
    • findAll

      List<CommercePriceModifier> findAll(int start, int end, com.liferay.portal.kernel.util.OrderByComparator<CommercePriceModifier> orderByComparator)
      Returns an ordered range of all the commerce price modifiers.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from CommercePriceModifierModelImpl.

      Parameters:
      start - the lower bound of the range of commerce price modifiers
      end - the upper bound of the range of commerce price modifiers (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of commerce price modifiers
    • findAll

      List<CommercePriceModifier> findAll(int start, int end, com.liferay.portal.kernel.util.OrderByComparator<CommercePriceModifier> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the commerce price modifiers.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from CommercePriceModifierModelImpl.

      Parameters:
      start - the lower bound of the range of commerce price modifiers
      end - the upper bound of the range of commerce price modifiers (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of commerce price modifiers
    • removeAll

      void removeAll()
      Removes all the commerce price modifiers from the database.
    • countAll

      int countAll()
      Returns the number of commerce price modifiers.
      Returns:
      the number of commerce price modifiers