Interface BlogsEntryPersistence

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

@ProviderType public interface BlogsEntryPersistence extends com.liferay.portal.kernel.service.persistence.BasePersistence<BlogsEntry>, com.liferay.portal.kernel.service.persistence.change.tracking.CTPersistence<BlogsEntry>
The persistence interface for the blogs entry service.

Caching information and settings can be found in portal.properties

See Also:
Generated:
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    cacheResult(BlogsEntry blogsEntry)
    Caches the blogs entry in the entity cache if it is enabled.
    void
    cacheResult(List<BlogsEntry> blogsEntries)
    Caches the blogs entries in the entity cache if it is enabled.
    int
    Returns the number of blogs entries.
    int
    countByC_LtD(long companyId, Date displayDate)
    Returns the number of blogs entries where companyId = ? and displayDate < ?.
    int
    countByC_LtD_NotS(long companyId, Date displayDate, int status)
    Returns the number of blogs entries where companyId = ? and displayDate < ? and status ≠ ?.
    int
    countByC_LtD_S(long companyId, Date displayDate, int status)
    Returns the number of blogs entries where companyId = ? and displayDate < ? and status = ?.
    int
    countByC_NotS(long companyId, int status)
    Returns the number of blogs entries where companyId = ? and status ≠ ?.
    int
    countByC_S(long companyId, int status)
    Returns the number of blogs entries where companyId = ? and status = ?.
    int
    countByC_U(long companyId, long userId)
    Returns the number of blogs entries where companyId = ? and userId = ?.
    int
    countByC_U_NotS(long companyId, long userId, int status)
    Returns the number of blogs entries where companyId = ? and userId = ? and status ≠ ?.
    int
    countByC_U_S(long companyId, long userId, int status)
    Returns the number of blogs entries where companyId = ? and userId = ? and status = ?.
    int
    countByCompanyId(long companyId)
    Returns the number of blogs entries where companyId = ?.
    int
    countByERC_G(String externalReferenceCode, long groupId)
    Returns the number of blogs entries where externalReferenceCode = ? and groupId = ?.
    int
    countByG_D_S(long groupId, Date displayDate, int status)
    Returns the number of blogs entries where groupId = ? and displayDate = ? and status = ?.
    int
    countByG_GtD_S(long groupId, Date displayDate, int status)
    Returns the number of blogs entries where groupId = ? and displayDate > ? and status = ?.
    int
    countByG_LtD(long groupId, Date displayDate)
    Returns the number of blogs entries where groupId = ? and displayDate < ?.
    int
    countByG_LtD_NotS(long groupId, Date displayDate, int status)
    Returns the number of blogs entries where groupId = ? and displayDate < ? and status ≠ ?.
    int
    countByG_LtD_S(long groupId, Date displayDate, int status)
    Returns the number of blogs entries where groupId = ? and displayDate < ? and status = ?.
    int
    countByG_NotS(long groupId, int status)
    Returns the number of blogs entries where groupId = ? and status ≠ ?.
    int
    countByG_S(long groupId, int status)
    Returns the number of blogs entries where groupId = ? and status = ?.
    int
    countByG_U_LtD(long groupId, long userId, Date displayDate)
    Returns the number of blogs entries where groupId = ? and userId = ? and displayDate < ?.
    int
    countByG_U_LtD_NotS(long groupId, long userId, Date displayDate, int status)
    Returns the number of blogs entries where groupId = ? and userId = ? and displayDate < ? and status ≠ ?.
    int
    countByG_U_LtD_S(long groupId, long userId, Date displayDate, int status)
    Returns the number of blogs entries where groupId = ? and userId = ? and displayDate < ? and status = ?.
    int
    countByG_U_NotS(long groupId, long userId, int status)
    Returns the number of blogs entries where groupId = ? and userId = ? and status ≠ ?.
    int
    countByG_U_S(long groupId, long userId, int status)
    Returns the number of blogs entries where groupId = ? and userId = ? and status = ?.
    int
    countByG_U_S(long groupId, long userId, int[] statuses)
    Returns the number of blogs entries where groupId = ? and userId = ? and status = any ?.
    int
    countByG_UT(long groupId, String urlTitle)
    Returns the number of blogs entries where groupId = ? and urlTitle = ?.
    int
    countByGroupId(long groupId)
    Returns the number of blogs entries where groupId = ?.
    int
    countByLtD_S(Date displayDate, int status)
    Returns the number of blogs entries where displayDate < ? and status = ?.
    int
    Returns the number of blogs entries where uuid = ?.
    int
    countByUuid_C(String uuid, long companyId)
    Returns the number of blogs entries where uuid = ? and companyId = ?.
    int
    countByUUID_G(String uuid, long groupId)
    Returns the number of blogs entries where uuid = ? and groupId = ?.
    create(long entryId)
    Creates a new blogs entry with the primary key.
    fetchByC_LtD_First(long companyId, Date displayDate, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the first blogs entry in the ordered set where companyId = ? and displayDate < ?.
    fetchByC_LtD_Last(long companyId, Date displayDate, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the last blogs entry in the ordered set where companyId = ? and displayDate < ?.
    fetchByC_LtD_NotS_First(long companyId, Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the first blogs entry in the ordered set where companyId = ? and displayDate < ? and status ≠ ?.
    fetchByC_LtD_NotS_Last(long companyId, Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the last blogs entry in the ordered set where companyId = ? and displayDate < ? and status ≠ ?.
    fetchByC_LtD_S_First(long companyId, Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the first blogs entry in the ordered set where companyId = ? and displayDate < ? and status = ?.
    fetchByC_LtD_S_Last(long companyId, Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the last blogs entry in the ordered set where companyId = ? and displayDate < ? and status = ?.
    fetchByC_NotS_First(long companyId, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the first blogs entry in the ordered set where companyId = ? and status ≠ ?.
    fetchByC_NotS_Last(long companyId, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the last blogs entry in the ordered set where companyId = ? and status ≠ ?.
    fetchByC_S_First(long companyId, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the first blogs entry in the ordered set where companyId = ? and status = ?.
    fetchByC_S_Last(long companyId, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the last blogs entry in the ordered set where companyId = ? and status = ?.
    fetchByC_U_First(long companyId, long userId, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the first blogs entry in the ordered set where companyId = ? and userId = ?.
    fetchByC_U_Last(long companyId, long userId, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the last blogs entry in the ordered set where companyId = ? and userId = ?.
    fetchByC_U_NotS_First(long companyId, long userId, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the first blogs entry in the ordered set where companyId = ? and userId = ? and status ≠ ?.
    fetchByC_U_NotS_Last(long companyId, long userId, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the last blogs entry in the ordered set where companyId = ? and userId = ? and status ≠ ?.
    fetchByC_U_S_First(long companyId, long userId, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the first blogs entry in the ordered set where companyId = ? and userId = ? and status = ?.
    fetchByC_U_S_Last(long companyId, long userId, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the last blogs entry in the ordered set where companyId = ? and userId = ? and status = ?.
    fetchByCompanyId_First(long companyId, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the first blogs entry in the ordered set where companyId = ?.
    fetchByCompanyId_Last(long companyId, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the last blogs entry in the ordered set where companyId = ?.
    fetchByERC_G(String externalReferenceCode, long groupId)
    Returns the blogs entry where externalReferenceCode = ? and groupId = ? or returns null if it could not be found.
    fetchByERC_G(String externalReferenceCode, long groupId, boolean useFinderCache)
    Returns the blogs entry where externalReferenceCode = ? and groupId = ? or returns null if it could not be found, optionally using the finder cache.
    fetchByG_D_S_First(long groupId, Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the first blogs entry in the ordered set where groupId = ? and displayDate = ? and status = ?.
    fetchByG_D_S_Last(long groupId, Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the last blogs entry in the ordered set where groupId = ? and displayDate = ? and status = ?.
    fetchByG_GtD_S_First(long groupId, Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the first blogs entry in the ordered set where groupId = ? and displayDate > ? and status = ?.
    fetchByG_GtD_S_Last(long groupId, Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the last blogs entry in the ordered set where groupId = ? and displayDate > ? and status = ?.
    fetchByG_LtD_First(long groupId, Date displayDate, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the first blogs entry in the ordered set where groupId = ? and displayDate < ?.
    fetchByG_LtD_Last(long groupId, Date displayDate, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the last blogs entry in the ordered set where groupId = ? and displayDate < ?.
    fetchByG_LtD_NotS_First(long groupId, Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the first blogs entry in the ordered set where groupId = ? and displayDate < ? and status ≠ ?.
    fetchByG_LtD_NotS_Last(long groupId, Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the last blogs entry in the ordered set where groupId = ? and displayDate < ? and status ≠ ?.
    fetchByG_LtD_S_First(long groupId, Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the first blogs entry in the ordered set where groupId = ? and displayDate < ? and status = ?.
    fetchByG_LtD_S_Last(long groupId, Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the last blogs entry in the ordered set where groupId = ? and displayDate < ? and status = ?.
    fetchByG_NotS_First(long groupId, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the first blogs entry in the ordered set where groupId = ? and status ≠ ?.
    fetchByG_NotS_Last(long groupId, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the last blogs entry in the ordered set where groupId = ? and status ≠ ?.
    fetchByG_S_First(long groupId, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the first blogs entry in the ordered set where groupId = ? and status = ?.
    fetchByG_S_Last(long groupId, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the last blogs entry in the ordered set where groupId = ? and status = ?.
    fetchByG_U_LtD_First(long groupId, long userId, Date displayDate, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the first blogs entry in the ordered set where groupId = ? and userId = ? and displayDate < ?.
    fetchByG_U_LtD_Last(long groupId, long userId, Date displayDate, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the last blogs entry in the ordered set where groupId = ? and userId = ? and displayDate < ?.
    fetchByG_U_LtD_NotS_First(long groupId, long userId, Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the first blogs entry in the ordered set where groupId = ? and userId = ? and displayDate < ? and status ≠ ?.
    fetchByG_U_LtD_NotS_Last(long groupId, long userId, Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the last blogs entry in the ordered set where groupId = ? and userId = ? and displayDate < ? and status ≠ ?.
    fetchByG_U_LtD_S_First(long groupId, long userId, Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the first blogs entry in the ordered set where groupId = ? and userId = ? and displayDate < ? and status = ?.
    fetchByG_U_LtD_S_Last(long groupId, long userId, Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the last blogs entry in the ordered set where groupId = ? and userId = ? and displayDate < ? and status = ?.
    fetchByG_U_NotS_First(long groupId, long userId, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the first blogs entry in the ordered set where groupId = ? and userId = ? and status ≠ ?.
    fetchByG_U_NotS_Last(long groupId, long userId, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the last blogs entry in the ordered set where groupId = ? and userId = ? and status ≠ ?.
    fetchByG_U_S_First(long groupId, long userId, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the first blogs entry in the ordered set where groupId = ? and userId = ? and status = ?.
    fetchByG_U_S_Last(long groupId, long userId, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the last blogs entry in the ordered set where groupId = ? and userId = ? and status = ?.
    fetchByG_UT(long groupId, String urlTitle)
    Returns the blogs entry where groupId = ? and urlTitle = ? or returns null if it could not be found.
    fetchByG_UT(long groupId, String urlTitle, boolean useFinderCache)
    Returns the blogs entry where groupId = ? and urlTitle = ? or returns null if it could not be found, optionally using the finder cache.
    fetchByGroupId_First(long groupId, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the first blogs entry in the ordered set where groupId = ?.
    fetchByGroupId_Last(long groupId, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the last blogs entry in the ordered set where groupId = ?.
    fetchByLtD_S_First(Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the first blogs entry in the ordered set where displayDate < ? and status = ?.
    fetchByLtD_S_Last(Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the last blogs entry in the ordered set where displayDate < ? and status = ?.
    fetchByPrimaryKey(long entryId)
    Returns the blogs entry with the primary key or returns null if it could not be found.
    fetchByUuid_C_First(String uuid, long companyId, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the first blogs entry in the ordered set where uuid = ? and companyId = ?.
    fetchByUuid_C_Last(String uuid, long companyId, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the last blogs entry in the ordered set where uuid = ? and companyId = ?.
    fetchByUuid_First(String uuid, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the first blogs entry in the ordered set where uuid = ?.
    fetchByUUID_G(String uuid, long groupId)
    Returns the blogs entry where uuid = ? and groupId = ? or returns null if it could not be found.
    fetchByUUID_G(String uuid, long groupId, boolean useFinderCache)
    Returns the blogs entry where uuid = ? and groupId = ? or returns null if it could not be found, optionally using the finder cache.
    fetchByUuid_Last(String uuid, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the last blogs entry in the ordered set where uuid = ?.
    int
    filterCountByG_D_S(long groupId, Date displayDate, int status)
    Returns the number of blogs entries that the user has permission to view where groupId = ? and displayDate = ? and status = ?.
    int
    filterCountByG_GtD_S(long groupId, Date displayDate, int status)
    Returns the number of blogs entries that the user has permission to view where groupId = ? and displayDate > ? and status = ?.
    int
    filterCountByG_LtD(long groupId, Date displayDate)
    Returns the number of blogs entries that the user has permission to view where groupId = ? and displayDate < ?.
    int
    filterCountByG_LtD_NotS(long groupId, Date displayDate, int status)
    Returns the number of blogs entries that the user has permission to view where groupId = ? and displayDate < ? and status ≠ ?.
    int
    filterCountByG_LtD_S(long groupId, Date displayDate, int status)
    Returns the number of blogs entries that the user has permission to view where groupId = ? and displayDate < ? and status = ?.
    int
    filterCountByG_NotS(long groupId, int status)
    Returns the number of blogs entries that the user has permission to view where groupId = ? and status ≠ ?.
    int
    filterCountByG_S(long groupId, int status)
    Returns the number of blogs entries that the user has permission to view where groupId = ? and status = ?.
    int
    filterCountByG_U_LtD(long groupId, long userId, Date displayDate)
    Returns the number of blogs entries that the user has permission to view where groupId = ? and userId = ? and displayDate < ?.
    int
    filterCountByG_U_LtD_NotS(long groupId, long userId, Date displayDate, int status)
    Returns the number of blogs entries that the user has permission to view where groupId = ? and userId = ? and displayDate < ? and status ≠ ?.
    int
    filterCountByG_U_LtD_S(long groupId, long userId, Date displayDate, int status)
    Returns the number of blogs entries that the user has permission to view where groupId = ? and userId = ? and displayDate < ? and status = ?.
    int
    filterCountByG_U_NotS(long groupId, long userId, int status)
    Returns the number of blogs entries that the user has permission to view where groupId = ? and userId = ? and status ≠ ?.
    int
    filterCountByG_U_S(long groupId, long userId, int status)
    Returns the number of blogs entries that the user has permission to view where groupId = ? and userId = ? and status = ?.
    int
    filterCountByG_U_S(long groupId, long userId, int[] statuses)
    Returns the number of blogs entries that the user has permission to view where groupId = ? and userId = ? and status = any ?.
    int
    filterCountByGroupId(long groupId)
    Returns the number of blogs entries that the user has permission to view where groupId = ?.
    filterFindByG_D_S(long groupId, Date displayDate, int status)
    Returns all the blogs entries that the user has permission to view where groupId = ? and displayDate = ? and status = ?.
    filterFindByG_D_S(long groupId, Date displayDate, int status, int start, int end)
    Returns a range of all the blogs entries that the user has permission to view where groupId = ? and displayDate = ? and status = ?.
    filterFindByG_D_S(long groupId, Date displayDate, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns an ordered range of all the blogs entries that the user has permissions to view where groupId = ? and displayDate = ? and status = ?.
    filterFindByG_D_S_PrevAndNext(long entryId, long groupId, Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the blogs entries before and after the current blogs entry in the ordered set of blogs entries that the user has permission to view where groupId = ? and displayDate = ? and status = ?.
    filterFindByG_GtD_S(long groupId, Date displayDate, int status)
    Returns all the blogs entries that the user has permission to view where groupId = ? and displayDate > ? and status = ?.
    filterFindByG_GtD_S(long groupId, Date displayDate, int status, int start, int end)
    Returns a range of all the blogs entries that the user has permission to view where groupId = ? and displayDate > ? and status = ?.
    filterFindByG_GtD_S(long groupId, Date displayDate, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns an ordered range of all the blogs entries that the user has permissions to view where groupId = ? and displayDate > ? and status = ?.
    filterFindByG_GtD_S_PrevAndNext(long entryId, long groupId, Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the blogs entries before and after the current blogs entry in the ordered set of blogs entries that the user has permission to view where groupId = ? and displayDate > ? and status = ?.
    filterFindByG_LtD(long groupId, Date displayDate)
    Returns all the blogs entries that the user has permission to view where groupId = ? and displayDate < ?.
    filterFindByG_LtD(long groupId, Date displayDate, int start, int end)
    Returns a range of all the blogs entries that the user has permission to view where groupId = ? and displayDate < ?.
    filterFindByG_LtD(long groupId, Date displayDate, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns an ordered range of all the blogs entries that the user has permissions to view where groupId = ? and displayDate < ?.
    filterFindByG_LtD_NotS(long groupId, Date displayDate, int status)
    Returns all the blogs entries that the user has permission to view where groupId = ? and displayDate < ? and status ≠ ?.
    filterFindByG_LtD_NotS(long groupId, Date displayDate, int status, int start, int end)
    Returns a range of all the blogs entries that the user has permission to view where groupId = ? and displayDate < ? and status ≠ ?.
    filterFindByG_LtD_NotS(long groupId, Date displayDate, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns an ordered range of all the blogs entries that the user has permissions to view where groupId = ? and displayDate < ? and status ≠ ?.
    filterFindByG_LtD_NotS_PrevAndNext(long entryId, long groupId, Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the blogs entries before and after the current blogs entry in the ordered set of blogs entries that the user has permission to view where groupId = ? and displayDate < ? and status ≠ ?.
    filterFindByG_LtD_PrevAndNext(long entryId, long groupId, Date displayDate, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the blogs entries before and after the current blogs entry in the ordered set of blogs entries that the user has permission to view where groupId = ? and displayDate < ?.
    filterFindByG_LtD_S(long groupId, Date displayDate, int status)
    Returns all the blogs entries that the user has permission to view where groupId = ? and displayDate < ? and status = ?.
    filterFindByG_LtD_S(long groupId, Date displayDate, int status, int start, int end)
    Returns a range of all the blogs entries that the user has permission to view where groupId = ? and displayDate < ? and status = ?.
    filterFindByG_LtD_S(long groupId, Date displayDate, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns an ordered range of all the blogs entries that the user has permissions to view where groupId = ? and displayDate < ? and status = ?.
    filterFindByG_LtD_S_PrevAndNext(long entryId, long groupId, Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the blogs entries before and after the current blogs entry in the ordered set of blogs entries that the user has permission to view where groupId = ? and displayDate < ? and status = ?.
    filterFindByG_NotS(long groupId, int status)
    Returns all the blogs entries that the user has permission to view where groupId = ? and status ≠ ?.
    filterFindByG_NotS(long groupId, int status, int start, int end)
    Returns a range of all the blogs entries that the user has permission to view where groupId = ? and status ≠ ?.
    filterFindByG_NotS(long groupId, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns an ordered range of all the blogs entries that the user has permissions to view where groupId = ? and status ≠ ?.
    filterFindByG_NotS_PrevAndNext(long entryId, long groupId, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the blogs entries before and after the current blogs entry in the ordered set of blogs entries that the user has permission to view where groupId = ? and status ≠ ?.
    filterFindByG_S(long groupId, int status)
    Returns all the blogs entries that the user has permission to view where groupId = ? and status = ?.
    filterFindByG_S(long groupId, int status, int start, int end)
    Returns a range of all the blogs entries that the user has permission to view where groupId = ? and status = ?.
    filterFindByG_S(long groupId, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns an ordered range of all the blogs entries that the user has permissions to view where groupId = ? and status = ?.
    filterFindByG_S_PrevAndNext(long entryId, long groupId, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the blogs entries before and after the current blogs entry in the ordered set of blogs entries that the user has permission to view where groupId = ? and status = ?.
    filterFindByG_U_LtD(long groupId, long userId, Date displayDate)
    Returns all the blogs entries that the user has permission to view where groupId = ? and userId = ? and displayDate < ?.
    filterFindByG_U_LtD(long groupId, long userId, Date displayDate, int start, int end)
    Returns a range of all the blogs entries that the user has permission to view where groupId = ? and userId = ? and displayDate < ?.
    filterFindByG_U_LtD(long groupId, long userId, Date displayDate, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns an ordered range of all the blogs entries that the user has permissions to view where groupId = ? and userId = ? and displayDate < ?.
    filterFindByG_U_LtD_NotS(long groupId, long userId, Date displayDate, int status)
    Returns all the blogs entries that the user has permission to view where groupId = ? and userId = ? and displayDate < ? and status ≠ ?.
    filterFindByG_U_LtD_NotS(long groupId, long userId, Date displayDate, int status, int start, int end)
    Returns a range of all the blogs entries that the user has permission to view where groupId = ? and userId = ? and displayDate < ? and status ≠ ?.
    filterFindByG_U_LtD_NotS(long groupId, long userId, Date displayDate, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns an ordered range of all the blogs entries that the user has permissions to view where groupId = ? and userId = ? and displayDate < ? and status ≠ ?.
    filterFindByG_U_LtD_NotS_PrevAndNext(long entryId, long groupId, long userId, Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the blogs entries before and after the current blogs entry in the ordered set of blogs entries that the user has permission to view where groupId = ? and userId = ? and displayDate < ? and status ≠ ?.
    filterFindByG_U_LtD_PrevAndNext(long entryId, long groupId, long userId, Date displayDate, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the blogs entries before and after the current blogs entry in the ordered set of blogs entries that the user has permission to view where groupId = ? and userId = ? and displayDate < ?.
    filterFindByG_U_LtD_S(long groupId, long userId, Date displayDate, int status)
    Returns all the blogs entries that the user has permission to view where groupId = ? and userId = ? and displayDate < ? and status = ?.
    filterFindByG_U_LtD_S(long groupId, long userId, Date displayDate, int status, int start, int end)
    Returns a range of all the blogs entries that the user has permission to view where groupId = ? and userId = ? and displayDate < ? and status = ?.
    filterFindByG_U_LtD_S(long groupId, long userId, Date displayDate, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns an ordered range of all the blogs entries that the user has permissions to view where groupId = ? and userId = ? and displayDate < ? and status = ?.
    filterFindByG_U_LtD_S_PrevAndNext(long entryId, long groupId, long userId, Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the blogs entries before and after the current blogs entry in the ordered set of blogs entries that the user has permission to view where groupId = ? and userId = ? and displayDate < ? and status = ?.
    filterFindByG_U_NotS(long groupId, long userId, int status)
    Returns all the blogs entries that the user has permission to view where groupId = ? and userId = ? and status ≠ ?.
    filterFindByG_U_NotS(long groupId, long userId, int status, int start, int end)
    Returns a range of all the blogs entries that the user has permission to view where groupId = ? and userId = ? and status ≠ ?.
    filterFindByG_U_NotS(long groupId, long userId, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns an ordered range of all the blogs entries that the user has permissions to view where groupId = ? and userId = ? and status ≠ ?.
    filterFindByG_U_NotS_PrevAndNext(long entryId, long groupId, long userId, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the blogs entries before and after the current blogs entry in the ordered set of blogs entries that the user has permission to view where groupId = ? and userId = ? and status ≠ ?.
    filterFindByG_U_S(long groupId, long userId, int status)
    Returns all the blogs entries that the user has permission to view where groupId = ? and userId = ? and status = ?.
    filterFindByG_U_S(long groupId, long userId, int[] statuses)
    Returns all the blogs entries that the user has permission to view where groupId = ? and userId = ? and status = any ?.
    filterFindByG_U_S(long groupId, long userId, int[] statuses, int start, int end)
    Returns a range of all the blogs entries that the user has permission to view where groupId = ? and userId = ? and status = any ?.
    filterFindByG_U_S(long groupId, long userId, int[] statuses, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns an ordered range of all the blogs entries that the user has permission to view where groupId = ? and userId = ? and status = any ?.
    filterFindByG_U_S(long groupId, long userId, int status, int start, int end)
    Returns a range of all the blogs entries that the user has permission to view where groupId = ? and userId = ? and status = ?.
    filterFindByG_U_S(long groupId, long userId, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns an ordered range of all the blogs entries that the user has permissions to view where groupId = ? and userId = ? and status = ?.
    filterFindByG_U_S_PrevAndNext(long entryId, long groupId, long userId, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the blogs entries before and after the current blogs entry in the ordered set of blogs entries that the user has permission to view where groupId = ? and userId = ? and status = ?.
    filterFindByGroupId(long groupId)
    Returns all the blogs entries that the user has permission to view where groupId = ?.
    filterFindByGroupId(long groupId, int start, int end)
    Returns a range of all the blogs entries that the user has permission to view where groupId = ?.
    filterFindByGroupId(long groupId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns an ordered range of all the blogs entries that the user has permissions to view where groupId = ?.
    filterFindByGroupId_PrevAndNext(long entryId, long groupId, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the blogs entries before and after the current blogs entry in the ordered set of blogs entries that the user has permission to view where groupId = ?.
    Returns all the blogs entries.
    findAll(int start, int end)
    Returns a range of all the blogs entries.
    findAll(int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns an ordered range of all the blogs entries.
    findAll(int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the blogs entries.
    findByC_LtD(long companyId, Date displayDate)
    Returns all the blogs entries where companyId = ? and displayDate < ?.
    findByC_LtD(long companyId, Date displayDate, int start, int end)
    Returns a range of all the blogs entries where companyId = ? and displayDate < ?.
    findByC_LtD(long companyId, Date displayDate, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns an ordered range of all the blogs entries where companyId = ? and displayDate < ?.
    findByC_LtD(long companyId, Date displayDate, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the blogs entries where companyId = ? and displayDate < ?.
    findByC_LtD_First(long companyId, Date displayDate, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the first blogs entry in the ordered set where companyId = ? and displayDate < ?.
    findByC_LtD_Last(long companyId, Date displayDate, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the last blogs entry in the ordered set where companyId = ? and displayDate < ?.
    findByC_LtD_NotS(long companyId, Date displayDate, int status)
    Returns all the blogs entries where companyId = ? and displayDate < ? and status ≠ ?.
    findByC_LtD_NotS(long companyId, Date displayDate, int status, int start, int end)
    Returns a range of all the blogs entries where companyId = ? and displayDate < ? and status ≠ ?.
    findByC_LtD_NotS(long companyId, Date displayDate, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns an ordered range of all the blogs entries where companyId = ? and displayDate < ? and status ≠ ?.
    findByC_LtD_NotS(long companyId, Date displayDate, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the blogs entries where companyId = ? and displayDate < ? and status ≠ ?.
    findByC_LtD_NotS_First(long companyId, Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the first blogs entry in the ordered set where companyId = ? and displayDate < ? and status ≠ ?.
    findByC_LtD_NotS_Last(long companyId, Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the last blogs entry in the ordered set where companyId = ? and displayDate < ? and status ≠ ?.
    findByC_LtD_NotS_PrevAndNext(long entryId, long companyId, Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the blogs entries before and after the current blogs entry in the ordered set where companyId = ? and displayDate < ? and status ≠ ?.
    findByC_LtD_PrevAndNext(long entryId, long companyId, Date displayDate, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the blogs entries before and after the current blogs entry in the ordered set where companyId = ? and displayDate < ?.
    findByC_LtD_S(long companyId, Date displayDate, int status)
    Returns all the blogs entries where companyId = ? and displayDate < ? and status = ?.
    findByC_LtD_S(long companyId, Date displayDate, int status, int start, int end)
    Returns a range of all the blogs entries where companyId = ? and displayDate < ? and status = ?.
    findByC_LtD_S(long companyId, Date displayDate, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns an ordered range of all the blogs entries where companyId = ? and displayDate < ? and status = ?.
    findByC_LtD_S(long companyId, Date displayDate, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the blogs entries where companyId = ? and displayDate < ? and status = ?.
    findByC_LtD_S_First(long companyId, Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the first blogs entry in the ordered set where companyId = ? and displayDate < ? and status = ?.
    findByC_LtD_S_Last(long companyId, Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the last blogs entry in the ordered set where companyId = ? and displayDate < ? and status = ?.
    findByC_LtD_S_PrevAndNext(long entryId, long companyId, Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the blogs entries before and after the current blogs entry in the ordered set where companyId = ? and displayDate < ? and status = ?.
    findByC_NotS(long companyId, int status)
    Returns all the blogs entries where companyId = ? and status ≠ ?.
    findByC_NotS(long companyId, int status, int start, int end)
    Returns a range of all the blogs entries where companyId = ? and status ≠ ?.
    findByC_NotS(long companyId, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns an ordered range of all the blogs entries where companyId = ? and status ≠ ?.
    findByC_NotS(long companyId, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the blogs entries where companyId = ? and status ≠ ?.
    findByC_NotS_First(long companyId, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the first blogs entry in the ordered set where companyId = ? and status ≠ ?.
    findByC_NotS_Last(long companyId, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the last blogs entry in the ordered set where companyId = ? and status ≠ ?.
    findByC_NotS_PrevAndNext(long entryId, long companyId, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the blogs entries before and after the current blogs entry in the ordered set where companyId = ? and status ≠ ?.
    findByC_S(long companyId, int status)
    Returns all the blogs entries where companyId = ? and status = ?.
    findByC_S(long companyId, int status, int start, int end)
    Returns a range of all the blogs entries where companyId = ? and status = ?.
    findByC_S(long companyId, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns an ordered range of all the blogs entries where companyId = ? and status = ?.
    findByC_S(long companyId, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the blogs entries where companyId = ? and status = ?.
    findByC_S_First(long companyId, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the first blogs entry in the ordered set where companyId = ? and status = ?.
    findByC_S_Last(long companyId, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the last blogs entry in the ordered set where companyId = ? and status = ?.
    findByC_S_PrevAndNext(long entryId, long companyId, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the blogs entries before and after the current blogs entry in the ordered set where companyId = ? and status = ?.
    findByC_U(long companyId, long userId)
    Returns all the blogs entries where companyId = ? and userId = ?.
    findByC_U(long companyId, long userId, int start, int end)
    Returns a range of all the blogs entries where companyId = ? and userId = ?.
    findByC_U(long companyId, long userId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns an ordered range of all the blogs entries where companyId = ? and userId = ?.
    findByC_U(long companyId, long userId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the blogs entries where companyId = ? and userId = ?.
    findByC_U_First(long companyId, long userId, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the first blogs entry in the ordered set where companyId = ? and userId = ?.
    findByC_U_Last(long companyId, long userId, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the last blogs entry in the ordered set where companyId = ? and userId = ?.
    findByC_U_NotS(long companyId, long userId, int status)
    Returns all the blogs entries where companyId = ? and userId = ? and status ≠ ?.
    findByC_U_NotS(long companyId, long userId, int status, int start, int end)
    Returns a range of all the blogs entries where companyId = ? and userId = ? and status ≠ ?.
    findByC_U_NotS(long companyId, long userId, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns an ordered range of all the blogs entries where companyId = ? and userId = ? and status ≠ ?.
    findByC_U_NotS(long companyId, long userId, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the blogs entries where companyId = ? and userId = ? and status ≠ ?.
    findByC_U_NotS_First(long companyId, long userId, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the first blogs entry in the ordered set where companyId = ? and userId = ? and status ≠ ?.
    findByC_U_NotS_Last(long companyId, long userId, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the last blogs entry in the ordered set where companyId = ? and userId = ? and status ≠ ?.
    findByC_U_NotS_PrevAndNext(long entryId, long companyId, long userId, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the blogs entries before and after the current blogs entry in the ordered set where companyId = ? and userId = ? and status ≠ ?.
    findByC_U_PrevAndNext(long entryId, long companyId, long userId, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the blogs entries before and after the current blogs entry in the ordered set where companyId = ? and userId = ?.
    findByC_U_S(long companyId, long userId, int status)
    Returns all the blogs entries where companyId = ? and userId = ? and status = ?.
    findByC_U_S(long companyId, long userId, int status, int start, int end)
    Returns a range of all the blogs entries where companyId = ? and userId = ? and status = ?.
    findByC_U_S(long companyId, long userId, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns an ordered range of all the blogs entries where companyId = ? and userId = ? and status = ?.
    findByC_U_S(long companyId, long userId, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the blogs entries where companyId = ? and userId = ? and status = ?.
    findByC_U_S_First(long companyId, long userId, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the first blogs entry in the ordered set where companyId = ? and userId = ? and status = ?.
    findByC_U_S_Last(long companyId, long userId, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the last blogs entry in the ordered set where companyId = ? and userId = ? and status = ?.
    findByC_U_S_PrevAndNext(long entryId, long companyId, long userId, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the blogs entries before and after the current blogs entry in the ordered set where companyId = ? and userId = ? and status = ?.
    findByCompanyId(long companyId)
    Returns all the blogs entries where companyId = ?.
    findByCompanyId(long companyId, int start, int end)
    Returns a range of all the blogs entries where companyId = ?.
    findByCompanyId(long companyId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns an ordered range of all the blogs entries where companyId = ?.
    findByCompanyId(long companyId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the blogs entries where companyId = ?.
    findByCompanyId_First(long companyId, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the first blogs entry in the ordered set where companyId = ?.
    findByCompanyId_Last(long companyId, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the last blogs entry in the ordered set where companyId = ?.
    findByCompanyId_PrevAndNext(long entryId, long companyId, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the blogs entries before and after the current blogs entry in the ordered set where companyId = ?.
    findByERC_G(String externalReferenceCode, long groupId)
    Returns the blogs entry where externalReferenceCode = ? and groupId = ? or throws a NoSuchEntryException if it could not be found.
    findByG_D_S(long groupId, Date displayDate, int status)
    Returns all the blogs entries where groupId = ? and displayDate = ? and status = ?.
    findByG_D_S(long groupId, Date displayDate, int status, int start, int end)
    Returns a range of all the blogs entries where groupId = ? and displayDate = ? and status = ?.
    findByG_D_S(long groupId, Date displayDate, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns an ordered range of all the blogs entries where groupId = ? and displayDate = ? and status = ?.
    findByG_D_S(long groupId, Date displayDate, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the blogs entries where groupId = ? and displayDate = ? and status = ?.
    findByG_D_S_First(long groupId, Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the first blogs entry in the ordered set where groupId = ? and displayDate = ? and status = ?.
    findByG_D_S_Last(long groupId, Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the last blogs entry in the ordered set where groupId = ? and displayDate = ? and status = ?.
    findByG_D_S_PrevAndNext(long entryId, long groupId, Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the blogs entries before and after the current blogs entry in the ordered set where groupId = ? and displayDate = ? and status = ?.
    findByG_GtD_S(long groupId, Date displayDate, int status)
    Returns all the blogs entries where groupId = ? and displayDate > ? and status = ?.
    findByG_GtD_S(long groupId, Date displayDate, int status, int start, int end)
    Returns a range of all the blogs entries where groupId = ? and displayDate > ? and status = ?.
    findByG_GtD_S(long groupId, Date displayDate, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns an ordered range of all the blogs entries where groupId = ? and displayDate > ? and status = ?.
    findByG_GtD_S(long groupId, Date displayDate, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the blogs entries where groupId = ? and displayDate > ? and status = ?.
    findByG_GtD_S_First(long groupId, Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the first blogs entry in the ordered set where groupId = ? and displayDate > ? and status = ?.
    findByG_GtD_S_Last(long groupId, Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the last blogs entry in the ordered set where groupId = ? and displayDate > ? and status = ?.
    findByG_GtD_S_PrevAndNext(long entryId, long groupId, Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the blogs entries before and after the current blogs entry in the ordered set where groupId = ? and displayDate > ? and status = ?.
    findByG_LtD(long groupId, Date displayDate)
    Returns all the blogs entries where groupId = ? and displayDate < ?.
    findByG_LtD(long groupId, Date displayDate, int start, int end)
    Returns a range of all the blogs entries where groupId = ? and displayDate < ?.
    findByG_LtD(long groupId, Date displayDate, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns an ordered range of all the blogs entries where groupId = ? and displayDate < ?.
    findByG_LtD(long groupId, Date displayDate, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the blogs entries where groupId = ? and displayDate < ?.
    findByG_LtD_First(long groupId, Date displayDate, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the first blogs entry in the ordered set where groupId = ? and displayDate < ?.
    findByG_LtD_Last(long groupId, Date displayDate, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the last blogs entry in the ordered set where groupId = ? and displayDate < ?.
    findByG_LtD_NotS(long groupId, Date displayDate, int status)
    Returns all the blogs entries where groupId = ? and displayDate < ? and status ≠ ?.
    findByG_LtD_NotS(long groupId, Date displayDate, int status, int start, int end)
    Returns a range of all the blogs entries where groupId = ? and displayDate < ? and status ≠ ?.
    findByG_LtD_NotS(long groupId, Date displayDate, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns an ordered range of all the blogs entries where groupId = ? and displayDate < ? and status ≠ ?.
    findByG_LtD_NotS(long groupId, Date displayDate, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the blogs entries where groupId = ? and displayDate < ? and status ≠ ?.
    findByG_LtD_NotS_First(long groupId, Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the first blogs entry in the ordered set where groupId = ? and displayDate < ? and status ≠ ?.
    findByG_LtD_NotS_Last(long groupId, Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the last blogs entry in the ordered set where groupId = ? and displayDate < ? and status ≠ ?.
    findByG_LtD_NotS_PrevAndNext(long entryId, long groupId, Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the blogs entries before and after the current blogs entry in the ordered set where groupId = ? and displayDate < ? and status ≠ ?.
    findByG_LtD_PrevAndNext(long entryId, long groupId, Date displayDate, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the blogs entries before and after the current blogs entry in the ordered set where groupId = ? and displayDate < ?.
    findByG_LtD_S(long groupId, Date displayDate, int status)
    Returns all the blogs entries where groupId = ? and displayDate < ? and status = ?.
    findByG_LtD_S(long groupId, Date displayDate, int status, int start, int end)
    Returns a range of all the blogs entries where groupId = ? and displayDate < ? and status = ?.
    findByG_LtD_S(long groupId, Date displayDate, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns an ordered range of all the blogs entries where groupId = ? and displayDate < ? and status = ?.
    findByG_LtD_S(long groupId, Date displayDate, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the blogs entries where groupId = ? and displayDate < ? and status = ?.
    findByG_LtD_S_First(long groupId, Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the first blogs entry in the ordered set where groupId = ? and displayDate < ? and status = ?.
    findByG_LtD_S_Last(long groupId, Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the last blogs entry in the ordered set where groupId = ? and displayDate < ? and status = ?.
    findByG_LtD_S_PrevAndNext(long entryId, long groupId, Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the blogs entries before and after the current blogs entry in the ordered set where groupId = ? and displayDate < ? and status = ?.
    findByG_NotS(long groupId, int status)
    Returns all the blogs entries where groupId = ? and status ≠ ?.
    findByG_NotS(long groupId, int status, int start, int end)
    Returns a range of all the blogs entries where groupId = ? and status ≠ ?.
    findByG_NotS(long groupId, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns an ordered range of all the blogs entries where groupId = ? and status ≠ ?.
    findByG_NotS(long groupId, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the blogs entries where groupId = ? and status ≠ ?.
    findByG_NotS_First(long groupId, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the first blogs entry in the ordered set where groupId = ? and status ≠ ?.
    findByG_NotS_Last(long groupId, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the last blogs entry in the ordered set where groupId = ? and status ≠ ?.
    findByG_NotS_PrevAndNext(long entryId, long groupId, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the blogs entries before and after the current blogs entry in the ordered set where groupId = ? and status ≠ ?.
    findByG_S(long groupId, int status)
    Returns all the blogs entries where groupId = ? and status = ?.
    findByG_S(long groupId, int status, int start, int end)
    Returns a range of all the blogs entries where groupId = ? and status = ?.
    findByG_S(long groupId, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns an ordered range of all the blogs entries where groupId = ? and status = ?.
    findByG_S(long groupId, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the blogs entries where groupId = ? and status = ?.
    findByG_S_First(long groupId, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the first blogs entry in the ordered set where groupId = ? and status = ?.
    findByG_S_Last(long groupId, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the last blogs entry in the ordered set where groupId = ? and status = ?.
    findByG_S_PrevAndNext(long entryId, long groupId, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the blogs entries before and after the current blogs entry in the ordered set where groupId = ? and status = ?.
    findByG_U_LtD(long groupId, long userId, Date displayDate)
    Returns all the blogs entries where groupId = ? and userId = ? and displayDate < ?.
    findByG_U_LtD(long groupId, long userId, Date displayDate, int start, int end)
    Returns a range of all the blogs entries where groupId = ? and userId = ? and displayDate < ?.
    findByG_U_LtD(long groupId, long userId, Date displayDate, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns an ordered range of all the blogs entries where groupId = ? and userId = ? and displayDate < ?.
    findByG_U_LtD(long groupId, long userId, Date displayDate, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the blogs entries where groupId = ? and userId = ? and displayDate < ?.
    findByG_U_LtD_First(long groupId, long userId, Date displayDate, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the first blogs entry in the ordered set where groupId = ? and userId = ? and displayDate < ?.
    findByG_U_LtD_Last(long groupId, long userId, Date displayDate, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the last blogs entry in the ordered set where groupId = ? and userId = ? and displayDate < ?.
    findByG_U_LtD_NotS(long groupId, long userId, Date displayDate, int status)
    Returns all the blogs entries where groupId = ? and userId = ? and displayDate < ? and status ≠ ?.
    findByG_U_LtD_NotS(long groupId, long userId, Date displayDate, int status, int start, int end)
    Returns a range of all the blogs entries where groupId = ? and userId = ? and displayDate < ? and status ≠ ?.
    findByG_U_LtD_NotS(long groupId, long userId, Date displayDate, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns an ordered range of all the blogs entries where groupId = ? and userId = ? and displayDate < ? and status ≠ ?.
    findByG_U_LtD_NotS(long groupId, long userId, Date displayDate, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the blogs entries where groupId = ? and userId = ? and displayDate < ? and status ≠ ?.
    findByG_U_LtD_NotS_First(long groupId, long userId, Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the first blogs entry in the ordered set where groupId = ? and userId = ? and displayDate < ? and status ≠ ?.
    findByG_U_LtD_NotS_Last(long groupId, long userId, Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the last blogs entry in the ordered set where groupId = ? and userId = ? and displayDate < ? and status ≠ ?.
    findByG_U_LtD_NotS_PrevAndNext(long entryId, long groupId, long userId, Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the blogs entries before and after the current blogs entry in the ordered set where groupId = ? and userId = ? and displayDate < ? and status ≠ ?.
    findByG_U_LtD_PrevAndNext(long entryId, long groupId, long userId, Date displayDate, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the blogs entries before and after the current blogs entry in the ordered set where groupId = ? and userId = ? and displayDate < ?.
    findByG_U_LtD_S(long groupId, long userId, Date displayDate, int status)
    Returns all the blogs entries where groupId = ? and userId = ? and displayDate < ? and status = ?.
    findByG_U_LtD_S(long groupId, long userId, Date displayDate, int status, int start, int end)
    Returns a range of all the blogs entries where groupId = ? and userId = ? and displayDate < ? and status = ?.
    findByG_U_LtD_S(long groupId, long userId, Date displayDate, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns an ordered range of all the blogs entries where groupId = ? and userId = ? and displayDate < ? and status = ?.
    findByG_U_LtD_S(long groupId, long userId, Date displayDate, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the blogs entries where groupId = ? and userId = ? and displayDate < ? and status = ?.
    findByG_U_LtD_S_First(long groupId, long userId, Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the first blogs entry in the ordered set where groupId = ? and userId = ? and displayDate < ? and status = ?.
    findByG_U_LtD_S_Last(long groupId, long userId, Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the last blogs entry in the ordered set where groupId = ? and userId = ? and displayDate < ? and status = ?.
    findByG_U_LtD_S_PrevAndNext(long entryId, long groupId, long userId, Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the blogs entries before and after the current blogs entry in the ordered set where groupId = ? and userId = ? and displayDate < ? and status = ?.
    findByG_U_NotS(long groupId, long userId, int status)
    Returns all the blogs entries where groupId = ? and userId = ? and status ≠ ?.
    findByG_U_NotS(long groupId, long userId, int status, int start, int end)
    Returns a range of all the blogs entries where groupId = ? and userId = ? and status ≠ ?.
    findByG_U_NotS(long groupId, long userId, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns an ordered range of all the blogs entries where groupId = ? and userId = ? and status ≠ ?.
    findByG_U_NotS(long groupId, long userId, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the blogs entries where groupId = ? and userId = ? and status ≠ ?.
    findByG_U_NotS_First(long groupId, long userId, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the first blogs entry in the ordered set where groupId = ? and userId = ? and status ≠ ?.
    findByG_U_NotS_Last(long groupId, long userId, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the last blogs entry in the ordered set where groupId = ? and userId = ? and status ≠ ?.
    findByG_U_NotS_PrevAndNext(long entryId, long groupId, long userId, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the blogs entries before and after the current blogs entry in the ordered set where groupId = ? and userId = ? and status ≠ ?.
    findByG_U_S(long groupId, long userId, int status)
    Returns all the blogs entries where groupId = ? and userId = ? and status = ?.
    findByG_U_S(long groupId, long userId, int[] statuses)
    Returns all the blogs entries where groupId = ? and userId = ? and status = any ?.
    findByG_U_S(long groupId, long userId, int[] statuses, int start, int end)
    Returns a range of all the blogs entries where groupId = ? and userId = ? and status = any ?.
    findByG_U_S(long groupId, long userId, int[] statuses, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns an ordered range of all the blogs entries where groupId = ? and userId = ? and status = any ?.
    findByG_U_S(long groupId, long userId, int[] statuses, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the blogs entries where groupId = ? and userId = ? and status = ?, optionally using the finder cache.
    findByG_U_S(long groupId, long userId, int status, int start, int end)
    Returns a range of all the blogs entries where groupId = ? and userId = ? and status = ?.
    findByG_U_S(long groupId, long userId, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns an ordered range of all the blogs entries where groupId = ? and userId = ? and status = ?.
    findByG_U_S(long groupId, long userId, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the blogs entries where groupId = ? and userId = ? and status = ?.
    findByG_U_S_First(long groupId, long userId, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the first blogs entry in the ordered set where groupId = ? and userId = ? and status = ?.
    findByG_U_S_Last(long groupId, long userId, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the last blogs entry in the ordered set where groupId = ? and userId = ? and status = ?.
    findByG_U_S_PrevAndNext(long entryId, long groupId, long userId, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the blogs entries before and after the current blogs entry in the ordered set where groupId = ? and userId = ? and status = ?.
    findByG_UT(long groupId, String urlTitle)
    Returns the blogs entry where groupId = ? and urlTitle = ? or throws a NoSuchEntryException if it could not be found.
    findByGroupId(long groupId)
    Returns all the blogs entries where groupId = ?.
    findByGroupId(long groupId, int start, int end)
    Returns a range of all the blogs entries where groupId = ?.
    findByGroupId(long groupId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns an ordered range of all the blogs entries where groupId = ?.
    findByGroupId(long groupId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the blogs entries where groupId = ?.
    findByGroupId_First(long groupId, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the first blogs entry in the ordered set where groupId = ?.
    findByGroupId_Last(long groupId, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the last blogs entry in the ordered set where groupId = ?.
    findByGroupId_PrevAndNext(long entryId, long groupId, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the blogs entries before and after the current blogs entry in the ordered set where groupId = ?.
    findByLtD_S(Date displayDate, int status)
    Returns all the blogs entries where displayDate < ? and status = ?.
    findByLtD_S(Date displayDate, int status, int start, int end)
    Returns a range of all the blogs entries where displayDate < ? and status = ?.
    findByLtD_S(Date displayDate, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns an ordered range of all the blogs entries where displayDate < ? and status = ?.
    findByLtD_S(Date displayDate, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the blogs entries where displayDate < ? and status = ?.
    findByLtD_S_First(Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the first blogs entry in the ordered set where displayDate < ? and status = ?.
    findByLtD_S_Last(Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the last blogs entry in the ordered set where displayDate < ? and status = ?.
    findByLtD_S_PrevAndNext(long entryId, Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the blogs entries before and after the current blogs entry in the ordered set where displayDate < ? and status = ?.
    findByPrimaryKey(long entryId)
    Returns the blogs entry with the primary key or throws a NoSuchEntryException if it could not be found.
    Returns all the blogs entries where uuid = ?.
    findByUuid(String uuid, int start, int end)
    Returns a range of all the blogs entries where uuid = ?.
    findByUuid(String uuid, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns an ordered range of all the blogs entries where uuid = ?.
    findByUuid(String uuid, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the blogs entries where uuid = ?.
    findByUuid_C(String uuid, long companyId)
    Returns all the blogs entries where uuid = ? and companyId = ?.
    findByUuid_C(String uuid, long companyId, int start, int end)
    Returns a range of all the blogs entries where uuid = ? and companyId = ?.
    findByUuid_C(String uuid, long companyId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns an ordered range of all the blogs entries where uuid = ? and companyId = ?.
    findByUuid_C(String uuid, long companyId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the blogs entries where uuid = ? and companyId = ?.
    findByUuid_C_First(String uuid, long companyId, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the first blogs entry in the ordered set where uuid = ? and companyId = ?.
    findByUuid_C_Last(String uuid, long companyId, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the last blogs entry in the ordered set where uuid = ? and companyId = ?.
    findByUuid_C_PrevAndNext(long entryId, String uuid, long companyId, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the blogs entries before and after the current blogs entry in the ordered set where uuid = ? and companyId = ?.
    findByUuid_First(String uuid, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the first blogs entry in the ordered set where uuid = ?.
    findByUUID_G(String uuid, long groupId)
    Returns the blogs entry where uuid = ? and groupId = ? or throws a NoSuchEntryException if it could not be found.
    findByUuid_Last(String uuid, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the last blogs entry in the ordered set where uuid = ?.
    findByUuid_PrevAndNext(long entryId, String uuid, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
    Returns the blogs entries before and after the current blogs entry in the ordered set where uuid = ?.
    remove(long entryId)
    Removes the blogs entry with the primary key from the database.
    void
    Removes all the blogs entries from the database.
    void
    removeByC_LtD(long companyId, Date displayDate)
    Removes all the blogs entries where companyId = ? and displayDate < ? from the database.
    void
    removeByC_LtD_NotS(long companyId, Date displayDate, int status)
    Removes all the blogs entries where companyId = ? and displayDate < ? and status ≠ ? from the database.
    void
    removeByC_LtD_S(long companyId, Date displayDate, int status)
    Removes all the blogs entries where companyId = ? and displayDate < ? and status = ? from the database.
    void
    removeByC_NotS(long companyId, int status)
    Removes all the blogs entries where companyId = ? and status ≠ ? from the database.
    void
    removeByC_S(long companyId, int status)
    Removes all the blogs entries where companyId = ? and status = ? from the database.
    void
    removeByC_U(long companyId, long userId)
    Removes all the blogs entries where companyId = ? and userId = ? from the database.
    void
    removeByC_U_NotS(long companyId, long userId, int status)
    Removes all the blogs entries where companyId = ? and userId = ? and status ≠ ? from the database.
    void
    removeByC_U_S(long companyId, long userId, int status)
    Removes all the blogs entries where companyId = ? and userId = ? and status = ? from the database.
    void
    removeByCompanyId(long companyId)
    Removes all the blogs entries where companyId = ? from the database.
    removeByERC_G(String externalReferenceCode, long groupId)
    Removes the blogs entry where externalReferenceCode = ? and groupId = ? from the database.
    void
    removeByG_D_S(long groupId, Date displayDate, int status)
    Removes all the blogs entries where groupId = ? and displayDate = ? and status = ? from the database.
    void
    removeByG_GtD_S(long groupId, Date displayDate, int status)
    Removes all the blogs entries where groupId = ? and displayDate > ? and status = ? from the database.
    void
    removeByG_LtD(long groupId, Date displayDate)
    Removes all the blogs entries where groupId = ? and displayDate < ? from the database.
    void
    removeByG_LtD_NotS(long groupId, Date displayDate, int status)
    Removes all the blogs entries where groupId = ? and displayDate < ? and status ≠ ? from the database.
    void
    removeByG_LtD_S(long groupId, Date displayDate, int status)
    Removes all the blogs entries where groupId = ? and displayDate < ? and status = ? from the database.
    void
    removeByG_NotS(long groupId, int status)
    Removes all the blogs entries where groupId = ? and status ≠ ? from the database.
    void
    removeByG_S(long groupId, int status)
    Removes all the blogs entries where groupId = ? and status = ? from the database.
    void
    removeByG_U_LtD(long groupId, long userId, Date displayDate)
    Removes all the blogs entries where groupId = ? and userId = ? and displayDate < ? from the database.
    void
    removeByG_U_LtD_NotS(long groupId, long userId, Date displayDate, int status)
    Removes all the blogs entries where groupId = ? and userId = ? and displayDate < ? and status ≠ ? from the database.
    void
    removeByG_U_LtD_S(long groupId, long userId, Date displayDate, int status)
    Removes all the blogs entries where groupId = ? and userId = ? and displayDate < ? and status = ? from the database.
    void
    removeByG_U_NotS(long groupId, long userId, int status)
    Removes all the blogs entries where groupId = ? and userId = ? and status ≠ ? from the database.
    void
    removeByG_U_S(long groupId, long userId, int status)
    Removes all the blogs entries where groupId = ? and userId = ? and status = ? from the database.
    removeByG_UT(long groupId, String urlTitle)
    Removes the blogs entry where groupId = ? and urlTitle = ? from the database.
    void
    removeByGroupId(long groupId)
    Removes all the blogs entries where groupId = ? from the database.
    void
    removeByLtD_S(Date displayDate, int status)
    Removes all the blogs entries where displayDate < ? and status = ? from the database.
    void
    Removes all the blogs entries where uuid = ? from the database.
    void
    removeByUuid_C(String uuid, long companyId)
    Removes all the blogs entries where uuid = ? and companyId = ? from the database.
    removeByUUID_G(String uuid, long groupId)
    Removes the blogs entry where uuid = ? and groupId = ? from the database.
    updateImpl(BlogsEntry blogsEntry)
     

    Methods inherited from interface com.liferay.portal.kernel.service.persistence.BasePersistence

    clearCache, clearCache, clearCache, clearCache, closeSession, countWithDynamicQuery, countWithDynamicQuery, dslQuery, dslQueryCount, fetchByPrimaryKey, fetchByPrimaryKeys, findByPrimaryKey, findWithDynamicQuery, findWithDynamicQuery, findWithDynamicQuery, flush, getBadColumnNames, getCurrentSession, getDataSource, getDB, getDialect, getListeners, getModelClass, openSession, processException, registerListener, remove, remove, removeByFunction, setDataSource, unregisterListener, update, update

    Methods inherited from interface com.liferay.portal.kernel.service.persistence.change.tracking.CTPersistence

    getCTColumnNames, getMappingTableNames, getTableColumnsMap, getTableName, getUniqueIndexColumnNames
  • Method Details

    • findByUuid

      List<BlogsEntry> findByUuid(String uuid)
      Returns all the blogs entries where uuid = ?.
      Parameters:
      uuid - the uuid
      Returns:
      the matching blogs entries
    • findByUuid

      List<BlogsEntry> findByUuid(String uuid, int start, int end)
      Returns a range of all the blogs 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 BlogsEntryModelImpl.

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

      BlogsEntry removeByUUID_G(String uuid, long groupId) throws NoSuchEntryException
      Removes the blogs entry where uuid = ? and groupId = ? from the database.
      Parameters:
      uuid - the uuid
      groupId - the group ID
      Returns:
      the blogs entry that was removed
      Throws:
      NoSuchEntryException
    • countByUUID_G

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

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

      List<BlogsEntry> findByUuid_C(String uuid, long companyId, int start, int end)
      Returns a range of all the blogs 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 BlogsEntryModelImpl.

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

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

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

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

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

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

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

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

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

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

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

      List<BlogsEntry> findByGroupId(long groupId)
      Returns all the blogs entries where groupId = ?.
      Parameters:
      groupId - the group ID
      Returns:
      the matching blogs entries
    • findByGroupId

      List<BlogsEntry> findByGroupId(long groupId, int start, int end)
      Returns a range of all the blogs 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 BlogsEntryModelImpl.

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

      List<BlogsEntry> findByGroupId(long groupId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
      Returns an ordered range of all the blogs 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 BlogsEntryModelImpl.

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

      List<BlogsEntry> findByGroupId(long groupId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the blogs 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 BlogsEntryModelImpl.

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

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

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

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

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

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

      List<BlogsEntry> filterFindByGroupId(long groupId)
      Returns all the blogs entries that the user has permission to view where groupId = ?.
      Parameters:
      groupId - the group ID
      Returns:
      the matching blogs entries that the user has permission to view
    • filterFindByGroupId

      List<BlogsEntry> filterFindByGroupId(long groupId, int start, int end)
      Returns a range of all the blogs entries that the user has permission to view 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 BlogsEntryModelImpl.

      Parameters:
      groupId - the group ID
      start - the lower bound of the range of blogs entries
      end - the upper bound of the range of blogs entries (not inclusive)
      Returns:
      the range of matching blogs entries that the user has permission to view
    • filterFindByGroupId

      List<BlogsEntry> filterFindByGroupId(long groupId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
      Returns an ordered range of all the blogs entries that the user has permissions to view 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 BlogsEntryModelImpl.

      Parameters:
      groupId - the group ID
      start - the lower bound of the range of blogs entries
      end - the upper bound of the range of blogs entries (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching blogs entries that the user has permission to view
    • filterFindByGroupId_PrevAndNext

      BlogsEntry[] filterFindByGroupId_PrevAndNext(long entryId, long groupId, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the blogs entries before and after the current blogs entry in the ordered set of blogs entries that the user has permission to view where groupId = ?.
      Parameters:
      entryId - the primary key of the current blogs entry
      groupId - the group ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next blogs entry
      Throws:
      NoSuchEntryException - if a blogs entry with the primary key could not be found
    • removeByGroupId

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

      int countByGroupId(long groupId)
      Returns the number of blogs entries where groupId = ?.
      Parameters:
      groupId - the group ID
      Returns:
      the number of matching blogs entries
    • filterCountByGroupId

      int filterCountByGroupId(long groupId)
      Returns the number of blogs entries that the user has permission to view where groupId = ?.
      Parameters:
      groupId - the group ID
      Returns:
      the number of matching blogs entries that the user has permission to view
    • findByCompanyId

      List<BlogsEntry> findByCompanyId(long companyId)
      Returns all the blogs entries where companyId = ?.
      Parameters:
      companyId - the company ID
      Returns:
      the matching blogs entries
    • findByCompanyId

      List<BlogsEntry> findByCompanyId(long companyId, int start, int end)
      Returns a range of all the blogs 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 BlogsEntryModelImpl.

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

      List<BlogsEntry> findByCompanyId(long companyId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
      Returns an ordered range of all the blogs 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 BlogsEntryModelImpl.

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

      List<BlogsEntry> findByCompanyId(long companyId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the blogs 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 BlogsEntryModelImpl.

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

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

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

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

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

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

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

      int countByCompanyId(long companyId)
      Returns the number of blogs entries where companyId = ?.
      Parameters:
      companyId - the company ID
      Returns:
      the number of matching blogs entries
    • findByG_UT

      BlogsEntry findByG_UT(long groupId, String urlTitle) throws NoSuchEntryException
      Returns the blogs entry where groupId = ? and urlTitle = ? or throws a NoSuchEntryException if it could not be found.
      Parameters:
      groupId - the group ID
      urlTitle - the url title
      Returns:
      the matching blogs entry
      Throws:
      NoSuchEntryException - if a matching blogs entry could not be found
    • fetchByG_UT

      BlogsEntry fetchByG_UT(long groupId, String urlTitle)
      Returns the blogs entry where groupId = ? and urlTitle = ? or returns null if it could not be found. Uses the finder cache.
      Parameters:
      groupId - the group ID
      urlTitle - the url title
      Returns:
      the matching blogs entry, or null if a matching blogs entry could not be found
    • fetchByG_UT

      BlogsEntry fetchByG_UT(long groupId, String urlTitle, boolean useFinderCache)
      Returns the blogs entry where groupId = ? and urlTitle = ? or returns null if it could not be found, optionally using the finder cache.
      Parameters:
      groupId - the group ID
      urlTitle - the url title
      useFinderCache - whether to use the finder cache
      Returns:
      the matching blogs entry, or null if a matching blogs entry could not be found
    • removeByG_UT

      BlogsEntry removeByG_UT(long groupId, String urlTitle) throws NoSuchEntryException
      Removes the blogs entry where groupId = ? and urlTitle = ? from the database.
      Parameters:
      groupId - the group ID
      urlTitle - the url title
      Returns:
      the blogs entry that was removed
      Throws:
      NoSuchEntryException
    • countByG_UT

      int countByG_UT(long groupId, String urlTitle)
      Returns the number of blogs entries where groupId = ? and urlTitle = ?.
      Parameters:
      groupId - the group ID
      urlTitle - the url title
      Returns:
      the number of matching blogs entries
    • findByG_LtD

      List<BlogsEntry> findByG_LtD(long groupId, Date displayDate)
      Returns all the blogs entries where groupId = ? and displayDate < ?.
      Parameters:
      groupId - the group ID
      displayDate - the display date
      Returns:
      the matching blogs entries
    • findByG_LtD

      List<BlogsEntry> findByG_LtD(long groupId, Date displayDate, int start, int end)
      Returns a range of all the blogs entries where groupId = ? and displayDate < ?.

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

      Parameters:
      groupId - the group ID
      displayDate - the display date
      start - the lower bound of the range of blogs entries
      end - the upper bound of the range of blogs entries (not inclusive)
      Returns:
      the range of matching blogs entries
    • findByG_LtD

      List<BlogsEntry> findByG_LtD(long groupId, Date displayDate, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
      Returns an ordered range of all the blogs entries where groupId = ? and displayDate < ?.

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

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

      List<BlogsEntry> findByG_LtD(long groupId, Date displayDate, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the blogs entries where groupId = ? and displayDate < ?.

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

      Parameters:
      groupId - the group ID
      displayDate - the display date
      start - the lower bound of the range of blogs entries
      end - the upper bound of the range of blogs 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 blogs entries
    • findByG_LtD_First

      BlogsEntry findByG_LtD_First(long groupId, Date displayDate, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the first blogs entry in the ordered set where groupId = ? and displayDate < ?.
      Parameters:
      groupId - the group ID
      displayDate - the display date
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching blogs entry
      Throws:
      NoSuchEntryException - if a matching blogs entry could not be found
    • fetchByG_LtD_First

      BlogsEntry fetchByG_LtD_First(long groupId, Date displayDate, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
      Returns the first blogs entry in the ordered set where groupId = ? and displayDate < ?.
      Parameters:
      groupId - the group ID
      displayDate - the display date
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching blogs entry, or null if a matching blogs entry could not be found
    • findByG_LtD_Last

      BlogsEntry findByG_LtD_Last(long groupId, Date displayDate, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the last blogs entry in the ordered set where groupId = ? and displayDate < ?.
      Parameters:
      groupId - the group ID
      displayDate - the display date
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching blogs entry
      Throws:
      NoSuchEntryException - if a matching blogs entry could not be found
    • fetchByG_LtD_Last

      BlogsEntry fetchByG_LtD_Last(long groupId, Date displayDate, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
      Returns the last blogs entry in the ordered set where groupId = ? and displayDate < ?.
      Parameters:
      groupId - the group ID
      displayDate - the display date
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching blogs entry, or null if a matching blogs entry could not be found
    • findByG_LtD_PrevAndNext

      BlogsEntry[] findByG_LtD_PrevAndNext(long entryId, long groupId, Date displayDate, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the blogs entries before and after the current blogs entry in the ordered set where groupId = ? and displayDate < ?.
      Parameters:
      entryId - the primary key of the current blogs entry
      groupId - the group ID
      displayDate - the display date
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next blogs entry
      Throws:
      NoSuchEntryException - if a blogs entry with the primary key could not be found
    • filterFindByG_LtD

      List<BlogsEntry> filterFindByG_LtD(long groupId, Date displayDate)
      Returns all the blogs entries that the user has permission to view where groupId = ? and displayDate < ?.
      Parameters:
      groupId - the group ID
      displayDate - the display date
      Returns:
      the matching blogs entries that the user has permission to view
    • filterFindByG_LtD

      List<BlogsEntry> filterFindByG_LtD(long groupId, Date displayDate, int start, int end)
      Returns a range of all the blogs entries that the user has permission to view where groupId = ? and displayDate < ?.

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

      Parameters:
      groupId - the group ID
      displayDate - the display date
      start - the lower bound of the range of blogs entries
      end - the upper bound of the range of blogs entries (not inclusive)
      Returns:
      the range of matching blogs entries that the user has permission to view
    • filterFindByG_LtD

      List<BlogsEntry> filterFindByG_LtD(long groupId, Date displayDate, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
      Returns an ordered range of all the blogs entries that the user has permissions to view where groupId = ? and displayDate < ?.

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

      Parameters:
      groupId - the group ID
      displayDate - the display date
      start - the lower bound of the range of blogs entries
      end - the upper bound of the range of blogs entries (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching blogs entries that the user has permission to view
    • filterFindByG_LtD_PrevAndNext

      BlogsEntry[] filterFindByG_LtD_PrevAndNext(long entryId, long groupId, Date displayDate, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the blogs entries before and after the current blogs entry in the ordered set of blogs entries that the user has permission to view where groupId = ? and displayDate < ?.
      Parameters:
      entryId - the primary key of the current blogs entry
      groupId - the group ID
      displayDate - the display date
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next blogs entry
      Throws:
      NoSuchEntryException - if a blogs entry with the primary key could not be found
    • removeByG_LtD

      void removeByG_LtD(long groupId, Date displayDate)
      Removes all the blogs entries where groupId = ? and displayDate < ? from the database.
      Parameters:
      groupId - the group ID
      displayDate - the display date
    • countByG_LtD

      int countByG_LtD(long groupId, Date displayDate)
      Returns the number of blogs entries where groupId = ? and displayDate < ?.
      Parameters:
      groupId - the group ID
      displayDate - the display date
      Returns:
      the number of matching blogs entries
    • filterCountByG_LtD

      int filterCountByG_LtD(long groupId, Date displayDate)
      Returns the number of blogs entries that the user has permission to view where groupId = ? and displayDate < ?.
      Parameters:
      groupId - the group ID
      displayDate - the display date
      Returns:
      the number of matching blogs entries that the user has permission to view
    • findByG_S

      List<BlogsEntry> findByG_S(long groupId, int status)
      Returns all the blogs entries where groupId = ? and status = ?.
      Parameters:
      groupId - the group ID
      status - the status
      Returns:
      the matching blogs entries
    • findByG_S

      List<BlogsEntry> findByG_S(long groupId, int status, int start, int end)
      Returns a range of all the blogs entries where groupId = ? and status = ?.

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

      Parameters:
      groupId - the group ID
      status - the status
      start - the lower bound of the range of blogs entries
      end - the upper bound of the range of blogs entries (not inclusive)
      Returns:
      the range of matching blogs entries
    • findByG_S

      List<BlogsEntry> findByG_S(long groupId, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
      Returns an ordered range of all the blogs entries where groupId = ? and status = ?.

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

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

      List<BlogsEntry> findByG_S(long groupId, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the blogs entries where groupId = ? and status = ?.

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

      Parameters:
      groupId - the group ID
      status - the status
      start - the lower bound of the range of blogs entries
      end - the upper bound of the range of blogs 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 blogs entries
    • findByG_S_First

      BlogsEntry findByG_S_First(long groupId, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the first blogs entry in the ordered set where groupId = ? and status = ?.
      Parameters:
      groupId - the group ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching blogs entry
      Throws:
      NoSuchEntryException - if a matching blogs entry could not be found
    • fetchByG_S_First

      BlogsEntry fetchByG_S_First(long groupId, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
      Returns the first blogs entry in the ordered set where groupId = ? and status = ?.
      Parameters:
      groupId - the group ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching blogs entry, or null if a matching blogs entry could not be found
    • findByG_S_Last

      BlogsEntry findByG_S_Last(long groupId, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the last blogs entry in the ordered set where groupId = ? and status = ?.
      Parameters:
      groupId - the group ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching blogs entry
      Throws:
      NoSuchEntryException - if a matching blogs entry could not be found
    • fetchByG_S_Last

      BlogsEntry fetchByG_S_Last(long groupId, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
      Returns the last blogs entry in the ordered set where groupId = ? and status = ?.
      Parameters:
      groupId - the group ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching blogs entry, or null if a matching blogs entry could not be found
    • findByG_S_PrevAndNext

      BlogsEntry[] findByG_S_PrevAndNext(long entryId, long groupId, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the blogs entries before and after the current blogs entry in the ordered set where groupId = ? and status = ?.
      Parameters:
      entryId - the primary key of the current blogs entry
      groupId - the group ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next blogs entry
      Throws:
      NoSuchEntryException - if a blogs entry with the primary key could not be found
    • filterFindByG_S

      List<BlogsEntry> filterFindByG_S(long groupId, int status)
      Returns all the blogs entries that the user has permission to view where groupId = ? and status = ?.
      Parameters:
      groupId - the group ID
      status - the status
      Returns:
      the matching blogs entries that the user has permission to view
    • filterFindByG_S

      List<BlogsEntry> filterFindByG_S(long groupId, int status, int start, int end)
      Returns a range of all the blogs entries that the user has permission to view where groupId = ? and status = ?.

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

      Parameters:
      groupId - the group ID
      status - the status
      start - the lower bound of the range of blogs entries
      end - the upper bound of the range of blogs entries (not inclusive)
      Returns:
      the range of matching blogs entries that the user has permission to view
    • filterFindByG_S

      List<BlogsEntry> filterFindByG_S(long groupId, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
      Returns an ordered range of all the blogs entries that the user has permissions to view where groupId = ? and status = ?.

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

      Parameters:
      groupId - the group ID
      status - the status
      start - the lower bound of the range of blogs entries
      end - the upper bound of the range of blogs entries (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching blogs entries that the user has permission to view
    • filterFindByG_S_PrevAndNext

      BlogsEntry[] filterFindByG_S_PrevAndNext(long entryId, long groupId, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the blogs entries before and after the current blogs entry in the ordered set of blogs entries that the user has permission to view where groupId = ? and status = ?.
      Parameters:
      entryId - the primary key of the current blogs entry
      groupId - the group ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next blogs entry
      Throws:
      NoSuchEntryException - if a blogs entry with the primary key could not be found
    • removeByG_S

      void removeByG_S(long groupId, int status)
      Removes all the blogs entries where groupId = ? and status = ? from the database.
      Parameters:
      groupId - the group ID
      status - the status
    • countByG_S

      int countByG_S(long groupId, int status)
      Returns the number of blogs entries where groupId = ? and status = ?.
      Parameters:
      groupId - the group ID
      status - the status
      Returns:
      the number of matching blogs entries
    • filterCountByG_S

      int filterCountByG_S(long groupId, int status)
      Returns the number of blogs entries that the user has permission to view where groupId = ? and status = ?.
      Parameters:
      groupId - the group ID
      status - the status
      Returns:
      the number of matching blogs entries that the user has permission to view
    • findByG_NotS

      List<BlogsEntry> findByG_NotS(long groupId, int status)
      Returns all the blogs entries where groupId = ? and status ≠ ?.
      Parameters:
      groupId - the group ID
      status - the status
      Returns:
      the matching blogs entries
    • findByG_NotS

      List<BlogsEntry> findByG_NotS(long groupId, int status, int start, int end)
      Returns a range of all the blogs entries where groupId = ? and status ≠ ?.

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

      Parameters:
      groupId - the group ID
      status - the status
      start - the lower bound of the range of blogs entries
      end - the upper bound of the range of blogs entries (not inclusive)
      Returns:
      the range of matching blogs entries
    • findByG_NotS

      List<BlogsEntry> findByG_NotS(long groupId, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
      Returns an ordered range of all the blogs entries where groupId = ? and status ≠ ?.

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

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

      List<BlogsEntry> findByG_NotS(long groupId, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the blogs entries where groupId = ? and status ≠ ?.

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

      Parameters:
      groupId - the group ID
      status - the status
      start - the lower bound of the range of blogs entries
      end - the upper bound of the range of blogs 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 blogs entries
    • findByG_NotS_First

      BlogsEntry findByG_NotS_First(long groupId, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the first blogs entry in the ordered set where groupId = ? and status ≠ ?.
      Parameters:
      groupId - the group ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching blogs entry
      Throws:
      NoSuchEntryException - if a matching blogs entry could not be found
    • fetchByG_NotS_First

      BlogsEntry fetchByG_NotS_First(long groupId, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
      Returns the first blogs entry in the ordered set where groupId = ? and status ≠ ?.
      Parameters:
      groupId - the group ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching blogs entry, or null if a matching blogs entry could not be found
    • findByG_NotS_Last

      BlogsEntry findByG_NotS_Last(long groupId, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the last blogs entry in the ordered set where groupId = ? and status ≠ ?.
      Parameters:
      groupId - the group ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching blogs entry
      Throws:
      NoSuchEntryException - if a matching blogs entry could not be found
    • fetchByG_NotS_Last

      BlogsEntry fetchByG_NotS_Last(long groupId, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
      Returns the last blogs entry in the ordered set where groupId = ? and status ≠ ?.
      Parameters:
      groupId - the group ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching blogs entry, or null if a matching blogs entry could not be found
    • findByG_NotS_PrevAndNext

      BlogsEntry[] findByG_NotS_PrevAndNext(long entryId, long groupId, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the blogs entries before and after the current blogs entry in the ordered set where groupId = ? and status ≠ ?.
      Parameters:
      entryId - the primary key of the current blogs entry
      groupId - the group ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next blogs entry
      Throws:
      NoSuchEntryException - if a blogs entry with the primary key could not be found
    • filterFindByG_NotS

      List<BlogsEntry> filterFindByG_NotS(long groupId, int status)
      Returns all the blogs entries that the user has permission to view where groupId = ? and status ≠ ?.
      Parameters:
      groupId - the group ID
      status - the status
      Returns:
      the matching blogs entries that the user has permission to view
    • filterFindByG_NotS

      List<BlogsEntry> filterFindByG_NotS(long groupId, int status, int start, int end)
      Returns a range of all the blogs entries that the user has permission to view where groupId = ? and status ≠ ?.

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

      Parameters:
      groupId - the group ID
      status - the status
      start - the lower bound of the range of blogs entries
      end - the upper bound of the range of blogs entries (not inclusive)
      Returns:
      the range of matching blogs entries that the user has permission to view
    • filterFindByG_NotS

      List<BlogsEntry> filterFindByG_NotS(long groupId, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
      Returns an ordered range of all the blogs entries that the user has permissions to view where groupId = ? and status ≠ ?.

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

      Parameters:
      groupId - the group ID
      status - the status
      start - the lower bound of the range of blogs entries
      end - the upper bound of the range of blogs entries (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching blogs entries that the user has permission to view
    • filterFindByG_NotS_PrevAndNext

      BlogsEntry[] filterFindByG_NotS_PrevAndNext(long entryId, long groupId, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the blogs entries before and after the current blogs entry in the ordered set of blogs entries that the user has permission to view where groupId = ? and status ≠ ?.
      Parameters:
      entryId - the primary key of the current blogs entry
      groupId - the group ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next blogs entry
      Throws:
      NoSuchEntryException - if a blogs entry with the primary key could not be found
    • removeByG_NotS

      void removeByG_NotS(long groupId, int status)
      Removes all the blogs entries where groupId = ? and status ≠ ? from the database.
      Parameters:
      groupId - the group ID
      status - the status
    • countByG_NotS

      int countByG_NotS(long groupId, int status)
      Returns the number of blogs entries where groupId = ? and status ≠ ?.
      Parameters:
      groupId - the group ID
      status - the status
      Returns:
      the number of matching blogs entries
    • filterCountByG_NotS

      int filterCountByG_NotS(long groupId, int status)
      Returns the number of blogs entries that the user has permission to view where groupId = ? and status ≠ ?.
      Parameters:
      groupId - the group ID
      status - the status
      Returns:
      the number of matching blogs entries that the user has permission to view
    • findByC_U

      List<BlogsEntry> findByC_U(long companyId, long userId)
      Returns all the blogs entries where companyId = ? and userId = ?.
      Parameters:
      companyId - the company ID
      userId - the user ID
      Returns:
      the matching blogs entries
    • findByC_U

      List<BlogsEntry> findByC_U(long companyId, long userId, int start, int end)
      Returns a range of all the blogs entries where companyId = ? and userId = ?.

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

      Parameters:
      companyId - the company ID
      userId - the user ID
      start - the lower bound of the range of blogs entries
      end - the upper bound of the range of blogs entries (not inclusive)
      Returns:
      the range of matching blogs entries
    • findByC_U

      List<BlogsEntry> findByC_U(long companyId, long userId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
      Returns an ordered range of all the blogs entries where companyId = ? and userId = ?.

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

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

      List<BlogsEntry> findByC_U(long companyId, long userId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the blogs entries where companyId = ? and userId = ?.

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

      Parameters:
      companyId - the company ID
      userId - the user ID
      start - the lower bound of the range of blogs entries
      end - the upper bound of the range of blogs 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 blogs entries
    • findByC_U_First

      BlogsEntry findByC_U_First(long companyId, long userId, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the first blogs entry in the ordered set where companyId = ? and userId = ?.
      Parameters:
      companyId - the company ID
      userId - the user ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching blogs entry
      Throws:
      NoSuchEntryException - if a matching blogs entry could not be found
    • fetchByC_U_First

      BlogsEntry fetchByC_U_First(long companyId, long userId, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
      Returns the first blogs entry in the ordered set where companyId = ? and userId = ?.
      Parameters:
      companyId - the company ID
      userId - the user ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching blogs entry, or null if a matching blogs entry could not be found
    • findByC_U_Last

      BlogsEntry findByC_U_Last(long companyId, long userId, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the last blogs entry in the ordered set where companyId = ? and userId = ?.
      Parameters:
      companyId - the company ID
      userId - the user ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching blogs entry
      Throws:
      NoSuchEntryException - if a matching blogs entry could not be found
    • fetchByC_U_Last

      BlogsEntry fetchByC_U_Last(long companyId, long userId, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
      Returns the last blogs entry in the ordered set where companyId = ? and userId = ?.
      Parameters:
      companyId - the company ID
      userId - the user ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching blogs entry, or null if a matching blogs entry could not be found
    • findByC_U_PrevAndNext

      BlogsEntry[] findByC_U_PrevAndNext(long entryId, long companyId, long userId, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the blogs entries before and after the current blogs entry in the ordered set where companyId = ? and userId = ?.
      Parameters:
      entryId - the primary key of the current blogs entry
      companyId - the company ID
      userId - the user ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next blogs entry
      Throws:
      NoSuchEntryException - if a blogs entry with the primary key could not be found
    • removeByC_U

      void removeByC_U(long companyId, long userId)
      Removes all the blogs entries where companyId = ? and userId = ? from the database.
      Parameters:
      companyId - the company ID
      userId - the user ID
    • countByC_U

      int countByC_U(long companyId, long userId)
      Returns the number of blogs entries where companyId = ? and userId = ?.
      Parameters:
      companyId - the company ID
      userId - the user ID
      Returns:
      the number of matching blogs entries
    • findByC_LtD

      List<BlogsEntry> findByC_LtD(long companyId, Date displayDate)
      Returns all the blogs entries where companyId = ? and displayDate < ?.
      Parameters:
      companyId - the company ID
      displayDate - the display date
      Returns:
      the matching blogs entries
    • findByC_LtD

      List<BlogsEntry> findByC_LtD(long companyId, Date displayDate, int start, int end)
      Returns a range of all the blogs entries where companyId = ? and displayDate < ?.

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

      Parameters:
      companyId - the company ID
      displayDate - the display date
      start - the lower bound of the range of blogs entries
      end - the upper bound of the range of blogs entries (not inclusive)
      Returns:
      the range of matching blogs entries
    • findByC_LtD

      List<BlogsEntry> findByC_LtD(long companyId, Date displayDate, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
      Returns an ordered range of all the blogs entries where companyId = ? and displayDate < ?.

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

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

      List<BlogsEntry> findByC_LtD(long companyId, Date displayDate, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the blogs entries where companyId = ? and displayDate < ?.

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

      Parameters:
      companyId - the company ID
      displayDate - the display date
      start - the lower bound of the range of blogs entries
      end - the upper bound of the range of blogs 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 blogs entries
    • findByC_LtD_First

      BlogsEntry findByC_LtD_First(long companyId, Date displayDate, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the first blogs entry in the ordered set where companyId = ? and displayDate < ?.
      Parameters:
      companyId - the company ID
      displayDate - the display date
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching blogs entry
      Throws:
      NoSuchEntryException - if a matching blogs entry could not be found
    • fetchByC_LtD_First

      BlogsEntry fetchByC_LtD_First(long companyId, Date displayDate, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
      Returns the first blogs entry in the ordered set where companyId = ? and displayDate < ?.
      Parameters:
      companyId - the company ID
      displayDate - the display date
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching blogs entry, or null if a matching blogs entry could not be found
    • findByC_LtD_Last

      BlogsEntry findByC_LtD_Last(long companyId, Date displayDate, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the last blogs entry in the ordered set where companyId = ? and displayDate < ?.
      Parameters:
      companyId - the company ID
      displayDate - the display date
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching blogs entry
      Throws:
      NoSuchEntryException - if a matching blogs entry could not be found
    • fetchByC_LtD_Last

      BlogsEntry fetchByC_LtD_Last(long companyId, Date displayDate, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
      Returns the last blogs entry in the ordered set where companyId = ? and displayDate < ?.
      Parameters:
      companyId - the company ID
      displayDate - the display date
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching blogs entry, or null if a matching blogs entry could not be found
    • findByC_LtD_PrevAndNext

      BlogsEntry[] findByC_LtD_PrevAndNext(long entryId, long companyId, Date displayDate, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the blogs entries before and after the current blogs entry in the ordered set where companyId = ? and displayDate < ?.
      Parameters:
      entryId - the primary key of the current blogs entry
      companyId - the company ID
      displayDate - the display date
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next blogs entry
      Throws:
      NoSuchEntryException - if a blogs entry with the primary key could not be found
    • removeByC_LtD

      void removeByC_LtD(long companyId, Date displayDate)
      Removes all the blogs entries where companyId = ? and displayDate < ? from the database.
      Parameters:
      companyId - the company ID
      displayDate - the display date
    • countByC_LtD

      int countByC_LtD(long companyId, Date displayDate)
      Returns the number of blogs entries where companyId = ? and displayDate < ?.
      Parameters:
      companyId - the company ID
      displayDate - the display date
      Returns:
      the number of matching blogs entries
    • findByC_S

      List<BlogsEntry> findByC_S(long companyId, int status)
      Returns all the blogs entries where companyId = ? and status = ?.
      Parameters:
      companyId - the company ID
      status - the status
      Returns:
      the matching blogs entries
    • findByC_S

      List<BlogsEntry> findByC_S(long companyId, int status, int start, int end)
      Returns a range of all the blogs entries where companyId = ? and status = ?.

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

      Parameters:
      companyId - the company ID
      status - the status
      start - the lower bound of the range of blogs entries
      end - the upper bound of the range of blogs entries (not inclusive)
      Returns:
      the range of matching blogs entries
    • findByC_S

      List<BlogsEntry> findByC_S(long companyId, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
      Returns an ordered range of all the blogs entries where companyId = ? and status = ?.

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

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

      List<BlogsEntry> findByC_S(long companyId, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the blogs entries where companyId = ? and status = ?.

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

      Parameters:
      companyId - the company ID
      status - the status
      start - the lower bound of the range of blogs entries
      end - the upper bound of the range of blogs 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 blogs entries
    • findByC_S_First

      BlogsEntry findByC_S_First(long companyId, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the first blogs entry in the ordered set where companyId = ? and status = ?.
      Parameters:
      companyId - the company ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching blogs entry
      Throws:
      NoSuchEntryException - if a matching blogs entry could not be found
    • fetchByC_S_First

      BlogsEntry fetchByC_S_First(long companyId, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
      Returns the first blogs entry in the ordered set where companyId = ? and status = ?.
      Parameters:
      companyId - the company ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching blogs entry, or null if a matching blogs entry could not be found
    • findByC_S_Last

      BlogsEntry findByC_S_Last(long companyId, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the last blogs entry in the ordered set where companyId = ? and status = ?.
      Parameters:
      companyId - the company ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching blogs entry
      Throws:
      NoSuchEntryException - if a matching blogs entry could not be found
    • fetchByC_S_Last

      BlogsEntry fetchByC_S_Last(long companyId, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
      Returns the last blogs entry in the ordered set where companyId = ? and status = ?.
      Parameters:
      companyId - the company ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching blogs entry, or null if a matching blogs entry could not be found
    • findByC_S_PrevAndNext

      BlogsEntry[] findByC_S_PrevAndNext(long entryId, long companyId, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the blogs entries before and after the current blogs entry in the ordered set where companyId = ? and status = ?.
      Parameters:
      entryId - the primary key of the current blogs entry
      companyId - the company ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next blogs entry
      Throws:
      NoSuchEntryException - if a blogs entry with the primary key could not be found
    • removeByC_S

      void removeByC_S(long companyId, int status)
      Removes all the blogs entries where companyId = ? and status = ? from the database.
      Parameters:
      companyId - the company ID
      status - the status
    • countByC_S

      int countByC_S(long companyId, int status)
      Returns the number of blogs entries where companyId = ? and status = ?.
      Parameters:
      companyId - the company ID
      status - the status
      Returns:
      the number of matching blogs entries
    • findByC_NotS

      List<BlogsEntry> findByC_NotS(long companyId, int status)
      Returns all the blogs entries where companyId = ? and status ≠ ?.
      Parameters:
      companyId - the company ID
      status - the status
      Returns:
      the matching blogs entries
    • findByC_NotS

      List<BlogsEntry> findByC_NotS(long companyId, int status, int start, int end)
      Returns a range of all the blogs entries where companyId = ? and status ≠ ?.

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

      Parameters:
      companyId - the company ID
      status - the status
      start - the lower bound of the range of blogs entries
      end - the upper bound of the range of blogs entries (not inclusive)
      Returns:
      the range of matching blogs entries
    • findByC_NotS

      List<BlogsEntry> findByC_NotS(long companyId, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
      Returns an ordered range of all the blogs entries where companyId = ? and status ≠ ?.

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

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

      List<BlogsEntry> findByC_NotS(long companyId, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the blogs entries where companyId = ? and status ≠ ?.

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

      Parameters:
      companyId - the company ID
      status - the status
      start - the lower bound of the range of blogs entries
      end - the upper bound of the range of blogs 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 blogs entries
    • findByC_NotS_First

      BlogsEntry findByC_NotS_First(long companyId, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the first blogs entry in the ordered set where companyId = ? and status ≠ ?.
      Parameters:
      companyId - the company ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching blogs entry
      Throws:
      NoSuchEntryException - if a matching blogs entry could not be found
    • fetchByC_NotS_First

      BlogsEntry fetchByC_NotS_First(long companyId, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
      Returns the first blogs entry in the ordered set where companyId = ? and status ≠ ?.
      Parameters:
      companyId - the company ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching blogs entry, or null if a matching blogs entry could not be found
    • findByC_NotS_Last

      BlogsEntry findByC_NotS_Last(long companyId, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the last blogs entry in the ordered set where companyId = ? and status ≠ ?.
      Parameters:
      companyId - the company ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching blogs entry
      Throws:
      NoSuchEntryException - if a matching blogs entry could not be found
    • fetchByC_NotS_Last

      BlogsEntry fetchByC_NotS_Last(long companyId, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
      Returns the last blogs entry in the ordered set where companyId = ? and status ≠ ?.
      Parameters:
      companyId - the company ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching blogs entry, or null if a matching blogs entry could not be found
    • findByC_NotS_PrevAndNext

      BlogsEntry[] findByC_NotS_PrevAndNext(long entryId, long companyId, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the blogs entries before and after the current blogs entry in the ordered set where companyId = ? and status ≠ ?.
      Parameters:
      entryId - the primary key of the current blogs entry
      companyId - the company ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next blogs entry
      Throws:
      NoSuchEntryException - if a blogs entry with the primary key could not be found
    • removeByC_NotS

      void removeByC_NotS(long companyId, int status)
      Removes all the blogs entries where companyId = ? and status ≠ ? from the database.
      Parameters:
      companyId - the company ID
      status - the status
    • countByC_NotS

      int countByC_NotS(long companyId, int status)
      Returns the number of blogs entries where companyId = ? and status ≠ ?.
      Parameters:
      companyId - the company ID
      status - the status
      Returns:
      the number of matching blogs entries
    • findByLtD_S

      List<BlogsEntry> findByLtD_S(Date displayDate, int status)
      Returns all the blogs entries where displayDate < ? and status = ?.
      Parameters:
      displayDate - the display date
      status - the status
      Returns:
      the matching blogs entries
    • findByLtD_S

      List<BlogsEntry> findByLtD_S(Date displayDate, int status, int start, int end)
      Returns a range of all the blogs entries where displayDate < ? and status = ?.

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

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

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

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

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

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

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

      Parameters:
      displayDate - the display date
      status - the status
      start - the lower bound of the range of blogs entries
      end - the upper bound of the range of blogs 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 blogs entries
    • findByLtD_S_First

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

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

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

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

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

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

      int countByLtD_S(Date displayDate, int status)
      Returns the number of blogs entries where displayDate < ? and status = ?.
      Parameters:
      displayDate - the display date
      status - the status
      Returns:
      the number of matching blogs entries
    • findByG_U_LtD

      List<BlogsEntry> findByG_U_LtD(long groupId, long userId, Date displayDate)
      Returns all the blogs entries where groupId = ? and userId = ? and displayDate < ?.
      Parameters:
      groupId - the group ID
      userId - the user ID
      displayDate - the display date
      Returns:
      the matching blogs entries
    • findByG_U_LtD

      List<BlogsEntry> findByG_U_LtD(long groupId, long userId, Date displayDate, int start, int end)
      Returns a range of all the blogs entries where groupId = ? and userId = ? and displayDate < ?.

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

      Parameters:
      groupId - the group ID
      userId - the user ID
      displayDate - the display date
      start - the lower bound of the range of blogs entries
      end - the upper bound of the range of blogs entries (not inclusive)
      Returns:
      the range of matching blogs entries
    • findByG_U_LtD

      List<BlogsEntry> findByG_U_LtD(long groupId, long userId, Date displayDate, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
      Returns an ordered range of all the blogs entries where groupId = ? and userId = ? and displayDate < ?.

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

      Parameters:
      groupId - the group ID
      userId - the user ID
      displayDate - the display date
      start - the lower bound of the range of blogs entries
      end - the upper bound of the range of blogs entries (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching blogs entries
    • findByG_U_LtD

      List<BlogsEntry> findByG_U_LtD(long groupId, long userId, Date displayDate, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the blogs entries where groupId = ? and userId = ? and displayDate < ?.

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

      Parameters:
      groupId - the group ID
      userId - the user ID
      displayDate - the display date
      start - the lower bound of the range of blogs entries
      end - the upper bound of the range of blogs 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 blogs entries
    • findByG_U_LtD_First

      BlogsEntry findByG_U_LtD_First(long groupId, long userId, Date displayDate, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the first blogs entry in the ordered set where groupId = ? and userId = ? and displayDate < ?.
      Parameters:
      groupId - the group ID
      userId - the user ID
      displayDate - the display date
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching blogs entry
      Throws:
      NoSuchEntryException - if a matching blogs entry could not be found
    • fetchByG_U_LtD_First

      BlogsEntry fetchByG_U_LtD_First(long groupId, long userId, Date displayDate, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
      Returns the first blogs entry in the ordered set where groupId = ? and userId = ? and displayDate < ?.
      Parameters:
      groupId - the group ID
      userId - the user ID
      displayDate - the display date
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching blogs entry, or null if a matching blogs entry could not be found
    • findByG_U_LtD_Last

      BlogsEntry findByG_U_LtD_Last(long groupId, long userId, Date displayDate, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the last blogs entry in the ordered set where groupId = ? and userId = ? and displayDate < ?.
      Parameters:
      groupId - the group ID
      userId - the user ID
      displayDate - the display date
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching blogs entry
      Throws:
      NoSuchEntryException - if a matching blogs entry could not be found
    • fetchByG_U_LtD_Last

      BlogsEntry fetchByG_U_LtD_Last(long groupId, long userId, Date displayDate, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
      Returns the last blogs entry in the ordered set where groupId = ? and userId = ? and displayDate < ?.
      Parameters:
      groupId - the group ID
      userId - the user ID
      displayDate - the display date
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching blogs entry, or null if a matching blogs entry could not be found
    • findByG_U_LtD_PrevAndNext

      BlogsEntry[] findByG_U_LtD_PrevAndNext(long entryId, long groupId, long userId, Date displayDate, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the blogs entries before and after the current blogs entry in the ordered set where groupId = ? and userId = ? and displayDate < ?.
      Parameters:
      entryId - the primary key of the current blogs entry
      groupId - the group ID
      userId - the user ID
      displayDate - the display date
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next blogs entry
      Throws:
      NoSuchEntryException - if a blogs entry with the primary key could not be found
    • filterFindByG_U_LtD

      List<BlogsEntry> filterFindByG_U_LtD(long groupId, long userId, Date displayDate)
      Returns all the blogs entries that the user has permission to view where groupId = ? and userId = ? and displayDate < ?.
      Parameters:
      groupId - the group ID
      userId - the user ID
      displayDate - the display date
      Returns:
      the matching blogs entries that the user has permission to view
    • filterFindByG_U_LtD

      List<BlogsEntry> filterFindByG_U_LtD(long groupId, long userId, Date displayDate, int start, int end)
      Returns a range of all the blogs entries that the user has permission to view where groupId = ? and userId = ? and displayDate < ?.

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

      Parameters:
      groupId - the group ID
      userId - the user ID
      displayDate - the display date
      start - the lower bound of the range of blogs entries
      end - the upper bound of the range of blogs entries (not inclusive)
      Returns:
      the range of matching blogs entries that the user has permission to view
    • filterFindByG_U_LtD

      List<BlogsEntry> filterFindByG_U_LtD(long groupId, long userId, Date displayDate, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
      Returns an ordered range of all the blogs entries that the user has permissions to view where groupId = ? and userId = ? and displayDate < ?.

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

      Parameters:
      groupId - the group ID
      userId - the user ID
      displayDate - the display date
      start - the lower bound of the range of blogs entries
      end - the upper bound of the range of blogs entries (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching blogs entries that the user has permission to view
    • filterFindByG_U_LtD_PrevAndNext

      BlogsEntry[] filterFindByG_U_LtD_PrevAndNext(long entryId, long groupId, long userId, Date displayDate, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the blogs entries before and after the current blogs entry in the ordered set of blogs entries that the user has permission to view where groupId = ? and userId = ? and displayDate < ?.
      Parameters:
      entryId - the primary key of the current blogs entry
      groupId - the group ID
      userId - the user ID
      displayDate - the display date
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next blogs entry
      Throws:
      NoSuchEntryException - if a blogs entry with the primary key could not be found
    • removeByG_U_LtD

      void removeByG_U_LtD(long groupId, long userId, Date displayDate)
      Removes all the blogs entries where groupId = ? and userId = ? and displayDate < ? from the database.
      Parameters:
      groupId - the group ID
      userId - the user ID
      displayDate - the display date
    • countByG_U_LtD

      int countByG_U_LtD(long groupId, long userId, Date displayDate)
      Returns the number of blogs entries where groupId = ? and userId = ? and displayDate < ?.
      Parameters:
      groupId - the group ID
      userId - the user ID
      displayDate - the display date
      Returns:
      the number of matching blogs entries
    • filterCountByG_U_LtD

      int filterCountByG_U_LtD(long groupId, long userId, Date displayDate)
      Returns the number of blogs entries that the user has permission to view where groupId = ? and userId = ? and displayDate < ?.
      Parameters:
      groupId - the group ID
      userId - the user ID
      displayDate - the display date
      Returns:
      the number of matching blogs entries that the user has permission to view
    • findByG_U_S

      List<BlogsEntry> findByG_U_S(long groupId, long userId, int status)
      Returns all the blogs entries where groupId = ? and userId = ? and status = ?.
      Parameters:
      groupId - the group ID
      userId - the user ID
      status - the status
      Returns:
      the matching blogs entries
    • findByG_U_S

      List<BlogsEntry> findByG_U_S(long groupId, long userId, int status, int start, int end)
      Returns a range of all the blogs entries where groupId = ? and userId = ? and status = ?.

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

      Parameters:
      groupId - the group ID
      userId - the user ID
      status - the status
      start - the lower bound of the range of blogs entries
      end - the upper bound of the range of blogs entries (not inclusive)
      Returns:
      the range of matching blogs entries
    • findByG_U_S

      List<BlogsEntry> findByG_U_S(long groupId, long userId, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
      Returns an ordered range of all the blogs entries where groupId = ? and userId = ? and status = ?.

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

      Parameters:
      groupId - the group ID
      userId - the user ID
      status - the status
      start - the lower bound of the range of blogs entries
      end - the upper bound of the range of blogs entries (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching blogs entries
    • findByG_U_S

      List<BlogsEntry> findByG_U_S(long groupId, long userId, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the blogs entries where groupId = ? and userId = ? and status = ?.

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

      Parameters:
      groupId - the group ID
      userId - the user ID
      status - the status
      start - the lower bound of the range of blogs entries
      end - the upper bound of the range of blogs 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 blogs entries
    • findByG_U_S_First

      BlogsEntry findByG_U_S_First(long groupId, long userId, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the first blogs entry in the ordered set where groupId = ? and userId = ? and status = ?.
      Parameters:
      groupId - the group ID
      userId - the user ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching blogs entry
      Throws:
      NoSuchEntryException - if a matching blogs entry could not be found
    • fetchByG_U_S_First

      BlogsEntry fetchByG_U_S_First(long groupId, long userId, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
      Returns the first blogs entry in the ordered set where groupId = ? and userId = ? and status = ?.
      Parameters:
      groupId - the group ID
      userId - the user ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching blogs entry, or null if a matching blogs entry could not be found
    • findByG_U_S_Last

      BlogsEntry findByG_U_S_Last(long groupId, long userId, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the last blogs entry in the ordered set where groupId = ? and userId = ? and status = ?.
      Parameters:
      groupId - the group ID
      userId - the user ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching blogs entry
      Throws:
      NoSuchEntryException - if a matching blogs entry could not be found
    • fetchByG_U_S_Last

      BlogsEntry fetchByG_U_S_Last(long groupId, long userId, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
      Returns the last blogs entry in the ordered set where groupId = ? and userId = ? and status = ?.
      Parameters:
      groupId - the group ID
      userId - the user ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching blogs entry, or null if a matching blogs entry could not be found
    • findByG_U_S_PrevAndNext

      BlogsEntry[] findByG_U_S_PrevAndNext(long entryId, long groupId, long userId, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the blogs entries before and after the current blogs entry in the ordered set where groupId = ? and userId = ? and status = ?.
      Parameters:
      entryId - the primary key of the current blogs entry
      groupId - the group ID
      userId - the user ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next blogs entry
      Throws:
      NoSuchEntryException - if a blogs entry with the primary key could not be found
    • filterFindByG_U_S

      List<BlogsEntry> filterFindByG_U_S(long groupId, long userId, int status)
      Returns all the blogs entries that the user has permission to view where groupId = ? and userId = ? and status = ?.
      Parameters:
      groupId - the group ID
      userId - the user ID
      status - the status
      Returns:
      the matching blogs entries that the user has permission to view
    • filterFindByG_U_S

      List<BlogsEntry> filterFindByG_U_S(long groupId, long userId, int status, int start, int end)
      Returns a range of all the blogs entries that the user has permission to view where groupId = ? and userId = ? and status = ?.

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

      Parameters:
      groupId - the group ID
      userId - the user ID
      status - the status
      start - the lower bound of the range of blogs entries
      end - the upper bound of the range of blogs entries (not inclusive)
      Returns:
      the range of matching blogs entries that the user has permission to view
    • filterFindByG_U_S

      List<BlogsEntry> filterFindByG_U_S(long groupId, long userId, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
      Returns an ordered range of all the blogs entries that the user has permissions to view where groupId = ? and userId = ? and status = ?.

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

      Parameters:
      groupId - the group ID
      userId - the user ID
      status - the status
      start - the lower bound of the range of blogs entries
      end - the upper bound of the range of blogs entries (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching blogs entries that the user has permission to view
    • filterFindByG_U_S_PrevAndNext

      BlogsEntry[] filterFindByG_U_S_PrevAndNext(long entryId, long groupId, long userId, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the blogs entries before and after the current blogs entry in the ordered set of blogs entries that the user has permission to view where groupId = ? and userId = ? and status = ?.
      Parameters:
      entryId - the primary key of the current blogs entry
      groupId - the group ID
      userId - the user ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next blogs entry
      Throws:
      NoSuchEntryException - if a blogs entry with the primary key could not be found
    • filterFindByG_U_S

      List<BlogsEntry> filterFindByG_U_S(long groupId, long userId, int[] statuses)
      Returns all the blogs entries that the user has permission to view where groupId = ? and userId = ? and status = any ?.
      Parameters:
      groupId - the group ID
      userId - the user ID
      statuses - the statuses
      Returns:
      the matching blogs entries that the user has permission to view
    • filterFindByG_U_S

      List<BlogsEntry> filterFindByG_U_S(long groupId, long userId, int[] statuses, int start, int end)
      Returns a range of all the blogs entries that the user has permission to view where groupId = ? and userId = ? and status = any ?.

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

      Parameters:
      groupId - the group ID
      userId - the user ID
      statuses - the statuses
      start - the lower bound of the range of blogs entries
      end - the upper bound of the range of blogs entries (not inclusive)
      Returns:
      the range of matching blogs entries that the user has permission to view
    • filterFindByG_U_S

      List<BlogsEntry> filterFindByG_U_S(long groupId, long userId, int[] statuses, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
      Returns an ordered range of all the blogs entries that the user has permission to view where groupId = ? and userId = ? and status = any ?.

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

      Parameters:
      groupId - the group ID
      userId - the user ID
      statuses - the statuses
      start - the lower bound of the range of blogs entries
      end - the upper bound of the range of blogs entries (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching blogs entries that the user has permission to view
    • findByG_U_S

      List<BlogsEntry> findByG_U_S(long groupId, long userId, int[] statuses)
      Returns all the blogs entries where groupId = ? and userId = ? and status = any ?.

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

      Parameters:
      groupId - the group ID
      userId - the user ID
      statuses - the statuses
      Returns:
      the matching blogs entries
    • findByG_U_S

      List<BlogsEntry> findByG_U_S(long groupId, long userId, int[] statuses, int start, int end)
      Returns a range of all the blogs entries where groupId = ? and userId = ? and status = any ?.

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

      Parameters:
      groupId - the group ID
      userId - the user ID
      statuses - the statuses
      start - the lower bound of the range of blogs entries
      end - the upper bound of the range of blogs entries (not inclusive)
      Returns:
      the range of matching blogs entries
    • findByG_U_S

      List<BlogsEntry> findByG_U_S(long groupId, long userId, int[] statuses, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
      Returns an ordered range of all the blogs entries where groupId = ? and userId = ? and status = any ?.

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

      Parameters:
      groupId - the group ID
      userId - the user ID
      statuses - the statuses
      start - the lower bound of the range of blogs entries
      end - the upper bound of the range of blogs entries (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching blogs entries
    • findByG_U_S

      List<BlogsEntry> findByG_U_S(long groupId, long userId, int[] statuses, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the blogs entries where groupId = ? and userId = ? and status = ?, optionally using the finder cache.

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

      Parameters:
      groupId - the group ID
      userId - the user ID
      statuses - the statuses
      start - the lower bound of the range of blogs entries
      end - the upper bound of the range of blogs 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 blogs entries
    • removeByG_U_S

      void removeByG_U_S(long groupId, long userId, int status)
      Removes all the blogs entries where groupId = ? and userId = ? and status = ? from the database.
      Parameters:
      groupId - the group ID
      userId - the user ID
      status - the status
    • countByG_U_S

      int countByG_U_S(long groupId, long userId, int status)
      Returns the number of blogs entries where groupId = ? and userId = ? and status = ?.
      Parameters:
      groupId - the group ID
      userId - the user ID
      status - the status
      Returns:
      the number of matching blogs entries
    • countByG_U_S

      int countByG_U_S(long groupId, long userId, int[] statuses)
      Returns the number of blogs entries where groupId = ? and userId = ? and status = any ?.
      Parameters:
      groupId - the group ID
      userId - the user ID
      statuses - the statuses
      Returns:
      the number of matching blogs entries
    • filterCountByG_U_S

      int filterCountByG_U_S(long groupId, long userId, int status)
      Returns the number of blogs entries that the user has permission to view where groupId = ? and userId = ? and status = ?.
      Parameters:
      groupId - the group ID
      userId - the user ID
      status - the status
      Returns:
      the number of matching blogs entries that the user has permission to view
    • filterCountByG_U_S

      int filterCountByG_U_S(long groupId, long userId, int[] statuses)
      Returns the number of blogs entries that the user has permission to view where groupId = ? and userId = ? and status = any ?.
      Parameters:
      groupId - the group ID
      userId - the user ID
      statuses - the statuses
      Returns:
      the number of matching blogs entries that the user has permission to view
    • findByG_U_NotS

      List<BlogsEntry> findByG_U_NotS(long groupId, long userId, int status)
      Returns all the blogs entries where groupId = ? and userId = ? and status ≠ ?.
      Parameters:
      groupId - the group ID
      userId - the user ID
      status - the status
      Returns:
      the matching blogs entries
    • findByG_U_NotS

      List<BlogsEntry> findByG_U_NotS(long groupId, long userId, int status, int start, int end)
      Returns a range of all the blogs entries where groupId = ? and userId = ? and status ≠ ?.

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

      Parameters:
      groupId - the group ID
      userId - the user ID
      status - the status
      start - the lower bound of the range of blogs entries
      end - the upper bound of the range of blogs entries (not inclusive)
      Returns:
      the range of matching blogs entries
    • findByG_U_NotS

      List<BlogsEntry> findByG_U_NotS(long groupId, long userId, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
      Returns an ordered range of all the blogs entries where groupId = ? and userId = ? and status ≠ ?.

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

      Parameters:
      groupId - the group ID
      userId - the user ID
      status - the status
      start - the lower bound of the range of blogs entries
      end - the upper bound of the range of blogs entries (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching blogs entries
    • findByG_U_NotS

      List<BlogsEntry> findByG_U_NotS(long groupId, long userId, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the blogs entries where groupId = ? and userId = ? and status ≠ ?.

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

      Parameters:
      groupId - the group ID
      userId - the user ID
      status - the status
      start - the lower bound of the range of blogs entries
      end - the upper bound of the range of blogs 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 blogs entries
    • findByG_U_NotS_First

      BlogsEntry findByG_U_NotS_First(long groupId, long userId, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the first blogs entry in the ordered set where groupId = ? and userId = ? and status ≠ ?.
      Parameters:
      groupId - the group ID
      userId - the user ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching blogs entry
      Throws:
      NoSuchEntryException - if a matching blogs entry could not be found
    • fetchByG_U_NotS_First

      BlogsEntry fetchByG_U_NotS_First(long groupId, long userId, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
      Returns the first blogs entry in the ordered set where groupId = ? and userId = ? and status ≠ ?.
      Parameters:
      groupId - the group ID
      userId - the user ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching blogs entry, or null if a matching blogs entry could not be found
    • findByG_U_NotS_Last

      BlogsEntry findByG_U_NotS_Last(long groupId, long userId, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the last blogs entry in the ordered set where groupId = ? and userId = ? and status ≠ ?.
      Parameters:
      groupId - the group ID
      userId - the user ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching blogs entry
      Throws:
      NoSuchEntryException - if a matching blogs entry could not be found
    • fetchByG_U_NotS_Last

      BlogsEntry fetchByG_U_NotS_Last(long groupId, long userId, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
      Returns the last blogs entry in the ordered set where groupId = ? and userId = ? and status ≠ ?.
      Parameters:
      groupId - the group ID
      userId - the user ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching blogs entry, or null if a matching blogs entry could not be found
    • findByG_U_NotS_PrevAndNext

      BlogsEntry[] findByG_U_NotS_PrevAndNext(long entryId, long groupId, long userId, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the blogs entries before and after the current blogs entry in the ordered set where groupId = ? and userId = ? and status ≠ ?.
      Parameters:
      entryId - the primary key of the current blogs entry
      groupId - the group ID
      userId - the user ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next blogs entry
      Throws:
      NoSuchEntryException - if a blogs entry with the primary key could not be found
    • filterFindByG_U_NotS

      List<BlogsEntry> filterFindByG_U_NotS(long groupId, long userId, int status)
      Returns all the blogs entries that the user has permission to view where groupId = ? and userId = ? and status ≠ ?.
      Parameters:
      groupId - the group ID
      userId - the user ID
      status - the status
      Returns:
      the matching blogs entries that the user has permission to view
    • filterFindByG_U_NotS

      List<BlogsEntry> filterFindByG_U_NotS(long groupId, long userId, int status, int start, int end)
      Returns a range of all the blogs entries that the user has permission to view where groupId = ? and userId = ? and status ≠ ?.

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

      Parameters:
      groupId - the group ID
      userId - the user ID
      status - the status
      start - the lower bound of the range of blogs entries
      end - the upper bound of the range of blogs entries (not inclusive)
      Returns:
      the range of matching blogs entries that the user has permission to view
    • filterFindByG_U_NotS

      List<BlogsEntry> filterFindByG_U_NotS(long groupId, long userId, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
      Returns an ordered range of all the blogs entries that the user has permissions to view where groupId = ? and userId = ? and status ≠ ?.

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

      Parameters:
      groupId - the group ID
      userId - the user ID
      status - the status
      start - the lower bound of the range of blogs entries
      end - the upper bound of the range of blogs entries (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching blogs entries that the user has permission to view
    • filterFindByG_U_NotS_PrevAndNext

      BlogsEntry[] filterFindByG_U_NotS_PrevAndNext(long entryId, long groupId, long userId, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the blogs entries before and after the current blogs entry in the ordered set of blogs entries that the user has permission to view where groupId = ? and userId = ? and status ≠ ?.
      Parameters:
      entryId - the primary key of the current blogs entry
      groupId - the group ID
      userId - the user ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next blogs entry
      Throws:
      NoSuchEntryException - if a blogs entry with the primary key could not be found
    • removeByG_U_NotS

      void removeByG_U_NotS(long groupId, long userId, int status)
      Removes all the blogs entries where groupId = ? and userId = ? and status ≠ ? from the database.
      Parameters:
      groupId - the group ID
      userId - the user ID
      status - the status
    • countByG_U_NotS

      int countByG_U_NotS(long groupId, long userId, int status)
      Returns the number of blogs entries where groupId = ? and userId = ? and status ≠ ?.
      Parameters:
      groupId - the group ID
      userId - the user ID
      status - the status
      Returns:
      the number of matching blogs entries
    • filterCountByG_U_NotS

      int filterCountByG_U_NotS(long groupId, long userId, int status)
      Returns the number of blogs entries that the user has permission to view where groupId = ? and userId = ? and status ≠ ?.
      Parameters:
      groupId - the group ID
      userId - the user ID
      status - the status
      Returns:
      the number of matching blogs entries that the user has permission to view
    • findByG_D_S

      List<BlogsEntry> findByG_D_S(long groupId, Date displayDate, int status)
      Returns all the blogs entries where groupId = ? and displayDate = ? and status = ?.
      Parameters:
      groupId - the group ID
      displayDate - the display date
      status - the status
      Returns:
      the matching blogs entries
    • findByG_D_S

      List<BlogsEntry> findByG_D_S(long groupId, Date displayDate, int status, int start, int end)
      Returns a range of all the blogs entries where groupId = ? and displayDate = ? and status = ?.

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

      Parameters:
      groupId - the group ID
      displayDate - the display date
      status - the status
      start - the lower bound of the range of blogs entries
      end - the upper bound of the range of blogs entries (not inclusive)
      Returns:
      the range of matching blogs entries
    • findByG_D_S

      List<BlogsEntry> findByG_D_S(long groupId, Date displayDate, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
      Returns an ordered range of all the blogs entries where groupId = ? and displayDate = ? and status = ?.

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

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

      List<BlogsEntry> findByG_D_S(long groupId, Date displayDate, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the blogs entries where groupId = ? and displayDate = ? and status = ?.

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

      Parameters:
      groupId - the group ID
      displayDate - the display date
      status - the status
      start - the lower bound of the range of blogs entries
      end - the upper bound of the range of blogs 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 blogs entries
    • findByG_D_S_First

      BlogsEntry findByG_D_S_First(long groupId, Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the first blogs entry in the ordered set where groupId = ? and displayDate = ? and status = ?.
      Parameters:
      groupId - the group ID
      displayDate - the display date
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching blogs entry
      Throws:
      NoSuchEntryException - if a matching blogs entry could not be found
    • fetchByG_D_S_First

      BlogsEntry fetchByG_D_S_First(long groupId, Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
      Returns the first blogs entry in the ordered set where groupId = ? and displayDate = ? and status = ?.
      Parameters:
      groupId - the group ID
      displayDate - the display date
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching blogs entry, or null if a matching blogs entry could not be found
    • findByG_D_S_Last

      BlogsEntry findByG_D_S_Last(long groupId, Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the last blogs entry in the ordered set where groupId = ? and displayDate = ? and status = ?.
      Parameters:
      groupId - the group ID
      displayDate - the display date
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching blogs entry
      Throws:
      NoSuchEntryException - if a matching blogs entry could not be found
    • fetchByG_D_S_Last

      BlogsEntry fetchByG_D_S_Last(long groupId, Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
      Returns the last blogs entry in the ordered set where groupId = ? and displayDate = ? and status = ?.
      Parameters:
      groupId - the group ID
      displayDate - the display date
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching blogs entry, or null if a matching blogs entry could not be found
    • findByG_D_S_PrevAndNext

      BlogsEntry[] findByG_D_S_PrevAndNext(long entryId, long groupId, Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the blogs entries before and after the current blogs entry in the ordered set where groupId = ? and displayDate = ? and status = ?.
      Parameters:
      entryId - the primary key of the current blogs entry
      groupId - the group ID
      displayDate - the display date
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next blogs entry
      Throws:
      NoSuchEntryException - if a blogs entry with the primary key could not be found
    • filterFindByG_D_S

      List<BlogsEntry> filterFindByG_D_S(long groupId, Date displayDate, int status)
      Returns all the blogs entries that the user has permission to view where groupId = ? and displayDate = ? and status = ?.
      Parameters:
      groupId - the group ID
      displayDate - the display date
      status - the status
      Returns:
      the matching blogs entries that the user has permission to view
    • filterFindByG_D_S

      List<BlogsEntry> filterFindByG_D_S(long groupId, Date displayDate, int status, int start, int end)
      Returns a range of all the blogs entries that the user has permission to view where groupId = ? and displayDate = ? and status = ?.

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

      Parameters:
      groupId - the group ID
      displayDate - the display date
      status - the status
      start - the lower bound of the range of blogs entries
      end - the upper bound of the range of blogs entries (not inclusive)
      Returns:
      the range of matching blogs entries that the user has permission to view
    • filterFindByG_D_S

      List<BlogsEntry> filterFindByG_D_S(long groupId, Date displayDate, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
      Returns an ordered range of all the blogs entries that the user has permissions to view where groupId = ? and displayDate = ? and status = ?.

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

      Parameters:
      groupId - the group ID
      displayDate - the display date
      status - the status
      start - the lower bound of the range of blogs entries
      end - the upper bound of the range of blogs entries (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching blogs entries that the user has permission to view
    • filterFindByG_D_S_PrevAndNext

      BlogsEntry[] filterFindByG_D_S_PrevAndNext(long entryId, long groupId, Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the blogs entries before and after the current blogs entry in the ordered set of blogs entries that the user has permission to view where groupId = ? and displayDate = ? and status = ?.
      Parameters:
      entryId - the primary key of the current blogs entry
      groupId - the group ID
      displayDate - the display date
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next blogs entry
      Throws:
      NoSuchEntryException - if a blogs entry with the primary key could not be found
    • removeByG_D_S

      void removeByG_D_S(long groupId, Date displayDate, int status)
      Removes all the blogs entries where groupId = ? and displayDate = ? and status = ? from the database.
      Parameters:
      groupId - the group ID
      displayDate - the display date
      status - the status
    • countByG_D_S

      int countByG_D_S(long groupId, Date displayDate, int status)
      Returns the number of blogs entries where groupId = ? and displayDate = ? and status = ?.
      Parameters:
      groupId - the group ID
      displayDate - the display date
      status - the status
      Returns:
      the number of matching blogs entries
    • filterCountByG_D_S

      int filterCountByG_D_S(long groupId, Date displayDate, int status)
      Returns the number of blogs entries that the user has permission to view where groupId = ? and displayDate = ? and status = ?.
      Parameters:
      groupId - the group ID
      displayDate - the display date
      status - the status
      Returns:
      the number of matching blogs entries that the user has permission to view
    • findByG_GtD_S

      List<BlogsEntry> findByG_GtD_S(long groupId, Date displayDate, int status)
      Returns all the blogs entries where groupId = ? and displayDate > ? and status = ?.
      Parameters:
      groupId - the group ID
      displayDate - the display date
      status - the status
      Returns:
      the matching blogs entries
    • findByG_GtD_S

      List<BlogsEntry> findByG_GtD_S(long groupId, Date displayDate, int status, int start, int end)
      Returns a range of all the blogs entries where groupId = ? and displayDate > ? and status = ?.

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

      Parameters:
      groupId - the group ID
      displayDate - the display date
      status - the status
      start - the lower bound of the range of blogs entries
      end - the upper bound of the range of blogs entries (not inclusive)
      Returns:
      the range of matching blogs entries
    • findByG_GtD_S

      List<BlogsEntry> findByG_GtD_S(long groupId, Date displayDate, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
      Returns an ordered range of all the blogs entries where groupId = ? and displayDate > ? and status = ?.

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

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

      List<BlogsEntry> findByG_GtD_S(long groupId, Date displayDate, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the blogs entries where groupId = ? and displayDate > ? and status = ?.

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

      Parameters:
      groupId - the group ID
      displayDate - the display date
      status - the status
      start - the lower bound of the range of blogs entries
      end - the upper bound of the range of blogs 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 blogs entries
    • findByG_GtD_S_First

      BlogsEntry findByG_GtD_S_First(long groupId, Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the first blogs entry in the ordered set where groupId = ? and displayDate > ? and status = ?.
      Parameters:
      groupId - the group ID
      displayDate - the display date
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching blogs entry
      Throws:
      NoSuchEntryException - if a matching blogs entry could not be found
    • fetchByG_GtD_S_First

      BlogsEntry fetchByG_GtD_S_First(long groupId, Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
      Returns the first blogs entry in the ordered set where groupId = ? and displayDate > ? and status = ?.
      Parameters:
      groupId - the group ID
      displayDate - the display date
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching blogs entry, or null if a matching blogs entry could not be found
    • findByG_GtD_S_Last

      BlogsEntry findByG_GtD_S_Last(long groupId, Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the last blogs entry in the ordered set where groupId = ? and displayDate > ? and status = ?.
      Parameters:
      groupId - the group ID
      displayDate - the display date
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching blogs entry
      Throws:
      NoSuchEntryException - if a matching blogs entry could not be found
    • fetchByG_GtD_S_Last

      BlogsEntry fetchByG_GtD_S_Last(long groupId, Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
      Returns the last blogs entry in the ordered set where groupId = ? and displayDate > ? and status = ?.
      Parameters:
      groupId - the group ID
      displayDate - the display date
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching blogs entry, or null if a matching blogs entry could not be found
    • findByG_GtD_S_PrevAndNext

      BlogsEntry[] findByG_GtD_S_PrevAndNext(long entryId, long groupId, Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the blogs entries before and after the current blogs entry in the ordered set where groupId = ? and displayDate > ? and status = ?.
      Parameters:
      entryId - the primary key of the current blogs entry
      groupId - the group ID
      displayDate - the display date
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next blogs entry
      Throws:
      NoSuchEntryException - if a blogs entry with the primary key could not be found
    • filterFindByG_GtD_S

      List<BlogsEntry> filterFindByG_GtD_S(long groupId, Date displayDate, int status)
      Returns all the blogs entries that the user has permission to view where groupId = ? and displayDate > ? and status = ?.
      Parameters:
      groupId - the group ID
      displayDate - the display date
      status - the status
      Returns:
      the matching blogs entries that the user has permission to view
    • filterFindByG_GtD_S

      List<BlogsEntry> filterFindByG_GtD_S(long groupId, Date displayDate, int status, int start, int end)
      Returns a range of all the blogs entries that the user has permission to view where groupId = ? and displayDate > ? and status = ?.

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

      Parameters:
      groupId - the group ID
      displayDate - the display date
      status - the status
      start - the lower bound of the range of blogs entries
      end - the upper bound of the range of blogs entries (not inclusive)
      Returns:
      the range of matching blogs entries that the user has permission to view
    • filterFindByG_GtD_S

      List<BlogsEntry> filterFindByG_GtD_S(long groupId, Date displayDate, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
      Returns an ordered range of all the blogs entries that the user has permissions to view where groupId = ? and displayDate > ? and status = ?.

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

      Parameters:
      groupId - the group ID
      displayDate - the display date
      status - the status
      start - the lower bound of the range of blogs entries
      end - the upper bound of the range of blogs entries (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching blogs entries that the user has permission to view
    • filterFindByG_GtD_S_PrevAndNext

      BlogsEntry[] filterFindByG_GtD_S_PrevAndNext(long entryId, long groupId, Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the blogs entries before and after the current blogs entry in the ordered set of blogs entries that the user has permission to view where groupId = ? and displayDate > ? and status = ?.
      Parameters:
      entryId - the primary key of the current blogs entry
      groupId - the group ID
      displayDate - the display date
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next blogs entry
      Throws:
      NoSuchEntryException - if a blogs entry with the primary key could not be found
    • removeByG_GtD_S

      void removeByG_GtD_S(long groupId, Date displayDate, int status)
      Removes all the blogs entries where groupId = ? and displayDate > ? and status = ? from the database.
      Parameters:
      groupId - the group ID
      displayDate - the display date
      status - the status
    • countByG_GtD_S

      int countByG_GtD_S(long groupId, Date displayDate, int status)
      Returns the number of blogs entries where groupId = ? and displayDate > ? and status = ?.
      Parameters:
      groupId - the group ID
      displayDate - the display date
      status - the status
      Returns:
      the number of matching blogs entries
    • filterCountByG_GtD_S

      int filterCountByG_GtD_S(long groupId, Date displayDate, int status)
      Returns the number of blogs entries that the user has permission to view where groupId = ? and displayDate > ? and status = ?.
      Parameters:
      groupId - the group ID
      displayDate - the display date
      status - the status
      Returns:
      the number of matching blogs entries that the user has permission to view
    • findByG_LtD_S

      List<BlogsEntry> findByG_LtD_S(long groupId, Date displayDate, int status)
      Returns all the blogs entries where groupId = ? and displayDate < ? and status = ?.
      Parameters:
      groupId - the group ID
      displayDate - the display date
      status - the status
      Returns:
      the matching blogs entries
    • findByG_LtD_S

      List<BlogsEntry> findByG_LtD_S(long groupId, Date displayDate, int status, int start, int end)
      Returns a range of all the blogs entries where groupId = ? and displayDate < ? and status = ?.

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

      Parameters:
      groupId - the group ID
      displayDate - the display date
      status - the status
      start - the lower bound of the range of blogs entries
      end - the upper bound of the range of blogs entries (not inclusive)
      Returns:
      the range of matching blogs entries
    • findByG_LtD_S

      List<BlogsEntry> findByG_LtD_S(long groupId, Date displayDate, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
      Returns an ordered range of all the blogs entries where groupId = ? and displayDate < ? and status = ?.

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

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

      List<BlogsEntry> findByG_LtD_S(long groupId, Date displayDate, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the blogs entries where groupId = ? and displayDate < ? and status = ?.

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

      Parameters:
      groupId - the group ID
      displayDate - the display date
      status - the status
      start - the lower bound of the range of blogs entries
      end - the upper bound of the range of blogs 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 blogs entries
    • findByG_LtD_S_First

      BlogsEntry findByG_LtD_S_First(long groupId, Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the first blogs entry in the ordered set where groupId = ? and displayDate < ? and status = ?.
      Parameters:
      groupId - the group ID
      displayDate - the display date
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching blogs entry
      Throws:
      NoSuchEntryException - if a matching blogs entry could not be found
    • fetchByG_LtD_S_First

      BlogsEntry fetchByG_LtD_S_First(long groupId, Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
      Returns the first blogs entry in the ordered set where groupId = ? and displayDate < ? and status = ?.
      Parameters:
      groupId - the group ID
      displayDate - the display date
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching blogs entry, or null if a matching blogs entry could not be found
    • findByG_LtD_S_Last

      BlogsEntry findByG_LtD_S_Last(long groupId, Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the last blogs entry in the ordered set where groupId = ? and displayDate < ? and status = ?.
      Parameters:
      groupId - the group ID
      displayDate - the display date
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching blogs entry
      Throws:
      NoSuchEntryException - if a matching blogs entry could not be found
    • fetchByG_LtD_S_Last

      BlogsEntry fetchByG_LtD_S_Last(long groupId, Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
      Returns the last blogs entry in the ordered set where groupId = ? and displayDate < ? and status = ?.
      Parameters:
      groupId - the group ID
      displayDate - the display date
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching blogs entry, or null if a matching blogs entry could not be found
    • findByG_LtD_S_PrevAndNext

      BlogsEntry[] findByG_LtD_S_PrevAndNext(long entryId, long groupId, Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the blogs entries before and after the current blogs entry in the ordered set where groupId = ? and displayDate < ? and status = ?.
      Parameters:
      entryId - the primary key of the current blogs entry
      groupId - the group ID
      displayDate - the display date
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next blogs entry
      Throws:
      NoSuchEntryException - if a blogs entry with the primary key could not be found
    • filterFindByG_LtD_S

      List<BlogsEntry> filterFindByG_LtD_S(long groupId, Date displayDate, int status)
      Returns all the blogs entries that the user has permission to view where groupId = ? and displayDate < ? and status = ?.
      Parameters:
      groupId - the group ID
      displayDate - the display date
      status - the status
      Returns:
      the matching blogs entries that the user has permission to view
    • filterFindByG_LtD_S

      List<BlogsEntry> filterFindByG_LtD_S(long groupId, Date displayDate, int status, int start, int end)
      Returns a range of all the blogs entries that the user has permission to view where groupId = ? and displayDate < ? and status = ?.

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

      Parameters:
      groupId - the group ID
      displayDate - the display date
      status - the status
      start - the lower bound of the range of blogs entries
      end - the upper bound of the range of blogs entries (not inclusive)
      Returns:
      the range of matching blogs entries that the user has permission to view
    • filterFindByG_LtD_S

      List<BlogsEntry> filterFindByG_LtD_S(long groupId, Date displayDate, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
      Returns an ordered range of all the blogs entries that the user has permissions to view where groupId = ? and displayDate < ? and status = ?.

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

      Parameters:
      groupId - the group ID
      displayDate - the display date
      status - the status
      start - the lower bound of the range of blogs entries
      end - the upper bound of the range of blogs entries (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching blogs entries that the user has permission to view
    • filterFindByG_LtD_S_PrevAndNext

      BlogsEntry[] filterFindByG_LtD_S_PrevAndNext(long entryId, long groupId, Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the blogs entries before and after the current blogs entry in the ordered set of blogs entries that the user has permission to view where groupId = ? and displayDate < ? and status = ?.
      Parameters:
      entryId - the primary key of the current blogs entry
      groupId - the group ID
      displayDate - the display date
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next blogs entry
      Throws:
      NoSuchEntryException - if a blogs entry with the primary key could not be found
    • removeByG_LtD_S

      void removeByG_LtD_S(long groupId, Date displayDate, int status)
      Removes all the blogs entries where groupId = ? and displayDate < ? and status = ? from the database.
      Parameters:
      groupId - the group ID
      displayDate - the display date
      status - the status
    • countByG_LtD_S

      int countByG_LtD_S(long groupId, Date displayDate, int status)
      Returns the number of blogs entries where groupId = ? and displayDate < ? and status = ?.
      Parameters:
      groupId - the group ID
      displayDate - the display date
      status - the status
      Returns:
      the number of matching blogs entries
    • filterCountByG_LtD_S

      int filterCountByG_LtD_S(long groupId, Date displayDate, int status)
      Returns the number of blogs entries that the user has permission to view where groupId = ? and displayDate < ? and status = ?.
      Parameters:
      groupId - the group ID
      displayDate - the display date
      status - the status
      Returns:
      the number of matching blogs entries that the user has permission to view
    • findByG_LtD_NotS

      List<BlogsEntry> findByG_LtD_NotS(long groupId, Date displayDate, int status)
      Returns all the blogs entries where groupId = ? and displayDate < ? and status ≠ ?.
      Parameters:
      groupId - the group ID
      displayDate - the display date
      status - the status
      Returns:
      the matching blogs entries
    • findByG_LtD_NotS

      List<BlogsEntry> findByG_LtD_NotS(long groupId, Date displayDate, int status, int start, int end)
      Returns a range of all the blogs entries where groupId = ? and displayDate < ? and status ≠ ?.

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

      Parameters:
      groupId - the group ID
      displayDate - the display date
      status - the status
      start - the lower bound of the range of blogs entries
      end - the upper bound of the range of blogs entries (not inclusive)
      Returns:
      the range of matching blogs entries
    • findByG_LtD_NotS

      List<BlogsEntry> findByG_LtD_NotS(long groupId, Date displayDate, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
      Returns an ordered range of all the blogs entries where groupId = ? and displayDate < ? and status ≠ ?.

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

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

      List<BlogsEntry> findByG_LtD_NotS(long groupId, Date displayDate, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the blogs entries where groupId = ? and displayDate < ? and status ≠ ?.

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

      Parameters:
      groupId - the group ID
      displayDate - the display date
      status - the status
      start - the lower bound of the range of blogs entries
      end - the upper bound of the range of blogs 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 blogs entries
    • findByG_LtD_NotS_First

      BlogsEntry findByG_LtD_NotS_First(long groupId, Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the first blogs entry in the ordered set where groupId = ? and displayDate < ? and status ≠ ?.
      Parameters:
      groupId - the group ID
      displayDate - the display date
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching blogs entry
      Throws:
      NoSuchEntryException - if a matching blogs entry could not be found
    • fetchByG_LtD_NotS_First

      BlogsEntry fetchByG_LtD_NotS_First(long groupId, Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
      Returns the first blogs entry in the ordered set where groupId = ? and displayDate < ? and status ≠ ?.
      Parameters:
      groupId - the group ID
      displayDate - the display date
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching blogs entry, or null if a matching blogs entry could not be found
    • findByG_LtD_NotS_Last

      BlogsEntry findByG_LtD_NotS_Last(long groupId, Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the last blogs entry in the ordered set where groupId = ? and displayDate < ? and status ≠ ?.
      Parameters:
      groupId - the group ID
      displayDate - the display date
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching blogs entry
      Throws:
      NoSuchEntryException - if a matching blogs entry could not be found
    • fetchByG_LtD_NotS_Last

      BlogsEntry fetchByG_LtD_NotS_Last(long groupId, Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
      Returns the last blogs entry in the ordered set where groupId = ? and displayDate < ? and status ≠ ?.
      Parameters:
      groupId - the group ID
      displayDate - the display date
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching blogs entry, or null if a matching blogs entry could not be found
    • findByG_LtD_NotS_PrevAndNext

      BlogsEntry[] findByG_LtD_NotS_PrevAndNext(long entryId, long groupId, Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the blogs entries before and after the current blogs entry in the ordered set where groupId = ? and displayDate < ? and status ≠ ?.
      Parameters:
      entryId - the primary key of the current blogs entry
      groupId - the group ID
      displayDate - the display date
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next blogs entry
      Throws:
      NoSuchEntryException - if a blogs entry with the primary key could not be found
    • filterFindByG_LtD_NotS

      List<BlogsEntry> filterFindByG_LtD_NotS(long groupId, Date displayDate, int status)
      Returns all the blogs entries that the user has permission to view where groupId = ? and displayDate < ? and status ≠ ?.
      Parameters:
      groupId - the group ID
      displayDate - the display date
      status - the status
      Returns:
      the matching blogs entries that the user has permission to view
    • filterFindByG_LtD_NotS

      List<BlogsEntry> filterFindByG_LtD_NotS(long groupId, Date displayDate, int status, int start, int end)
      Returns a range of all the blogs entries that the user has permission to view where groupId = ? and displayDate < ? and status ≠ ?.

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

      Parameters:
      groupId - the group ID
      displayDate - the display date
      status - the status
      start - the lower bound of the range of blogs entries
      end - the upper bound of the range of blogs entries (not inclusive)
      Returns:
      the range of matching blogs entries that the user has permission to view
    • filterFindByG_LtD_NotS

      List<BlogsEntry> filterFindByG_LtD_NotS(long groupId, Date displayDate, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
      Returns an ordered range of all the blogs entries that the user has permissions to view where groupId = ? and displayDate < ? and status ≠ ?.

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

      Parameters:
      groupId - the group ID
      displayDate - the display date
      status - the status
      start - the lower bound of the range of blogs entries
      end - the upper bound of the range of blogs entries (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching blogs entries that the user has permission to view
    • filterFindByG_LtD_NotS_PrevAndNext

      BlogsEntry[] filterFindByG_LtD_NotS_PrevAndNext(long entryId, long groupId, Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the blogs entries before and after the current blogs entry in the ordered set of blogs entries that the user has permission to view where groupId = ? and displayDate < ? and status ≠ ?.
      Parameters:
      entryId - the primary key of the current blogs entry
      groupId - the group ID
      displayDate - the display date
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next blogs entry
      Throws:
      NoSuchEntryException - if a blogs entry with the primary key could not be found
    • removeByG_LtD_NotS

      void removeByG_LtD_NotS(long groupId, Date displayDate, int status)
      Removes all the blogs entries where groupId = ? and displayDate < ? and status ≠ ? from the database.
      Parameters:
      groupId - the group ID
      displayDate - the display date
      status - the status
    • countByG_LtD_NotS

      int countByG_LtD_NotS(long groupId, Date displayDate, int status)
      Returns the number of blogs entries where groupId = ? and displayDate < ? and status ≠ ?.
      Parameters:
      groupId - the group ID
      displayDate - the display date
      status - the status
      Returns:
      the number of matching blogs entries
    • filterCountByG_LtD_NotS

      int filterCountByG_LtD_NotS(long groupId, Date displayDate, int status)
      Returns the number of blogs entries that the user has permission to view where groupId = ? and displayDate < ? and status ≠ ?.
      Parameters:
      groupId - the group ID
      displayDate - the display date
      status - the status
      Returns:
      the number of matching blogs entries that the user has permission to view
    • findByC_U_S

      List<BlogsEntry> findByC_U_S(long companyId, long userId, int status)
      Returns all the blogs entries where companyId = ? and userId = ? and status = ?.
      Parameters:
      companyId - the company ID
      userId - the user ID
      status - the status
      Returns:
      the matching blogs entries
    • findByC_U_S

      List<BlogsEntry> findByC_U_S(long companyId, long userId, int status, int start, int end)
      Returns a range of all the blogs entries where companyId = ? and userId = ? and status = ?.

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

      Parameters:
      companyId - the company ID
      userId - the user ID
      status - the status
      start - the lower bound of the range of blogs entries
      end - the upper bound of the range of blogs entries (not inclusive)
      Returns:
      the range of matching blogs entries
    • findByC_U_S

      List<BlogsEntry> findByC_U_S(long companyId, long userId, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
      Returns an ordered range of all the blogs entries where companyId = ? and userId = ? and status = ?.

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

      Parameters:
      companyId - the company ID
      userId - the user ID
      status - the status
      start - the lower bound of the range of blogs entries
      end - the upper bound of the range of blogs entries (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching blogs entries
    • findByC_U_S

      List<BlogsEntry> findByC_U_S(long companyId, long userId, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the blogs entries where companyId = ? and userId = ? and status = ?.

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

      Parameters:
      companyId - the company ID
      userId - the user ID
      status - the status
      start - the lower bound of the range of blogs entries
      end - the upper bound of the range of blogs 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 blogs entries
    • findByC_U_S_First

      BlogsEntry findByC_U_S_First(long companyId, long userId, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the first blogs entry in the ordered set where companyId = ? and userId = ? and status = ?.
      Parameters:
      companyId - the company ID
      userId - the user ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching blogs entry
      Throws:
      NoSuchEntryException - if a matching blogs entry could not be found
    • fetchByC_U_S_First

      BlogsEntry fetchByC_U_S_First(long companyId, long userId, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
      Returns the first blogs entry in the ordered set where companyId = ? and userId = ? and status = ?.
      Parameters:
      companyId - the company ID
      userId - the user ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching blogs entry, or null if a matching blogs entry could not be found
    • findByC_U_S_Last

      BlogsEntry findByC_U_S_Last(long companyId, long userId, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the last blogs entry in the ordered set where companyId = ? and userId = ? and status = ?.
      Parameters:
      companyId - the company ID
      userId - the user ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching blogs entry
      Throws:
      NoSuchEntryException - if a matching blogs entry could not be found
    • fetchByC_U_S_Last

      BlogsEntry fetchByC_U_S_Last(long companyId, long userId, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
      Returns the last blogs entry in the ordered set where companyId = ? and userId = ? and status = ?.
      Parameters:
      companyId - the company ID
      userId - the user ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching blogs entry, or null if a matching blogs entry could not be found
    • findByC_U_S_PrevAndNext

      BlogsEntry[] findByC_U_S_PrevAndNext(long entryId, long companyId, long userId, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the blogs entries before and after the current blogs entry in the ordered set where companyId = ? and userId = ? and status = ?.
      Parameters:
      entryId - the primary key of the current blogs entry
      companyId - the company ID
      userId - the user ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next blogs entry
      Throws:
      NoSuchEntryException - if a blogs entry with the primary key could not be found
    • removeByC_U_S

      void removeByC_U_S(long companyId, long userId, int status)
      Removes all the blogs entries where companyId = ? and userId = ? and status = ? from the database.
      Parameters:
      companyId - the company ID
      userId - the user ID
      status - the status
    • countByC_U_S

      int countByC_U_S(long companyId, long userId, int status)
      Returns the number of blogs entries where companyId = ? and userId = ? and status = ?.
      Parameters:
      companyId - the company ID
      userId - the user ID
      status - the status
      Returns:
      the number of matching blogs entries
    • findByC_U_NotS

      List<BlogsEntry> findByC_U_NotS(long companyId, long userId, int status)
      Returns all the blogs entries where companyId = ? and userId = ? and status ≠ ?.
      Parameters:
      companyId - the company ID
      userId - the user ID
      status - the status
      Returns:
      the matching blogs entries
    • findByC_U_NotS

      List<BlogsEntry> findByC_U_NotS(long companyId, long userId, int status, int start, int end)
      Returns a range of all the blogs entries where companyId = ? and userId = ? and status ≠ ?.

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

      Parameters:
      companyId - the company ID
      userId - the user ID
      status - the status
      start - the lower bound of the range of blogs entries
      end - the upper bound of the range of blogs entries (not inclusive)
      Returns:
      the range of matching blogs entries
    • findByC_U_NotS

      List<BlogsEntry> findByC_U_NotS(long companyId, long userId, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
      Returns an ordered range of all the blogs entries where companyId = ? and userId = ? and status ≠ ?.

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

      Parameters:
      companyId - the company ID
      userId - the user ID
      status - the status
      start - the lower bound of the range of blogs entries
      end - the upper bound of the range of blogs entries (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching blogs entries
    • findByC_U_NotS

      List<BlogsEntry> findByC_U_NotS(long companyId, long userId, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the blogs entries where companyId = ? and userId = ? and status ≠ ?.

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

      Parameters:
      companyId - the company ID
      userId - the user ID
      status - the status
      start - the lower bound of the range of blogs entries
      end - the upper bound of the range of blogs 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 blogs entries
    • findByC_U_NotS_First

      BlogsEntry findByC_U_NotS_First(long companyId, long userId, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the first blogs entry in the ordered set where companyId = ? and userId = ? and status ≠ ?.
      Parameters:
      companyId - the company ID
      userId - the user ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching blogs entry
      Throws:
      NoSuchEntryException - if a matching blogs entry could not be found
    • fetchByC_U_NotS_First

      BlogsEntry fetchByC_U_NotS_First(long companyId, long userId, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
      Returns the first blogs entry in the ordered set where companyId = ? and userId = ? and status ≠ ?.
      Parameters:
      companyId - the company ID
      userId - the user ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching blogs entry, or null if a matching blogs entry could not be found
    • findByC_U_NotS_Last

      BlogsEntry findByC_U_NotS_Last(long companyId, long userId, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the last blogs entry in the ordered set where companyId = ? and userId = ? and status ≠ ?.
      Parameters:
      companyId - the company ID
      userId - the user ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching blogs entry
      Throws:
      NoSuchEntryException - if a matching blogs entry could not be found
    • fetchByC_U_NotS_Last

      BlogsEntry fetchByC_U_NotS_Last(long companyId, long userId, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
      Returns the last blogs entry in the ordered set where companyId = ? and userId = ? and status ≠ ?.
      Parameters:
      companyId - the company ID
      userId - the user ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching blogs entry, or null if a matching blogs entry could not be found
    • findByC_U_NotS_PrevAndNext

      BlogsEntry[] findByC_U_NotS_PrevAndNext(long entryId, long companyId, long userId, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the blogs entries before and after the current blogs entry in the ordered set where companyId = ? and userId = ? and status ≠ ?.
      Parameters:
      entryId - the primary key of the current blogs entry
      companyId - the company ID
      userId - the user ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next blogs entry
      Throws:
      NoSuchEntryException - if a blogs entry with the primary key could not be found
    • removeByC_U_NotS

      void removeByC_U_NotS(long companyId, long userId, int status)
      Removes all the blogs entries where companyId = ? and userId = ? and status ≠ ? from the database.
      Parameters:
      companyId - the company ID
      userId - the user ID
      status - the status
    • countByC_U_NotS

      int countByC_U_NotS(long companyId, long userId, int status)
      Returns the number of blogs entries where companyId = ? and userId = ? and status ≠ ?.
      Parameters:
      companyId - the company ID
      userId - the user ID
      status - the status
      Returns:
      the number of matching blogs entries
    • findByC_LtD_S

      List<BlogsEntry> findByC_LtD_S(long companyId, Date displayDate, int status)
      Returns all the blogs entries where companyId = ? and displayDate < ? and status = ?.
      Parameters:
      companyId - the company ID
      displayDate - the display date
      status - the status
      Returns:
      the matching blogs entries
    • findByC_LtD_S

      List<BlogsEntry> findByC_LtD_S(long companyId, Date displayDate, int status, int start, int end)
      Returns a range of all the blogs entries where companyId = ? and displayDate < ? and status = ?.

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

      Parameters:
      companyId - the company ID
      displayDate - the display date
      status - the status
      start - the lower bound of the range of blogs entries
      end - the upper bound of the range of blogs entries (not inclusive)
      Returns:
      the range of matching blogs entries
    • findByC_LtD_S

      List<BlogsEntry> findByC_LtD_S(long companyId, Date displayDate, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
      Returns an ordered range of all the blogs entries where companyId = ? and displayDate < ? and status = ?.

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

      Parameters:
      companyId - the company ID
      displayDate - the display date
      status - the status
      start - the lower bound of the range of blogs entries
      end - the upper bound of the range of blogs entries (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching blogs entries
    • findByC_LtD_S

      List<BlogsEntry> findByC_LtD_S(long companyId, Date displayDate, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the blogs entries where companyId = ? and displayDate < ? and status = ?.

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

      Parameters:
      companyId - the company ID
      displayDate - the display date
      status - the status
      start - the lower bound of the range of blogs entries
      end - the upper bound of the range of blogs 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 blogs entries
    • findByC_LtD_S_First

      BlogsEntry findByC_LtD_S_First(long companyId, Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the first blogs entry in the ordered set where companyId = ? and displayDate < ? and status = ?.
      Parameters:
      companyId - the company ID
      displayDate - the display date
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching blogs entry
      Throws:
      NoSuchEntryException - if a matching blogs entry could not be found
    • fetchByC_LtD_S_First

      BlogsEntry fetchByC_LtD_S_First(long companyId, Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
      Returns the first blogs entry in the ordered set where companyId = ? and displayDate < ? and status = ?.
      Parameters:
      companyId - the company ID
      displayDate - the display date
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching blogs entry, or null if a matching blogs entry could not be found
    • findByC_LtD_S_Last

      BlogsEntry findByC_LtD_S_Last(long companyId, Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the last blogs entry in the ordered set where companyId = ? and displayDate < ? and status = ?.
      Parameters:
      companyId - the company ID
      displayDate - the display date
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching blogs entry
      Throws:
      NoSuchEntryException - if a matching blogs entry could not be found
    • fetchByC_LtD_S_Last

      BlogsEntry fetchByC_LtD_S_Last(long companyId, Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
      Returns the last blogs entry in the ordered set where companyId = ? and displayDate < ? and status = ?.
      Parameters:
      companyId - the company ID
      displayDate - the display date
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching blogs entry, or null if a matching blogs entry could not be found
    • findByC_LtD_S_PrevAndNext

      BlogsEntry[] findByC_LtD_S_PrevAndNext(long entryId, long companyId, Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the blogs entries before and after the current blogs entry in the ordered set where companyId = ? and displayDate < ? and status = ?.
      Parameters:
      entryId - the primary key of the current blogs entry
      companyId - the company ID
      displayDate - the display date
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next blogs entry
      Throws:
      NoSuchEntryException - if a blogs entry with the primary key could not be found
    • removeByC_LtD_S

      void removeByC_LtD_S(long companyId, Date displayDate, int status)
      Removes all the blogs entries where companyId = ? and displayDate < ? and status = ? from the database.
      Parameters:
      companyId - the company ID
      displayDate - the display date
      status - the status
    • countByC_LtD_S

      int countByC_LtD_S(long companyId, Date displayDate, int status)
      Returns the number of blogs entries where companyId = ? and displayDate < ? and status = ?.
      Parameters:
      companyId - the company ID
      displayDate - the display date
      status - the status
      Returns:
      the number of matching blogs entries
    • findByC_LtD_NotS

      List<BlogsEntry> findByC_LtD_NotS(long companyId, Date displayDate, int status)
      Returns all the blogs entries where companyId = ? and displayDate < ? and status ≠ ?.
      Parameters:
      companyId - the company ID
      displayDate - the display date
      status - the status
      Returns:
      the matching blogs entries
    • findByC_LtD_NotS

      List<BlogsEntry> findByC_LtD_NotS(long companyId, Date displayDate, int status, int start, int end)
      Returns a range of all the blogs entries where companyId = ? and displayDate < ? and status ≠ ?.

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

      Parameters:
      companyId - the company ID
      displayDate - the display date
      status - the status
      start - the lower bound of the range of blogs entries
      end - the upper bound of the range of blogs entries (not inclusive)
      Returns:
      the range of matching blogs entries
    • findByC_LtD_NotS

      List<BlogsEntry> findByC_LtD_NotS(long companyId, Date displayDate, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
      Returns an ordered range of all the blogs entries where companyId = ? and displayDate < ? and status ≠ ?.

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

      Parameters:
      companyId - the company ID
      displayDate - the display date
      status - the status
      start - the lower bound of the range of blogs entries
      end - the upper bound of the range of blogs entries (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching blogs entries
    • findByC_LtD_NotS

      List<BlogsEntry> findByC_LtD_NotS(long companyId, Date displayDate, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the blogs entries where companyId = ? and displayDate < ? and status ≠ ?.

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

      Parameters:
      companyId - the company ID
      displayDate - the display date
      status - the status
      start - the lower bound of the range of blogs entries
      end - the upper bound of the range of blogs 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 blogs entries
    • findByC_LtD_NotS_First

      BlogsEntry findByC_LtD_NotS_First(long companyId, Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the first blogs entry in the ordered set where companyId = ? and displayDate < ? and status ≠ ?.
      Parameters:
      companyId - the company ID
      displayDate - the display date
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching blogs entry
      Throws:
      NoSuchEntryException - if a matching blogs entry could not be found
    • fetchByC_LtD_NotS_First

      BlogsEntry fetchByC_LtD_NotS_First(long companyId, Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
      Returns the first blogs entry in the ordered set where companyId = ? and displayDate < ? and status ≠ ?.
      Parameters:
      companyId - the company ID
      displayDate - the display date
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching blogs entry, or null if a matching blogs entry could not be found
    • findByC_LtD_NotS_Last

      BlogsEntry findByC_LtD_NotS_Last(long companyId, Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the last blogs entry in the ordered set where companyId = ? and displayDate < ? and status ≠ ?.
      Parameters:
      companyId - the company ID
      displayDate - the display date
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching blogs entry
      Throws:
      NoSuchEntryException - if a matching blogs entry could not be found
    • fetchByC_LtD_NotS_Last

      BlogsEntry fetchByC_LtD_NotS_Last(long companyId, Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
      Returns the last blogs entry in the ordered set where companyId = ? and displayDate < ? and status ≠ ?.
      Parameters:
      companyId - the company ID
      displayDate - the display date
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching blogs entry, or null if a matching blogs entry could not be found
    • findByC_LtD_NotS_PrevAndNext

      BlogsEntry[] findByC_LtD_NotS_PrevAndNext(long entryId, long companyId, Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the blogs entries before and after the current blogs entry in the ordered set where companyId = ? and displayDate < ? and status ≠ ?.
      Parameters:
      entryId - the primary key of the current blogs entry
      companyId - the company ID
      displayDate - the display date
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next blogs entry
      Throws:
      NoSuchEntryException - if a blogs entry with the primary key could not be found
    • removeByC_LtD_NotS

      void removeByC_LtD_NotS(long companyId, Date displayDate, int status)
      Removes all the blogs entries where companyId = ? and displayDate < ? and status ≠ ? from the database.
      Parameters:
      companyId - the company ID
      displayDate - the display date
      status - the status
    • countByC_LtD_NotS

      int countByC_LtD_NotS(long companyId, Date displayDate, int status)
      Returns the number of blogs entries where companyId = ? and displayDate < ? and status ≠ ?.
      Parameters:
      companyId - the company ID
      displayDate - the display date
      status - the status
      Returns:
      the number of matching blogs entries
    • findByG_U_LtD_S

      List<BlogsEntry> findByG_U_LtD_S(long groupId, long userId, Date displayDate, int status)
      Returns all the blogs entries where groupId = ? and userId = ? and displayDate < ? and status = ?.
      Parameters:
      groupId - the group ID
      userId - the user ID
      displayDate - the display date
      status - the status
      Returns:
      the matching blogs entries
    • findByG_U_LtD_S

      List<BlogsEntry> findByG_U_LtD_S(long groupId, long userId, Date displayDate, int status, int start, int end)
      Returns a range of all the blogs entries where groupId = ? and userId = ? and displayDate < ? and status = ?.

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

      Parameters:
      groupId - the group ID
      userId - the user ID
      displayDate - the display date
      status - the status
      start - the lower bound of the range of blogs entries
      end - the upper bound of the range of blogs entries (not inclusive)
      Returns:
      the range of matching blogs entries
    • findByG_U_LtD_S

      List<BlogsEntry> findByG_U_LtD_S(long groupId, long userId, Date displayDate, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
      Returns an ordered range of all the blogs entries where groupId = ? and userId = ? and displayDate < ? and status = ?.

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

      Parameters:
      groupId - the group ID
      userId - the user ID
      displayDate - the display date
      status - the status
      start - the lower bound of the range of blogs entries
      end - the upper bound of the range of blogs entries (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching blogs entries
    • findByG_U_LtD_S

      List<BlogsEntry> findByG_U_LtD_S(long groupId, long userId, Date displayDate, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the blogs entries where groupId = ? and userId = ? and displayDate < ? and status = ?.

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

      Parameters:
      groupId - the group ID
      userId - the user ID
      displayDate - the display date
      status - the status
      start - the lower bound of the range of blogs entries
      end - the upper bound of the range of blogs 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 blogs entries
    • findByG_U_LtD_S_First

      BlogsEntry findByG_U_LtD_S_First(long groupId, long userId, Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the first blogs entry in the ordered set where groupId = ? and userId = ? and displayDate < ? and status = ?.
      Parameters:
      groupId - the group ID
      userId - the user ID
      displayDate - the display date
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching blogs entry
      Throws:
      NoSuchEntryException - if a matching blogs entry could not be found
    • fetchByG_U_LtD_S_First

      BlogsEntry fetchByG_U_LtD_S_First(long groupId, long userId, Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
      Returns the first blogs entry in the ordered set where groupId = ? and userId = ? and displayDate < ? and status = ?.
      Parameters:
      groupId - the group ID
      userId - the user ID
      displayDate - the display date
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching blogs entry, or null if a matching blogs entry could not be found
    • findByG_U_LtD_S_Last

      BlogsEntry findByG_U_LtD_S_Last(long groupId, long userId, Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the last blogs entry in the ordered set where groupId = ? and userId = ? and displayDate < ? and status = ?.
      Parameters:
      groupId - the group ID
      userId - the user ID
      displayDate - the display date
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching blogs entry
      Throws:
      NoSuchEntryException - if a matching blogs entry could not be found
    • fetchByG_U_LtD_S_Last

      BlogsEntry fetchByG_U_LtD_S_Last(long groupId, long userId, Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
      Returns the last blogs entry in the ordered set where groupId = ? and userId = ? and displayDate < ? and status = ?.
      Parameters:
      groupId - the group ID
      userId - the user ID
      displayDate - the display date
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching blogs entry, or null if a matching blogs entry could not be found
    • findByG_U_LtD_S_PrevAndNext

      BlogsEntry[] findByG_U_LtD_S_PrevAndNext(long entryId, long groupId, long userId, Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the blogs entries before and after the current blogs entry in the ordered set where groupId = ? and userId = ? and displayDate < ? and status = ?.
      Parameters:
      entryId - the primary key of the current blogs entry
      groupId - the group ID
      userId - the user ID
      displayDate - the display date
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next blogs entry
      Throws:
      NoSuchEntryException - if a blogs entry with the primary key could not be found
    • filterFindByG_U_LtD_S

      List<BlogsEntry> filterFindByG_U_LtD_S(long groupId, long userId, Date displayDate, int status)
      Returns all the blogs entries that the user has permission to view where groupId = ? and userId = ? and displayDate < ? and status = ?.
      Parameters:
      groupId - the group ID
      userId - the user ID
      displayDate - the display date
      status - the status
      Returns:
      the matching blogs entries that the user has permission to view
    • filterFindByG_U_LtD_S

      List<BlogsEntry> filterFindByG_U_LtD_S(long groupId, long userId, Date displayDate, int status, int start, int end)
      Returns a range of all the blogs entries that the user has permission to view where groupId = ? and userId = ? and displayDate < ? and status = ?.

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

      Parameters:
      groupId - the group ID
      userId - the user ID
      displayDate - the display date
      status - the status
      start - the lower bound of the range of blogs entries
      end - the upper bound of the range of blogs entries (not inclusive)
      Returns:
      the range of matching blogs entries that the user has permission to view
    • filterFindByG_U_LtD_S

      List<BlogsEntry> filterFindByG_U_LtD_S(long groupId, long userId, Date displayDate, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
      Returns an ordered range of all the blogs entries that the user has permissions to view where groupId = ? and userId = ? and displayDate < ? and status = ?.

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

      Parameters:
      groupId - the group ID
      userId - the user ID
      displayDate - the display date
      status - the status
      start - the lower bound of the range of blogs entries
      end - the upper bound of the range of blogs entries (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching blogs entries that the user has permission to view
    • filterFindByG_U_LtD_S_PrevAndNext

      BlogsEntry[] filterFindByG_U_LtD_S_PrevAndNext(long entryId, long groupId, long userId, Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the blogs entries before and after the current blogs entry in the ordered set of blogs entries that the user has permission to view where groupId = ? and userId = ? and displayDate < ? and status = ?.
      Parameters:
      entryId - the primary key of the current blogs entry
      groupId - the group ID
      userId - the user ID
      displayDate - the display date
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next blogs entry
      Throws:
      NoSuchEntryException - if a blogs entry with the primary key could not be found
    • removeByG_U_LtD_S

      void removeByG_U_LtD_S(long groupId, long userId, Date displayDate, int status)
      Removes all the blogs entries where groupId = ? and userId = ? and displayDate < ? and status = ? from the database.
      Parameters:
      groupId - the group ID
      userId - the user ID
      displayDate - the display date
      status - the status
    • countByG_U_LtD_S

      int countByG_U_LtD_S(long groupId, long userId, Date displayDate, int status)
      Returns the number of blogs entries where groupId = ? and userId = ? and displayDate < ? and status = ?.
      Parameters:
      groupId - the group ID
      userId - the user ID
      displayDate - the display date
      status - the status
      Returns:
      the number of matching blogs entries
    • filterCountByG_U_LtD_S

      int filterCountByG_U_LtD_S(long groupId, long userId, Date displayDate, int status)
      Returns the number of blogs entries that the user has permission to view where groupId = ? and userId = ? and displayDate < ? and status = ?.
      Parameters:
      groupId - the group ID
      userId - the user ID
      displayDate - the display date
      status - the status
      Returns:
      the number of matching blogs entries that the user has permission to view
    • findByG_U_LtD_NotS

      List<BlogsEntry> findByG_U_LtD_NotS(long groupId, long userId, Date displayDate, int status)
      Returns all the blogs entries where groupId = ? and userId = ? and displayDate < ? and status ≠ ?.
      Parameters:
      groupId - the group ID
      userId - the user ID
      displayDate - the display date
      status - the status
      Returns:
      the matching blogs entries
    • findByG_U_LtD_NotS

      List<BlogsEntry> findByG_U_LtD_NotS(long groupId, long userId, Date displayDate, int status, int start, int end)
      Returns a range of all the blogs entries where groupId = ? and userId = ? and displayDate < ? and status ≠ ?.

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

      Parameters:
      groupId - the group ID
      userId - the user ID
      displayDate - the display date
      status - the status
      start - the lower bound of the range of blogs entries
      end - the upper bound of the range of blogs entries (not inclusive)
      Returns:
      the range of matching blogs entries
    • findByG_U_LtD_NotS

      List<BlogsEntry> findByG_U_LtD_NotS(long groupId, long userId, Date displayDate, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
      Returns an ordered range of all the blogs entries where groupId = ? and userId = ? and displayDate < ? and status ≠ ?.

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

      Parameters:
      groupId - the group ID
      userId - the user ID
      displayDate - the display date
      status - the status
      start - the lower bound of the range of blogs entries
      end - the upper bound of the range of blogs entries (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching blogs entries
    • findByG_U_LtD_NotS

      List<BlogsEntry> findByG_U_LtD_NotS(long groupId, long userId, Date displayDate, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the blogs entries where groupId = ? and userId = ? and displayDate < ? and status ≠ ?.

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

      Parameters:
      groupId - the group ID
      userId - the user ID
      displayDate - the display date
      status - the status
      start - the lower bound of the range of blogs entries
      end - the upper bound of the range of blogs 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 blogs entries
    • findByG_U_LtD_NotS_First

      BlogsEntry findByG_U_LtD_NotS_First(long groupId, long userId, Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the first blogs entry in the ordered set where groupId = ? and userId = ? and displayDate < ? and status ≠ ?.
      Parameters:
      groupId - the group ID
      userId - the user ID
      displayDate - the display date
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching blogs entry
      Throws:
      NoSuchEntryException - if a matching blogs entry could not be found
    • fetchByG_U_LtD_NotS_First

      BlogsEntry fetchByG_U_LtD_NotS_First(long groupId, long userId, Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
      Returns the first blogs entry in the ordered set where groupId = ? and userId = ? and displayDate < ? and status ≠ ?.
      Parameters:
      groupId - the group ID
      userId - the user ID
      displayDate - the display date
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching blogs entry, or null if a matching blogs entry could not be found
    • findByG_U_LtD_NotS_Last

      BlogsEntry findByG_U_LtD_NotS_Last(long groupId, long userId, Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the last blogs entry in the ordered set where groupId = ? and userId = ? and displayDate < ? and status ≠ ?.
      Parameters:
      groupId - the group ID
      userId - the user ID
      displayDate - the display date
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching blogs entry
      Throws:
      NoSuchEntryException - if a matching blogs entry could not be found
    • fetchByG_U_LtD_NotS_Last

      BlogsEntry fetchByG_U_LtD_NotS_Last(long groupId, long userId, Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
      Returns the last blogs entry in the ordered set where groupId = ? and userId = ? and displayDate < ? and status ≠ ?.
      Parameters:
      groupId - the group ID
      userId - the user ID
      displayDate - the display date
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching blogs entry, or null if a matching blogs entry could not be found
    • findByG_U_LtD_NotS_PrevAndNext

      BlogsEntry[] findByG_U_LtD_NotS_PrevAndNext(long entryId, long groupId, long userId, Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the blogs entries before and after the current blogs entry in the ordered set where groupId = ? and userId = ? and displayDate < ? and status ≠ ?.
      Parameters:
      entryId - the primary key of the current blogs entry
      groupId - the group ID
      userId - the user ID
      displayDate - the display date
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next blogs entry
      Throws:
      NoSuchEntryException - if a blogs entry with the primary key could not be found
    • filterFindByG_U_LtD_NotS

      List<BlogsEntry> filterFindByG_U_LtD_NotS(long groupId, long userId, Date displayDate, int status)
      Returns all the blogs entries that the user has permission to view where groupId = ? and userId = ? and displayDate < ? and status ≠ ?.
      Parameters:
      groupId - the group ID
      userId - the user ID
      displayDate - the display date
      status - the status
      Returns:
      the matching blogs entries that the user has permission to view
    • filterFindByG_U_LtD_NotS

      List<BlogsEntry> filterFindByG_U_LtD_NotS(long groupId, long userId, Date displayDate, int status, int start, int end)
      Returns a range of all the blogs entries that the user has permission to view where groupId = ? and userId = ? and displayDate < ? and status ≠ ?.

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

      Parameters:
      groupId - the group ID
      userId - the user ID
      displayDate - the display date
      status - the status
      start - the lower bound of the range of blogs entries
      end - the upper bound of the range of blogs entries (not inclusive)
      Returns:
      the range of matching blogs entries that the user has permission to view
    • filterFindByG_U_LtD_NotS

      List<BlogsEntry> filterFindByG_U_LtD_NotS(long groupId, long userId, Date displayDate, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
      Returns an ordered range of all the blogs entries that the user has permissions to view where groupId = ? and userId = ? and displayDate < ? and status ≠ ?.

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

      Parameters:
      groupId - the group ID
      userId - the user ID
      displayDate - the display date
      status - the status
      start - the lower bound of the range of blogs entries
      end - the upper bound of the range of blogs entries (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching blogs entries that the user has permission to view
    • filterFindByG_U_LtD_NotS_PrevAndNext

      BlogsEntry[] filterFindByG_U_LtD_NotS_PrevAndNext(long entryId, long groupId, long userId, Date displayDate, int status, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the blogs entries before and after the current blogs entry in the ordered set of blogs entries that the user has permission to view where groupId = ? and userId = ? and displayDate < ? and status ≠ ?.
      Parameters:
      entryId - the primary key of the current blogs entry
      groupId - the group ID
      userId - the user ID
      displayDate - the display date
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next blogs entry
      Throws:
      NoSuchEntryException - if a blogs entry with the primary key could not be found
    • removeByG_U_LtD_NotS

      void removeByG_U_LtD_NotS(long groupId, long userId, Date displayDate, int status)
      Removes all the blogs entries where groupId = ? and userId = ? and displayDate < ? and status ≠ ? from the database.
      Parameters:
      groupId - the group ID
      userId - the user ID
      displayDate - the display date
      status - the status
    • countByG_U_LtD_NotS

      int countByG_U_LtD_NotS(long groupId, long userId, Date displayDate, int status)
      Returns the number of blogs entries where groupId = ? and userId = ? and displayDate < ? and status ≠ ?.
      Parameters:
      groupId - the group ID
      userId - the user ID
      displayDate - the display date
      status - the status
      Returns:
      the number of matching blogs entries
    • filterCountByG_U_LtD_NotS

      int filterCountByG_U_LtD_NotS(long groupId, long userId, Date displayDate, int status)
      Returns the number of blogs entries that the user has permission to view where groupId = ? and userId = ? and displayDate < ? and status ≠ ?.
      Parameters:
      groupId - the group ID
      userId - the user ID
      displayDate - the display date
      status - the status
      Returns:
      the number of matching blogs entries that the user has permission to view
    • findByERC_G

      BlogsEntry findByERC_G(String externalReferenceCode, long groupId) throws NoSuchEntryException
      Returns the blogs entry where externalReferenceCode = ? and groupId = ? or throws a NoSuchEntryException if it could not be found.
      Parameters:
      externalReferenceCode - the external reference code
      groupId - the group ID
      Returns:
      the matching blogs entry
      Throws:
      NoSuchEntryException - if a matching blogs entry could not be found
    • fetchByERC_G

      BlogsEntry fetchByERC_G(String externalReferenceCode, long groupId)
      Returns the blogs entry where externalReferenceCode = ? and groupId = ? or returns null if it could not be found. Uses the finder cache.
      Parameters:
      externalReferenceCode - the external reference code
      groupId - the group ID
      Returns:
      the matching blogs entry, or null if a matching blogs entry could not be found
    • fetchByERC_G

      BlogsEntry fetchByERC_G(String externalReferenceCode, long groupId, boolean useFinderCache)
      Returns the blogs entry where externalReferenceCode = ? and groupId = ? or returns null if it could not be found, optionally using the finder cache.
      Parameters:
      externalReferenceCode - the external reference code
      groupId - the group ID
      useFinderCache - whether to use the finder cache
      Returns:
      the matching blogs entry, or null if a matching blogs entry could not be found
    • removeByERC_G

      BlogsEntry removeByERC_G(String externalReferenceCode, long groupId) throws NoSuchEntryException
      Removes the blogs entry where externalReferenceCode = ? and groupId = ? from the database.
      Parameters:
      externalReferenceCode - the external reference code
      groupId - the group ID
      Returns:
      the blogs entry that was removed
      Throws:
      NoSuchEntryException
    • countByERC_G

      int countByERC_G(String externalReferenceCode, long groupId)
      Returns the number of blogs entries where externalReferenceCode = ? and groupId = ?.
      Parameters:
      externalReferenceCode - the external reference code
      groupId - the group ID
      Returns:
      the number of matching blogs entries
    • cacheResult

      void cacheResult(BlogsEntry blogsEntry)
      Caches the blogs entry in the entity cache if it is enabled.
      Parameters:
      blogsEntry - the blogs entry
    • cacheResult

      void cacheResult(List<BlogsEntry> blogsEntries)
      Caches the blogs entries in the entity cache if it is enabled.
      Parameters:
      blogsEntries - the blogs entries
    • create

      BlogsEntry create(long entryId)
      Creates a new blogs entry with the primary key. Does not add the blogs entry to the database.
      Parameters:
      entryId - the primary key for the new blogs entry
      Returns:
      the new blogs entry
    • remove

      BlogsEntry remove(long entryId) throws NoSuchEntryException
      Removes the blogs entry with the primary key from the database. Also notifies the appropriate model listeners.
      Parameters:
      entryId - the primary key of the blogs entry
      Returns:
      the blogs entry that was removed
      Throws:
      NoSuchEntryException - if a blogs entry with the primary key could not be found
    • updateImpl

      BlogsEntry updateImpl(BlogsEntry blogsEntry)
    • findByPrimaryKey

      BlogsEntry findByPrimaryKey(long entryId) throws NoSuchEntryException
      Returns the blogs entry with the primary key or throws a NoSuchEntryException if it could not be found.
      Parameters:
      entryId - the primary key of the blogs entry
      Returns:
      the blogs entry
      Throws:
      NoSuchEntryException - if a blogs entry with the primary key could not be found
    • fetchByPrimaryKey

      BlogsEntry fetchByPrimaryKey(long entryId)
      Returns the blogs entry with the primary key or returns null if it could not be found.
      Parameters:
      entryId - the primary key of the blogs entry
      Returns:
      the blogs entry, or null if a blogs entry with the primary key could not be found
    • findAll

      List<BlogsEntry> findAll()
      Returns all the blogs entries.
      Returns:
      the blogs entries
    • findAll

      List<BlogsEntry> findAll(int start, int end)
      Returns a range of all the blogs 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 BlogsEntryModelImpl.

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

      List<BlogsEntry> findAll(int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BlogsEntry> orderByComparator)
      Returns an ordered range of all the blogs 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 BlogsEntryModelImpl.

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

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

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

      void removeAll()
      Removes all the blogs entries from the database.
    • countAll

      int countAll()
      Returns the number of blogs entries.
      Returns:
      the number of blogs entries