Class CommerceTaxMethodUtil

java.lang.Object
com.liferay.commerce.tax.service.persistence.CommerceTaxMethodUtil

public class CommerceTaxMethodUtil extends Object
The persistence utility for the commerce tax method service. This utility wraps com.liferay.commerce.tax.service.persistence.impl.CommerceTaxMethodPersistenceImpl and provides direct access to the database for CRUD operations. This utility should only be used by the service layer, as it must operate within a transaction. Never access this utility in a JSP, controller, model, or other front-end class.

Caching information and settings can be found in portal.properties

See Also:
Generated:
  • Constructor Details

    • CommerceTaxMethodUtil

      public CommerceTaxMethodUtil()
  • Method Details

    • clearCache

      public static void clearCache()
      See Also:
      • BasePersistence.clearCache()
    • clearCache

      public static void clearCache(CommerceTaxMethod commerceTaxMethod)
      See Also:
      • BasePersistence.clearCache(com.liferay.portal.kernel.model.BaseModel)
    • countWithDynamicQuery

      public static long countWithDynamicQuery(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
      See Also:
      • BasePersistence.countWithDynamicQuery(DynamicQuery)
    • fetchByPrimaryKeys

      public static Map<Serializable,CommerceTaxMethod> fetchByPrimaryKeys(Set<Serializable> primaryKeys)
      See Also:
      • BasePersistence.fetchByPrimaryKeys(Set)
    • findWithDynamicQuery

      public static List<CommerceTaxMethod> findWithDynamicQuery(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
      See Also:
      • BasePersistence.findWithDynamicQuery(DynamicQuery)
    • findWithDynamicQuery

      public static List<CommerceTaxMethod> findWithDynamicQuery(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start, int end)
      See Also:
      • BasePersistence.findWithDynamicQuery(DynamicQuery, int, int)
    • findWithDynamicQuery

      public static List<CommerceTaxMethod> findWithDynamicQuery(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<CommerceTaxMethod> orderByComparator)
      See Also:
      • BasePersistence.findWithDynamicQuery(DynamicQuery, int, int, OrderByComparator)
    • update

      public static CommerceTaxMethod update(CommerceTaxMethod commerceTaxMethod)
      See Also:
      • BasePersistence.update(com.liferay.portal.kernel.model.BaseModel)
    • update

      public static CommerceTaxMethod update(CommerceTaxMethod commerceTaxMethod, com.liferay.portal.kernel.service.ServiceContext serviceContext)
      See Also:
      • BasePersistence.update(com.liferay.portal.kernel.model.BaseModel, ServiceContext)
    • findByGroupId

      public static List<CommerceTaxMethod> findByGroupId(long groupId)
      Returns all the commerce tax methods where groupId = ?.
      Parameters:
      groupId - the group ID
      Returns:
      the matching commerce tax methods
    • findByGroupId

      public static List<CommerceTaxMethod> findByGroupId(long groupId, int start, int end)
      Returns a range of all the commerce tax methods where groupId = ?.

      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 CommerceTaxMethodModelImpl.

      Parameters:
      groupId - the group ID
      start - the lower bound of the range of commerce tax methods
      end - the upper bound of the range of commerce tax methods (not inclusive)
      Returns:
      the range of matching commerce tax methods
    • findByGroupId

      public static List<CommerceTaxMethod> findByGroupId(long groupId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<CommerceTaxMethod> orderByComparator)
      Returns an ordered range of all the commerce tax methods where groupId = ?.

      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 CommerceTaxMethodModelImpl.

      Parameters:
      groupId - the group ID
      start - the lower bound of the range of commerce tax methods
      end - the upper bound of the range of commerce tax methods (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching commerce tax methods
    • findByGroupId

      public static List<CommerceTaxMethod> findByGroupId(long groupId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<CommerceTaxMethod> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the commerce tax methods where groupId = ?.

      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 CommerceTaxMethodModelImpl.

      Parameters:
      groupId - the group ID
      start - the lower bound of the range of commerce tax methods
      end - the upper bound of the range of commerce tax methods (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 tax methods
    • findByGroupId_First

      public static CommerceTaxMethod findByGroupId_First(long groupId, com.liferay.portal.kernel.util.OrderByComparator<CommerceTaxMethod> orderByComparator) throws NoSuchTaxMethodException
      Returns the first commerce tax method in the ordered set where groupId = ?.
      Parameters:
      groupId - the group ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching commerce tax method
      Throws:
      NoSuchTaxMethodException - if a matching commerce tax method could not be found
      NoSuchTaxMethodException
    • fetchByGroupId_First

      public static CommerceTaxMethod fetchByGroupId_First(long groupId, com.liferay.portal.kernel.util.OrderByComparator<CommerceTaxMethod> orderByComparator)
      Returns the first commerce tax method in the ordered set where groupId = ?.
      Parameters:
      groupId - the group ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching commerce tax method, or null if a matching commerce tax method could not be found
    • findByGroupId_Last

      public static CommerceTaxMethod findByGroupId_Last(long groupId, com.liferay.portal.kernel.util.OrderByComparator<CommerceTaxMethod> orderByComparator) throws NoSuchTaxMethodException
      Returns the last commerce tax method in the ordered set where groupId = ?.
      Parameters:
      groupId - the group ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching commerce tax method
      Throws:
      NoSuchTaxMethodException - if a matching commerce tax method could not be found
      NoSuchTaxMethodException
    • fetchByGroupId_Last

      public static CommerceTaxMethod fetchByGroupId_Last(long groupId, com.liferay.portal.kernel.util.OrderByComparator<CommerceTaxMethod> orderByComparator)
      Returns the last commerce tax method in the ordered set where groupId = ?.
      Parameters:
      groupId - the group ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching commerce tax method, or null if a matching commerce tax method could not be found
    • findByGroupId_PrevAndNext

      public static CommerceTaxMethod[] findByGroupId_PrevAndNext(long commerceTaxMethodId, long groupId, com.liferay.portal.kernel.util.OrderByComparator<CommerceTaxMethod> orderByComparator) throws NoSuchTaxMethodException
      Returns the commerce tax methods before and after the current commerce tax method in the ordered set where groupId = ?.
      Parameters:
      commerceTaxMethodId - the primary key of the current commerce tax method
      groupId - the group ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next commerce tax method
      Throws:
      NoSuchTaxMethodException - if a commerce tax method with the primary key could not be found
      NoSuchTaxMethodException
    • removeByGroupId

      public static void removeByGroupId(long groupId)
      Removes all the commerce tax methods where groupId = ? from the database.
      Parameters:
      groupId - the group ID
    • countByGroupId

      public static int countByGroupId(long groupId)
      Returns the number of commerce tax methods where groupId = ?.
      Parameters:
      groupId - the group ID
      Returns:
      the number of matching commerce tax methods
    • findByG_E

      public static CommerceTaxMethod findByG_E(long groupId, String engineKey) throws NoSuchTaxMethodException
      Returns the commerce tax method where groupId = ? and engineKey = ? or throws a NoSuchTaxMethodException if it could not be found.
      Parameters:
      groupId - the group ID
      engineKey - the engine key
      Returns:
      the matching commerce tax method
      Throws:
      NoSuchTaxMethodException - if a matching commerce tax method could not be found
      NoSuchTaxMethodException
    • fetchByG_E

      public static CommerceTaxMethod fetchByG_E(long groupId, String engineKey)
      Returns the commerce tax method where groupId = ? and engineKey = ? or returns null if it could not be found. Uses the finder cache.
      Parameters:
      groupId - the group ID
      engineKey - the engine key
      Returns:
      the matching commerce tax method, or null if a matching commerce tax method could not be found
    • fetchByG_E

      public static CommerceTaxMethod fetchByG_E(long groupId, String engineKey, boolean useFinderCache)
      Returns the commerce tax method where groupId = ? and engineKey = ? or returns null if it could not be found, optionally using the finder cache.
      Parameters:
      groupId - the group ID
      engineKey - the engine key
      useFinderCache - whether to use the finder cache
      Returns:
      the matching commerce tax method, or null if a matching commerce tax method could not be found
    • removeByG_E

      public static CommerceTaxMethod removeByG_E(long groupId, String engineKey) throws NoSuchTaxMethodException
      Removes the commerce tax method where groupId = ? and engineKey = ? from the database.
      Parameters:
      groupId - the group ID
      engineKey - the engine key
      Returns:
      the commerce tax method that was removed
      Throws:
      NoSuchTaxMethodException
    • countByG_E

      public static int countByG_E(long groupId, String engineKey)
      Returns the number of commerce tax methods where groupId = ? and engineKey = ?.
      Parameters:
      groupId - the group ID
      engineKey - the engine key
      Returns:
      the number of matching commerce tax methods
    • findByG_A

      public static List<CommerceTaxMethod> findByG_A(long groupId, boolean active)
      Returns all the commerce tax methods where groupId = ? and active = ?.
      Parameters:
      groupId - the group ID
      active - the active
      Returns:
      the matching commerce tax methods
    • findByG_A

      public static List<CommerceTaxMethod> findByG_A(long groupId, boolean active, int start, int end)
      Returns a range of all the commerce tax methods where groupId = ? and active = ?.

      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 CommerceTaxMethodModelImpl.

      Parameters:
      groupId - the group ID
      active - the active
      start - the lower bound of the range of commerce tax methods
      end - the upper bound of the range of commerce tax methods (not inclusive)
      Returns:
      the range of matching commerce tax methods
    • findByG_A

      public static List<CommerceTaxMethod> findByG_A(long groupId, boolean active, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<CommerceTaxMethod> orderByComparator)
      Returns an ordered range of all the commerce tax methods where groupId = ? and active = ?.

      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 CommerceTaxMethodModelImpl.

      Parameters:
      groupId - the group ID
      active - the active
      start - the lower bound of the range of commerce tax methods
      end - the upper bound of the range of commerce tax methods (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching commerce tax methods
    • findByG_A

      public static List<CommerceTaxMethod> findByG_A(long groupId, boolean active, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<CommerceTaxMethod> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the commerce tax methods where groupId = ? and active = ?.

      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 CommerceTaxMethodModelImpl.

      Parameters:
      groupId - the group ID
      active - the active
      start - the lower bound of the range of commerce tax methods
      end - the upper bound of the range of commerce tax methods (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 tax methods
    • findByG_A_First

      public static CommerceTaxMethod findByG_A_First(long groupId, boolean active, com.liferay.portal.kernel.util.OrderByComparator<CommerceTaxMethod> orderByComparator) throws NoSuchTaxMethodException
      Returns the first commerce tax method in the ordered set where groupId = ? and active = ?.
      Parameters:
      groupId - the group ID
      active - the active
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching commerce tax method
      Throws:
      NoSuchTaxMethodException - if a matching commerce tax method could not be found
      NoSuchTaxMethodException
    • fetchByG_A_First

      public static CommerceTaxMethod fetchByG_A_First(long groupId, boolean active, com.liferay.portal.kernel.util.OrderByComparator<CommerceTaxMethod> orderByComparator)
      Returns the first commerce tax method in the ordered set where groupId = ? and active = ?.
      Parameters:
      groupId - the group ID
      active - the active
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching commerce tax method, or null if a matching commerce tax method could not be found
    • findByG_A_Last

      public static CommerceTaxMethod findByG_A_Last(long groupId, boolean active, com.liferay.portal.kernel.util.OrderByComparator<CommerceTaxMethod> orderByComparator) throws NoSuchTaxMethodException
      Returns the last commerce tax method in the ordered set where groupId = ? and active = ?.
      Parameters:
      groupId - the group ID
      active - the active
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching commerce tax method
      Throws:
      NoSuchTaxMethodException - if a matching commerce tax method could not be found
      NoSuchTaxMethodException
    • fetchByG_A_Last

      public static CommerceTaxMethod fetchByG_A_Last(long groupId, boolean active, com.liferay.portal.kernel.util.OrderByComparator<CommerceTaxMethod> orderByComparator)
      Returns the last commerce tax method in the ordered set where groupId = ? and active = ?.
      Parameters:
      groupId - the group ID
      active - the active
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching commerce tax method, or null if a matching commerce tax method could not be found
    • findByG_A_PrevAndNext

      public static CommerceTaxMethod[] findByG_A_PrevAndNext(long commerceTaxMethodId, long groupId, boolean active, com.liferay.portal.kernel.util.OrderByComparator<CommerceTaxMethod> orderByComparator) throws NoSuchTaxMethodException
      Returns the commerce tax methods before and after the current commerce tax method in the ordered set where groupId = ? and active = ?.
      Parameters:
      commerceTaxMethodId - the primary key of the current commerce tax method
      groupId - the group ID
      active - the active
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next commerce tax method
      Throws:
      NoSuchTaxMethodException - if a commerce tax method with the primary key could not be found
      NoSuchTaxMethodException
    • removeByG_A

      public static void removeByG_A(long groupId, boolean active)
      Removes all the commerce tax methods where groupId = ? and active = ? from the database.
      Parameters:
      groupId - the group ID
      active - the active
    • countByG_A

      public static int countByG_A(long groupId, boolean active)
      Returns the number of commerce tax methods where groupId = ? and active = ?.
      Parameters:
      groupId - the group ID
      active - the active
      Returns:
      the number of matching commerce tax methods
    • cacheResult

      public static void cacheResult(CommerceTaxMethod commerceTaxMethod)
      Caches the commerce tax method in the entity cache if it is enabled.
      Parameters:
      commerceTaxMethod - the commerce tax method
    • cacheResult

      public static void cacheResult(List<CommerceTaxMethod> commerceTaxMethods)
      Caches the commerce tax methods in the entity cache if it is enabled.
      Parameters:
      commerceTaxMethods - the commerce tax methods
    • create

      public static CommerceTaxMethod create(long commerceTaxMethodId)
      Creates a new commerce tax method with the primary key. Does not add the commerce tax method to the database.
      Parameters:
      commerceTaxMethodId - the primary key for the new commerce tax method
      Returns:
      the new commerce tax method
    • remove

      public static CommerceTaxMethod remove(long commerceTaxMethodId) throws NoSuchTaxMethodException
      Removes the commerce tax method with the primary key from the database. Also notifies the appropriate model listeners.
      Parameters:
      commerceTaxMethodId - the primary key of the commerce tax method
      Returns:
      the commerce tax method that was removed
      Throws:
      NoSuchTaxMethodException - if a commerce tax method with the primary key could not be found
      NoSuchTaxMethodException
    • updateImpl

      public static CommerceTaxMethod updateImpl(CommerceTaxMethod commerceTaxMethod)
    • findByPrimaryKey

      public static CommerceTaxMethod findByPrimaryKey(long commerceTaxMethodId) throws NoSuchTaxMethodException
      Returns the commerce tax method with the primary key or throws a NoSuchTaxMethodException if it could not be found.
      Parameters:
      commerceTaxMethodId - the primary key of the commerce tax method
      Returns:
      the commerce tax method
      Throws:
      NoSuchTaxMethodException - if a commerce tax method with the primary key could not be found
      NoSuchTaxMethodException
    • fetchByPrimaryKey

      public static CommerceTaxMethod fetchByPrimaryKey(long commerceTaxMethodId)
      Returns the commerce tax method with the primary key or returns null if it could not be found.
      Parameters:
      commerceTaxMethodId - the primary key of the commerce tax method
      Returns:
      the commerce tax method, or null if a commerce tax method with the primary key could not be found
    • findAll

      public static List<CommerceTaxMethod> findAll()
      Returns all the commerce tax methods.
      Returns:
      the commerce tax methods
    • findAll

      public static List<CommerceTaxMethod> findAll(int start, int end)
      Returns a range of all the commerce tax methods.

      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 CommerceTaxMethodModelImpl.

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

      public static List<CommerceTaxMethod> findAll(int start, int end, com.liferay.portal.kernel.util.OrderByComparator<CommerceTaxMethod> orderByComparator)
      Returns an ordered range of all the commerce tax methods.

      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 CommerceTaxMethodModelImpl.

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

      public static List<CommerceTaxMethod> findAll(int start, int end, com.liferay.portal.kernel.util.OrderByComparator<CommerceTaxMethod> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the commerce tax methods.

      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 CommerceTaxMethodModelImpl.

      Parameters:
      start - the lower bound of the range of commerce tax methods
      end - the upper bound of the range of commerce tax methods (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 tax methods
    • removeAll

      public static void removeAll()
      Removes all the commerce tax methods from the database.
    • countAll

      public static int countAll()
      Returns the number of commerce tax methods.
      Returns:
      the number of commerce tax methods
    • getPersistence

      public static CommerceTaxMethodPersistence getPersistence()
    • setPersistence

      public static void setPersistence(CommerceTaxMethodPersistence persistence)