Interface AssetDisplayPageEntryPersistence

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

@ProviderType public interface AssetDisplayPageEntryPersistence extends com.liferay.portal.kernel.service.persistence.BasePersistence<AssetDisplayPageEntry>, com.liferay.portal.kernel.service.persistence.change.tracking.CTPersistence<AssetDisplayPageEntry>
The persistence interface for the asset display page entry service.

Caching information and settings can be found in portal.properties

See Also:
Generated:
  • Method Details

    • findByUuid

      List<AssetDisplayPageEntry> findByUuid(String uuid)
      Returns all the asset display page entries where uuid = ?.
      Parameters:
      uuid - the uuid
      Returns:
      the matching asset display page entries
    • findByUuid

      List<AssetDisplayPageEntry> findByUuid(String uuid, int start, int end)
      Returns a range of all the asset display page 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 AssetDisplayPageEntryModelImpl.

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

      List<AssetDisplayPageEntry> findByUuid(String uuid, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<AssetDisplayPageEntry> orderByComparator)
      Returns an ordered range of all the asset display page 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 AssetDisplayPageEntryModelImpl.

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

      List<AssetDisplayPageEntry> findByUuid(String uuid, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<AssetDisplayPageEntry> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the asset display page 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 AssetDisplayPageEntryModelImpl.

      Parameters:
      uuid - the uuid
      start - the lower bound of the range of asset display page entries
      end - the upper bound of the range of asset display page 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 asset display page entries
    • findByUuid_First

      AssetDisplayPageEntry findByUuid_First(String uuid, com.liferay.portal.kernel.util.OrderByComparator<AssetDisplayPageEntry> orderByComparator) throws NoSuchDisplayPageEntryException
      Returns the first asset display page 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 asset display page entry
      Throws:
      NoSuchDisplayPageEntryException - if a matching asset display page entry could not be found
    • fetchByUuid_First

      AssetDisplayPageEntry fetchByUuid_First(String uuid, com.liferay.portal.kernel.util.OrderByComparator<AssetDisplayPageEntry> orderByComparator)
      Returns the first asset display page 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 asset display page entry, or null if a matching asset display page entry could not be found
    • findByUuid_Last

      AssetDisplayPageEntry findByUuid_Last(String uuid, com.liferay.portal.kernel.util.OrderByComparator<AssetDisplayPageEntry> orderByComparator) throws NoSuchDisplayPageEntryException
      Returns the last asset display page 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 asset display page entry
      Throws:
      NoSuchDisplayPageEntryException - if a matching asset display page entry could not be found
    • fetchByUuid_Last

      AssetDisplayPageEntry fetchByUuid_Last(String uuid, com.liferay.portal.kernel.util.OrderByComparator<AssetDisplayPageEntry> orderByComparator)
      Returns the last asset display page 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 asset display page entry, or null if a matching asset display page entry could not be found
    • findByUuid_PrevAndNext

      AssetDisplayPageEntry[] findByUuid_PrevAndNext(long assetDisplayPageEntryId, String uuid, com.liferay.portal.kernel.util.OrderByComparator<AssetDisplayPageEntry> orderByComparator) throws NoSuchDisplayPageEntryException
      Returns the asset display page entries before and after the current asset display page entry in the ordered set where uuid = ?.
      Parameters:
      assetDisplayPageEntryId - the primary key of the current asset display page entry
      uuid - the uuid
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next asset display page entry
      Throws:
      NoSuchDisplayPageEntryException - if a asset display page entry with the primary key could not be found
    • removeByUuid

      void removeByUuid(String uuid)
      Removes all the asset display page entries where uuid = ? from the database.
      Parameters:
      uuid - the uuid
    • countByUuid

      int countByUuid(String uuid)
      Returns the number of asset display page entries where uuid = ?.
      Parameters:
      uuid - the uuid
      Returns:
      the number of matching asset display page entries
    • findByUUID_G

      AssetDisplayPageEntry findByUUID_G(String uuid, long groupId) throws NoSuchDisplayPageEntryException
      Returns the asset display page entry where uuid = ? and groupId = ? or throws a NoSuchDisplayPageEntryException if it could not be found.
      Parameters:
      uuid - the uuid
      groupId - the group ID
      Returns:
      the matching asset display page entry
      Throws:
      NoSuchDisplayPageEntryException - if a matching asset display page entry could not be found
    • fetchByUUID_G

      AssetDisplayPageEntry fetchByUUID_G(String uuid, long groupId)
      Returns the asset display page entry 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 asset display page entry, or null if a matching asset display page entry could not be found
    • fetchByUUID_G

      AssetDisplayPageEntry fetchByUUID_G(String uuid, long groupId, boolean useFinderCache)
      Returns the asset display page entry 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 asset display page entry, or null if a matching asset display page entry could not be found
    • removeByUUID_G

      AssetDisplayPageEntry removeByUUID_G(String uuid, long groupId) throws NoSuchDisplayPageEntryException
      Removes the asset display page entry where uuid = ? and groupId = ? from the database.
      Parameters:
      uuid - the uuid
      groupId - the group ID
      Returns:
      the asset display page entry that was removed
      Throws:
      NoSuchDisplayPageEntryException
    • countByUUID_G

      int countByUUID_G(String uuid, long groupId)
      Returns the number of asset display page entries where uuid = ? and groupId = ?.
      Parameters:
      uuid - the uuid
      groupId - the group ID
      Returns:
      the number of matching asset display page entries
    • findByUuid_C

      List<AssetDisplayPageEntry> findByUuid_C(String uuid, long companyId)
      Returns all the asset display page entries where uuid = ? and companyId = ?.
      Parameters:
      uuid - the uuid
      companyId - the company ID
      Returns:
      the matching asset display page entries
    • findByUuid_C

      List<AssetDisplayPageEntry> findByUuid_C(String uuid, long companyId, int start, int end)
      Returns a range of all the asset display page 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 AssetDisplayPageEntryModelImpl.

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

      List<AssetDisplayPageEntry> findByUuid_C(String uuid, long companyId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<AssetDisplayPageEntry> orderByComparator)
      Returns an ordered range of all the asset display page 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 AssetDisplayPageEntryModelImpl.

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

      List<AssetDisplayPageEntry> findByUuid_C(String uuid, long companyId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<AssetDisplayPageEntry> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the asset display page 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 AssetDisplayPageEntryModelImpl.

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

      AssetDisplayPageEntry findByUuid_C_First(String uuid, long companyId, com.liferay.portal.kernel.util.OrderByComparator<AssetDisplayPageEntry> orderByComparator) throws NoSuchDisplayPageEntryException
      Returns the first asset display page 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 asset display page entry
      Throws:
      NoSuchDisplayPageEntryException - if a matching asset display page entry could not be found
    • fetchByUuid_C_First

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

      AssetDisplayPageEntry findByUuid_C_Last(String uuid, long companyId, com.liferay.portal.kernel.util.OrderByComparator<AssetDisplayPageEntry> orderByComparator) throws NoSuchDisplayPageEntryException
      Returns the last asset display page 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 asset display page entry
      Throws:
      NoSuchDisplayPageEntryException - if a matching asset display page entry could not be found
    • fetchByUuid_C_Last

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

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

      void removeByUuid_C(String uuid, long companyId)
      Removes all the asset display page entries 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 asset display page entries where uuid = ? and companyId = ?.
      Parameters:
      uuid - the uuid
      companyId - the company ID
      Returns:
      the number of matching asset display page entries
    • findByGroupId

      List<AssetDisplayPageEntry> findByGroupId(long groupId)
      Returns all the asset display page entries where groupId = ?.
      Parameters:
      groupId - the group ID
      Returns:
      the matching asset display page entries
    • findByGroupId

      List<AssetDisplayPageEntry> findByGroupId(long groupId, int start, int end)
      Returns a range of all the asset display page entries 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 AssetDisplayPageEntryModelImpl.

      Parameters:
      groupId - the group ID
      start - the lower bound of the range of asset display page entries
      end - the upper bound of the range of asset display page entries (not inclusive)
      Returns:
      the range of matching asset display page entries
    • findByGroupId

      List<AssetDisplayPageEntry> findByGroupId(long groupId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<AssetDisplayPageEntry> orderByComparator)
      Returns an ordered range of all the asset display page entries 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 AssetDisplayPageEntryModelImpl.

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

      List<AssetDisplayPageEntry> findByGroupId(long groupId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<AssetDisplayPageEntry> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the asset display page entries 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 AssetDisplayPageEntryModelImpl.

      Parameters:
      groupId - the group ID
      start - the lower bound of the range of asset display page entries
      end - the upper bound of the range of asset display page 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 asset display page entries
    • findByGroupId_First

      AssetDisplayPageEntry findByGroupId_First(long groupId, com.liferay.portal.kernel.util.OrderByComparator<AssetDisplayPageEntry> orderByComparator) throws NoSuchDisplayPageEntryException
      Returns the first asset display page entry 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 asset display page entry
      Throws:
      NoSuchDisplayPageEntryException - if a matching asset display page entry could not be found
    • fetchByGroupId_First

      AssetDisplayPageEntry fetchByGroupId_First(long groupId, com.liferay.portal.kernel.util.OrderByComparator<AssetDisplayPageEntry> orderByComparator)
      Returns the first asset display page entry 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 asset display page entry, or null if a matching asset display page entry could not be found
    • findByGroupId_Last

      AssetDisplayPageEntry findByGroupId_Last(long groupId, com.liferay.portal.kernel.util.OrderByComparator<AssetDisplayPageEntry> orderByComparator) throws NoSuchDisplayPageEntryException
      Returns the last asset display page entry 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 asset display page entry
      Throws:
      NoSuchDisplayPageEntryException - if a matching asset display page entry could not be found
    • fetchByGroupId_Last

      AssetDisplayPageEntry fetchByGroupId_Last(long groupId, com.liferay.portal.kernel.util.OrderByComparator<AssetDisplayPageEntry> orderByComparator)
      Returns the last asset display page entry 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 asset display page entry, or null if a matching asset display page entry could not be found
    • findByGroupId_PrevAndNext

      AssetDisplayPageEntry[] findByGroupId_PrevAndNext(long assetDisplayPageEntryId, long groupId, com.liferay.portal.kernel.util.OrderByComparator<AssetDisplayPageEntry> orderByComparator) throws NoSuchDisplayPageEntryException
      Returns the asset display page entries before and after the current asset display page entry in the ordered set where groupId = ?.
      Parameters:
      assetDisplayPageEntryId - the primary key of the current asset display page entry
      groupId - the group ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next asset display page entry
      Throws:
      NoSuchDisplayPageEntryException - if a asset display page entry with the primary key could not be found
    • removeByGroupId

      void removeByGroupId(long groupId)
      Removes all the asset display page entries where groupId = ? from the database.
      Parameters:
      groupId - the group ID
    • countByGroupId

      int countByGroupId(long groupId)
      Returns the number of asset display page entries where groupId = ?.
      Parameters:
      groupId - the group ID
      Returns:
      the number of matching asset display page entries
    • findByLayoutPageTemplateEntryId

      List<AssetDisplayPageEntry> findByLayoutPageTemplateEntryId(long layoutPageTemplateEntryId)
      Returns all the asset display page entries where layoutPageTemplateEntryId = ?.
      Parameters:
      layoutPageTemplateEntryId - the layout page template entry ID
      Returns:
      the matching asset display page entries
    • findByLayoutPageTemplateEntryId

      List<AssetDisplayPageEntry> findByLayoutPageTemplateEntryId(long layoutPageTemplateEntryId, int start, int end)
      Returns a range of all the asset display page entries where layoutPageTemplateEntryId = ?.

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

      Parameters:
      layoutPageTemplateEntryId - the layout page template entry ID
      start - the lower bound of the range of asset display page entries
      end - the upper bound of the range of asset display page entries (not inclusive)
      Returns:
      the range of matching asset display page entries
    • findByLayoutPageTemplateEntryId

      List<AssetDisplayPageEntry> findByLayoutPageTemplateEntryId(long layoutPageTemplateEntryId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<AssetDisplayPageEntry> orderByComparator)
      Returns an ordered range of all the asset display page entries where layoutPageTemplateEntryId = ?.

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

      Parameters:
      layoutPageTemplateEntryId - the layout page template entry ID
      start - the lower bound of the range of asset display page entries
      end - the upper bound of the range of asset display page entries (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching asset display page entries
    • findByLayoutPageTemplateEntryId

      List<AssetDisplayPageEntry> findByLayoutPageTemplateEntryId(long layoutPageTemplateEntryId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<AssetDisplayPageEntry> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the asset display page entries where layoutPageTemplateEntryId = ?.

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

      Parameters:
      layoutPageTemplateEntryId - the layout page template entry ID
      start - the lower bound of the range of asset display page entries
      end - the upper bound of the range of asset display page 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 asset display page entries
    • findByLayoutPageTemplateEntryId_First

      AssetDisplayPageEntry findByLayoutPageTemplateEntryId_First(long layoutPageTemplateEntryId, com.liferay.portal.kernel.util.OrderByComparator<AssetDisplayPageEntry> orderByComparator) throws NoSuchDisplayPageEntryException
      Returns the first asset display page entry in the ordered set where layoutPageTemplateEntryId = ?.
      Parameters:
      layoutPageTemplateEntryId - the layout page template entry ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching asset display page entry
      Throws:
      NoSuchDisplayPageEntryException - if a matching asset display page entry could not be found
    • fetchByLayoutPageTemplateEntryId_First

      AssetDisplayPageEntry fetchByLayoutPageTemplateEntryId_First(long layoutPageTemplateEntryId, com.liferay.portal.kernel.util.OrderByComparator<AssetDisplayPageEntry> orderByComparator)
      Returns the first asset display page entry in the ordered set where layoutPageTemplateEntryId = ?.
      Parameters:
      layoutPageTemplateEntryId - the layout page template entry ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching asset display page entry, or null if a matching asset display page entry could not be found
    • findByLayoutPageTemplateEntryId_Last

      AssetDisplayPageEntry findByLayoutPageTemplateEntryId_Last(long layoutPageTemplateEntryId, com.liferay.portal.kernel.util.OrderByComparator<AssetDisplayPageEntry> orderByComparator) throws NoSuchDisplayPageEntryException
      Returns the last asset display page entry in the ordered set where layoutPageTemplateEntryId = ?.
      Parameters:
      layoutPageTemplateEntryId - the layout page template entry ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching asset display page entry
      Throws:
      NoSuchDisplayPageEntryException - if a matching asset display page entry could not be found
    • fetchByLayoutPageTemplateEntryId_Last

      AssetDisplayPageEntry fetchByLayoutPageTemplateEntryId_Last(long layoutPageTemplateEntryId, com.liferay.portal.kernel.util.OrderByComparator<AssetDisplayPageEntry> orderByComparator)
      Returns the last asset display page entry in the ordered set where layoutPageTemplateEntryId = ?.
      Parameters:
      layoutPageTemplateEntryId - the layout page template entry ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching asset display page entry, or null if a matching asset display page entry could not be found
    • findByLayoutPageTemplateEntryId_PrevAndNext

      AssetDisplayPageEntry[] findByLayoutPageTemplateEntryId_PrevAndNext(long assetDisplayPageEntryId, long layoutPageTemplateEntryId, com.liferay.portal.kernel.util.OrderByComparator<AssetDisplayPageEntry> orderByComparator) throws NoSuchDisplayPageEntryException
      Returns the asset display page entries before and after the current asset display page entry in the ordered set where layoutPageTemplateEntryId = ?.
      Parameters:
      assetDisplayPageEntryId - the primary key of the current asset display page entry
      layoutPageTemplateEntryId - the layout page template entry ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next asset display page entry
      Throws:
      NoSuchDisplayPageEntryException - if a asset display page entry with the primary key could not be found
    • removeByLayoutPageTemplateEntryId

      void removeByLayoutPageTemplateEntryId(long layoutPageTemplateEntryId)
      Removes all the asset display page entries where layoutPageTemplateEntryId = ? from the database.
      Parameters:
      layoutPageTemplateEntryId - the layout page template entry ID
    • countByLayoutPageTemplateEntryId

      int countByLayoutPageTemplateEntryId(long layoutPageTemplateEntryId)
      Returns the number of asset display page entries where layoutPageTemplateEntryId = ?.
      Parameters:
      layoutPageTemplateEntryId - the layout page template entry ID
      Returns:
      the number of matching asset display page entries
    • findByG_CN

      List<AssetDisplayPageEntry> findByG_CN(long groupId, long classNameId)
      Returns all the asset display page entries where groupId = ? and classNameId = ?.
      Parameters:
      groupId - the group ID
      classNameId - the class name ID
      Returns:
      the matching asset display page entries
    • findByG_CN

      List<AssetDisplayPageEntry> findByG_CN(long groupId, long classNameId, int start, int end)
      Returns a range of all the asset display page entries where groupId = ? and classNameId = ?.

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

      Parameters:
      groupId - the group ID
      classNameId - the class name ID
      start - the lower bound of the range of asset display page entries
      end - the upper bound of the range of asset display page entries (not inclusive)
      Returns:
      the range of matching asset display page entries
    • findByG_CN

      List<AssetDisplayPageEntry> findByG_CN(long groupId, long classNameId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<AssetDisplayPageEntry> orderByComparator)
      Returns an ordered range of all the asset display page entries where groupId = ? and classNameId = ?.

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

      Parameters:
      groupId - the group ID
      classNameId - the class name ID
      start - the lower bound of the range of asset display page entries
      end - the upper bound of the range of asset display page entries (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching asset display page entries
    • findByG_CN

      List<AssetDisplayPageEntry> findByG_CN(long groupId, long classNameId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<AssetDisplayPageEntry> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the asset display page entries where groupId = ? and classNameId = ?.

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

      Parameters:
      groupId - the group ID
      classNameId - the class name ID
      start - the lower bound of the range of asset display page entries
      end - the upper bound of the range of asset display page 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 asset display page entries
    • findByG_CN_First

      AssetDisplayPageEntry findByG_CN_First(long groupId, long classNameId, com.liferay.portal.kernel.util.OrderByComparator<AssetDisplayPageEntry> orderByComparator) throws NoSuchDisplayPageEntryException
      Returns the first asset display page entry in the ordered set where groupId = ? and classNameId = ?.
      Parameters:
      groupId - the group ID
      classNameId - the class name ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching asset display page entry
      Throws:
      NoSuchDisplayPageEntryException - if a matching asset display page entry could not be found
    • fetchByG_CN_First

      AssetDisplayPageEntry fetchByG_CN_First(long groupId, long classNameId, com.liferay.portal.kernel.util.OrderByComparator<AssetDisplayPageEntry> orderByComparator)
      Returns the first asset display page entry in the ordered set where groupId = ? and classNameId = ?.
      Parameters:
      groupId - the group ID
      classNameId - the class name ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching asset display page entry, or null if a matching asset display page entry could not be found
    • findByG_CN_Last

      AssetDisplayPageEntry findByG_CN_Last(long groupId, long classNameId, com.liferay.portal.kernel.util.OrderByComparator<AssetDisplayPageEntry> orderByComparator) throws NoSuchDisplayPageEntryException
      Returns the last asset display page entry in the ordered set where groupId = ? and classNameId = ?.
      Parameters:
      groupId - the group ID
      classNameId - the class name ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching asset display page entry
      Throws:
      NoSuchDisplayPageEntryException - if a matching asset display page entry could not be found
    • fetchByG_CN_Last

      AssetDisplayPageEntry fetchByG_CN_Last(long groupId, long classNameId, com.liferay.portal.kernel.util.OrderByComparator<AssetDisplayPageEntry> orderByComparator)
      Returns the last asset display page entry in the ordered set where groupId = ? and classNameId = ?.
      Parameters:
      groupId - the group ID
      classNameId - the class name ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching asset display page entry, or null if a matching asset display page entry could not be found
    • findByG_CN_PrevAndNext

      AssetDisplayPageEntry[] findByG_CN_PrevAndNext(long assetDisplayPageEntryId, long groupId, long classNameId, com.liferay.portal.kernel.util.OrderByComparator<AssetDisplayPageEntry> orderByComparator) throws NoSuchDisplayPageEntryException
      Returns the asset display page entries before and after the current asset display page entry in the ordered set where groupId = ? and classNameId = ?.
      Parameters:
      assetDisplayPageEntryId - the primary key of the current asset display page entry
      groupId - the group ID
      classNameId - the class name ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next asset display page entry
      Throws:
      NoSuchDisplayPageEntryException - if a asset display page entry with the primary key could not be found
    • removeByG_CN

      void removeByG_CN(long groupId, long classNameId)
      Removes all the asset display page entries where groupId = ? and classNameId = ? from the database.
      Parameters:
      groupId - the group ID
      classNameId - the class name ID
    • countByG_CN

      int countByG_CN(long groupId, long classNameId)
      Returns the number of asset display page entries where groupId = ? and classNameId = ?.
      Parameters:
      groupId - the group ID
      classNameId - the class name ID
      Returns:
      the number of matching asset display page entries
    • findByG_C_C

      AssetDisplayPageEntry findByG_C_C(long groupId, long classNameId, long classPK) throws NoSuchDisplayPageEntryException
      Returns the asset display page entry where groupId = ? and classNameId = ? and classPK = ? or throws a NoSuchDisplayPageEntryException if it could not be found.
      Parameters:
      groupId - the group ID
      classNameId - the class name ID
      classPK - the class pk
      Returns:
      the matching asset display page entry
      Throws:
      NoSuchDisplayPageEntryException - if a matching asset display page entry could not be found
    • fetchByG_C_C

      AssetDisplayPageEntry fetchByG_C_C(long groupId, long classNameId, long classPK)
      Returns the asset display page entry where groupId = ? and classNameId = ? and classPK = ? or returns null if it could not be found. Uses the finder cache.
      Parameters:
      groupId - the group ID
      classNameId - the class name ID
      classPK - the class pk
      Returns:
      the matching asset display page entry, or null if a matching asset display page entry could not be found
    • fetchByG_C_C

      AssetDisplayPageEntry fetchByG_C_C(long groupId, long classNameId, long classPK, boolean useFinderCache)
      Returns the asset display page entry where groupId = ? and classNameId = ? and classPK = ? or returns null if it could not be found, optionally using the finder cache.
      Parameters:
      groupId - the group ID
      classNameId - the class name ID
      classPK - the class pk
      useFinderCache - whether to use the finder cache
      Returns:
      the matching asset display page entry, or null if a matching asset display page entry could not be found
    • removeByG_C_C

      AssetDisplayPageEntry removeByG_C_C(long groupId, long classNameId, long classPK) throws NoSuchDisplayPageEntryException
      Removes the asset display page entry where groupId = ? and classNameId = ? and classPK = ? from the database.
      Parameters:
      groupId - the group ID
      classNameId - the class name ID
      classPK - the class pk
      Returns:
      the asset display page entry that was removed
      Throws:
      NoSuchDisplayPageEntryException
    • countByG_C_C

      int countByG_C_C(long groupId, long classNameId, long classPK)
      Returns the number of asset display page entries where groupId = ? and classNameId = ? and classPK = ?.
      Parameters:
      groupId - the group ID
      classNameId - the class name ID
      classPK - the class pk
      Returns:
      the number of matching asset display page entries
    • cacheResult

      void cacheResult(AssetDisplayPageEntry assetDisplayPageEntry)
      Caches the asset display page entry in the entity cache if it is enabled.
      Parameters:
      assetDisplayPageEntry - the asset display page entry
    • cacheResult

      void cacheResult(List<AssetDisplayPageEntry> assetDisplayPageEntries)
      Caches the asset display page entries in the entity cache if it is enabled.
      Parameters:
      assetDisplayPageEntries - the asset display page entries
    • create

      AssetDisplayPageEntry create(long assetDisplayPageEntryId)
      Creates a new asset display page entry with the primary key. Does not add the asset display page entry to the database.
      Parameters:
      assetDisplayPageEntryId - the primary key for the new asset display page entry
      Returns:
      the new asset display page entry
    • remove

      AssetDisplayPageEntry remove(long assetDisplayPageEntryId) throws NoSuchDisplayPageEntryException
      Removes the asset display page entry with the primary key from the database. Also notifies the appropriate model listeners.
      Parameters:
      assetDisplayPageEntryId - the primary key of the asset display page entry
      Returns:
      the asset display page entry that was removed
      Throws:
      NoSuchDisplayPageEntryException - if a asset display page entry with the primary key could not be found
    • updateImpl

      AssetDisplayPageEntry updateImpl(AssetDisplayPageEntry assetDisplayPageEntry)
    • findByPrimaryKey

      AssetDisplayPageEntry findByPrimaryKey(long assetDisplayPageEntryId) throws NoSuchDisplayPageEntryException
      Returns the asset display page entry with the primary key or throws a NoSuchDisplayPageEntryException if it could not be found.
      Parameters:
      assetDisplayPageEntryId - the primary key of the asset display page entry
      Returns:
      the asset display page entry
      Throws:
      NoSuchDisplayPageEntryException - if a asset display page entry with the primary key could not be found
    • fetchByPrimaryKey

      AssetDisplayPageEntry fetchByPrimaryKey(long assetDisplayPageEntryId)
      Returns the asset display page entry with the primary key or returns null if it could not be found.
      Parameters:
      assetDisplayPageEntryId - the primary key of the asset display page entry
      Returns:
      the asset display page entry, or null if a asset display page entry with the primary key could not be found
    • findAll

      Returns all the asset display page entries.
      Returns:
      the asset display page entries
    • findAll

      List<AssetDisplayPageEntry> findAll(int start, int end)
      Returns a range of all the asset display page 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 AssetDisplayPageEntryModelImpl.

      Parameters:
      start - the lower bound of the range of asset display page entries
      end - the upper bound of the range of asset display page entries (not inclusive)
      Returns:
      the range of asset display page entries
    • findAll

      List<AssetDisplayPageEntry> findAll(int start, int end, com.liferay.portal.kernel.util.OrderByComparator<AssetDisplayPageEntry> orderByComparator)
      Returns an ordered range of all the asset display page 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 AssetDisplayPageEntryModelImpl.

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

      List<AssetDisplayPageEntry> findAll(int start, int end, com.liferay.portal.kernel.util.OrderByComparator<AssetDisplayPageEntry> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the asset display page 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 AssetDisplayPageEntryModelImpl.

      Parameters:
      start - the lower bound of the range of asset display page entries
      end - the upper bound of the range of asset display page 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 asset display page entries
    • removeAll

      void removeAll()
      Removes all the asset display page entries from the database.
    • countAll

      int countAll()
      Returns the number of asset display page entries.
      Returns:
      the number of asset display page entries