Class ClientExtensionEntryUtil

java.lang.Object
com.liferay.client.extension.service.persistence.ClientExtensionEntryUtil

public class ClientExtensionEntryUtil extends Object
The persistence utility for the client extension entry service. This utility wraps com.liferay.client.extension.service.persistence.impl.ClientExtensionEntryPersistenceImpl 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

    • ClientExtensionEntryUtil

      public ClientExtensionEntryUtil()
  • Method Details

    • clearCache

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

      public static void clearCache(ClientExtensionEntry clientExtensionEntry)
      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,ClientExtensionEntry> fetchByPrimaryKeys(Set<Serializable> primaryKeys)
      See Also:
      • BasePersistence.fetchByPrimaryKeys(Set)
    • findWithDynamicQuery

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

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

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

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

      public static ClientExtensionEntry update(ClientExtensionEntry clientExtensionEntry, com.liferay.portal.kernel.service.ServiceContext serviceContext)
      See Also:
      • BasePersistence.update(com.liferay.portal.kernel.model.BaseModel, ServiceContext)
    • findByUuid

      public static List<ClientExtensionEntry> findByUuid(String uuid)
      Returns all the client extension entries where uuid = ?.
      Parameters:
      uuid - the uuid
      Returns:
      the matching client extension entries
    • findByUuid

      public static List<ClientExtensionEntry> findByUuid(String uuid, int start, int end)
      Returns a range of all the client extension entries 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 ClientExtensionEntryModelImpl.

      Parameters:
      uuid - the uuid
      start - the lower bound of the range of client extension entries
      end - the upper bound of the range of client extension entries (not inclusive)
      Returns:
      the range of matching client extension entries
    • findByUuid

      public static List<ClientExtensionEntry> findByUuid(String uuid, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<ClientExtensionEntry> orderByComparator)
      Returns an ordered range of all the client extension entries 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 ClientExtensionEntryModelImpl.

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

      public static List<ClientExtensionEntry> findByUuid(String uuid, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<ClientExtensionEntry> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the client extension entries 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 ClientExtensionEntryModelImpl.

      Parameters:
      uuid - the uuid
      start - the lower bound of the range of client extension entries
      end - the upper bound of the range of client extension entries (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 client extension entries
    • findByUuid_First

      public static ClientExtensionEntry findByUuid_First(String uuid, com.liferay.portal.kernel.util.OrderByComparator<ClientExtensionEntry> orderByComparator) throws NoSuchClientExtensionEntryException
      Returns the first client extension entry in the ordered set where uuid = ?.
      Parameters:
      uuid - the uuid
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching client extension entry
      Throws:
      NoSuchClientExtensionEntryException - if a matching client extension entry could not be found
      NoSuchClientExtensionEntryException
    • fetchByUuid_First

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

      public static ClientExtensionEntry findByUuid_Last(String uuid, com.liferay.portal.kernel.util.OrderByComparator<ClientExtensionEntry> orderByComparator) throws NoSuchClientExtensionEntryException
      Returns the last client extension entry in the ordered set where uuid = ?.
      Parameters:
      uuid - the uuid
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching client extension entry
      Throws:
      NoSuchClientExtensionEntryException - if a matching client extension entry could not be found
      NoSuchClientExtensionEntryException
    • fetchByUuid_Last

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

      public static ClientExtensionEntry[] findByUuid_PrevAndNext(long clientExtensionEntryId, String uuid, com.liferay.portal.kernel.util.OrderByComparator<ClientExtensionEntry> orderByComparator) throws NoSuchClientExtensionEntryException
      Returns the client extension entries before and after the current client extension entry in the ordered set where uuid = ?.
      Parameters:
      clientExtensionEntryId - the primary key of the current client extension entry
      uuid - the uuid
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next client extension entry
      Throws:
      NoSuchClientExtensionEntryException - if a client extension entry with the primary key could not be found
      NoSuchClientExtensionEntryException
    • filterFindByUuid

      public static List<ClientExtensionEntry> filterFindByUuid(String uuid)
      Returns all the client extension entries that the user has permission to view where uuid = ?.
      Parameters:
      uuid - the uuid
      Returns:
      the matching client extension entries that the user has permission to view
    • filterFindByUuid

      public static List<ClientExtensionEntry> filterFindByUuid(String uuid, int start, int end)
      Returns a range of all the client extension entries that the user has permission to view 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 ClientExtensionEntryModelImpl.

      Parameters:
      uuid - the uuid
      start - the lower bound of the range of client extension entries
      end - the upper bound of the range of client extension entries (not inclusive)
      Returns:
      the range of matching client extension entries that the user has permission to view
    • filterFindByUuid

      public static List<ClientExtensionEntry> filterFindByUuid(String uuid, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<ClientExtensionEntry> orderByComparator)
      Returns an ordered range of all the client extension entries that the user has permissions to view 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 ClientExtensionEntryModelImpl.

      Parameters:
      uuid - the uuid
      start - the lower bound of the range of client extension entries
      end - the upper bound of the range of client extension entries (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching client extension entries that the user has permission to view
    • filterFindByUuid_PrevAndNext

      public static ClientExtensionEntry[] filterFindByUuid_PrevAndNext(long clientExtensionEntryId, String uuid, com.liferay.portal.kernel.util.OrderByComparator<ClientExtensionEntry> orderByComparator) throws NoSuchClientExtensionEntryException
      Returns the client extension entries before and after the current client extension entry in the ordered set of client extension entries that the user has permission to view where uuid = ?.
      Parameters:
      clientExtensionEntryId - the primary key of the current client extension entry
      uuid - the uuid
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next client extension entry
      Throws:
      NoSuchClientExtensionEntryException - if a client extension entry with the primary key could not be found
      NoSuchClientExtensionEntryException
    • removeByUuid

      public static void removeByUuid(String uuid)
      Removes all the client extension entries where uuid = ? from the database.
      Parameters:
      uuid - the uuid
    • countByUuid

      public static int countByUuid(String uuid)
      Returns the number of client extension entries where uuid = ?.
      Parameters:
      uuid - the uuid
      Returns:
      the number of matching client extension entries
    • filterCountByUuid

      public static int filterCountByUuid(String uuid)
      Returns the number of client extension entries that the user has permission to view where uuid = ?.
      Parameters:
      uuid - the uuid
      Returns:
      the number of matching client extension entries that the user has permission to view
    • findByUuid_C

      public static List<ClientExtensionEntry> findByUuid_C(String uuid, long companyId)
      Returns all the client extension entries where uuid = ? and companyId = ?.
      Parameters:
      uuid - the uuid
      companyId - the company ID
      Returns:
      the matching client extension entries
    • findByUuid_C

      public static List<ClientExtensionEntry> findByUuid_C(String uuid, long companyId, int start, int end)
      Returns a range of all the client extension entries 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 ClientExtensionEntryModelImpl.

      Parameters:
      uuid - the uuid
      companyId - the company ID
      start - the lower bound of the range of client extension entries
      end - the upper bound of the range of client extension entries (not inclusive)
      Returns:
      the range of matching client extension entries
    • findByUuid_C

      public static List<ClientExtensionEntry> findByUuid_C(String uuid, long companyId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<ClientExtensionEntry> orderByComparator)
      Returns an ordered range of all the client extension entries 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 ClientExtensionEntryModelImpl.

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

      public static List<ClientExtensionEntry> findByUuid_C(String uuid, long companyId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<ClientExtensionEntry> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the client extension entries 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 ClientExtensionEntryModelImpl.

      Parameters:
      uuid - the uuid
      companyId - the company ID
      start - the lower bound of the range of client extension entries
      end - the upper bound of the range of client extension entries (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 client extension entries
    • findByUuid_C_First

      public static ClientExtensionEntry findByUuid_C_First(String uuid, long companyId, com.liferay.portal.kernel.util.OrderByComparator<ClientExtensionEntry> orderByComparator) throws NoSuchClientExtensionEntryException
      Returns the first client extension entry 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 client extension entry
      Throws:
      NoSuchClientExtensionEntryException - if a matching client extension entry could not be found
      NoSuchClientExtensionEntryException
    • fetchByUuid_C_First

      public static ClientExtensionEntry fetchByUuid_C_First(String uuid, long companyId, com.liferay.portal.kernel.util.OrderByComparator<ClientExtensionEntry> orderByComparator)
      Returns the first client extension entry 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 client extension entry, or null if a matching client extension entry could not be found
    • findByUuid_C_Last

      public static ClientExtensionEntry findByUuid_C_Last(String uuid, long companyId, com.liferay.portal.kernel.util.OrderByComparator<ClientExtensionEntry> orderByComparator) throws NoSuchClientExtensionEntryException
      Returns the last client extension entry 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 client extension entry
      Throws:
      NoSuchClientExtensionEntryException - if a matching client extension entry could not be found
      NoSuchClientExtensionEntryException
    • fetchByUuid_C_Last

      public static ClientExtensionEntry fetchByUuid_C_Last(String uuid, long companyId, com.liferay.portal.kernel.util.OrderByComparator<ClientExtensionEntry> orderByComparator)
      Returns the last client extension entry 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 client extension entry, or null if a matching client extension entry could not be found
    • findByUuid_C_PrevAndNext

      public static ClientExtensionEntry[] findByUuid_C_PrevAndNext(long clientExtensionEntryId, String uuid, long companyId, com.liferay.portal.kernel.util.OrderByComparator<ClientExtensionEntry> orderByComparator) throws NoSuchClientExtensionEntryException
      Returns the client extension entries before and after the current client extension entry in the ordered set where uuid = ? and companyId = ?.
      Parameters:
      clientExtensionEntryId - the primary key of the current client extension entry
      uuid - the uuid
      companyId - the company ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next client extension entry
      Throws:
      NoSuchClientExtensionEntryException - if a client extension entry with the primary key could not be found
      NoSuchClientExtensionEntryException
    • filterFindByUuid_C

      public static List<ClientExtensionEntry> filterFindByUuid_C(String uuid, long companyId)
      Returns all the client extension entries that the user has permission to view where uuid = ? and companyId = ?.
      Parameters:
      uuid - the uuid
      companyId - the company ID
      Returns:
      the matching client extension entries that the user has permission to view
    • filterFindByUuid_C

      public static List<ClientExtensionEntry> filterFindByUuid_C(String uuid, long companyId, int start, int end)
      Returns a range of all the client extension entries that the user has permission to view 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 ClientExtensionEntryModelImpl.

      Parameters:
      uuid - the uuid
      companyId - the company ID
      start - the lower bound of the range of client extension entries
      end - the upper bound of the range of client extension entries (not inclusive)
      Returns:
      the range of matching client extension entries that the user has permission to view
    • filterFindByUuid_C

      public static List<ClientExtensionEntry> filterFindByUuid_C(String uuid, long companyId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<ClientExtensionEntry> orderByComparator)
      Returns an ordered range of all the client extension entries that the user has permissions to view 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 ClientExtensionEntryModelImpl.

      Parameters:
      uuid - the uuid
      companyId - the company ID
      start - the lower bound of the range of client extension entries
      end - the upper bound of the range of client extension entries (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching client extension entries that the user has permission to view
    • filterFindByUuid_C_PrevAndNext

      public static ClientExtensionEntry[] filterFindByUuid_C_PrevAndNext(long clientExtensionEntryId, String uuid, long companyId, com.liferay.portal.kernel.util.OrderByComparator<ClientExtensionEntry> orderByComparator) throws NoSuchClientExtensionEntryException
      Returns the client extension entries before and after the current client extension entry in the ordered set of client extension entries that the user has permission to view where uuid = ? and companyId = ?.
      Parameters:
      clientExtensionEntryId - the primary key of the current client extension entry
      uuid - the uuid
      companyId - the company ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next client extension entry
      Throws:
      NoSuchClientExtensionEntryException - if a client extension entry with the primary key could not be found
      NoSuchClientExtensionEntryException
    • removeByUuid_C

      public static void removeByUuid_C(String uuid, long companyId)
      Removes all the client extension entries where uuid = ? and companyId = ? from the database.
      Parameters:
      uuid - the uuid
      companyId - the company ID
    • countByUuid_C

      public static int countByUuid_C(String uuid, long companyId)
      Returns the number of client extension entries where uuid = ? and companyId = ?.
      Parameters:
      uuid - the uuid
      companyId - the company ID
      Returns:
      the number of matching client extension entries
    • filterCountByUuid_C

      public static int filterCountByUuid_C(String uuid, long companyId)
      Returns the number of client extension entries that the user has permission to view where uuid = ? and companyId = ?.
      Parameters:
      uuid - the uuid
      companyId - the company ID
      Returns:
      the number of matching client extension entries that the user has permission to view
    • findByCompanyId

      public static List<ClientExtensionEntry> findByCompanyId(long companyId)
      Returns all the client extension entries where companyId = ?.
      Parameters:
      companyId - the company ID
      Returns:
      the matching client extension entries
    • findByCompanyId

      public static List<ClientExtensionEntry> findByCompanyId(long companyId, int start, int end)
      Returns a range of all the client extension entries 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 ClientExtensionEntryModelImpl.

      Parameters:
      companyId - the company ID
      start - the lower bound of the range of client extension entries
      end - the upper bound of the range of client extension entries (not inclusive)
      Returns:
      the range of matching client extension entries
    • findByCompanyId

      public static List<ClientExtensionEntry> findByCompanyId(long companyId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<ClientExtensionEntry> orderByComparator)
      Returns an ordered range of all the client extension entries 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 ClientExtensionEntryModelImpl.

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

      public static List<ClientExtensionEntry> findByCompanyId(long companyId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<ClientExtensionEntry> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the client extension entries 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 ClientExtensionEntryModelImpl.

      Parameters:
      companyId - the company ID
      start - the lower bound of the range of client extension entries
      end - the upper bound of the range of client extension entries (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 client extension entries
    • findByCompanyId_First

      public static ClientExtensionEntry findByCompanyId_First(long companyId, com.liferay.portal.kernel.util.OrderByComparator<ClientExtensionEntry> orderByComparator) throws NoSuchClientExtensionEntryException
      Returns the first client extension entry 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 client extension entry
      Throws:
      NoSuchClientExtensionEntryException - if a matching client extension entry could not be found
      NoSuchClientExtensionEntryException
    • fetchByCompanyId_First

      public static ClientExtensionEntry fetchByCompanyId_First(long companyId, com.liferay.portal.kernel.util.OrderByComparator<ClientExtensionEntry> orderByComparator)
      Returns the first client extension entry 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 client extension entry, or null if a matching client extension entry could not be found
    • findByCompanyId_Last

      public static ClientExtensionEntry findByCompanyId_Last(long companyId, com.liferay.portal.kernel.util.OrderByComparator<ClientExtensionEntry> orderByComparator) throws NoSuchClientExtensionEntryException
      Returns the last client extension entry 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 client extension entry
      Throws:
      NoSuchClientExtensionEntryException - if a matching client extension entry could not be found
      NoSuchClientExtensionEntryException
    • fetchByCompanyId_Last

      public static ClientExtensionEntry fetchByCompanyId_Last(long companyId, com.liferay.portal.kernel.util.OrderByComparator<ClientExtensionEntry> orderByComparator)
      Returns the last client extension entry 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 client extension entry, or null if a matching client extension entry could not be found
    • findByCompanyId_PrevAndNext

      public static ClientExtensionEntry[] findByCompanyId_PrevAndNext(long clientExtensionEntryId, long companyId, com.liferay.portal.kernel.util.OrderByComparator<ClientExtensionEntry> orderByComparator) throws NoSuchClientExtensionEntryException
      Returns the client extension entries before and after the current client extension entry in the ordered set where companyId = ?.
      Parameters:
      clientExtensionEntryId - the primary key of the current client extension entry
      companyId - the company ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next client extension entry
      Throws:
      NoSuchClientExtensionEntryException - if a client extension entry with the primary key could not be found
      NoSuchClientExtensionEntryException
    • filterFindByCompanyId

      public static List<ClientExtensionEntry> filterFindByCompanyId(long companyId)
      Returns all the client extension entries that the user has permission to view where companyId = ?.
      Parameters:
      companyId - the company ID
      Returns:
      the matching client extension entries that the user has permission to view
    • filterFindByCompanyId

      public static List<ClientExtensionEntry> filterFindByCompanyId(long companyId, int start, int end)
      Returns a range of all the client extension entries that the user has permission to view 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 ClientExtensionEntryModelImpl.

      Parameters:
      companyId - the company ID
      start - the lower bound of the range of client extension entries
      end - the upper bound of the range of client extension entries (not inclusive)
      Returns:
      the range of matching client extension entries that the user has permission to view
    • filterFindByCompanyId

      public static List<ClientExtensionEntry> filterFindByCompanyId(long companyId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<ClientExtensionEntry> orderByComparator)
      Returns an ordered range of all the client extension entries that the user has permissions to view 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 ClientExtensionEntryModelImpl.

      Parameters:
      companyId - the company ID
      start - the lower bound of the range of client extension entries
      end - the upper bound of the range of client extension entries (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching client extension entries that the user has permission to view
    • filterFindByCompanyId_PrevAndNext

      public static ClientExtensionEntry[] filterFindByCompanyId_PrevAndNext(long clientExtensionEntryId, long companyId, com.liferay.portal.kernel.util.OrderByComparator<ClientExtensionEntry> orderByComparator) throws NoSuchClientExtensionEntryException
      Returns the client extension entries before and after the current client extension entry in the ordered set of client extension entries that the user has permission to view where companyId = ?.
      Parameters:
      clientExtensionEntryId - the primary key of the current client extension entry
      companyId - the company ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next client extension entry
      Throws:
      NoSuchClientExtensionEntryException - if a client extension entry with the primary key could not be found
      NoSuchClientExtensionEntryException
    • removeByCompanyId

      public static void removeByCompanyId(long companyId)
      Removes all the client extension entries where companyId = ? from the database.
      Parameters:
      companyId - the company ID
    • countByCompanyId

      public static int countByCompanyId(long companyId)
      Returns the number of client extension entries where companyId = ?.
      Parameters:
      companyId - the company ID
      Returns:
      the number of matching client extension entries
    • filterCountByCompanyId

      public static int filterCountByCompanyId(long companyId)
      Returns the number of client extension entries that the user has permission to view where companyId = ?.
      Parameters:
      companyId - the company ID
      Returns:
      the number of matching client extension entries that the user has permission to view
    • findByC_T

      public static List<ClientExtensionEntry> findByC_T(long companyId, String type)
      Returns all the client extension entries where companyId = ? and type = ?.
      Parameters:
      companyId - the company ID
      type - the type
      Returns:
      the matching client extension entries
    • findByC_T

      public static List<ClientExtensionEntry> findByC_T(long companyId, String type, int start, int end)
      Returns a range of all the client extension entries where companyId = ? and type = ?.

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

      Parameters:
      companyId - the company ID
      type - the type
      start - the lower bound of the range of client extension entries
      end - the upper bound of the range of client extension entries (not inclusive)
      Returns:
      the range of matching client extension entries
    • findByC_T

      public static List<ClientExtensionEntry> findByC_T(long companyId, String type, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<ClientExtensionEntry> orderByComparator)
      Returns an ordered range of all the client extension entries where companyId = ? and type = ?.

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

      Parameters:
      companyId - the company ID
      type - the type
      start - the lower bound of the range of client extension entries
      end - the upper bound of the range of client extension entries (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching client extension entries
    • findByC_T

      public static List<ClientExtensionEntry> findByC_T(long companyId, String type, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<ClientExtensionEntry> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the client extension entries where companyId = ? and type = ?.

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

      Parameters:
      companyId - the company ID
      type - the type
      start - the lower bound of the range of client extension entries
      end - the upper bound of the range of client extension entries (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 client extension entries
    • findByC_T_First

      public static ClientExtensionEntry findByC_T_First(long companyId, String type, com.liferay.portal.kernel.util.OrderByComparator<ClientExtensionEntry> orderByComparator) throws NoSuchClientExtensionEntryException
      Returns the first client extension entry in the ordered set where companyId = ? and type = ?.
      Parameters:
      companyId - the company ID
      type - the type
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching client extension entry
      Throws:
      NoSuchClientExtensionEntryException - if a matching client extension entry could not be found
      NoSuchClientExtensionEntryException
    • fetchByC_T_First

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

      public static ClientExtensionEntry findByC_T_Last(long companyId, String type, com.liferay.portal.kernel.util.OrderByComparator<ClientExtensionEntry> orderByComparator) throws NoSuchClientExtensionEntryException
      Returns the last client extension entry in the ordered set where companyId = ? and type = ?.
      Parameters:
      companyId - the company ID
      type - the type
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching client extension entry
      Throws:
      NoSuchClientExtensionEntryException - if a matching client extension entry could not be found
      NoSuchClientExtensionEntryException
    • fetchByC_T_Last

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

      public static ClientExtensionEntry[] findByC_T_PrevAndNext(long clientExtensionEntryId, long companyId, String type, com.liferay.portal.kernel.util.OrderByComparator<ClientExtensionEntry> orderByComparator) throws NoSuchClientExtensionEntryException
      Returns the client extension entries before and after the current client extension entry in the ordered set where companyId = ? and type = ?.
      Parameters:
      clientExtensionEntryId - the primary key of the current client extension entry
      companyId - the company ID
      type - the type
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next client extension entry
      Throws:
      NoSuchClientExtensionEntryException - if a client extension entry with the primary key could not be found
      NoSuchClientExtensionEntryException
    • filterFindByC_T

      public static List<ClientExtensionEntry> filterFindByC_T(long companyId, String type)
      Returns all the client extension entries that the user has permission to view where companyId = ? and type = ?.
      Parameters:
      companyId - the company ID
      type - the type
      Returns:
      the matching client extension entries that the user has permission to view
    • filterFindByC_T

      public static List<ClientExtensionEntry> filterFindByC_T(long companyId, String type, int start, int end)
      Returns a range of all the client extension entries that the user has permission to view where companyId = ? and type = ?.

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

      Parameters:
      companyId - the company ID
      type - the type
      start - the lower bound of the range of client extension entries
      end - the upper bound of the range of client extension entries (not inclusive)
      Returns:
      the range of matching client extension entries that the user has permission to view
    • filterFindByC_T

      public static List<ClientExtensionEntry> filterFindByC_T(long companyId, String type, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<ClientExtensionEntry> orderByComparator)
      Returns an ordered range of all the client extension entries that the user has permissions to view where companyId = ? and type = ?.

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

      Parameters:
      companyId - the company ID
      type - the type
      start - the lower bound of the range of client extension entries
      end - the upper bound of the range of client extension entries (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching client extension entries that the user has permission to view
    • filterFindByC_T_PrevAndNext

      public static ClientExtensionEntry[] filterFindByC_T_PrevAndNext(long clientExtensionEntryId, long companyId, String type, com.liferay.portal.kernel.util.OrderByComparator<ClientExtensionEntry> orderByComparator) throws NoSuchClientExtensionEntryException
      Returns the client extension entries before and after the current client extension entry in the ordered set of client extension entries that the user has permission to view where companyId = ? and type = ?.
      Parameters:
      clientExtensionEntryId - the primary key of the current client extension entry
      companyId - the company ID
      type - the type
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next client extension entry
      Throws:
      NoSuchClientExtensionEntryException - if a client extension entry with the primary key could not be found
      NoSuchClientExtensionEntryException
    • removeByC_T

      public static void removeByC_T(long companyId, String type)
      Removes all the client extension entries where companyId = ? and type = ? from the database.
      Parameters:
      companyId - the company ID
      type - the type
    • countByC_T

      public static int countByC_T(long companyId, String type)
      Returns the number of client extension entries where companyId = ? and type = ?.
      Parameters:
      companyId - the company ID
      type - the type
      Returns:
      the number of matching client extension entries
    • filterCountByC_T

      public static int filterCountByC_T(long companyId, String type)
      Returns the number of client extension entries that the user has permission to view where companyId = ? and type = ?.
      Parameters:
      companyId - the company ID
      type - the type
      Returns:
      the number of matching client extension entries that the user has permission to view
    • findByERC_C

      public static ClientExtensionEntry findByERC_C(String externalReferenceCode, long companyId) throws NoSuchClientExtensionEntryException
      Returns the client extension entry where externalReferenceCode = ? and companyId = ? or throws a NoSuchClientExtensionEntryException if it could not be found.
      Parameters:
      externalReferenceCode - the external reference code
      companyId - the company ID
      Returns:
      the matching client extension entry
      Throws:
      NoSuchClientExtensionEntryException - if a matching client extension entry could not be found
      NoSuchClientExtensionEntryException
    • fetchByERC_C

      public static ClientExtensionEntry fetchByERC_C(String externalReferenceCode, long companyId)
      Returns the client extension entry 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 client extension entry, or null if a matching client extension entry could not be found
    • fetchByERC_C

      public static ClientExtensionEntry fetchByERC_C(String externalReferenceCode, long companyId, boolean useFinderCache)
      Returns the client extension entry 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 client extension entry, or null if a matching client extension entry could not be found
    • removeByERC_C

      public static ClientExtensionEntry removeByERC_C(String externalReferenceCode, long companyId) throws NoSuchClientExtensionEntryException
      Removes the client extension entry where externalReferenceCode = ? and companyId = ? from the database.
      Parameters:
      externalReferenceCode - the external reference code
      companyId - the company ID
      Returns:
      the client extension entry that was removed
      Throws:
      NoSuchClientExtensionEntryException
    • countByERC_C

      public static int countByERC_C(String externalReferenceCode, long companyId)
      Returns the number of client extension entries where externalReferenceCode = ? and companyId = ?.
      Parameters:
      externalReferenceCode - the external reference code
      companyId - the company ID
      Returns:
      the number of matching client extension entries
    • cacheResult

      public static void cacheResult(ClientExtensionEntry clientExtensionEntry)
      Caches the client extension entry in the entity cache if it is enabled.
      Parameters:
      clientExtensionEntry - the client extension entry
    • cacheResult

      public static void cacheResult(List<ClientExtensionEntry> clientExtensionEntries)
      Caches the client extension entries in the entity cache if it is enabled.
      Parameters:
      clientExtensionEntries - the client extension entries
    • create

      public static ClientExtensionEntry create(long clientExtensionEntryId)
      Creates a new client extension entry with the primary key. Does not add the client extension entry to the database.
      Parameters:
      clientExtensionEntryId - the primary key for the new client extension entry
      Returns:
      the new client extension entry
    • remove

      public static ClientExtensionEntry remove(long clientExtensionEntryId) throws NoSuchClientExtensionEntryException
      Removes the client extension entry with the primary key from the database. Also notifies the appropriate model listeners.
      Parameters:
      clientExtensionEntryId - the primary key of the client extension entry
      Returns:
      the client extension entry that was removed
      Throws:
      NoSuchClientExtensionEntryException - if a client extension entry with the primary key could not be found
      NoSuchClientExtensionEntryException
    • updateImpl

      public static ClientExtensionEntry updateImpl(ClientExtensionEntry clientExtensionEntry)
    • findByPrimaryKey

      public static ClientExtensionEntry findByPrimaryKey(long clientExtensionEntryId) throws NoSuchClientExtensionEntryException
      Returns the client extension entry with the primary key or throws a NoSuchClientExtensionEntryException if it could not be found.
      Parameters:
      clientExtensionEntryId - the primary key of the client extension entry
      Returns:
      the client extension entry
      Throws:
      NoSuchClientExtensionEntryException - if a client extension entry with the primary key could not be found
      NoSuchClientExtensionEntryException
    • fetchByPrimaryKey

      public static ClientExtensionEntry fetchByPrimaryKey(long clientExtensionEntryId)
      Returns the client extension entry with the primary key or returns null if it could not be found.
      Parameters:
      clientExtensionEntryId - the primary key of the client extension entry
      Returns:
      the client extension entry, or null if a client extension entry with the primary key could not be found
    • findAll

      public static List<ClientExtensionEntry> findAll()
      Returns all the client extension entries.
      Returns:
      the client extension entries
    • findAll

      public static List<ClientExtensionEntry> findAll(int start, int end)
      Returns a range of all the client extension entries.

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

      Parameters:
      start - the lower bound of the range of client extension entries
      end - the upper bound of the range of client extension entries (not inclusive)
      Returns:
      the range of client extension entries
    • findAll

      public static List<ClientExtensionEntry> findAll(int start, int end, com.liferay.portal.kernel.util.OrderByComparator<ClientExtensionEntry> orderByComparator)
      Returns an ordered range of all the client extension entries.

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

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

      public static List<ClientExtensionEntry> findAll(int start, int end, com.liferay.portal.kernel.util.OrderByComparator<ClientExtensionEntry> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the client extension entries.

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

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

      public static void removeAll()
      Removes all the client extension entries from the database.
    • countAll

      public static int countAll()
      Returns the number of client extension entries.
      Returns:
      the number of client extension entries
    • getPersistence

      public static ClientExtensionEntryPersistence getPersistence()
    • setPersistence

      public static void setPersistence(ClientExtensionEntryPersistence persistence)