Class WikiPageUtil

java.lang.Object
com.liferay.wiki.service.persistence.WikiPageUtil

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

Caching information and settings can be found in portal.properties

See Also:
Generated:
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    static void
    Caches the wiki page in the entity cache if it is enabled.
    static void
    Caches the wiki pages in the entity cache if it is enabled.
    static void
     
    static void
    clearCache(WikiPage wikiPage)
     
    static int
    Returns the number of wiki pages.
    static int
    countByCompanyId(long companyId)
    Returns the number of wiki pages where companyId = ?.
    static int
    Returns the number of wiki pages where format = ?.
    static int
    countByG_ERC(long groupId, String externalReferenceCode)
    Returns the number of wiki pages where groupId = ? and externalReferenceCode = ?.
    static int
    countByG_ERC_V(long groupId, String externalReferenceCode, double version)
    Returns the number of wiki pages where groupId = ? and externalReferenceCode = ? and version = ?.
    static int
    countByG_N_H(long groupId, long nodeId, boolean head)
    Returns the number of wiki pages where groupId = ? and nodeId = ? and head = ?.
    static int
    countByG_N_H_P_S(long groupId, long nodeId, boolean head, String parentTitle, int status)
    Returns the number of wiki pages where groupId = ? and nodeId = ? and head = ? and parentTitle = ? and status = ?.
    static int
    countByG_N_H_S(long groupId, long nodeId, boolean head, int status)
    Returns the number of wiki pages where groupId = ? and nodeId = ? and head = ? and status = ?.
    static int
    countByG_N_S(long groupId, long nodeId, int status)
    Returns the number of wiki pages where groupId = ? and nodeId = ? and status = ?.
    static int
    countByG_N_T_H(long groupId, long nodeId, String title, boolean head)
    Returns the number of wiki pages where groupId = ? and nodeId = ? and title = ? and head = ?.
    static int
    countByG_U_N_S(long groupId, long userId, long nodeId, int status)
    Returns the number of wiki pages where groupId = ? and userId = ? and nodeId = ? and status = ?.
    static int
    countByN_H(long nodeId, boolean head)
    Returns the number of wiki pages where nodeId = ? and head = ?.
    static int
    countByN_H_NotS(long nodeId, boolean head, int status)
    Returns the number of wiki pages where nodeId = ? and head = ? and status ≠ ?.
    static int
    countByN_H_P(long nodeId, boolean head, String parentTitle)
    Returns the number of wiki pages where nodeId = ? and head = ? and parentTitle = ?.
    static int
    countByN_H_P_NotS(long nodeId, boolean head, String parentTitle, int status)
    Returns the number of wiki pages where nodeId = ? and head = ? and parentTitle = ? and status ≠ ?.
    static int
    countByN_H_P_S(long nodeId, boolean head, String parentTitle, int status)
    Returns the number of wiki pages where nodeId = ? and head = ? and parentTitle = ? and status = ?.
    static int
    countByN_H_R(long nodeId, boolean head, String redirectTitle)
    Returns the number of wiki pages where nodeId = ? and head = ? and redirectTitle = ?.
    static int
    countByN_H_R_NotS(long nodeId, boolean head, String redirectTitle, int status)
    Returns the number of wiki pages where nodeId = ? and head = ? and redirectTitle = ? and status ≠ ?.
    static int
    countByN_H_R_S(long nodeId, boolean head, String redirectTitle, int status)
    Returns the number of wiki pages where nodeId = ? and head = ? and redirectTitle = ? and status = ?.
    static int
    countByN_H_S(long nodeId, boolean head, int status)
    Returns the number of wiki pages where nodeId = ? and head = ? and status = ?.
    static int
    countByN_P(long nodeId, String parentTitle)
    Returns the number of wiki pages where nodeId = ? and parentTitle = ?.
    static int
    countByN_R(long nodeId, String redirectTitle)
    Returns the number of wiki pages where nodeId = ? and redirectTitle = ?.
    static int
    countByN_S(long nodeId, int status)
    Returns the number of wiki pages where nodeId = ? and status = ?.
    static int
    countByN_T(long nodeId, String title)
    Returns the number of wiki pages where nodeId = ? and title = ?.
    static int
    countByN_T_H(long nodeId, String title, boolean head)
    Returns the number of wiki pages where nodeId = ? and title = ? and head = ?.
    static int
    countByN_T_S(long nodeId, String title, int status)
    Returns the number of wiki pages where nodeId = ? and title = ? and status = ?.
    static int
    countByN_T_V(long nodeId, String title, double version)
    Returns the number of wiki pages where nodeId = ? and title = ? and version = ?.
    static int
    countByNodeId(long nodeId)
    Returns the number of wiki pages where nodeId = ?.
    static int
    countByR_N(long resourcePrimKey, long nodeId)
    Returns the number of wiki pages where resourcePrimKey = ? and nodeId = ?.
    static int
    countByR_N_H(long resourcePrimKey, long nodeId, boolean head)
    Returns the number of wiki pages where resourcePrimKey = ? and nodeId = ? and head = ?.
    static int
    countByR_N_S(long resourcePrimKey, long nodeId, int status)
    Returns the number of wiki pages where resourcePrimKey = ? and nodeId = ? and status = ?.
    static int
    countByR_N_V(long resourcePrimKey, long nodeId, double version)
    Returns the number of wiki pages where resourcePrimKey = ? and nodeId = ? and version = ?.
    static int
    countByR_S(long resourcePrimKey, int status)
    Returns the number of wiki pages where resourcePrimKey = ? and status = ?.
    static int
    countByResourcePrimKey(long resourcePrimKey)
    Returns the number of wiki pages where resourcePrimKey = ?.
    static int
    countByU_N_S(long userId, long nodeId, int status)
    Returns the number of wiki pages where userId = ? and nodeId = ? and status = ?.
    static int
    Returns the number of wiki pages where uuid = ?.
    static int
    countByUuid_C(String uuid, long companyId)
    Returns the number of wiki pages where uuid = ? and companyId = ?.
    static int
    countByUUID_G(String uuid, long groupId)
    Returns the number of wiki pages where uuid = ? and groupId = ?.
    static long
    countWithDynamicQuery(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
     
    static WikiPage
    create(long pageId)
    Creates a new wiki page with the primary key.
    static WikiPage
    fetchByCompanyId_First(long companyId, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the first wiki page in the ordered set where companyId = ?.
    static WikiPage
    fetchByCompanyId_Last(long companyId, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the last wiki page in the ordered set where companyId = ?.
    static WikiPage
    fetchByFormat_First(String format, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the first wiki page in the ordered set where format = ?.
    static WikiPage
    fetchByFormat_Last(String format, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the last wiki page in the ordered set where format = ?.
    static WikiPage
    fetchByG_ERC_First(long groupId, String externalReferenceCode, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the first wiki page in the ordered set where groupId = ? and externalReferenceCode = ?.
    static WikiPage
    fetchByG_ERC_Last(long groupId, String externalReferenceCode, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the last wiki page in the ordered set where groupId = ? and externalReferenceCode = ?.
    static WikiPage
    fetchByG_ERC_V(long groupId, String externalReferenceCode, double version)
    Returns the wiki page where groupId = ? and externalReferenceCode = ? and version = ? or returns null if it could not be found.
    static WikiPage
    fetchByG_ERC_V(long groupId, String externalReferenceCode, double version, boolean useFinderCache)
    Returns the wiki page where groupId = ? and externalReferenceCode = ? and version = ? or returns null if it could not be found, optionally using the finder cache.
    static WikiPage
    fetchByG_N_H_First(long groupId, long nodeId, boolean head, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the first wiki page in the ordered set where groupId = ? and nodeId = ? and head = ?.
    static WikiPage
    fetchByG_N_H_Last(long groupId, long nodeId, boolean head, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the last wiki page in the ordered set where groupId = ? and nodeId = ? and head = ?.
    static WikiPage
    fetchByG_N_H_P_S_First(long groupId, long nodeId, boolean head, String parentTitle, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the first wiki page in the ordered set where groupId = ? and nodeId = ? and head = ? and parentTitle = ? and status = ?.
    static WikiPage
    fetchByG_N_H_P_S_Last(long groupId, long nodeId, boolean head, String parentTitle, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the last wiki page in the ordered set where groupId = ? and nodeId = ? and head = ? and parentTitle = ? and status = ?.
    static WikiPage
    fetchByG_N_H_S_First(long groupId, long nodeId, boolean head, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the first wiki page in the ordered set where groupId = ? and nodeId = ? and head = ? and status = ?.
    static WikiPage
    fetchByG_N_H_S_Last(long groupId, long nodeId, boolean head, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the last wiki page in the ordered set where groupId = ? and nodeId = ? and head = ? and status = ?.
    static WikiPage
    fetchByG_N_S_First(long groupId, long nodeId, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the first wiki page in the ordered set where groupId = ? and nodeId = ? and status = ?.
    static WikiPage
    fetchByG_N_S_Last(long groupId, long nodeId, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the last wiki page in the ordered set where groupId = ? and nodeId = ? and status = ?.
    static WikiPage
    fetchByG_N_T_H_First(long groupId, long nodeId, String title, boolean head, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the first wiki page in the ordered set where groupId = ? and nodeId = ? and title = ? and head = ?.
    static WikiPage
    fetchByG_N_T_H_Last(long groupId, long nodeId, String title, boolean head, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the last wiki page in the ordered set where groupId = ? and nodeId = ? and title = ? and head = ?.
    static WikiPage
    fetchByG_U_N_S_First(long groupId, long userId, long nodeId, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the first wiki page in the ordered set where groupId = ? and userId = ? and nodeId = ? and status = ?.
    static WikiPage
    fetchByG_U_N_S_Last(long groupId, long userId, long nodeId, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the last wiki page in the ordered set where groupId = ? and userId = ? and nodeId = ? and status = ?.
    static WikiPage
    fetchByN_H_First(long nodeId, boolean head, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the first wiki page in the ordered set where nodeId = ? and head = ?.
    static WikiPage
    fetchByN_H_Last(long nodeId, boolean head, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the last wiki page in the ordered set where nodeId = ? and head = ?.
    static WikiPage
    fetchByN_H_NotS_First(long nodeId, boolean head, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the first wiki page in the ordered set where nodeId = ? and head = ? and status ≠ ?.
    static WikiPage
    fetchByN_H_NotS_Last(long nodeId, boolean head, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the last wiki page in the ordered set where nodeId = ? and head = ? and status ≠ ?.
    static WikiPage
    fetchByN_H_P_First(long nodeId, boolean head, String parentTitle, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the first wiki page in the ordered set where nodeId = ? and head = ? and parentTitle = ?.
    static WikiPage
    fetchByN_H_P_Last(long nodeId, boolean head, String parentTitle, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the last wiki page in the ordered set where nodeId = ? and head = ? and parentTitle = ?.
    static WikiPage
    fetchByN_H_P_NotS_First(long nodeId, boolean head, String parentTitle, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the first wiki page in the ordered set where nodeId = ? and head = ? and parentTitle = ? and status ≠ ?.
    static WikiPage
    fetchByN_H_P_NotS_Last(long nodeId, boolean head, String parentTitle, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the last wiki page in the ordered set where nodeId = ? and head = ? and parentTitle = ? and status ≠ ?.
    static WikiPage
    fetchByN_H_P_S_First(long nodeId, boolean head, String parentTitle, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the first wiki page in the ordered set where nodeId = ? and head = ? and parentTitle = ? and status = ?.
    static WikiPage
    fetchByN_H_P_S_Last(long nodeId, boolean head, String parentTitle, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the last wiki page in the ordered set where nodeId = ? and head = ? and parentTitle = ? and status = ?.
    static WikiPage
    fetchByN_H_R_First(long nodeId, boolean head, String redirectTitle, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the first wiki page in the ordered set where nodeId = ? and head = ? and redirectTitle = ?.
    static WikiPage
    fetchByN_H_R_Last(long nodeId, boolean head, String redirectTitle, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the last wiki page in the ordered set where nodeId = ? and head = ? and redirectTitle = ?.
    static WikiPage
    fetchByN_H_R_NotS_First(long nodeId, boolean head, String redirectTitle, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the first wiki page in the ordered set where nodeId = ? and head = ? and redirectTitle = ? and status ≠ ?.
    static WikiPage
    fetchByN_H_R_NotS_Last(long nodeId, boolean head, String redirectTitle, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the last wiki page in the ordered set where nodeId = ? and head = ? and redirectTitle = ? and status ≠ ?.
    static WikiPage
    fetchByN_H_R_S_First(long nodeId, boolean head, String redirectTitle, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the first wiki page in the ordered set where nodeId = ? and head = ? and redirectTitle = ? and status = ?.
    static WikiPage
    fetchByN_H_R_S_Last(long nodeId, boolean head, String redirectTitle, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the last wiki page in the ordered set where nodeId = ? and head = ? and redirectTitle = ? and status = ?.
    static WikiPage
    fetchByN_H_S_First(long nodeId, boolean head, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the first wiki page in the ordered set where nodeId = ? and head = ? and status = ?.
    static WikiPage
    fetchByN_H_S_Last(long nodeId, boolean head, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the last wiki page in the ordered set where nodeId = ? and head = ? and status = ?.
    static WikiPage
    fetchByN_P_First(long nodeId, String parentTitle, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the first wiki page in the ordered set where nodeId = ? and parentTitle = ?.
    static WikiPage
    fetchByN_P_Last(long nodeId, String parentTitle, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the last wiki page in the ordered set where nodeId = ? and parentTitle = ?.
    static WikiPage
    fetchByN_R_First(long nodeId, String redirectTitle, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the first wiki page in the ordered set where nodeId = ? and redirectTitle = ?.
    static WikiPage
    fetchByN_R_Last(long nodeId, String redirectTitle, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the last wiki page in the ordered set where nodeId = ? and redirectTitle = ?.
    static WikiPage
    fetchByN_S_First(long nodeId, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the first wiki page in the ordered set where nodeId = ? and status = ?.
    static WikiPage
    fetchByN_S_Last(long nodeId, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the last wiki page in the ordered set where nodeId = ? and status = ?.
    static WikiPage
    fetchByN_T_First(long nodeId, String title, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the first wiki page in the ordered set where nodeId = ? and title = ?.
    static WikiPage
    fetchByN_T_H_First(long nodeId, String title, boolean head, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the first wiki page in the ordered set where nodeId = ? and title = ? and head = ?.
    static WikiPage
    fetchByN_T_H_Last(long nodeId, String title, boolean head, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the last wiki page in the ordered set where nodeId = ? and title = ? and head = ?.
    static WikiPage
    fetchByN_T_Last(long nodeId, String title, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the last wiki page in the ordered set where nodeId = ? and title = ?.
    static WikiPage
    fetchByN_T_S_First(long nodeId, String title, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the first wiki page in the ordered set where nodeId = ? and title = ? and status = ?.
    static WikiPage
    fetchByN_T_S_Last(long nodeId, String title, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the last wiki page in the ordered set where nodeId = ? and title = ? and status = ?.
    static WikiPage
    fetchByN_T_V(long nodeId, String title, double version)
    Returns the wiki page where nodeId = ? and title = ? and version = ? or returns null if it could not be found.
    static WikiPage
    fetchByN_T_V(long nodeId, String title, double version, boolean useFinderCache)
    Returns the wiki page where nodeId = ? and title = ? and version = ? or returns null if it could not be found, optionally using the finder cache.
    static WikiPage
    fetchByNodeId_First(long nodeId, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the first wiki page in the ordered set where nodeId = ?.
    static WikiPage
    fetchByNodeId_Last(long nodeId, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the last wiki page in the ordered set where nodeId = ?.
    static WikiPage
    fetchByPrimaryKey(long pageId)
    Returns the wiki page with the primary key or returns null if it could not be found.
     
    static WikiPage
    fetchByR_N_First(long resourcePrimKey, long nodeId, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the first wiki page in the ordered set where resourcePrimKey = ? and nodeId = ?.
    static WikiPage
    fetchByR_N_H_First(long resourcePrimKey, long nodeId, boolean head, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the first wiki page in the ordered set where resourcePrimKey = ? and nodeId = ? and head = ?.
    static WikiPage
    fetchByR_N_H_Last(long resourcePrimKey, long nodeId, boolean head, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the last wiki page in the ordered set where resourcePrimKey = ? and nodeId = ? and head = ?.
    static WikiPage
    fetchByR_N_Last(long resourcePrimKey, long nodeId, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the last wiki page in the ordered set where resourcePrimKey = ? and nodeId = ?.
    static WikiPage
    fetchByR_N_S_First(long resourcePrimKey, long nodeId, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the first wiki page in the ordered set where resourcePrimKey = ? and nodeId = ? and status = ?.
    static WikiPage
    fetchByR_N_S_Last(long resourcePrimKey, long nodeId, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the last wiki page in the ordered set where resourcePrimKey = ? and nodeId = ? and status = ?.
    static WikiPage
    fetchByR_N_V(long resourcePrimKey, long nodeId, double version)
    Returns the wiki page where resourcePrimKey = ? and nodeId = ? and version = ? or returns null if it could not be found.
    static WikiPage
    fetchByR_N_V(long resourcePrimKey, long nodeId, double version, boolean useFinderCache)
    Returns the wiki page where resourcePrimKey = ? and nodeId = ? and version = ? or returns null if it could not be found, optionally using the finder cache.
    static WikiPage
    fetchByR_S_First(long resourcePrimKey, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the first wiki page in the ordered set where resourcePrimKey = ? and status = ?.
    static WikiPage
    fetchByR_S_Last(long resourcePrimKey, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the last wiki page in the ordered set where resourcePrimKey = ? and status = ?.
    static WikiPage
    fetchByResourcePrimKey_First(long resourcePrimKey, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the first wiki page in the ordered set where resourcePrimKey = ?.
    static WikiPage
    fetchByResourcePrimKey_Last(long resourcePrimKey, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the last wiki page in the ordered set where resourcePrimKey = ?.
    static WikiPage
    fetchByU_N_S_First(long userId, long nodeId, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the first wiki page in the ordered set where userId = ? and nodeId = ? and status = ?.
    static WikiPage
    fetchByU_N_S_Last(long userId, long nodeId, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the last wiki page in the ordered set where userId = ? and nodeId = ? and status = ?.
    static WikiPage
    fetchByUuid_C_First(String uuid, long companyId, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the first wiki page in the ordered set where uuid = ? and companyId = ?.
    static WikiPage
    fetchByUuid_C_Last(String uuid, long companyId, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the last wiki page in the ordered set where uuid = ? and companyId = ?.
    static WikiPage
    fetchByUuid_First(String uuid, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the first wiki page in the ordered set where uuid = ?.
    static WikiPage
    fetchByUUID_G(String uuid, long groupId)
    Returns the wiki page where uuid = ? and groupId = ? or returns null if it could not be found.
    static WikiPage
    fetchByUUID_G(String uuid, long groupId, boolean useFinderCache)
    Returns the wiki page where uuid = ? and groupId = ? or returns null if it could not be found, optionally using the finder cache.
    static WikiPage
    fetchByUuid_Last(String uuid, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the last wiki page in the ordered set where uuid = ?.
    static int
    filterCountByG_ERC(long groupId, String externalReferenceCode)
    Returns the number of wiki pages that the user has permission to view where groupId = ? and externalReferenceCode = ?.
    static int
    filterCountByG_N_H(long groupId, long nodeId, boolean head)
    Returns the number of wiki pages that the user has permission to view where groupId = ? and nodeId = ? and head = ?.
    static int
    filterCountByG_N_H_P_S(long groupId, long nodeId, boolean head, String parentTitle, int status)
    Returns the number of wiki pages that the user has permission to view where groupId = ? and nodeId = ? and head = ? and parentTitle = ? and status = ?.
    static int
    filterCountByG_N_H_S(long groupId, long nodeId, boolean head, int status)
    Returns the number of wiki pages that the user has permission to view where groupId = ? and nodeId = ? and head = ? and status = ?.
    static int
    filterCountByG_N_S(long groupId, long nodeId, int status)
    Returns the number of wiki pages that the user has permission to view where groupId = ? and nodeId = ? and status = ?.
    static int
    filterCountByG_N_T_H(long groupId, long nodeId, String title, boolean head)
    Returns the number of wiki pages that the user has permission to view where groupId = ? and nodeId = ? and title = ? and head = ?.
    static int
    filterCountByG_U_N_S(long groupId, long userId, long nodeId, int status)
    Returns the number of wiki pages that the user has permission to view where groupId = ? and userId = ? and nodeId = ? and status = ?.
    static List<WikiPage>
    filterFindByG_ERC(long groupId, String externalReferenceCode)
    Returns all the wiki pages that the user has permission to view where groupId = ? and externalReferenceCode = ?.
    static List<WikiPage>
    filterFindByG_ERC(long groupId, String externalReferenceCode, int start, int end)
    Returns a range of all the wiki pages that the user has permission to view where groupId = ? and externalReferenceCode = ?.
    static List<WikiPage>
    filterFindByG_ERC(long groupId, String externalReferenceCode, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns an ordered range of all the wiki pages that the user has permissions to view where groupId = ? and externalReferenceCode = ?.
    static WikiPage[]
    filterFindByG_ERC_PrevAndNext(long pageId, long groupId, String externalReferenceCode, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the wiki pages before and after the current wiki page in the ordered set of wiki pages that the user has permission to view where groupId = ? and externalReferenceCode = ?.
    static List<WikiPage>
    filterFindByG_N_H(long groupId, long nodeId, boolean head)
    Returns all the wiki pages that the user has permission to view where groupId = ? and nodeId = ? and head = ?.
    static List<WikiPage>
    filterFindByG_N_H(long groupId, long nodeId, boolean head, int start, int end)
    Returns a range of all the wiki pages that the user has permission to view where groupId = ? and nodeId = ? and head = ?.
    static List<WikiPage>
    filterFindByG_N_H(long groupId, long nodeId, boolean head, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns an ordered range of all the wiki pages that the user has permissions to view where groupId = ? and nodeId = ? and head = ?.
    static List<WikiPage>
    filterFindByG_N_H_P_S(long groupId, long nodeId, boolean head, String parentTitle, int status)
    Returns all the wiki pages that the user has permission to view where groupId = ? and nodeId = ? and head = ? and parentTitle = ? and status = ?.
    static List<WikiPage>
    filterFindByG_N_H_P_S(long groupId, long nodeId, boolean head, String parentTitle, int status, int start, int end)
    Returns a range of all the wiki pages that the user has permission to view where groupId = ? and nodeId = ? and head = ? and parentTitle = ? and status = ?.
    static List<WikiPage>
    filterFindByG_N_H_P_S(long groupId, long nodeId, boolean head, String parentTitle, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns an ordered range of all the wiki pages that the user has permissions to view where groupId = ? and nodeId = ? and head = ? and parentTitle = ? and status = ?.
    static WikiPage[]
    filterFindByG_N_H_P_S_PrevAndNext(long pageId, long groupId, long nodeId, boolean head, String parentTitle, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the wiki pages before and after the current wiki page in the ordered set of wiki pages that the user has permission to view where groupId = ? and nodeId = ? and head = ? and parentTitle = ? and status = ?.
    static WikiPage[]
    filterFindByG_N_H_PrevAndNext(long pageId, long groupId, long nodeId, boolean head, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the wiki pages before and after the current wiki page in the ordered set of wiki pages that the user has permission to view where groupId = ? and nodeId = ? and head = ?.
    static List<WikiPage>
    filterFindByG_N_H_S(long groupId, long nodeId, boolean head, int status)
    Returns all the wiki pages that the user has permission to view where groupId = ? and nodeId = ? and head = ? and status = ?.
    static List<WikiPage>
    filterFindByG_N_H_S(long groupId, long nodeId, boolean head, int status, int start, int end)
    Returns a range of all the wiki pages that the user has permission to view where groupId = ? and nodeId = ? and head = ? and status = ?.
    static List<WikiPage>
    filterFindByG_N_H_S(long groupId, long nodeId, boolean head, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns an ordered range of all the wiki pages that the user has permissions to view where groupId = ? and nodeId = ? and head = ? and status = ?.
    static WikiPage[]
    filterFindByG_N_H_S_PrevAndNext(long pageId, long groupId, long nodeId, boolean head, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the wiki pages before and after the current wiki page in the ordered set of wiki pages that the user has permission to view where groupId = ? and nodeId = ? and head = ? and status = ?.
    static List<WikiPage>
    filterFindByG_N_S(long groupId, long nodeId, int status)
    Returns all the wiki pages that the user has permission to view where groupId = ? and nodeId = ? and status = ?.
    static List<WikiPage>
    filterFindByG_N_S(long groupId, long nodeId, int status, int start, int end)
    Returns a range of all the wiki pages that the user has permission to view where groupId = ? and nodeId = ? and status = ?.
    static List<WikiPage>
    filterFindByG_N_S(long groupId, long nodeId, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns an ordered range of all the wiki pages that the user has permissions to view where groupId = ? and nodeId = ? and status = ?.
    static WikiPage[]
    filterFindByG_N_S_PrevAndNext(long pageId, long groupId, long nodeId, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the wiki pages before and after the current wiki page in the ordered set of wiki pages that the user has permission to view where groupId = ? and nodeId = ? and status = ?.
    static List<WikiPage>
    filterFindByG_N_T_H(long groupId, long nodeId, String title, boolean head)
    Returns all the wiki pages that the user has permission to view where groupId = ? and nodeId = ? and title = ? and head = ?.
    static List<WikiPage>
    filterFindByG_N_T_H(long groupId, long nodeId, String title, boolean head, int start, int end)
    Returns a range of all the wiki pages that the user has permission to view where groupId = ? and nodeId = ? and title = ? and head = ?.
    static List<WikiPage>
    filterFindByG_N_T_H(long groupId, long nodeId, String title, boolean head, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns an ordered range of all the wiki pages that the user has permissions to view where groupId = ? and nodeId = ? and title = ? and head = ?.
    static WikiPage[]
    filterFindByG_N_T_H_PrevAndNext(long pageId, long groupId, long nodeId, String title, boolean head, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the wiki pages before and after the current wiki page in the ordered set of wiki pages that the user has permission to view where groupId = ? and nodeId = ? and title = ? and head = ?.
    static List<WikiPage>
    filterFindByG_U_N_S(long groupId, long userId, long nodeId, int status)
    Returns all the wiki pages that the user has permission to view where groupId = ? and userId = ? and nodeId = ? and status = ?.
    static List<WikiPage>
    filterFindByG_U_N_S(long groupId, long userId, long nodeId, int status, int start, int end)
    Returns a range of all the wiki pages that the user has permission to view where groupId = ? and userId = ? and nodeId = ? and status = ?.
    static List<WikiPage>
    filterFindByG_U_N_S(long groupId, long userId, long nodeId, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns an ordered range of all the wiki pages that the user has permissions to view where groupId = ? and userId = ? and nodeId = ? and status = ?.
    static WikiPage[]
    filterFindByG_U_N_S_PrevAndNext(long pageId, long groupId, long userId, long nodeId, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the wiki pages before and after the current wiki page in the ordered set of wiki pages that the user has permission to view where groupId = ? and userId = ? and nodeId = ? and status = ?.
    static List<WikiPage>
    Returns all the wiki pages.
    static List<WikiPage>
    findAll(int start, int end)
    Returns a range of all the wiki pages.
    static List<WikiPage>
    findAll(int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns an ordered range of all the wiki pages.
    static List<WikiPage>
    findAll(int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the wiki pages.
    static List<WikiPage>
    findByCompanyId(long companyId)
    Returns all the wiki pages where companyId = ?.
    static List<WikiPage>
    findByCompanyId(long companyId, int start, int end)
    Returns a range of all the wiki pages where companyId = ?.
    static List<WikiPage>
    findByCompanyId(long companyId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns an ordered range of all the wiki pages where companyId = ?.
    static List<WikiPage>
    findByCompanyId(long companyId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the wiki pages where companyId = ?.
    static WikiPage
    findByCompanyId_First(long companyId, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the first wiki page in the ordered set where companyId = ?.
    static WikiPage
    findByCompanyId_Last(long companyId, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the last wiki page in the ordered set where companyId = ?.
    static WikiPage[]
    findByCompanyId_PrevAndNext(long pageId, long companyId, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the wiki pages before and after the current wiki page in the ordered set where companyId = ?.
    static List<WikiPage>
    Returns all the wiki pages where format = ?.
    static List<WikiPage>
    findByFormat(String format, int start, int end)
    Returns a range of all the wiki pages where format = ?.
    static List<WikiPage>
    findByFormat(String format, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns an ordered range of all the wiki pages where format = ?.
    static List<WikiPage>
    findByFormat(String format, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the wiki pages where format = ?.
    static WikiPage
    findByFormat_First(String format, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the first wiki page in the ordered set where format = ?.
    static WikiPage
    findByFormat_Last(String format, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the last wiki page in the ordered set where format = ?.
    static WikiPage[]
    findByFormat_PrevAndNext(long pageId, String format, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the wiki pages before and after the current wiki page in the ordered set where format = ?.
    static List<WikiPage>
    findByG_ERC(long groupId, String externalReferenceCode)
    Returns all the wiki pages where groupId = ? and externalReferenceCode = ?.
    static List<WikiPage>
    findByG_ERC(long groupId, String externalReferenceCode, int start, int end)
    Returns a range of all the wiki pages where groupId = ? and externalReferenceCode = ?.
    static List<WikiPage>
    findByG_ERC(long groupId, String externalReferenceCode, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns an ordered range of all the wiki pages where groupId = ? and externalReferenceCode = ?.
    static List<WikiPage>
    findByG_ERC(long groupId, String externalReferenceCode, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the wiki pages where groupId = ? and externalReferenceCode = ?.
    static WikiPage
    findByG_ERC_First(long groupId, String externalReferenceCode, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the first wiki page in the ordered set where groupId = ? and externalReferenceCode = ?.
    static WikiPage
    findByG_ERC_Last(long groupId, String externalReferenceCode, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the last wiki page in the ordered set where groupId = ? and externalReferenceCode = ?.
    static WikiPage[]
    findByG_ERC_PrevAndNext(long pageId, long groupId, String externalReferenceCode, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the wiki pages before and after the current wiki page in the ordered set where groupId = ? and externalReferenceCode = ?.
    static WikiPage
    findByG_ERC_V(long groupId, String externalReferenceCode, double version)
    Returns the wiki page where groupId = ? and externalReferenceCode = ? and version = ? or throws a NoSuchPageException if it could not be found.
    static List<WikiPage>
    findByG_N_H(long groupId, long nodeId, boolean head)
    Returns all the wiki pages where groupId = ? and nodeId = ? and head = ?.
    static List<WikiPage>
    findByG_N_H(long groupId, long nodeId, boolean head, int start, int end)
    Returns a range of all the wiki pages where groupId = ? and nodeId = ? and head = ?.
    static List<WikiPage>
    findByG_N_H(long groupId, long nodeId, boolean head, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns an ordered range of all the wiki pages where groupId = ? and nodeId = ? and head = ?.
    static List<WikiPage>
    findByG_N_H(long groupId, long nodeId, boolean head, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the wiki pages where groupId = ? and nodeId = ? and head = ?.
    static WikiPage
    findByG_N_H_First(long groupId, long nodeId, boolean head, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the first wiki page in the ordered set where groupId = ? and nodeId = ? and head = ?.
    static WikiPage
    findByG_N_H_Last(long groupId, long nodeId, boolean head, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the last wiki page in the ordered set where groupId = ? and nodeId = ? and head = ?.
    static List<WikiPage>
    findByG_N_H_P_S(long groupId, long nodeId, boolean head, String parentTitle, int status)
    Returns all the wiki pages where groupId = ? and nodeId = ? and head = ? and parentTitle = ? and status = ?.
    static List<WikiPage>
    findByG_N_H_P_S(long groupId, long nodeId, boolean head, String parentTitle, int status, int start, int end)
    Returns a range of all the wiki pages where groupId = ? and nodeId = ? and head = ? and parentTitle = ? and status = ?.
    static List<WikiPage>
    findByG_N_H_P_S(long groupId, long nodeId, boolean head, String parentTitle, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns an ordered range of all the wiki pages where groupId = ? and nodeId = ? and head = ? and parentTitle = ? and status = ?.
    static List<WikiPage>
    findByG_N_H_P_S(long groupId, long nodeId, boolean head, String parentTitle, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the wiki pages where groupId = ? and nodeId = ? and head = ? and parentTitle = ? and status = ?.
    static WikiPage
    findByG_N_H_P_S_First(long groupId, long nodeId, boolean head, String parentTitle, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the first wiki page in the ordered set where groupId = ? and nodeId = ? and head = ? and parentTitle = ? and status = ?.
    static WikiPage
    findByG_N_H_P_S_Last(long groupId, long nodeId, boolean head, String parentTitle, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the last wiki page in the ordered set where groupId = ? and nodeId = ? and head = ? and parentTitle = ? and status = ?.
    static WikiPage[]
    findByG_N_H_P_S_PrevAndNext(long pageId, long groupId, long nodeId, boolean head, String parentTitle, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the wiki pages before and after the current wiki page in the ordered set where groupId = ? and nodeId = ? and head = ? and parentTitle = ? and status = ?.
    static WikiPage[]
    findByG_N_H_PrevAndNext(long pageId, long groupId, long nodeId, boolean head, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the wiki pages before and after the current wiki page in the ordered set where groupId = ? and nodeId = ? and head = ?.
    static List<WikiPage>
    findByG_N_H_S(long groupId, long nodeId, boolean head, int status)
    Returns all the wiki pages where groupId = ? and nodeId = ? and head = ? and status = ?.
    static List<WikiPage>
    findByG_N_H_S(long groupId, long nodeId, boolean head, int status, int start, int end)
    Returns a range of all the wiki pages where groupId = ? and nodeId = ? and head = ? and status = ?.
    static List<WikiPage>
    findByG_N_H_S(long groupId, long nodeId, boolean head, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns an ordered range of all the wiki pages where groupId = ? and nodeId = ? and head = ? and status = ?.
    static List<WikiPage>
    findByG_N_H_S(long groupId, long nodeId, boolean head, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the wiki pages where groupId = ? and nodeId = ? and head = ? and status = ?.
    static WikiPage
    findByG_N_H_S_First(long groupId, long nodeId, boolean head, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the first wiki page in the ordered set where groupId = ? and nodeId = ? and head = ? and status = ?.
    static WikiPage
    findByG_N_H_S_Last(long groupId, long nodeId, boolean head, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the last wiki page in the ordered set where groupId = ? and nodeId = ? and head = ? and status = ?.
    static WikiPage[]
    findByG_N_H_S_PrevAndNext(long pageId, long groupId, long nodeId, boolean head, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the wiki pages before and after the current wiki page in the ordered set where groupId = ? and nodeId = ? and head = ? and status = ?.
    static List<WikiPage>
    findByG_N_S(long groupId, long nodeId, int status)
    Returns all the wiki pages where groupId = ? and nodeId = ? and status = ?.
    static List<WikiPage>
    findByG_N_S(long groupId, long nodeId, int status, int start, int end)
    Returns a range of all the wiki pages where groupId = ? and nodeId = ? and status = ?.
    static List<WikiPage>
    findByG_N_S(long groupId, long nodeId, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns an ordered range of all the wiki pages where groupId = ? and nodeId = ? and status = ?.
    static List<WikiPage>
    findByG_N_S(long groupId, long nodeId, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the wiki pages where groupId = ? and nodeId = ? and status = ?.
    static WikiPage
    findByG_N_S_First(long groupId, long nodeId, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the first wiki page in the ordered set where groupId = ? and nodeId = ? and status = ?.
    static WikiPage
    findByG_N_S_Last(long groupId, long nodeId, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the last wiki page in the ordered set where groupId = ? and nodeId = ? and status = ?.
    static WikiPage[]
    findByG_N_S_PrevAndNext(long pageId, long groupId, long nodeId, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the wiki pages before and after the current wiki page in the ordered set where groupId = ? and nodeId = ? and status = ?.
    static List<WikiPage>
    findByG_N_T_H(long groupId, long nodeId, String title, boolean head)
    Returns all the wiki pages where groupId = ? and nodeId = ? and title = ? and head = ?.
    static List<WikiPage>
    findByG_N_T_H(long groupId, long nodeId, String title, boolean head, int start, int end)
    Returns a range of all the wiki pages where groupId = ? and nodeId = ? and title = ? and head = ?.
    static List<WikiPage>
    findByG_N_T_H(long groupId, long nodeId, String title, boolean head, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns an ordered range of all the wiki pages where groupId = ? and nodeId = ? and title = ? and head = ?.
    static List<WikiPage>
    findByG_N_T_H(long groupId, long nodeId, String title, boolean head, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the wiki pages where groupId = ? and nodeId = ? and title = ? and head = ?.
    static WikiPage
    findByG_N_T_H_First(long groupId, long nodeId, String title, boolean head, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the first wiki page in the ordered set where groupId = ? and nodeId = ? and title = ? and head = ?.
    static WikiPage
    findByG_N_T_H_Last(long groupId, long nodeId, String title, boolean head, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the last wiki page in the ordered set where groupId = ? and nodeId = ? and title = ? and head = ?.
    static WikiPage[]
    findByG_N_T_H_PrevAndNext(long pageId, long groupId, long nodeId, String title, boolean head, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the wiki pages before and after the current wiki page in the ordered set where groupId = ? and nodeId = ? and title = ? and head = ?.
    static List<WikiPage>
    findByG_U_N_S(long groupId, long userId, long nodeId, int status)
    Returns all the wiki pages where groupId = ? and userId = ? and nodeId = ? and status = ?.
    static List<WikiPage>
    findByG_U_N_S(long groupId, long userId, long nodeId, int status, int start, int end)
    Returns a range of all the wiki pages where groupId = ? and userId = ? and nodeId = ? and status = ?.
    static List<WikiPage>
    findByG_U_N_S(long groupId, long userId, long nodeId, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns an ordered range of all the wiki pages where groupId = ? and userId = ? and nodeId = ? and status = ?.
    static List<WikiPage>
    findByG_U_N_S(long groupId, long userId, long nodeId, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the wiki pages where groupId = ? and userId = ? and nodeId = ? and status = ?.
    static WikiPage
    findByG_U_N_S_First(long groupId, long userId, long nodeId, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the first wiki page in the ordered set where groupId = ? and userId = ? and nodeId = ? and status = ?.
    static WikiPage
    findByG_U_N_S_Last(long groupId, long userId, long nodeId, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the last wiki page in the ordered set where groupId = ? and userId = ? and nodeId = ? and status = ?.
    static WikiPage[]
    findByG_U_N_S_PrevAndNext(long pageId, long groupId, long userId, long nodeId, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the wiki pages before and after the current wiki page in the ordered set where groupId = ? and userId = ? and nodeId = ? and status = ?.
    static List<WikiPage>
    findByN_H(long nodeId, boolean head)
    Returns all the wiki pages where nodeId = ? and head = ?.
    static List<WikiPage>
    findByN_H(long nodeId, boolean head, int start, int end)
    Returns a range of all the wiki pages where nodeId = ? and head = ?.
    static List<WikiPage>
    findByN_H(long nodeId, boolean head, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns an ordered range of all the wiki pages where nodeId = ? and head = ?.
    static List<WikiPage>
    findByN_H(long nodeId, boolean head, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the wiki pages where nodeId = ? and head = ?.
    static WikiPage
    findByN_H_First(long nodeId, boolean head, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the first wiki page in the ordered set where nodeId = ? and head = ?.
    static WikiPage
    findByN_H_Last(long nodeId, boolean head, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the last wiki page in the ordered set where nodeId = ? and head = ?.
    static List<WikiPage>
    findByN_H_NotS(long nodeId, boolean head, int status)
    Returns all the wiki pages where nodeId = ? and head = ? and status ≠ ?.
    static List<WikiPage>
    findByN_H_NotS(long nodeId, boolean head, int status, int start, int end)
    Returns a range of all the wiki pages where nodeId = ? and head = ? and status ≠ ?.
    static List<WikiPage>
    findByN_H_NotS(long nodeId, boolean head, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns an ordered range of all the wiki pages where nodeId = ? and head = ? and status ≠ ?.
    static List<WikiPage>
    findByN_H_NotS(long nodeId, boolean head, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the wiki pages where nodeId = ? and head = ? and status ≠ ?.
    static WikiPage
    findByN_H_NotS_First(long nodeId, boolean head, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the first wiki page in the ordered set where nodeId = ? and head = ? and status ≠ ?.
    static WikiPage
    findByN_H_NotS_Last(long nodeId, boolean head, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the last wiki page in the ordered set where nodeId = ? and head = ? and status ≠ ?.
    static WikiPage[]
    findByN_H_NotS_PrevAndNext(long pageId, long nodeId, boolean head, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the wiki pages before and after the current wiki page in the ordered set where nodeId = ? and head = ? and status ≠ ?.
    static List<WikiPage>
    findByN_H_P(long nodeId, boolean head, String parentTitle)
    Returns all the wiki pages where nodeId = ? and head = ? and parentTitle = ?.
    static List<WikiPage>
    findByN_H_P(long nodeId, boolean head, String parentTitle, int start, int end)
    Returns a range of all the wiki pages where nodeId = ? and head = ? and parentTitle = ?.
    static List<WikiPage>
    findByN_H_P(long nodeId, boolean head, String parentTitle, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns an ordered range of all the wiki pages where nodeId = ? and head = ? and parentTitle = ?.
    static List<WikiPage>
    findByN_H_P(long nodeId, boolean head, String parentTitle, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the wiki pages where nodeId = ? and head = ? and parentTitle = ?.
    static WikiPage
    findByN_H_P_First(long nodeId, boolean head, String parentTitle, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the first wiki page in the ordered set where nodeId = ? and head = ? and parentTitle = ?.
    static WikiPage
    findByN_H_P_Last(long nodeId, boolean head, String parentTitle, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the last wiki page in the ordered set where nodeId = ? and head = ? and parentTitle = ?.
    static List<WikiPage>
    findByN_H_P_NotS(long nodeId, boolean head, String parentTitle, int status)
    Returns all the wiki pages where nodeId = ? and head = ? and parentTitle = ? and status ≠ ?.
    static List<WikiPage>
    findByN_H_P_NotS(long nodeId, boolean head, String parentTitle, int status, int start, int end)
    Returns a range of all the wiki pages where nodeId = ? and head = ? and parentTitle = ? and status ≠ ?.
    static List<WikiPage>
    findByN_H_P_NotS(long nodeId, boolean head, String parentTitle, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns an ordered range of all the wiki pages where nodeId = ? and head = ? and parentTitle = ? and status ≠ ?.
    static List<WikiPage>
    findByN_H_P_NotS(long nodeId, boolean head, String parentTitle, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the wiki pages where nodeId = ? and head = ? and parentTitle = ? and status ≠ ?.
    static WikiPage
    findByN_H_P_NotS_First(long nodeId, boolean head, String parentTitle, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the first wiki page in the ordered set where nodeId = ? and head = ? and parentTitle = ? and status ≠ ?.
    static WikiPage
    findByN_H_P_NotS_Last(long nodeId, boolean head, String parentTitle, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the last wiki page in the ordered set where nodeId = ? and head = ? and parentTitle = ? and status ≠ ?.
    static WikiPage[]
    findByN_H_P_NotS_PrevAndNext(long pageId, long nodeId, boolean head, String parentTitle, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the wiki pages before and after the current wiki page in the ordered set where nodeId = ? and head = ? and parentTitle = ? and status ≠ ?.
    static WikiPage[]
    findByN_H_P_PrevAndNext(long pageId, long nodeId, boolean head, String parentTitle, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the wiki pages before and after the current wiki page in the ordered set where nodeId = ? and head = ? and parentTitle = ?.
    static List<WikiPage>
    findByN_H_P_S(long nodeId, boolean head, String parentTitle, int status)
    Returns all the wiki pages where nodeId = ? and head = ? and parentTitle = ? and status = ?.
    static List<WikiPage>
    findByN_H_P_S(long nodeId, boolean head, String parentTitle, int status, int start, int end)
    Returns a range of all the wiki pages where nodeId = ? and head = ? and parentTitle = ? and status = ?.
    static List<WikiPage>
    findByN_H_P_S(long nodeId, boolean head, String parentTitle, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns an ordered range of all the wiki pages where nodeId = ? and head = ? and parentTitle = ? and status = ?.
    static List<WikiPage>
    findByN_H_P_S(long nodeId, boolean head, String parentTitle, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the wiki pages where nodeId = ? and head = ? and parentTitle = ? and status = ?.
    static WikiPage
    findByN_H_P_S_First(long nodeId, boolean head, String parentTitle, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the first wiki page in the ordered set where nodeId = ? and head = ? and parentTitle = ? and status = ?.
    static WikiPage
    findByN_H_P_S_Last(long nodeId, boolean head, String parentTitle, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the last wiki page in the ordered set where nodeId = ? and head = ? and parentTitle = ? and status = ?.
    static WikiPage[]
    findByN_H_P_S_PrevAndNext(long pageId, long nodeId, boolean head, String parentTitle, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the wiki pages before and after the current wiki page in the ordered set where nodeId = ? and head = ? and parentTitle = ? and status = ?.
    static WikiPage[]
    findByN_H_PrevAndNext(long pageId, long nodeId, boolean head, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the wiki pages before and after the current wiki page in the ordered set where nodeId = ? and head = ?.
    static List<WikiPage>
    findByN_H_R(long nodeId, boolean head, String redirectTitle)
    Returns all the wiki pages where nodeId = ? and head = ? and redirectTitle = ?.
    static List<WikiPage>
    findByN_H_R(long nodeId, boolean head, String redirectTitle, int start, int end)
    Returns a range of all the wiki pages where nodeId = ? and head = ? and redirectTitle = ?.
    static List<WikiPage>
    findByN_H_R(long nodeId, boolean head, String redirectTitle, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns an ordered range of all the wiki pages where nodeId = ? and head = ? and redirectTitle = ?.
    static List<WikiPage>
    findByN_H_R(long nodeId, boolean head, String redirectTitle, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the wiki pages where nodeId = ? and head = ? and redirectTitle = ?.
    static WikiPage
    findByN_H_R_First(long nodeId, boolean head, String redirectTitle, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the first wiki page in the ordered set where nodeId = ? and head = ? and redirectTitle = ?.
    static WikiPage
    findByN_H_R_Last(long nodeId, boolean head, String redirectTitle, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the last wiki page in the ordered set where nodeId = ? and head = ? and redirectTitle = ?.
    static List<WikiPage>
    findByN_H_R_NotS(long nodeId, boolean head, String redirectTitle, int status)
    Returns all the wiki pages where nodeId = ? and head = ? and redirectTitle = ? and status ≠ ?.
    static List<WikiPage>
    findByN_H_R_NotS(long nodeId, boolean head, String redirectTitle, int status, int start, int end)
    Returns a range of all the wiki pages where nodeId = ? and head = ? and redirectTitle = ? and status ≠ ?.
    static List<WikiPage>
    findByN_H_R_NotS(long nodeId, boolean head, String redirectTitle, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns an ordered range of all the wiki pages where nodeId = ? and head = ? and redirectTitle = ? and status ≠ ?.
    static List<WikiPage>
    findByN_H_R_NotS(long nodeId, boolean head, String redirectTitle, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the wiki pages where nodeId = ? and head = ? and redirectTitle = ? and status ≠ ?.
    static WikiPage
    findByN_H_R_NotS_First(long nodeId, boolean head, String redirectTitle, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the first wiki page in the ordered set where nodeId = ? and head = ? and redirectTitle = ? and status ≠ ?.
    static WikiPage
    findByN_H_R_NotS_Last(long nodeId, boolean head, String redirectTitle, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the last wiki page in the ordered set where nodeId = ? and head = ? and redirectTitle = ? and status ≠ ?.
    static WikiPage[]
    findByN_H_R_NotS_PrevAndNext(long pageId, long nodeId, boolean head, String redirectTitle, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the wiki pages before and after the current wiki page in the ordered set where nodeId = ? and head = ? and redirectTitle = ? and status ≠ ?.
    static WikiPage[]
    findByN_H_R_PrevAndNext(long pageId, long nodeId, boolean head, String redirectTitle, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the wiki pages before and after the current wiki page in the ordered set where nodeId = ? and head = ? and redirectTitle = ?.
    static List<WikiPage>
    findByN_H_R_S(long nodeId, boolean head, String redirectTitle, int status)
    Returns all the wiki pages where nodeId = ? and head = ? and redirectTitle = ? and status = ?.
    static List<WikiPage>
    findByN_H_R_S(long nodeId, boolean head, String redirectTitle, int status, int start, int end)
    Returns a range of all the wiki pages where nodeId = ? and head = ? and redirectTitle = ? and status = ?.
    static List<WikiPage>
    findByN_H_R_S(long nodeId, boolean head, String redirectTitle, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns an ordered range of all the wiki pages where nodeId = ? and head = ? and redirectTitle = ? and status = ?.
    static List<WikiPage>
    findByN_H_R_S(long nodeId, boolean head, String redirectTitle, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the wiki pages where nodeId = ? and head = ? and redirectTitle = ? and status = ?.
    static WikiPage
    findByN_H_R_S_First(long nodeId, boolean head, String redirectTitle, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the first wiki page in the ordered set where nodeId = ? and head = ? and redirectTitle = ? and status = ?.
    static WikiPage
    findByN_H_R_S_Last(long nodeId, boolean head, String redirectTitle, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the last wiki page in the ordered set where nodeId = ? and head = ? and redirectTitle = ? and status = ?.
    static WikiPage[]
    findByN_H_R_S_PrevAndNext(long pageId, long nodeId, boolean head, String redirectTitle, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the wiki pages before and after the current wiki page in the ordered set where nodeId = ? and head = ? and redirectTitle = ? and status = ?.
    static List<WikiPage>
    findByN_H_S(long nodeId, boolean head, int status)
    Returns all the wiki pages where nodeId = ? and head = ? and status = ?.
    static List<WikiPage>
    findByN_H_S(long nodeId, boolean head, int status, int start, int end)
    Returns a range of all the wiki pages where nodeId = ? and head = ? and status = ?.
    static List<WikiPage>
    findByN_H_S(long nodeId, boolean head, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns an ordered range of all the wiki pages where nodeId = ? and head = ? and status = ?.
    static List<WikiPage>
    findByN_H_S(long nodeId, boolean head, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the wiki pages where nodeId = ? and head = ? and status = ?.
    static WikiPage
    findByN_H_S_First(long nodeId, boolean head, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the first wiki page in the ordered set where nodeId = ? and head = ? and status = ?.
    static WikiPage
    findByN_H_S_Last(long nodeId, boolean head, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the last wiki page in the ordered set where nodeId = ? and head = ? and status = ?.
    static WikiPage[]
    findByN_H_S_PrevAndNext(long pageId, long nodeId, boolean head, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the wiki pages before and after the current wiki page in the ordered set where nodeId = ? and head = ? and status = ?.
    static List<WikiPage>
    findByN_P(long nodeId, String parentTitle)
    Returns all the wiki pages where nodeId = ? and parentTitle = ?.
    static List<WikiPage>
    findByN_P(long nodeId, String parentTitle, int start, int end)
    Returns a range of all the wiki pages where nodeId = ? and parentTitle = ?.
    static List<WikiPage>
    findByN_P(long nodeId, String parentTitle, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns an ordered range of all the wiki pages where nodeId = ? and parentTitle = ?.
    static List<WikiPage>
    findByN_P(long nodeId, String parentTitle, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the wiki pages where nodeId = ? and parentTitle = ?.
    static WikiPage
    findByN_P_First(long nodeId, String parentTitle, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the first wiki page in the ordered set where nodeId = ? and parentTitle = ?.
    static WikiPage
    findByN_P_Last(long nodeId, String parentTitle, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the last wiki page in the ordered set where nodeId = ? and parentTitle = ?.
    static WikiPage[]
    findByN_P_PrevAndNext(long pageId, long nodeId, String parentTitle, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the wiki pages before and after the current wiki page in the ordered set where nodeId = ? and parentTitle = ?.
    static List<WikiPage>
    findByN_R(long nodeId, String redirectTitle)
    Returns all the wiki pages where nodeId = ? and redirectTitle = ?.
    static List<WikiPage>
    findByN_R(long nodeId, String redirectTitle, int start, int end)
    Returns a range of all the wiki pages where nodeId = ? and redirectTitle = ?.
    static List<WikiPage>
    findByN_R(long nodeId, String redirectTitle, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns an ordered range of all the wiki pages where nodeId = ? and redirectTitle = ?.
    static List<WikiPage>
    findByN_R(long nodeId, String redirectTitle, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the wiki pages where nodeId = ? and redirectTitle = ?.
    static WikiPage
    findByN_R_First(long nodeId, String redirectTitle, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the first wiki page in the ordered set where nodeId = ? and redirectTitle = ?.
    static WikiPage
    findByN_R_Last(long nodeId, String redirectTitle, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the last wiki page in the ordered set where nodeId = ? and redirectTitle = ?.
    static WikiPage[]
    findByN_R_PrevAndNext(long pageId, long nodeId, String redirectTitle, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the wiki pages before and after the current wiki page in the ordered set where nodeId = ? and redirectTitle = ?.
    static List<WikiPage>
    findByN_S(long nodeId, int status)
    Returns all the wiki pages where nodeId = ? and status = ?.
    static List<WikiPage>
    findByN_S(long nodeId, int status, int start, int end)
    Returns a range of all the wiki pages where nodeId = ? and status = ?.
    static List<WikiPage>
    findByN_S(long nodeId, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns an ordered range of all the wiki pages where nodeId = ? and status = ?.
    static List<WikiPage>
    findByN_S(long nodeId, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the wiki pages where nodeId = ? and status = ?.
    static WikiPage
    findByN_S_First(long nodeId, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the first wiki page in the ordered set where nodeId = ? and status = ?.
    static WikiPage
    findByN_S_Last(long nodeId, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the last wiki page in the ordered set where nodeId = ? and status = ?.
    static WikiPage[]
    findByN_S_PrevAndNext(long pageId, long nodeId, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the wiki pages before and after the current wiki page in the ordered set where nodeId = ? and status = ?.
    static List<WikiPage>
    findByN_T(long nodeId, String title)
    Returns all the wiki pages where nodeId = ? and title = ?.
    static List<WikiPage>
    findByN_T(long nodeId, String title, int start, int end)
    Returns a range of all the wiki pages where nodeId = ? and title = ?.
    static List<WikiPage>
    findByN_T(long nodeId, String title, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns an ordered range of all the wiki pages where nodeId = ? and title = ?.
    static List<WikiPage>
    findByN_T(long nodeId, String title, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the wiki pages where nodeId = ? and title = ?.
    static WikiPage
    findByN_T_First(long nodeId, String title, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the first wiki page in the ordered set where nodeId = ? and title = ?.
    static List<WikiPage>
    findByN_T_H(long nodeId, String title, boolean head)
    Returns all the wiki pages where nodeId = ? and title = ? and head = ?.
    static List<WikiPage>
    findByN_T_H(long nodeId, String title, boolean head, int start, int end)
    Returns a range of all the wiki pages where nodeId = ? and title = ? and head = ?.
    static List<WikiPage>
    findByN_T_H(long nodeId, String title, boolean head, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns an ordered range of all the wiki pages where nodeId = ? and title = ? and head = ?.
    static List<WikiPage>
    findByN_T_H(long nodeId, String title, boolean head, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the wiki pages where nodeId = ? and title = ? and head = ?.
    static WikiPage
    findByN_T_H_First(long nodeId, String title, boolean head, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the first wiki page in the ordered set where nodeId = ? and title = ? and head = ?.
    static WikiPage
    findByN_T_H_Last(long nodeId, String title, boolean head, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the last wiki page in the ordered set where nodeId = ? and title = ? and head = ?.
    static WikiPage[]
    findByN_T_H_PrevAndNext(long pageId, long nodeId, String title, boolean head, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the wiki pages before and after the current wiki page in the ordered set where nodeId = ? and title = ? and head = ?.
    static WikiPage
    findByN_T_Last(long nodeId, String title, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the last wiki page in the ordered set where nodeId = ? and title = ?.
    static WikiPage[]
    findByN_T_PrevAndNext(long pageId, long nodeId, String title, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the wiki pages before and after the current wiki page in the ordered set where nodeId = ? and title = ?.
    static List<WikiPage>
    findByN_T_S(long nodeId, String title, int status)
    Returns all the wiki pages where nodeId = ? and title = ? and status = ?.
    static List<WikiPage>
    findByN_T_S(long nodeId, String title, int status, int start, int end)
    Returns a range of all the wiki pages where nodeId = ? and title = ? and status = ?.
    static List<WikiPage>
    findByN_T_S(long nodeId, String title, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns an ordered range of all the wiki pages where nodeId = ? and title = ? and status = ?.
    static List<WikiPage>
    findByN_T_S(long nodeId, String title, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the wiki pages where nodeId = ? and title = ? and status = ?.
    static WikiPage
    findByN_T_S_First(long nodeId, String title, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the first wiki page in the ordered set where nodeId = ? and title = ? and status = ?.
    static WikiPage
    findByN_T_S_Last(long nodeId, String title, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the last wiki page in the ordered set where nodeId = ? and title = ? and status = ?.
    static WikiPage[]
    findByN_T_S_PrevAndNext(long pageId, long nodeId, String title, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the wiki pages before and after the current wiki page in the ordered set where nodeId = ? and title = ? and status = ?.
    static WikiPage
    findByN_T_V(long nodeId, String title, double version)
    Returns the wiki page where nodeId = ? and title = ? and version = ? or throws a NoSuchPageException if it could not be found.
    static List<WikiPage>
    findByNodeId(long nodeId)
    Returns all the wiki pages where nodeId = ?.
    static List<WikiPage>
    findByNodeId(long nodeId, int start, int end)
    Returns a range of all the wiki pages where nodeId = ?.
    static List<WikiPage>
    findByNodeId(long nodeId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns an ordered range of all the wiki pages where nodeId = ?.
    static List<WikiPage>
    findByNodeId(long nodeId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the wiki pages where nodeId = ?.
    static WikiPage
    findByNodeId_First(long nodeId, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the first wiki page in the ordered set where nodeId = ?.
    static WikiPage
    findByNodeId_Last(long nodeId, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the last wiki page in the ordered set where nodeId = ?.
    static WikiPage[]
    findByNodeId_PrevAndNext(long pageId, long nodeId, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the wiki pages before and after the current wiki page in the ordered set where nodeId = ?.
    static WikiPage
    findByPrimaryKey(long pageId)
    Returns the wiki page with the primary key or throws a NoSuchPageException if it could not be found.
    static List<WikiPage>
    findByR_N(long resourcePrimKey, long nodeId)
    Returns all the wiki pages where resourcePrimKey = ? and nodeId = ?.
    static List<WikiPage>
    findByR_N(long resourcePrimKey, long nodeId, int start, int end)
    Returns a range of all the wiki pages where resourcePrimKey = ? and nodeId = ?.
    static List<WikiPage>
    findByR_N(long resourcePrimKey, long nodeId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns an ordered range of all the wiki pages where resourcePrimKey = ? and nodeId = ?.
    static List<WikiPage>
    findByR_N(long resourcePrimKey, long nodeId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the wiki pages where resourcePrimKey = ? and nodeId = ?.
    static WikiPage
    findByR_N_First(long resourcePrimKey, long nodeId, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the first wiki page in the ordered set where resourcePrimKey = ? and nodeId = ?.
    static List<WikiPage>
    findByR_N_H(long resourcePrimKey, long nodeId, boolean head)
    Returns all the wiki pages where resourcePrimKey = ? and nodeId = ? and head = ?.
    static List<WikiPage>
    findByR_N_H(long resourcePrimKey, long nodeId, boolean head, int start, int end)
    Returns a range of all the wiki pages where resourcePrimKey = ? and nodeId = ? and head = ?.
    static List<WikiPage>
    findByR_N_H(long resourcePrimKey, long nodeId, boolean head, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns an ordered range of all the wiki pages where resourcePrimKey = ? and nodeId = ? and head = ?.
    static List<WikiPage>
    findByR_N_H(long resourcePrimKey, long nodeId, boolean head, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the wiki pages where resourcePrimKey = ? and nodeId = ? and head = ?.
    static WikiPage
    findByR_N_H_First(long resourcePrimKey, long nodeId, boolean head, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the first wiki page in the ordered set where resourcePrimKey = ? and nodeId = ? and head = ?.
    static WikiPage
    findByR_N_H_Last(long resourcePrimKey, long nodeId, boolean head, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the last wiki page in the ordered set where resourcePrimKey = ? and nodeId = ? and head = ?.
    static WikiPage[]
    findByR_N_H_PrevAndNext(long pageId, long resourcePrimKey, long nodeId, boolean head, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the wiki pages before and after the current wiki page in the ordered set where resourcePrimKey = ? and nodeId = ? and head = ?.
    static WikiPage
    findByR_N_Last(long resourcePrimKey, long nodeId, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the last wiki page in the ordered set where resourcePrimKey = ? and nodeId = ?.
    static WikiPage[]
    findByR_N_PrevAndNext(long pageId, long resourcePrimKey, long nodeId, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the wiki pages before and after the current wiki page in the ordered set where resourcePrimKey = ? and nodeId = ?.
    static List<WikiPage>
    findByR_N_S(long resourcePrimKey, long nodeId, int status)
    Returns all the wiki pages where resourcePrimKey = ? and nodeId = ? and status = ?.
    static List<WikiPage>
    findByR_N_S(long resourcePrimKey, long nodeId, int status, int start, int end)
    Returns a range of all the wiki pages where resourcePrimKey = ? and nodeId = ? and status = ?.
    static List<WikiPage>
    findByR_N_S(long resourcePrimKey, long nodeId, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns an ordered range of all the wiki pages where resourcePrimKey = ? and nodeId = ? and status = ?.
    static List<WikiPage>
    findByR_N_S(long resourcePrimKey, long nodeId, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the wiki pages where resourcePrimKey = ? and nodeId = ? and status = ?.
    static WikiPage
    findByR_N_S_First(long resourcePrimKey, long nodeId, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the first wiki page in the ordered set where resourcePrimKey = ? and nodeId = ? and status = ?.
    static WikiPage
    findByR_N_S_Last(long resourcePrimKey, long nodeId, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the last wiki page in the ordered set where resourcePrimKey = ? and nodeId = ? and status = ?.
    static WikiPage[]
    findByR_N_S_PrevAndNext(long pageId, long resourcePrimKey, long nodeId, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the wiki pages before and after the current wiki page in the ordered set where resourcePrimKey = ? and nodeId = ? and status = ?.
    static WikiPage
    findByR_N_V(long resourcePrimKey, long nodeId, double version)
    Returns the wiki page where resourcePrimKey = ? and nodeId = ? and version = ? or throws a NoSuchPageException if it could not be found.
    static List<WikiPage>
    findByR_S(long resourcePrimKey, int status)
    Returns all the wiki pages where resourcePrimKey = ? and status = ?.
    static List<WikiPage>
    findByR_S(long resourcePrimKey, int status, int start, int end)
    Returns a range of all the wiki pages where resourcePrimKey = ? and status = ?.
    static List<WikiPage>
    findByR_S(long resourcePrimKey, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns an ordered range of all the wiki pages where resourcePrimKey = ? and status = ?.
    static List<WikiPage>
    findByR_S(long resourcePrimKey, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the wiki pages where resourcePrimKey = ? and status = ?.
    static WikiPage
    findByR_S_First(long resourcePrimKey, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the first wiki page in the ordered set where resourcePrimKey = ? and status = ?.
    static WikiPage
    findByR_S_Last(long resourcePrimKey, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the last wiki page in the ordered set where resourcePrimKey = ? and status = ?.
    static WikiPage[]
    findByR_S_PrevAndNext(long pageId, long resourcePrimKey, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the wiki pages before and after the current wiki page in the ordered set where resourcePrimKey = ? and status = ?.
    static List<WikiPage>
    findByResourcePrimKey(long resourcePrimKey)
    Returns all the wiki pages where resourcePrimKey = ?.
    static List<WikiPage>
    findByResourcePrimKey(long resourcePrimKey, int start, int end)
    Returns a range of all the wiki pages where resourcePrimKey = ?.
    static List<WikiPage>
    findByResourcePrimKey(long resourcePrimKey, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns an ordered range of all the wiki pages where resourcePrimKey = ?.
    static List<WikiPage>
    findByResourcePrimKey(long resourcePrimKey, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the wiki pages where resourcePrimKey = ?.
    static WikiPage
    findByResourcePrimKey_First(long resourcePrimKey, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the first wiki page in the ordered set where resourcePrimKey = ?.
    static WikiPage
    findByResourcePrimKey_Last(long resourcePrimKey, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the last wiki page in the ordered set where resourcePrimKey = ?.
    static WikiPage[]
    findByResourcePrimKey_PrevAndNext(long pageId, long resourcePrimKey, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the wiki pages before and after the current wiki page in the ordered set where resourcePrimKey = ?.
    static List<WikiPage>
    findByU_N_S(long userId, long nodeId, int status)
    Returns all the wiki pages where userId = ? and nodeId = ? and status = ?.
    static List<WikiPage>
    findByU_N_S(long userId, long nodeId, int status, int start, int end)
    Returns a range of all the wiki pages where userId = ? and nodeId = ? and status = ?.
    static List<WikiPage>
    findByU_N_S(long userId, long nodeId, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns an ordered range of all the wiki pages where userId = ? and nodeId = ? and status = ?.
    static List<WikiPage>
    findByU_N_S(long userId, long nodeId, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the wiki pages where userId = ? and nodeId = ? and status = ?.
    static WikiPage
    findByU_N_S_First(long userId, long nodeId, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the first wiki page in the ordered set where userId = ? and nodeId = ? and status = ?.
    static WikiPage
    findByU_N_S_Last(long userId, long nodeId, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the last wiki page in the ordered set where userId = ? and nodeId = ? and status = ?.
    static WikiPage[]
    findByU_N_S_PrevAndNext(long pageId, long userId, long nodeId, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the wiki pages before and after the current wiki page in the ordered set where userId = ? and nodeId = ? and status = ?.
    static List<WikiPage>
    Returns all the wiki pages where uuid = ?.
    static List<WikiPage>
    findByUuid(String uuid, int start, int end)
    Returns a range of all the wiki pages where uuid = ?.
    static List<WikiPage>
    findByUuid(String uuid, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns an ordered range of all the wiki pages where uuid = ?.
    static List<WikiPage>
    findByUuid(String uuid, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the wiki pages where uuid = ?.
    static List<WikiPage>
    findByUuid_C(String uuid, long companyId)
    Returns all the wiki pages where uuid = ? and companyId = ?.
    static List<WikiPage>
    findByUuid_C(String uuid, long companyId, int start, int end)
    Returns a range of all the wiki pages where uuid = ? and companyId = ?.
    static List<WikiPage>
    findByUuid_C(String uuid, long companyId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns an ordered range of all the wiki pages where uuid = ? and companyId = ?.
    static List<WikiPage>
    findByUuid_C(String uuid, long companyId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the wiki pages where uuid = ? and companyId = ?.
    static WikiPage
    findByUuid_C_First(String uuid, long companyId, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the first wiki page in the ordered set where uuid = ? and companyId = ?.
    static WikiPage
    findByUuid_C_Last(String uuid, long companyId, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the last wiki page in the ordered set where uuid = ? and companyId = ?.
    static WikiPage[]
    findByUuid_C_PrevAndNext(long pageId, String uuid, long companyId, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the wiki pages before and after the current wiki page in the ordered set where uuid = ? and companyId = ?.
    static WikiPage
    findByUuid_First(String uuid, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the first wiki page in the ordered set where uuid = ?.
    static WikiPage
    findByUUID_G(String uuid, long groupId)
    Returns the wiki page where uuid = ? and groupId = ? or throws a NoSuchPageException if it could not be found.
    static WikiPage
    findByUuid_Last(String uuid, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the last wiki page in the ordered set where uuid = ?.
    static WikiPage[]
    findByUuid_PrevAndNext(long pageId, String uuid, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
    Returns the wiki pages before and after the current wiki page in the ordered set where uuid = ?.
    static List<WikiPage>
    findWithDynamicQuery(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
     
    static List<WikiPage>
    findWithDynamicQuery(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start, int end)
     
    static List<WikiPage>
    findWithDynamicQuery(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
     
     
    static WikiPage
    remove(long pageId)
    Removes the wiki page with the primary key from the database.
    static void
    Removes all the wiki pages from the database.
    static void
    removeByCompanyId(long companyId)
    Removes all the wiki pages where companyId = ? from the database.
    static void
    Removes all the wiki pages where format = ? from the database.
    static void
    removeByG_ERC(long groupId, String externalReferenceCode)
    Removes all the wiki pages where groupId = ? and externalReferenceCode = ? from the database.
    static WikiPage
    removeByG_ERC_V(long groupId, String externalReferenceCode, double version)
    Removes the wiki page where groupId = ? and externalReferenceCode = ? and version = ? from the database.
    static void
    removeByG_N_H(long groupId, long nodeId, boolean head)
    Removes all the wiki pages where groupId = ? and nodeId = ? and head = ? from the database.
    static void
    removeByG_N_H_P_S(long groupId, long nodeId, boolean head, String parentTitle, int status)
    Removes all the wiki pages where groupId = ? and nodeId = ? and head = ? and parentTitle = ? and status = ? from the database.
    static void
    removeByG_N_H_S(long groupId, long nodeId, boolean head, int status)
    Removes all the wiki pages where groupId = ? and nodeId = ? and head = ? and status = ? from the database.
    static void
    removeByG_N_S(long groupId, long nodeId, int status)
    Removes all the wiki pages where groupId = ? and nodeId = ? and status = ? from the database.
    static void
    removeByG_N_T_H(long groupId, long nodeId, String title, boolean head)
    Removes all the wiki pages where groupId = ? and nodeId = ? and title = ? and head = ? from the database.
    static void
    removeByG_U_N_S(long groupId, long userId, long nodeId, int status)
    Removes all the wiki pages where groupId = ? and userId = ? and nodeId = ? and status = ? from the database.
    static void
    removeByN_H(long nodeId, boolean head)
    Removes all the wiki pages where nodeId = ? and head = ? from the database.
    static void
    removeByN_H_NotS(long nodeId, boolean head, int status)
    Removes all the wiki pages where nodeId = ? and head = ? and status ≠ ? from the database.
    static void
    removeByN_H_P(long nodeId, boolean head, String parentTitle)
    Removes all the wiki pages where nodeId = ? and head = ? and parentTitle = ? from the database.
    static void
    removeByN_H_P_NotS(long nodeId, boolean head, String parentTitle, int status)
    Removes all the wiki pages where nodeId = ? and head = ? and parentTitle = ? and status ≠ ? from the database.
    static void
    removeByN_H_P_S(long nodeId, boolean head, String parentTitle, int status)
    Removes all the wiki pages where nodeId = ? and head = ? and parentTitle = ? and status = ? from the database.
    static void
    removeByN_H_R(long nodeId, boolean head, String redirectTitle)
    Removes all the wiki pages where nodeId = ? and head = ? and redirectTitle = ? from the database.
    static void
    removeByN_H_R_NotS(long nodeId, boolean head, String redirectTitle, int status)
    Removes all the wiki pages where nodeId = ? and head = ? and redirectTitle = ? and status ≠ ? from the database.
    static void
    removeByN_H_R_S(long nodeId, boolean head, String redirectTitle, int status)
    Removes all the wiki pages where nodeId = ? and head = ? and redirectTitle = ? and status = ? from the database.
    static void
    removeByN_H_S(long nodeId, boolean head, int status)
    Removes all the wiki pages where nodeId = ? and head = ? and status = ? from the database.
    static void
    removeByN_P(long nodeId, String parentTitle)
    Removes all the wiki pages where nodeId = ? and parentTitle = ? from the database.
    static void
    removeByN_R(long nodeId, String redirectTitle)
    Removes all the wiki pages where nodeId = ? and redirectTitle = ? from the database.
    static void
    removeByN_S(long nodeId, int status)
    Removes all the wiki pages where nodeId = ? and status = ? from the database.
    static void
    removeByN_T(long nodeId, String title)
    Removes all the wiki pages where nodeId = ? and title = ? from the database.
    static void
    removeByN_T_H(long nodeId, String title, boolean head)
    Removes all the wiki pages where nodeId = ? and title = ? and head = ? from the database.
    static void
    removeByN_T_S(long nodeId, String title, int status)
    Removes all the wiki pages where nodeId = ? and title = ? and status = ? from the database.
    static WikiPage
    removeByN_T_V(long nodeId, String title, double version)
    Removes the wiki page where nodeId = ? and title = ? and version = ? from the database.
    static void
    removeByNodeId(long nodeId)
    Removes all the wiki pages where nodeId = ? from the database.
    static void
    removeByR_N(long resourcePrimKey, long nodeId)
    Removes all the wiki pages where resourcePrimKey = ? and nodeId = ? from the database.
    static void
    removeByR_N_H(long resourcePrimKey, long nodeId, boolean head)
    Removes all the wiki pages where resourcePrimKey = ? and nodeId = ? and head = ? from the database.
    static void
    removeByR_N_S(long resourcePrimKey, long nodeId, int status)
    Removes all the wiki pages where resourcePrimKey = ? and nodeId = ? and status = ? from the database.
    static WikiPage
    removeByR_N_V(long resourcePrimKey, long nodeId, double version)
    Removes the wiki page where resourcePrimKey = ? and nodeId = ? and version = ? from the database.
    static void
    removeByR_S(long resourcePrimKey, int status)
    Removes all the wiki pages where resourcePrimKey = ? and status = ? from the database.
    static void
    removeByResourcePrimKey(long resourcePrimKey)
    Removes all the wiki pages where resourcePrimKey = ? from the database.
    static void
    removeByU_N_S(long userId, long nodeId, int status)
    Removes all the wiki pages where userId = ? and nodeId = ? and status = ? from the database.
    static void
    Removes all the wiki pages where uuid = ? from the database.
    static void
    removeByUuid_C(String uuid, long companyId)
    Removes all the wiki pages where uuid = ? and companyId = ? from the database.
    static WikiPage
    removeByUUID_G(String uuid, long groupId)
    Removes the wiki page where uuid = ? and groupId = ? from the database.
    static void
     
    static WikiPage
    update(WikiPage wikiPage)
     
    static WikiPage
    update(WikiPage wikiPage, com.liferay.portal.kernel.service.ServiceContext serviceContext)
     
    static WikiPage
    updateImpl(WikiPage wikiPage)
     

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • WikiPageUtil

      public WikiPageUtil()
  • Method Details

    • clearCache

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

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

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

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

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

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

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

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

      public static WikiPage update(WikiPage wikiPage, com.liferay.portal.kernel.service.ServiceContext serviceContext)
      See Also:
      • BasePersistence.update(com.liferay.portal.kernel.model.BaseModel, ServiceContext)
    • findByResourcePrimKey

      public static List<WikiPage> findByResourcePrimKey(long resourcePrimKey)
      Returns all the wiki pages where resourcePrimKey = ?.
      Parameters:
      resourcePrimKey - the resource prim key
      Returns:
      the matching wiki pages
    • findByResourcePrimKey

      public static List<WikiPage> findByResourcePrimKey(long resourcePrimKey, int start, int end)
      Returns a range of all the wiki pages where resourcePrimKey = ?.

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

      Parameters:
      resourcePrimKey - the resource prim key
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (not inclusive)
      Returns:
      the range of matching wiki pages
    • findByResourcePrimKey

      public static List<WikiPage> findByResourcePrimKey(long resourcePrimKey, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns an ordered range of all the wiki pages where resourcePrimKey = ?.

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

      Parameters:
      resourcePrimKey - the resource prim key
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching wiki pages
    • findByResourcePrimKey

      public static List<WikiPage> findByResourcePrimKey(long resourcePrimKey, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the wiki pages where resourcePrimKey = ?.

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

      Parameters:
      resourcePrimKey - the resource prim key
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (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 wiki pages
    • findByResourcePrimKey_First

      public static WikiPage findByResourcePrimKey_First(long resourcePrimKey, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the first wiki page in the ordered set where resourcePrimKey = ?.
      Parameters:
      resourcePrimKey - the resource prim key
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching wiki page
      Throws:
      NoSuchPageException - if a matching wiki page could not be found
      NoSuchPageException
    • fetchByResourcePrimKey_First

      public static WikiPage fetchByResourcePrimKey_First(long resourcePrimKey, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns the first wiki page in the ordered set where resourcePrimKey = ?.
      Parameters:
      resourcePrimKey - the resource prim key
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching wiki page, or null if a matching wiki page could not be found
    • findByResourcePrimKey_Last

      public static WikiPage findByResourcePrimKey_Last(long resourcePrimKey, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the last wiki page in the ordered set where resourcePrimKey = ?.
      Parameters:
      resourcePrimKey - the resource prim key
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching wiki page
      Throws:
      NoSuchPageException - if a matching wiki page could not be found
      NoSuchPageException
    • fetchByResourcePrimKey_Last

      public static WikiPage fetchByResourcePrimKey_Last(long resourcePrimKey, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns the last wiki page in the ordered set where resourcePrimKey = ?.
      Parameters:
      resourcePrimKey - the resource prim key
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching wiki page, or null if a matching wiki page could not be found
    • findByResourcePrimKey_PrevAndNext

      public static WikiPage[] findByResourcePrimKey_PrevAndNext(long pageId, long resourcePrimKey, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the wiki pages before and after the current wiki page in the ordered set where resourcePrimKey = ?.
      Parameters:
      pageId - the primary key of the current wiki page
      resourcePrimKey - the resource prim key
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next wiki page
      Throws:
      NoSuchPageException - if a wiki page with the primary key could not be found
      NoSuchPageException
    • removeByResourcePrimKey

      public static void removeByResourcePrimKey(long resourcePrimKey)
      Removes all the wiki pages where resourcePrimKey = ? from the database.
      Parameters:
      resourcePrimKey - the resource prim key
    • countByResourcePrimKey

      public static int countByResourcePrimKey(long resourcePrimKey)
      Returns the number of wiki pages where resourcePrimKey = ?.
      Parameters:
      resourcePrimKey - the resource prim key
      Returns:
      the number of matching wiki pages
    • findByUuid

      public static List<WikiPage> findByUuid(String uuid)
      Returns all the wiki pages where uuid = ?.
      Parameters:
      uuid - the uuid
      Returns:
      the matching wiki pages
    • findByUuid

      public static List<WikiPage> findByUuid(String uuid, int start, int end)
      Returns a range of all the wiki pages 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 WikiPageModelImpl.

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

      public static List<WikiPage> findByUuid(String uuid, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns an ordered range of all the wiki pages 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 WikiPageModelImpl.

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

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

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

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

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

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

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

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

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

      public static int countByUuid(String uuid)
      Returns the number of wiki pages where uuid = ?.
      Parameters:
      uuid - the uuid
      Returns:
      the number of matching wiki pages
    • findByUUID_G

      public static WikiPage findByUUID_G(String uuid, long groupId) throws NoSuchPageException
      Returns the wiki page where uuid = ? and groupId = ? or throws a NoSuchPageException if it could not be found.
      Parameters:
      uuid - the uuid
      groupId - the group ID
      Returns:
      the matching wiki page
      Throws:
      NoSuchPageException - if a matching wiki page could not be found
      NoSuchPageException
    • fetchByUUID_G

      public static WikiPage fetchByUUID_G(String uuid, long groupId)
      Returns the wiki page 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 wiki page, or null if a matching wiki page could not be found
    • fetchByUUID_G

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

      public static WikiPage removeByUUID_G(String uuid, long groupId) throws NoSuchPageException
      Removes the wiki page where uuid = ? and groupId = ? from the database.
      Parameters:
      uuid - the uuid
      groupId - the group ID
      Returns:
      the wiki page that was removed
      Throws:
      NoSuchPageException
    • countByUUID_G

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

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

      public static List<WikiPage> findByUuid_C(String uuid, long companyId, int start, int end)
      Returns a range of all the wiki pages 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 WikiPageModelImpl.

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

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

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

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

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

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

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

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

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

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

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

      public static int countByUuid_C(String uuid, long companyId)
      Returns the number of wiki pages where uuid = ? and companyId = ?.
      Parameters:
      uuid - the uuid
      companyId - the company ID
      Returns:
      the number of matching wiki pages
    • findByCompanyId

      public static List<WikiPage> findByCompanyId(long companyId)
      Returns all the wiki pages where companyId = ?.
      Parameters:
      companyId - the company ID
      Returns:
      the matching wiki pages
    • findByCompanyId

      public static List<WikiPage> findByCompanyId(long companyId, int start, int end)
      Returns a range of all the wiki pages 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 WikiPageModelImpl.

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

      public static List<WikiPage> findByCompanyId(long companyId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns an ordered range of all the wiki pages 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 WikiPageModelImpl.

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

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

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

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

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

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

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

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

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

      public static int countByCompanyId(long companyId)
      Returns the number of wiki pages where companyId = ?.
      Parameters:
      companyId - the company ID
      Returns:
      the number of matching wiki pages
    • findByNodeId

      public static List<WikiPage> findByNodeId(long nodeId)
      Returns all the wiki pages where nodeId = ?.
      Parameters:
      nodeId - the node ID
      Returns:
      the matching wiki pages
    • findByNodeId

      public static List<WikiPage> findByNodeId(long nodeId, int start, int end)
      Returns a range of all the wiki pages where nodeId = ?.

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

      Parameters:
      nodeId - the node ID
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (not inclusive)
      Returns:
      the range of matching wiki pages
    • findByNodeId

      public static List<WikiPage> findByNodeId(long nodeId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns an ordered range of all the wiki pages where nodeId = ?.

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

      Parameters:
      nodeId - the node ID
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching wiki pages
    • findByNodeId

      public static List<WikiPage> findByNodeId(long nodeId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the wiki pages where nodeId = ?.

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

      Parameters:
      nodeId - the node ID
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (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 wiki pages
    • findByNodeId_First

      public static WikiPage findByNodeId_First(long nodeId, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the first wiki page in the ordered set where nodeId = ?.
      Parameters:
      nodeId - the node ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching wiki page
      Throws:
      NoSuchPageException - if a matching wiki page could not be found
      NoSuchPageException
    • fetchByNodeId_First

      public static WikiPage fetchByNodeId_First(long nodeId, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns the first wiki page in the ordered set where nodeId = ?.
      Parameters:
      nodeId - the node ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching wiki page, or null if a matching wiki page could not be found
    • findByNodeId_Last

      public static WikiPage findByNodeId_Last(long nodeId, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the last wiki page in the ordered set where nodeId = ?.
      Parameters:
      nodeId - the node ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching wiki page
      Throws:
      NoSuchPageException - if a matching wiki page could not be found
      NoSuchPageException
    • fetchByNodeId_Last

      public static WikiPage fetchByNodeId_Last(long nodeId, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns the last wiki page in the ordered set where nodeId = ?.
      Parameters:
      nodeId - the node ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching wiki page, or null if a matching wiki page could not be found
    • findByNodeId_PrevAndNext

      public static WikiPage[] findByNodeId_PrevAndNext(long pageId, long nodeId, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the wiki pages before and after the current wiki page in the ordered set where nodeId = ?.
      Parameters:
      pageId - the primary key of the current wiki page
      nodeId - the node ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next wiki page
      Throws:
      NoSuchPageException - if a wiki page with the primary key could not be found
      NoSuchPageException
    • removeByNodeId

      public static void removeByNodeId(long nodeId)
      Removes all the wiki pages where nodeId = ? from the database.
      Parameters:
      nodeId - the node ID
    • countByNodeId

      public static int countByNodeId(long nodeId)
      Returns the number of wiki pages where nodeId = ?.
      Parameters:
      nodeId - the node ID
      Returns:
      the number of matching wiki pages
    • findByFormat

      public static List<WikiPage> findByFormat(String format)
      Returns all the wiki pages where format = ?.
      Parameters:
      format - the format
      Returns:
      the matching wiki pages
    • findByFormat

      public static List<WikiPage> findByFormat(String format, int start, int end)
      Returns a range of all the wiki pages where format = ?.

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

      Parameters:
      format - the format
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (not inclusive)
      Returns:
      the range of matching wiki pages
    • findByFormat

      public static List<WikiPage> findByFormat(String format, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns an ordered range of all the wiki pages where format = ?.

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

      Parameters:
      format - the format
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching wiki pages
    • findByFormat

      public static List<WikiPage> findByFormat(String format, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the wiki pages where format = ?.

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

      Parameters:
      format - the format
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (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 wiki pages
    • findByFormat_First

      public static WikiPage findByFormat_First(String format, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the first wiki page in the ordered set where format = ?.
      Parameters:
      format - the format
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching wiki page
      Throws:
      NoSuchPageException - if a matching wiki page could not be found
      NoSuchPageException
    • fetchByFormat_First

      public static WikiPage fetchByFormat_First(String format, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns the first wiki page in the ordered set where format = ?.
      Parameters:
      format - the format
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching wiki page, or null if a matching wiki page could not be found
    • findByFormat_Last

      public static WikiPage findByFormat_Last(String format, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the last wiki page in the ordered set where format = ?.
      Parameters:
      format - the format
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching wiki page
      Throws:
      NoSuchPageException - if a matching wiki page could not be found
      NoSuchPageException
    • fetchByFormat_Last

      public static WikiPage fetchByFormat_Last(String format, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns the last wiki page in the ordered set where format = ?.
      Parameters:
      format - the format
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching wiki page, or null if a matching wiki page could not be found
    • findByFormat_PrevAndNext

      public static WikiPage[] findByFormat_PrevAndNext(long pageId, String format, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the wiki pages before and after the current wiki page in the ordered set where format = ?.
      Parameters:
      pageId - the primary key of the current wiki page
      format - the format
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next wiki page
      Throws:
      NoSuchPageException - if a wiki page with the primary key could not be found
      NoSuchPageException
    • removeByFormat

      public static void removeByFormat(String format)
      Removes all the wiki pages where format = ? from the database.
      Parameters:
      format - the format
    • countByFormat

      public static int countByFormat(String format)
      Returns the number of wiki pages where format = ?.
      Parameters:
      format - the format
      Returns:
      the number of matching wiki pages
    • findByR_N

      public static List<WikiPage> findByR_N(long resourcePrimKey, long nodeId)
      Returns all the wiki pages where resourcePrimKey = ? and nodeId = ?.
      Parameters:
      resourcePrimKey - the resource prim key
      nodeId - the node ID
      Returns:
      the matching wiki pages
    • findByR_N

      public static List<WikiPage> findByR_N(long resourcePrimKey, long nodeId, int start, int end)
      Returns a range of all the wiki pages where resourcePrimKey = ? and nodeId = ?.

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

      Parameters:
      resourcePrimKey - the resource prim key
      nodeId - the node ID
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (not inclusive)
      Returns:
      the range of matching wiki pages
    • findByR_N

      public static List<WikiPage> findByR_N(long resourcePrimKey, long nodeId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns an ordered range of all the wiki pages where resourcePrimKey = ? and nodeId = ?.

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

      Parameters:
      resourcePrimKey - the resource prim key
      nodeId - the node ID
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching wiki pages
    • findByR_N

      public static List<WikiPage> findByR_N(long resourcePrimKey, long nodeId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the wiki pages where resourcePrimKey = ? and nodeId = ?.

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

      Parameters:
      resourcePrimKey - the resource prim key
      nodeId - the node ID
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (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 wiki pages
    • findByR_N_First

      public static WikiPage findByR_N_First(long resourcePrimKey, long nodeId, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the first wiki page in the ordered set where resourcePrimKey = ? and nodeId = ?.
      Parameters:
      resourcePrimKey - the resource prim key
      nodeId - the node ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching wiki page
      Throws:
      NoSuchPageException - if a matching wiki page could not be found
      NoSuchPageException
    • fetchByR_N_First

      public static WikiPage fetchByR_N_First(long resourcePrimKey, long nodeId, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns the first wiki page in the ordered set where resourcePrimKey = ? and nodeId = ?.
      Parameters:
      resourcePrimKey - the resource prim key
      nodeId - the node ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching wiki page, or null if a matching wiki page could not be found
    • findByR_N_Last

      public static WikiPage findByR_N_Last(long resourcePrimKey, long nodeId, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the last wiki page in the ordered set where resourcePrimKey = ? and nodeId = ?.
      Parameters:
      resourcePrimKey - the resource prim key
      nodeId - the node ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching wiki page
      Throws:
      NoSuchPageException - if a matching wiki page could not be found
      NoSuchPageException
    • fetchByR_N_Last

      public static WikiPage fetchByR_N_Last(long resourcePrimKey, long nodeId, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns the last wiki page in the ordered set where resourcePrimKey = ? and nodeId = ?.
      Parameters:
      resourcePrimKey - the resource prim key
      nodeId - the node ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching wiki page, or null if a matching wiki page could not be found
    • findByR_N_PrevAndNext

      public static WikiPage[] findByR_N_PrevAndNext(long pageId, long resourcePrimKey, long nodeId, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the wiki pages before and after the current wiki page in the ordered set where resourcePrimKey = ? and nodeId = ?.
      Parameters:
      pageId - the primary key of the current wiki page
      resourcePrimKey - the resource prim key
      nodeId - the node ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next wiki page
      Throws:
      NoSuchPageException - if a wiki page with the primary key could not be found
      NoSuchPageException
    • removeByR_N

      public static void removeByR_N(long resourcePrimKey, long nodeId)
      Removes all the wiki pages where resourcePrimKey = ? and nodeId = ? from the database.
      Parameters:
      resourcePrimKey - the resource prim key
      nodeId - the node ID
    • countByR_N

      public static int countByR_N(long resourcePrimKey, long nodeId)
      Returns the number of wiki pages where resourcePrimKey = ? and nodeId = ?.
      Parameters:
      resourcePrimKey - the resource prim key
      nodeId - the node ID
      Returns:
      the number of matching wiki pages
    • findByR_S

      public static List<WikiPage> findByR_S(long resourcePrimKey, int status)
      Returns all the wiki pages where resourcePrimKey = ? and status = ?.
      Parameters:
      resourcePrimKey - the resource prim key
      status - the status
      Returns:
      the matching wiki pages
    • findByR_S

      public static List<WikiPage> findByR_S(long resourcePrimKey, int status, int start, int end)
      Returns a range of all the wiki pages where resourcePrimKey = ? 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 WikiPageModelImpl.

      Parameters:
      resourcePrimKey - the resource prim key
      status - the status
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (not inclusive)
      Returns:
      the range of matching wiki pages
    • findByR_S

      public static List<WikiPage> findByR_S(long resourcePrimKey, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns an ordered range of all the wiki pages where resourcePrimKey = ? 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 WikiPageModelImpl.

      Parameters:
      resourcePrimKey - the resource prim key
      status - the status
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching wiki pages
    • findByR_S

      public static List<WikiPage> findByR_S(long resourcePrimKey, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the wiki pages where resourcePrimKey = ? 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 WikiPageModelImpl.

      Parameters:
      resourcePrimKey - the resource prim key
      status - the status
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (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 wiki pages
    • findByR_S_First

      public static WikiPage findByR_S_First(long resourcePrimKey, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the first wiki page in the ordered set where resourcePrimKey = ? and status = ?.
      Parameters:
      resourcePrimKey - the resource prim key
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching wiki page
      Throws:
      NoSuchPageException - if a matching wiki page could not be found
      NoSuchPageException
    • fetchByR_S_First

      public static WikiPage fetchByR_S_First(long resourcePrimKey, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns the first wiki page in the ordered set where resourcePrimKey = ? and status = ?.
      Parameters:
      resourcePrimKey - the resource prim key
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching wiki page, or null if a matching wiki page could not be found
    • findByR_S_Last

      public static WikiPage findByR_S_Last(long resourcePrimKey, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the last wiki page in the ordered set where resourcePrimKey = ? and status = ?.
      Parameters:
      resourcePrimKey - the resource prim key
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching wiki page
      Throws:
      NoSuchPageException - if a matching wiki page could not be found
      NoSuchPageException
    • fetchByR_S_Last

      public static WikiPage fetchByR_S_Last(long resourcePrimKey, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns the last wiki page in the ordered set where resourcePrimKey = ? and status = ?.
      Parameters:
      resourcePrimKey - the resource prim key
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching wiki page, or null if a matching wiki page could not be found
    • findByR_S_PrevAndNext

      public static WikiPage[] findByR_S_PrevAndNext(long pageId, long resourcePrimKey, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the wiki pages before and after the current wiki page in the ordered set where resourcePrimKey = ? and status = ?.
      Parameters:
      pageId - the primary key of the current wiki page
      resourcePrimKey - the resource prim key
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next wiki page
      Throws:
      NoSuchPageException - if a wiki page with the primary key could not be found
      NoSuchPageException
    • removeByR_S

      public static void removeByR_S(long resourcePrimKey, int status)
      Removes all the wiki pages where resourcePrimKey = ? and status = ? from the database.
      Parameters:
      resourcePrimKey - the resource prim key
      status - the status
    • countByR_S

      public static int countByR_S(long resourcePrimKey, int status)
      Returns the number of wiki pages where resourcePrimKey = ? and status = ?.
      Parameters:
      resourcePrimKey - the resource prim key
      status - the status
      Returns:
      the number of matching wiki pages
    • findByG_ERC

      public static List<WikiPage> findByG_ERC(long groupId, String externalReferenceCode)
      Returns all the wiki pages where groupId = ? and externalReferenceCode = ?.
      Parameters:
      groupId - the group ID
      externalReferenceCode - the external reference code
      Returns:
      the matching wiki pages
    • findByG_ERC

      public static List<WikiPage> findByG_ERC(long groupId, String externalReferenceCode, int start, int end)
      Returns a range of all the wiki pages where groupId = ? and externalReferenceCode = ?.

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

      Parameters:
      groupId - the group ID
      externalReferenceCode - the external reference code
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (not inclusive)
      Returns:
      the range of matching wiki pages
    • findByG_ERC

      public static List<WikiPage> findByG_ERC(long groupId, String externalReferenceCode, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns an ordered range of all the wiki pages where groupId = ? and externalReferenceCode = ?.

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

      Parameters:
      groupId - the group ID
      externalReferenceCode - the external reference code
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching wiki pages
    • findByG_ERC

      public static List<WikiPage> findByG_ERC(long groupId, String externalReferenceCode, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the wiki pages where groupId = ? and externalReferenceCode = ?.

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

      Parameters:
      groupId - the group ID
      externalReferenceCode - the external reference code
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (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 wiki pages
    • findByG_ERC_First

      public static WikiPage findByG_ERC_First(long groupId, String externalReferenceCode, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the first wiki page in the ordered set where groupId = ? and externalReferenceCode = ?.
      Parameters:
      groupId - the group ID
      externalReferenceCode - the external reference code
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching wiki page
      Throws:
      NoSuchPageException - if a matching wiki page could not be found
      NoSuchPageException
    • fetchByG_ERC_First

      public static WikiPage fetchByG_ERC_First(long groupId, String externalReferenceCode, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns the first wiki page in the ordered set where groupId = ? and externalReferenceCode = ?.
      Parameters:
      groupId - the group ID
      externalReferenceCode - the external reference code
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching wiki page, or null if a matching wiki page could not be found
    • findByG_ERC_Last

      public static WikiPage findByG_ERC_Last(long groupId, String externalReferenceCode, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the last wiki page in the ordered set where groupId = ? and externalReferenceCode = ?.
      Parameters:
      groupId - the group ID
      externalReferenceCode - the external reference code
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching wiki page
      Throws:
      NoSuchPageException - if a matching wiki page could not be found
      NoSuchPageException
    • fetchByG_ERC_Last

      public static WikiPage fetchByG_ERC_Last(long groupId, String externalReferenceCode, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns the last wiki page in the ordered set where groupId = ? and externalReferenceCode = ?.
      Parameters:
      groupId - the group ID
      externalReferenceCode - the external reference code
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching wiki page, or null if a matching wiki page could not be found
    • findByG_ERC_PrevAndNext

      public static WikiPage[] findByG_ERC_PrevAndNext(long pageId, long groupId, String externalReferenceCode, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the wiki pages before and after the current wiki page in the ordered set where groupId = ? and externalReferenceCode = ?.
      Parameters:
      pageId - the primary key of the current wiki page
      groupId - the group ID
      externalReferenceCode - the external reference code
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next wiki page
      Throws:
      NoSuchPageException - if a wiki page with the primary key could not be found
      NoSuchPageException
    • filterFindByG_ERC

      public static List<WikiPage> filterFindByG_ERC(long groupId, String externalReferenceCode)
      Returns all the wiki pages that the user has permission to view where groupId = ? and externalReferenceCode = ?.
      Parameters:
      groupId - the group ID
      externalReferenceCode - the external reference code
      Returns:
      the matching wiki pages that the user has permission to view
    • filterFindByG_ERC

      public static List<WikiPage> filterFindByG_ERC(long groupId, String externalReferenceCode, int start, int end)
      Returns a range of all the wiki pages that the user has permission to view where groupId = ? and externalReferenceCode = ?.

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

      Parameters:
      groupId - the group ID
      externalReferenceCode - the external reference code
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (not inclusive)
      Returns:
      the range of matching wiki pages that the user has permission to view
    • filterFindByG_ERC

      public static List<WikiPage> filterFindByG_ERC(long groupId, String externalReferenceCode, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns an ordered range of all the wiki pages that the user has permissions to view where groupId = ? and externalReferenceCode = ?.

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

      Parameters:
      groupId - the group ID
      externalReferenceCode - the external reference code
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching wiki pages that the user has permission to view
    • filterFindByG_ERC_PrevAndNext

      public static WikiPage[] filterFindByG_ERC_PrevAndNext(long pageId, long groupId, String externalReferenceCode, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the wiki pages before and after the current wiki page in the ordered set of wiki pages that the user has permission to view where groupId = ? and externalReferenceCode = ?.
      Parameters:
      pageId - the primary key of the current wiki page
      groupId - the group ID
      externalReferenceCode - the external reference code
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next wiki page
      Throws:
      NoSuchPageException - if a wiki page with the primary key could not be found
      NoSuchPageException
    • removeByG_ERC

      public static void removeByG_ERC(long groupId, String externalReferenceCode)
      Removes all the wiki pages where groupId = ? and externalReferenceCode = ? from the database.
      Parameters:
      groupId - the group ID
      externalReferenceCode - the external reference code
    • countByG_ERC

      public static int countByG_ERC(long groupId, String externalReferenceCode)
      Returns the number of wiki pages where groupId = ? and externalReferenceCode = ?.
      Parameters:
      groupId - the group ID
      externalReferenceCode - the external reference code
      Returns:
      the number of matching wiki pages
    • filterCountByG_ERC

      public static int filterCountByG_ERC(long groupId, String externalReferenceCode)
      Returns the number of wiki pages that the user has permission to view where groupId = ? and externalReferenceCode = ?.
      Parameters:
      groupId - the group ID
      externalReferenceCode - the external reference code
      Returns:
      the number of matching wiki pages that the user has permission to view
    • findByN_T

      public static List<WikiPage> findByN_T(long nodeId, String title)
      Returns all the wiki pages where nodeId = ? and title = ?.
      Parameters:
      nodeId - the node ID
      title - the title
      Returns:
      the matching wiki pages
    • findByN_T

      public static List<WikiPage> findByN_T(long nodeId, String title, int start, int end)
      Returns a range of all the wiki pages where nodeId = ? and title = ?.

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

      Parameters:
      nodeId - the node ID
      title - the title
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (not inclusive)
      Returns:
      the range of matching wiki pages
    • findByN_T

      public static List<WikiPage> findByN_T(long nodeId, String title, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns an ordered range of all the wiki pages where nodeId = ? and title = ?.

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

      Parameters:
      nodeId - the node ID
      title - the title
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching wiki pages
    • findByN_T

      public static List<WikiPage> findByN_T(long nodeId, String title, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the wiki pages where nodeId = ? and title = ?.

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

      Parameters:
      nodeId - the node ID
      title - the title
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (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 wiki pages
    • findByN_T_First

      public static WikiPage findByN_T_First(long nodeId, String title, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the first wiki page in the ordered set where nodeId = ? and title = ?.
      Parameters:
      nodeId - the node ID
      title - the title
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching wiki page
      Throws:
      NoSuchPageException - if a matching wiki page could not be found
      NoSuchPageException
    • fetchByN_T_First

      public static WikiPage fetchByN_T_First(long nodeId, String title, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns the first wiki page in the ordered set where nodeId = ? and title = ?.
      Parameters:
      nodeId - the node ID
      title - the title
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching wiki page, or null if a matching wiki page could not be found
    • findByN_T_Last

      public static WikiPage findByN_T_Last(long nodeId, String title, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the last wiki page in the ordered set where nodeId = ? and title = ?.
      Parameters:
      nodeId - the node ID
      title - the title
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching wiki page
      Throws:
      NoSuchPageException - if a matching wiki page could not be found
      NoSuchPageException
    • fetchByN_T_Last

      public static WikiPage fetchByN_T_Last(long nodeId, String title, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns the last wiki page in the ordered set where nodeId = ? and title = ?.
      Parameters:
      nodeId - the node ID
      title - the title
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching wiki page, or null if a matching wiki page could not be found
    • findByN_T_PrevAndNext

      public static WikiPage[] findByN_T_PrevAndNext(long pageId, long nodeId, String title, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the wiki pages before and after the current wiki page in the ordered set where nodeId = ? and title = ?.
      Parameters:
      pageId - the primary key of the current wiki page
      nodeId - the node ID
      title - the title
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next wiki page
      Throws:
      NoSuchPageException - if a wiki page with the primary key could not be found
      NoSuchPageException
    • removeByN_T

      public static void removeByN_T(long nodeId, String title)
      Removes all the wiki pages where nodeId = ? and title = ? from the database.
      Parameters:
      nodeId - the node ID
      title - the title
    • countByN_T

      public static int countByN_T(long nodeId, String title)
      Returns the number of wiki pages where nodeId = ? and title = ?.
      Parameters:
      nodeId - the node ID
      title - the title
      Returns:
      the number of matching wiki pages
    • findByN_H

      public static List<WikiPage> findByN_H(long nodeId, boolean head)
      Returns all the wiki pages where nodeId = ? and head = ?.
      Parameters:
      nodeId - the node ID
      head - the head
      Returns:
      the matching wiki pages
    • findByN_H

      public static List<WikiPage> findByN_H(long nodeId, boolean head, int start, int end)
      Returns a range of all the wiki pages where nodeId = ? and head = ?.

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

      Parameters:
      nodeId - the node ID
      head - the head
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (not inclusive)
      Returns:
      the range of matching wiki pages
    • findByN_H

      public static List<WikiPage> findByN_H(long nodeId, boolean head, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns an ordered range of all the wiki pages where nodeId = ? and head = ?.

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

      Parameters:
      nodeId - the node ID
      head - the head
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching wiki pages
    • findByN_H

      public static List<WikiPage> findByN_H(long nodeId, boolean head, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the wiki pages where nodeId = ? and head = ?.

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

      Parameters:
      nodeId - the node ID
      head - the head
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (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 wiki pages
    • findByN_H_First

      public static WikiPage findByN_H_First(long nodeId, boolean head, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the first wiki page in the ordered set where nodeId = ? and head = ?.
      Parameters:
      nodeId - the node ID
      head - the head
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching wiki page
      Throws:
      NoSuchPageException - if a matching wiki page could not be found
      NoSuchPageException
    • fetchByN_H_First

      public static WikiPage fetchByN_H_First(long nodeId, boolean head, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns the first wiki page in the ordered set where nodeId = ? and head = ?.
      Parameters:
      nodeId - the node ID
      head - the head
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching wiki page, or null if a matching wiki page could not be found
    • findByN_H_Last

      public static WikiPage findByN_H_Last(long nodeId, boolean head, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the last wiki page in the ordered set where nodeId = ? and head = ?.
      Parameters:
      nodeId - the node ID
      head - the head
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching wiki page
      Throws:
      NoSuchPageException - if a matching wiki page could not be found
      NoSuchPageException
    • fetchByN_H_Last

      public static WikiPage fetchByN_H_Last(long nodeId, boolean head, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns the last wiki page in the ordered set where nodeId = ? and head = ?.
      Parameters:
      nodeId - the node ID
      head - the head
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching wiki page, or null if a matching wiki page could not be found
    • findByN_H_PrevAndNext

      public static WikiPage[] findByN_H_PrevAndNext(long pageId, long nodeId, boolean head, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the wiki pages before and after the current wiki page in the ordered set where nodeId = ? and head = ?.
      Parameters:
      pageId - the primary key of the current wiki page
      nodeId - the node ID
      head - the head
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next wiki page
      Throws:
      NoSuchPageException - if a wiki page with the primary key could not be found
      NoSuchPageException
    • removeByN_H

      public static void removeByN_H(long nodeId, boolean head)
      Removes all the wiki pages where nodeId = ? and head = ? from the database.
      Parameters:
      nodeId - the node ID
      head - the head
    • countByN_H

      public static int countByN_H(long nodeId, boolean head)
      Returns the number of wiki pages where nodeId = ? and head = ?.
      Parameters:
      nodeId - the node ID
      head - the head
      Returns:
      the number of matching wiki pages
    • findByN_P

      public static List<WikiPage> findByN_P(long nodeId, String parentTitle)
      Returns all the wiki pages where nodeId = ? and parentTitle = ?.
      Parameters:
      nodeId - the node ID
      parentTitle - the parent title
      Returns:
      the matching wiki pages
    • findByN_P

      public static List<WikiPage> findByN_P(long nodeId, String parentTitle, int start, int end)
      Returns a range of all the wiki pages where nodeId = ? and parentTitle = ?.

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

      Parameters:
      nodeId - the node ID
      parentTitle - the parent title
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (not inclusive)
      Returns:
      the range of matching wiki pages
    • findByN_P

      public static List<WikiPage> findByN_P(long nodeId, String parentTitle, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns an ordered range of all the wiki pages where nodeId = ? and parentTitle = ?.

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

      Parameters:
      nodeId - the node ID
      parentTitle - the parent title
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching wiki pages
    • findByN_P

      public static List<WikiPage> findByN_P(long nodeId, String parentTitle, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the wiki pages where nodeId = ? and parentTitle = ?.

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

      Parameters:
      nodeId - the node ID
      parentTitle - the parent title
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (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 wiki pages
    • findByN_P_First

      public static WikiPage findByN_P_First(long nodeId, String parentTitle, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the first wiki page in the ordered set where nodeId = ? and parentTitle = ?.
      Parameters:
      nodeId - the node ID
      parentTitle - the parent title
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching wiki page
      Throws:
      NoSuchPageException - if a matching wiki page could not be found
      NoSuchPageException
    • fetchByN_P_First

      public static WikiPage fetchByN_P_First(long nodeId, String parentTitle, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns the first wiki page in the ordered set where nodeId = ? and parentTitle = ?.
      Parameters:
      nodeId - the node ID
      parentTitle - the parent title
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching wiki page, or null if a matching wiki page could not be found
    • findByN_P_Last

      public static WikiPage findByN_P_Last(long nodeId, String parentTitle, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the last wiki page in the ordered set where nodeId = ? and parentTitle = ?.
      Parameters:
      nodeId - the node ID
      parentTitle - the parent title
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching wiki page
      Throws:
      NoSuchPageException - if a matching wiki page could not be found
      NoSuchPageException
    • fetchByN_P_Last

      public static WikiPage fetchByN_P_Last(long nodeId, String parentTitle, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns the last wiki page in the ordered set where nodeId = ? and parentTitle = ?.
      Parameters:
      nodeId - the node ID
      parentTitle - the parent title
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching wiki page, or null if a matching wiki page could not be found
    • findByN_P_PrevAndNext

      public static WikiPage[] findByN_P_PrevAndNext(long pageId, long nodeId, String parentTitle, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the wiki pages before and after the current wiki page in the ordered set where nodeId = ? and parentTitle = ?.
      Parameters:
      pageId - the primary key of the current wiki page
      nodeId - the node ID
      parentTitle - the parent title
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next wiki page
      Throws:
      NoSuchPageException - if a wiki page with the primary key could not be found
      NoSuchPageException
    • removeByN_P

      public static void removeByN_P(long nodeId, String parentTitle)
      Removes all the wiki pages where nodeId = ? and parentTitle = ? from the database.
      Parameters:
      nodeId - the node ID
      parentTitle - the parent title
    • countByN_P

      public static int countByN_P(long nodeId, String parentTitle)
      Returns the number of wiki pages where nodeId = ? and parentTitle = ?.
      Parameters:
      nodeId - the node ID
      parentTitle - the parent title
      Returns:
      the number of matching wiki pages
    • findByN_R

      public static List<WikiPage> findByN_R(long nodeId, String redirectTitle)
      Returns all the wiki pages where nodeId = ? and redirectTitle = ?.
      Parameters:
      nodeId - the node ID
      redirectTitle - the redirect title
      Returns:
      the matching wiki pages
    • findByN_R

      public static List<WikiPage> findByN_R(long nodeId, String redirectTitle, int start, int end)
      Returns a range of all the wiki pages where nodeId = ? and redirectTitle = ?.

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

      Parameters:
      nodeId - the node ID
      redirectTitle - the redirect title
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (not inclusive)
      Returns:
      the range of matching wiki pages
    • findByN_R

      public static List<WikiPage> findByN_R(long nodeId, String redirectTitle, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns an ordered range of all the wiki pages where nodeId = ? and redirectTitle = ?.

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

      Parameters:
      nodeId - the node ID
      redirectTitle - the redirect title
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching wiki pages
    • findByN_R

      public static List<WikiPage> findByN_R(long nodeId, String redirectTitle, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the wiki pages where nodeId = ? and redirectTitle = ?.

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

      Parameters:
      nodeId - the node ID
      redirectTitle - the redirect title
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (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 wiki pages
    • findByN_R_First

      public static WikiPage findByN_R_First(long nodeId, String redirectTitle, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the first wiki page in the ordered set where nodeId = ? and redirectTitle = ?.
      Parameters:
      nodeId - the node ID
      redirectTitle - the redirect title
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching wiki page
      Throws:
      NoSuchPageException - if a matching wiki page could not be found
      NoSuchPageException
    • fetchByN_R_First

      public static WikiPage fetchByN_R_First(long nodeId, String redirectTitle, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns the first wiki page in the ordered set where nodeId = ? and redirectTitle = ?.
      Parameters:
      nodeId - the node ID
      redirectTitle - the redirect title
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching wiki page, or null if a matching wiki page could not be found
    • findByN_R_Last

      public static WikiPage findByN_R_Last(long nodeId, String redirectTitle, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the last wiki page in the ordered set where nodeId = ? and redirectTitle = ?.
      Parameters:
      nodeId - the node ID
      redirectTitle - the redirect title
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching wiki page
      Throws:
      NoSuchPageException - if a matching wiki page could not be found
      NoSuchPageException
    • fetchByN_R_Last

      public static WikiPage fetchByN_R_Last(long nodeId, String redirectTitle, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns the last wiki page in the ordered set where nodeId = ? and redirectTitle = ?.
      Parameters:
      nodeId - the node ID
      redirectTitle - the redirect title
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching wiki page, or null if a matching wiki page could not be found
    • findByN_R_PrevAndNext

      public static WikiPage[] findByN_R_PrevAndNext(long pageId, long nodeId, String redirectTitle, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the wiki pages before and after the current wiki page in the ordered set where nodeId = ? and redirectTitle = ?.
      Parameters:
      pageId - the primary key of the current wiki page
      nodeId - the node ID
      redirectTitle - the redirect title
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next wiki page
      Throws:
      NoSuchPageException - if a wiki page with the primary key could not be found
      NoSuchPageException
    • removeByN_R

      public static void removeByN_R(long nodeId, String redirectTitle)
      Removes all the wiki pages where nodeId = ? and redirectTitle = ? from the database.
      Parameters:
      nodeId - the node ID
      redirectTitle - the redirect title
    • countByN_R

      public static int countByN_R(long nodeId, String redirectTitle)
      Returns the number of wiki pages where nodeId = ? and redirectTitle = ?.
      Parameters:
      nodeId - the node ID
      redirectTitle - the redirect title
      Returns:
      the number of matching wiki pages
    • findByN_S

      public static List<WikiPage> findByN_S(long nodeId, int status)
      Returns all the wiki pages where nodeId = ? and status = ?.
      Parameters:
      nodeId - the node ID
      status - the status
      Returns:
      the matching wiki pages
    • findByN_S

      public static List<WikiPage> findByN_S(long nodeId, int status, int start, int end)
      Returns a range of all the wiki pages where nodeId = ? 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 WikiPageModelImpl.

      Parameters:
      nodeId - the node ID
      status - the status
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (not inclusive)
      Returns:
      the range of matching wiki pages
    • findByN_S

      public static List<WikiPage> findByN_S(long nodeId, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns an ordered range of all the wiki pages where nodeId = ? 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 WikiPageModelImpl.

      Parameters:
      nodeId - the node ID
      status - the status
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching wiki pages
    • findByN_S

      public static List<WikiPage> findByN_S(long nodeId, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the wiki pages where nodeId = ? 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 WikiPageModelImpl.

      Parameters:
      nodeId - the node ID
      status - the status
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (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 wiki pages
    • findByN_S_First

      public static WikiPage findByN_S_First(long nodeId, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the first wiki page in the ordered set where nodeId = ? and status = ?.
      Parameters:
      nodeId - the node ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching wiki page
      Throws:
      NoSuchPageException - if a matching wiki page could not be found
      NoSuchPageException
    • fetchByN_S_First

      public static WikiPage fetchByN_S_First(long nodeId, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns the first wiki page in the ordered set where nodeId = ? and status = ?.
      Parameters:
      nodeId - the node ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching wiki page, or null if a matching wiki page could not be found
    • findByN_S_Last

      public static WikiPage findByN_S_Last(long nodeId, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the last wiki page in the ordered set where nodeId = ? and status = ?.
      Parameters:
      nodeId - the node ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching wiki page
      Throws:
      NoSuchPageException - if a matching wiki page could not be found
      NoSuchPageException
    • fetchByN_S_Last

      public static WikiPage fetchByN_S_Last(long nodeId, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns the last wiki page in the ordered set where nodeId = ? and status = ?.
      Parameters:
      nodeId - the node ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching wiki page, or null if a matching wiki page could not be found
    • findByN_S_PrevAndNext

      public static WikiPage[] findByN_S_PrevAndNext(long pageId, long nodeId, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the wiki pages before and after the current wiki page in the ordered set where nodeId = ? and status = ?.
      Parameters:
      pageId - the primary key of the current wiki page
      nodeId - the node ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next wiki page
      Throws:
      NoSuchPageException - if a wiki page with the primary key could not be found
      NoSuchPageException
    • removeByN_S

      public static void removeByN_S(long nodeId, int status)
      Removes all the wiki pages where nodeId = ? and status = ? from the database.
      Parameters:
      nodeId - the node ID
      status - the status
    • countByN_S

      public static int countByN_S(long nodeId, int status)
      Returns the number of wiki pages where nodeId = ? and status = ?.
      Parameters:
      nodeId - the node ID
      status - the status
      Returns:
      the number of matching wiki pages
    • findByR_N_V

      public static WikiPage findByR_N_V(long resourcePrimKey, long nodeId, double version) throws NoSuchPageException
      Returns the wiki page where resourcePrimKey = ? and nodeId = ? and version = ? or throws a NoSuchPageException if it could not be found.
      Parameters:
      resourcePrimKey - the resource prim key
      nodeId - the node ID
      version - the version
      Returns:
      the matching wiki page
      Throws:
      NoSuchPageException - if a matching wiki page could not be found
      NoSuchPageException
    • fetchByR_N_V

      public static WikiPage fetchByR_N_V(long resourcePrimKey, long nodeId, double version)
      Returns the wiki page where resourcePrimKey = ? and nodeId = ? and version = ? or returns null if it could not be found. Uses the finder cache.
      Parameters:
      resourcePrimKey - the resource prim key
      nodeId - the node ID
      version - the version
      Returns:
      the matching wiki page, or null if a matching wiki page could not be found
    • fetchByR_N_V

      public static WikiPage fetchByR_N_V(long resourcePrimKey, long nodeId, double version, boolean useFinderCache)
      Returns the wiki page where resourcePrimKey = ? and nodeId = ? and version = ? or returns null if it could not be found, optionally using the finder cache.
      Parameters:
      resourcePrimKey - the resource prim key
      nodeId - the node ID
      version - the version
      useFinderCache - whether to use the finder cache
      Returns:
      the matching wiki page, or null if a matching wiki page could not be found
    • removeByR_N_V

      public static WikiPage removeByR_N_V(long resourcePrimKey, long nodeId, double version) throws NoSuchPageException
      Removes the wiki page where resourcePrimKey = ? and nodeId = ? and version = ? from the database.
      Parameters:
      resourcePrimKey - the resource prim key
      nodeId - the node ID
      version - the version
      Returns:
      the wiki page that was removed
      Throws:
      NoSuchPageException
    • countByR_N_V

      public static int countByR_N_V(long resourcePrimKey, long nodeId, double version)
      Returns the number of wiki pages where resourcePrimKey = ? and nodeId = ? and version = ?.
      Parameters:
      resourcePrimKey - the resource prim key
      nodeId - the node ID
      version - the version
      Returns:
      the number of matching wiki pages
    • findByR_N_H

      public static List<WikiPage> findByR_N_H(long resourcePrimKey, long nodeId, boolean head)
      Returns all the wiki pages where resourcePrimKey = ? and nodeId = ? and head = ?.
      Parameters:
      resourcePrimKey - the resource prim key
      nodeId - the node ID
      head - the head
      Returns:
      the matching wiki pages
    • findByR_N_H

      public static List<WikiPage> findByR_N_H(long resourcePrimKey, long nodeId, boolean head, int start, int end)
      Returns a range of all the wiki pages where resourcePrimKey = ? and nodeId = ? and head = ?.

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

      Parameters:
      resourcePrimKey - the resource prim key
      nodeId - the node ID
      head - the head
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (not inclusive)
      Returns:
      the range of matching wiki pages
    • findByR_N_H

      public static List<WikiPage> findByR_N_H(long resourcePrimKey, long nodeId, boolean head, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns an ordered range of all the wiki pages where resourcePrimKey = ? and nodeId = ? and head = ?.

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

      Parameters:
      resourcePrimKey - the resource prim key
      nodeId - the node ID
      head - the head
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching wiki pages
    • findByR_N_H

      public static List<WikiPage> findByR_N_H(long resourcePrimKey, long nodeId, boolean head, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the wiki pages where resourcePrimKey = ? and nodeId = ? and head = ?.

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

      Parameters:
      resourcePrimKey - the resource prim key
      nodeId - the node ID
      head - the head
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (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 wiki pages
    • findByR_N_H_First

      public static WikiPage findByR_N_H_First(long resourcePrimKey, long nodeId, boolean head, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the first wiki page in the ordered set where resourcePrimKey = ? and nodeId = ? and head = ?.
      Parameters:
      resourcePrimKey - the resource prim key
      nodeId - the node ID
      head - the head
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching wiki page
      Throws:
      NoSuchPageException - if a matching wiki page could not be found
      NoSuchPageException
    • fetchByR_N_H_First

      public static WikiPage fetchByR_N_H_First(long resourcePrimKey, long nodeId, boolean head, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns the first wiki page in the ordered set where resourcePrimKey = ? and nodeId = ? and head = ?.
      Parameters:
      resourcePrimKey - the resource prim key
      nodeId - the node ID
      head - the head
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching wiki page, or null if a matching wiki page could not be found
    • findByR_N_H_Last

      public static WikiPage findByR_N_H_Last(long resourcePrimKey, long nodeId, boolean head, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the last wiki page in the ordered set where resourcePrimKey = ? and nodeId = ? and head = ?.
      Parameters:
      resourcePrimKey - the resource prim key
      nodeId - the node ID
      head - the head
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching wiki page
      Throws:
      NoSuchPageException - if a matching wiki page could not be found
      NoSuchPageException
    • fetchByR_N_H_Last

      public static WikiPage fetchByR_N_H_Last(long resourcePrimKey, long nodeId, boolean head, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns the last wiki page in the ordered set where resourcePrimKey = ? and nodeId = ? and head = ?.
      Parameters:
      resourcePrimKey - the resource prim key
      nodeId - the node ID
      head - the head
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching wiki page, or null if a matching wiki page could not be found
    • findByR_N_H_PrevAndNext

      public static WikiPage[] findByR_N_H_PrevAndNext(long pageId, long resourcePrimKey, long nodeId, boolean head, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the wiki pages before and after the current wiki page in the ordered set where resourcePrimKey = ? and nodeId = ? and head = ?.
      Parameters:
      pageId - the primary key of the current wiki page
      resourcePrimKey - the resource prim key
      nodeId - the node ID
      head - the head
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next wiki page
      Throws:
      NoSuchPageException - if a wiki page with the primary key could not be found
      NoSuchPageException
    • removeByR_N_H

      public static void removeByR_N_H(long resourcePrimKey, long nodeId, boolean head)
      Removes all the wiki pages where resourcePrimKey = ? and nodeId = ? and head = ? from the database.
      Parameters:
      resourcePrimKey - the resource prim key
      nodeId - the node ID
      head - the head
    • countByR_N_H

      public static int countByR_N_H(long resourcePrimKey, long nodeId, boolean head)
      Returns the number of wiki pages where resourcePrimKey = ? and nodeId = ? and head = ?.
      Parameters:
      resourcePrimKey - the resource prim key
      nodeId - the node ID
      head - the head
      Returns:
      the number of matching wiki pages
    • findByR_N_S

      public static List<WikiPage> findByR_N_S(long resourcePrimKey, long nodeId, int status)
      Returns all the wiki pages where resourcePrimKey = ? and nodeId = ? and status = ?.
      Parameters:
      resourcePrimKey - the resource prim key
      nodeId - the node ID
      status - the status
      Returns:
      the matching wiki pages
    • findByR_N_S

      public static List<WikiPage> findByR_N_S(long resourcePrimKey, long nodeId, int status, int start, int end)
      Returns a range of all the wiki pages where resourcePrimKey = ? and nodeId = ? 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 WikiPageModelImpl.

      Parameters:
      resourcePrimKey - the resource prim key
      nodeId - the node ID
      status - the status
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (not inclusive)
      Returns:
      the range of matching wiki pages
    • findByR_N_S

      public static List<WikiPage> findByR_N_S(long resourcePrimKey, long nodeId, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns an ordered range of all the wiki pages where resourcePrimKey = ? and nodeId = ? 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 WikiPageModelImpl.

      Parameters:
      resourcePrimKey - the resource prim key
      nodeId - the node ID
      status - the status
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching wiki pages
    • findByR_N_S

      public static List<WikiPage> findByR_N_S(long resourcePrimKey, long nodeId, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the wiki pages where resourcePrimKey = ? and nodeId = ? 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 WikiPageModelImpl.

      Parameters:
      resourcePrimKey - the resource prim key
      nodeId - the node ID
      status - the status
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (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 wiki pages
    • findByR_N_S_First

      public static WikiPage findByR_N_S_First(long resourcePrimKey, long nodeId, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the first wiki page in the ordered set where resourcePrimKey = ? and nodeId = ? and status = ?.
      Parameters:
      resourcePrimKey - the resource prim key
      nodeId - the node ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching wiki page
      Throws:
      NoSuchPageException - if a matching wiki page could not be found
      NoSuchPageException
    • fetchByR_N_S_First

      public static WikiPage fetchByR_N_S_First(long resourcePrimKey, long nodeId, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns the first wiki page in the ordered set where resourcePrimKey = ? and nodeId = ? and status = ?.
      Parameters:
      resourcePrimKey - the resource prim key
      nodeId - the node ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching wiki page, or null if a matching wiki page could not be found
    • findByR_N_S_Last

      public static WikiPage findByR_N_S_Last(long resourcePrimKey, long nodeId, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the last wiki page in the ordered set where resourcePrimKey = ? and nodeId = ? and status = ?.
      Parameters:
      resourcePrimKey - the resource prim key
      nodeId - the node ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching wiki page
      Throws:
      NoSuchPageException - if a matching wiki page could not be found
      NoSuchPageException
    • fetchByR_N_S_Last

      public static WikiPage fetchByR_N_S_Last(long resourcePrimKey, long nodeId, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns the last wiki page in the ordered set where resourcePrimKey = ? and nodeId = ? and status = ?.
      Parameters:
      resourcePrimKey - the resource prim key
      nodeId - the node ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching wiki page, or null if a matching wiki page could not be found
    • findByR_N_S_PrevAndNext

      public static WikiPage[] findByR_N_S_PrevAndNext(long pageId, long resourcePrimKey, long nodeId, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the wiki pages before and after the current wiki page in the ordered set where resourcePrimKey = ? and nodeId = ? and status = ?.
      Parameters:
      pageId - the primary key of the current wiki page
      resourcePrimKey - the resource prim key
      nodeId - the node ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next wiki page
      Throws:
      NoSuchPageException - if a wiki page with the primary key could not be found
      NoSuchPageException
    • removeByR_N_S

      public static void removeByR_N_S(long resourcePrimKey, long nodeId, int status)
      Removes all the wiki pages where resourcePrimKey = ? and nodeId = ? and status = ? from the database.
      Parameters:
      resourcePrimKey - the resource prim key
      nodeId - the node ID
      status - the status
    • countByR_N_S

      public static int countByR_N_S(long resourcePrimKey, long nodeId, int status)
      Returns the number of wiki pages where resourcePrimKey = ? and nodeId = ? and status = ?.
      Parameters:
      resourcePrimKey - the resource prim key
      nodeId - the node ID
      status - the status
      Returns:
      the number of matching wiki pages
    • findByG_ERC_V

      public static WikiPage findByG_ERC_V(long groupId, String externalReferenceCode, double version) throws NoSuchPageException
      Returns the wiki page where groupId = ? and externalReferenceCode = ? and version = ? or throws a NoSuchPageException if it could not be found.
      Parameters:
      groupId - the group ID
      externalReferenceCode - the external reference code
      version - the version
      Returns:
      the matching wiki page
      Throws:
      NoSuchPageException - if a matching wiki page could not be found
      NoSuchPageException
    • fetchByG_ERC_V

      public static WikiPage fetchByG_ERC_V(long groupId, String externalReferenceCode, double version)
      Returns the wiki page where groupId = ? and externalReferenceCode = ? and version = ? or returns null if it could not be found. Uses the finder cache.
      Parameters:
      groupId - the group ID
      externalReferenceCode - the external reference code
      version - the version
      Returns:
      the matching wiki page, or null if a matching wiki page could not be found
    • fetchByG_ERC_V

      public static WikiPage fetchByG_ERC_V(long groupId, String externalReferenceCode, double version, boolean useFinderCache)
      Returns the wiki page where groupId = ? and externalReferenceCode = ? and version = ? or returns null if it could not be found, optionally using the finder cache.
      Parameters:
      groupId - the group ID
      externalReferenceCode - the external reference code
      version - the version
      useFinderCache - whether to use the finder cache
      Returns:
      the matching wiki page, or null if a matching wiki page could not be found
    • removeByG_ERC_V

      public static WikiPage removeByG_ERC_V(long groupId, String externalReferenceCode, double version) throws NoSuchPageException
      Removes the wiki page where groupId = ? and externalReferenceCode = ? and version = ? from the database.
      Parameters:
      groupId - the group ID
      externalReferenceCode - the external reference code
      version - the version
      Returns:
      the wiki page that was removed
      Throws:
      NoSuchPageException
    • countByG_ERC_V

      public static int countByG_ERC_V(long groupId, String externalReferenceCode, double version)
      Returns the number of wiki pages where groupId = ? and externalReferenceCode = ? and version = ?.
      Parameters:
      groupId - the group ID
      externalReferenceCode - the external reference code
      version - the version
      Returns:
      the number of matching wiki pages
    • findByG_N_H

      public static List<WikiPage> findByG_N_H(long groupId, long nodeId, boolean head)
      Returns all the wiki pages where groupId = ? and nodeId = ? and head = ?.
      Parameters:
      groupId - the group ID
      nodeId - the node ID
      head - the head
      Returns:
      the matching wiki pages
    • findByG_N_H

      public static List<WikiPage> findByG_N_H(long groupId, long nodeId, boolean head, int start, int end)
      Returns a range of all the wiki pages where groupId = ? and nodeId = ? and head = ?.

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

      Parameters:
      groupId - the group ID
      nodeId - the node ID
      head - the head
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (not inclusive)
      Returns:
      the range of matching wiki pages
    • findByG_N_H

      public static List<WikiPage> findByG_N_H(long groupId, long nodeId, boolean head, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns an ordered range of all the wiki pages where groupId = ? and nodeId = ? and head = ?.

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

      Parameters:
      groupId - the group ID
      nodeId - the node ID
      head - the head
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching wiki pages
    • findByG_N_H

      public static List<WikiPage> findByG_N_H(long groupId, long nodeId, boolean head, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the wiki pages where groupId = ? and nodeId = ? and head = ?.

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

      Parameters:
      groupId - the group ID
      nodeId - the node ID
      head - the head
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (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 wiki pages
    • findByG_N_H_First

      public static WikiPage findByG_N_H_First(long groupId, long nodeId, boolean head, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the first wiki page in the ordered set where groupId = ? and nodeId = ? and head = ?.
      Parameters:
      groupId - the group ID
      nodeId - the node ID
      head - the head
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching wiki page
      Throws:
      NoSuchPageException - if a matching wiki page could not be found
      NoSuchPageException
    • fetchByG_N_H_First

      public static WikiPage fetchByG_N_H_First(long groupId, long nodeId, boolean head, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns the first wiki page in the ordered set where groupId = ? and nodeId = ? and head = ?.
      Parameters:
      groupId - the group ID
      nodeId - the node ID
      head - the head
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching wiki page, or null if a matching wiki page could not be found
    • findByG_N_H_Last

      public static WikiPage findByG_N_H_Last(long groupId, long nodeId, boolean head, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the last wiki page in the ordered set where groupId = ? and nodeId = ? and head = ?.
      Parameters:
      groupId - the group ID
      nodeId - the node ID
      head - the head
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching wiki page
      Throws:
      NoSuchPageException - if a matching wiki page could not be found
      NoSuchPageException
    • fetchByG_N_H_Last

      public static WikiPage fetchByG_N_H_Last(long groupId, long nodeId, boolean head, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns the last wiki page in the ordered set where groupId = ? and nodeId = ? and head = ?.
      Parameters:
      groupId - the group ID
      nodeId - the node ID
      head - the head
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching wiki page, or null if a matching wiki page could not be found
    • findByG_N_H_PrevAndNext

      public static WikiPage[] findByG_N_H_PrevAndNext(long pageId, long groupId, long nodeId, boolean head, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the wiki pages before and after the current wiki page in the ordered set where groupId = ? and nodeId = ? and head = ?.
      Parameters:
      pageId - the primary key of the current wiki page
      groupId - the group ID
      nodeId - the node ID
      head - the head
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next wiki page
      Throws:
      NoSuchPageException - if a wiki page with the primary key could not be found
      NoSuchPageException
    • filterFindByG_N_H

      public static List<WikiPage> filterFindByG_N_H(long groupId, long nodeId, boolean head)
      Returns all the wiki pages that the user has permission to view where groupId = ? and nodeId = ? and head = ?.
      Parameters:
      groupId - the group ID
      nodeId - the node ID
      head - the head
      Returns:
      the matching wiki pages that the user has permission to view
    • filterFindByG_N_H

      public static List<WikiPage> filterFindByG_N_H(long groupId, long nodeId, boolean head, int start, int end)
      Returns a range of all the wiki pages that the user has permission to view where groupId = ? and nodeId = ? and head = ?.

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

      Parameters:
      groupId - the group ID
      nodeId - the node ID
      head - the head
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (not inclusive)
      Returns:
      the range of matching wiki pages that the user has permission to view
    • filterFindByG_N_H

      public static List<WikiPage> filterFindByG_N_H(long groupId, long nodeId, boolean head, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns an ordered range of all the wiki pages that the user has permissions to view where groupId = ? and nodeId = ? and head = ?.

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

      Parameters:
      groupId - the group ID
      nodeId - the node ID
      head - the head
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching wiki pages that the user has permission to view
    • filterFindByG_N_H_PrevAndNext

      public static WikiPage[] filterFindByG_N_H_PrevAndNext(long pageId, long groupId, long nodeId, boolean head, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the wiki pages before and after the current wiki page in the ordered set of wiki pages that the user has permission to view where groupId = ? and nodeId = ? and head = ?.
      Parameters:
      pageId - the primary key of the current wiki page
      groupId - the group ID
      nodeId - the node ID
      head - the head
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next wiki page
      Throws:
      NoSuchPageException - if a wiki page with the primary key could not be found
      NoSuchPageException
    • removeByG_N_H

      public static void removeByG_N_H(long groupId, long nodeId, boolean head)
      Removes all the wiki pages where groupId = ? and nodeId = ? and head = ? from the database.
      Parameters:
      groupId - the group ID
      nodeId - the node ID
      head - the head
    • countByG_N_H

      public static int countByG_N_H(long groupId, long nodeId, boolean head)
      Returns the number of wiki pages where groupId = ? and nodeId = ? and head = ?.
      Parameters:
      groupId - the group ID
      nodeId - the node ID
      head - the head
      Returns:
      the number of matching wiki pages
    • filterCountByG_N_H

      public static int filterCountByG_N_H(long groupId, long nodeId, boolean head)
      Returns the number of wiki pages that the user has permission to view where groupId = ? and nodeId = ? and head = ?.
      Parameters:
      groupId - the group ID
      nodeId - the node ID
      head - the head
      Returns:
      the number of matching wiki pages that the user has permission to view
    • findByG_N_S

      public static List<WikiPage> findByG_N_S(long groupId, long nodeId, int status)
      Returns all the wiki pages where groupId = ? and nodeId = ? and status = ?.
      Parameters:
      groupId - the group ID
      nodeId - the node ID
      status - the status
      Returns:
      the matching wiki pages
    • findByG_N_S

      public static List<WikiPage> findByG_N_S(long groupId, long nodeId, int status, int start, int end)
      Returns a range of all the wiki pages where groupId = ? and nodeId = ? 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 WikiPageModelImpl.

      Parameters:
      groupId - the group ID
      nodeId - the node ID
      status - the status
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (not inclusive)
      Returns:
      the range of matching wiki pages
    • findByG_N_S

      public static List<WikiPage> findByG_N_S(long groupId, long nodeId, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns an ordered range of all the wiki pages where groupId = ? and nodeId = ? 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 WikiPageModelImpl.

      Parameters:
      groupId - the group ID
      nodeId - the node ID
      status - the status
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching wiki pages
    • findByG_N_S

      public static List<WikiPage> findByG_N_S(long groupId, long nodeId, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the wiki pages where groupId = ? and nodeId = ? 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 WikiPageModelImpl.

      Parameters:
      groupId - the group ID
      nodeId - the node ID
      status - the status
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (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 wiki pages
    • findByG_N_S_First

      public static WikiPage findByG_N_S_First(long groupId, long nodeId, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the first wiki page in the ordered set where groupId = ? and nodeId = ? and status = ?.
      Parameters:
      groupId - the group ID
      nodeId - the node ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching wiki page
      Throws:
      NoSuchPageException - if a matching wiki page could not be found
      NoSuchPageException
    • fetchByG_N_S_First

      public static WikiPage fetchByG_N_S_First(long groupId, long nodeId, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns the first wiki page in the ordered set where groupId = ? and nodeId = ? and status = ?.
      Parameters:
      groupId - the group ID
      nodeId - the node ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching wiki page, or null if a matching wiki page could not be found
    • findByG_N_S_Last

      public static WikiPage findByG_N_S_Last(long groupId, long nodeId, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the last wiki page in the ordered set where groupId = ? and nodeId = ? and status = ?.
      Parameters:
      groupId - the group ID
      nodeId - the node ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching wiki page
      Throws:
      NoSuchPageException - if a matching wiki page could not be found
      NoSuchPageException
    • fetchByG_N_S_Last

      public static WikiPage fetchByG_N_S_Last(long groupId, long nodeId, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns the last wiki page in the ordered set where groupId = ? and nodeId = ? and status = ?.
      Parameters:
      groupId - the group ID
      nodeId - the node ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching wiki page, or null if a matching wiki page could not be found
    • findByG_N_S_PrevAndNext

      public static WikiPage[] findByG_N_S_PrevAndNext(long pageId, long groupId, long nodeId, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the wiki pages before and after the current wiki page in the ordered set where groupId = ? and nodeId = ? and status = ?.
      Parameters:
      pageId - the primary key of the current wiki page
      groupId - the group ID
      nodeId - the node ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next wiki page
      Throws:
      NoSuchPageException - if a wiki page with the primary key could not be found
      NoSuchPageException
    • filterFindByG_N_S

      public static List<WikiPage> filterFindByG_N_S(long groupId, long nodeId, int status)
      Returns all the wiki pages that the user has permission to view where groupId = ? and nodeId = ? and status = ?.
      Parameters:
      groupId - the group ID
      nodeId - the node ID
      status - the status
      Returns:
      the matching wiki pages that the user has permission to view
    • filterFindByG_N_S

      public static List<WikiPage> filterFindByG_N_S(long groupId, long nodeId, int status, int start, int end)
      Returns a range of all the wiki pages that the user has permission to view where groupId = ? and nodeId = ? 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 WikiPageModelImpl.

      Parameters:
      groupId - the group ID
      nodeId - the node ID
      status - the status
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (not inclusive)
      Returns:
      the range of matching wiki pages that the user has permission to view
    • filterFindByG_N_S

      public static List<WikiPage> filterFindByG_N_S(long groupId, long nodeId, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns an ordered range of all the wiki pages that the user has permissions to view where groupId = ? and nodeId = ? 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 WikiPageModelImpl.

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

      public static WikiPage[] filterFindByG_N_S_PrevAndNext(long pageId, long groupId, long nodeId, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the wiki pages before and after the current wiki page in the ordered set of wiki pages that the user has permission to view where groupId = ? and nodeId = ? and status = ?.
      Parameters:
      pageId - the primary key of the current wiki page
      groupId - the group ID
      nodeId - the node ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next wiki page
      Throws:
      NoSuchPageException - if a wiki page with the primary key could not be found
      NoSuchPageException
    • removeByG_N_S

      public static void removeByG_N_S(long groupId, long nodeId, int status)
      Removes all the wiki pages where groupId = ? and nodeId = ? and status = ? from the database.
      Parameters:
      groupId - the group ID
      nodeId - the node ID
      status - the status
    • countByG_N_S

      public static int countByG_N_S(long groupId, long nodeId, int status)
      Returns the number of wiki pages where groupId = ? and nodeId = ? and status = ?.
      Parameters:
      groupId - the group ID
      nodeId - the node ID
      status - the status
      Returns:
      the number of matching wiki pages
    • filterCountByG_N_S

      public static int filterCountByG_N_S(long groupId, long nodeId, int status)
      Returns the number of wiki pages that the user has permission to view where groupId = ? and nodeId = ? and status = ?.
      Parameters:
      groupId - the group ID
      nodeId - the node ID
      status - the status
      Returns:
      the number of matching wiki pages that the user has permission to view
    • findByU_N_S

      public static List<WikiPage> findByU_N_S(long userId, long nodeId, int status)
      Returns all the wiki pages where userId = ? and nodeId = ? and status = ?.
      Parameters:
      userId - the user ID
      nodeId - the node ID
      status - the status
      Returns:
      the matching wiki pages
    • findByU_N_S

      public static List<WikiPage> findByU_N_S(long userId, long nodeId, int status, int start, int end)
      Returns a range of all the wiki pages where userId = ? and nodeId = ? 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 WikiPageModelImpl.

      Parameters:
      userId - the user ID
      nodeId - the node ID
      status - the status
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (not inclusive)
      Returns:
      the range of matching wiki pages
    • findByU_N_S

      public static List<WikiPage> findByU_N_S(long userId, long nodeId, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns an ordered range of all the wiki pages where userId = ? and nodeId = ? 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 WikiPageModelImpl.

      Parameters:
      userId - the user ID
      nodeId - the node ID
      status - the status
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching wiki pages
    • findByU_N_S

      public static List<WikiPage> findByU_N_S(long userId, long nodeId, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the wiki pages where userId = ? and nodeId = ? 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 WikiPageModelImpl.

      Parameters:
      userId - the user ID
      nodeId - the node ID
      status - the status
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (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 wiki pages
    • findByU_N_S_First

      public static WikiPage findByU_N_S_First(long userId, long nodeId, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the first wiki page in the ordered set where userId = ? and nodeId = ? and status = ?.
      Parameters:
      userId - the user ID
      nodeId - the node ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching wiki page
      Throws:
      NoSuchPageException - if a matching wiki page could not be found
      NoSuchPageException
    • fetchByU_N_S_First

      public static WikiPage fetchByU_N_S_First(long userId, long nodeId, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns the first wiki page in the ordered set where userId = ? and nodeId = ? and status = ?.
      Parameters:
      userId - the user ID
      nodeId - the node ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching wiki page, or null if a matching wiki page could not be found
    • findByU_N_S_Last

      public static WikiPage findByU_N_S_Last(long userId, long nodeId, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the last wiki page in the ordered set where userId = ? and nodeId = ? and status = ?.
      Parameters:
      userId - the user ID
      nodeId - the node ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching wiki page
      Throws:
      NoSuchPageException - if a matching wiki page could not be found
      NoSuchPageException
    • fetchByU_N_S_Last

      public static WikiPage fetchByU_N_S_Last(long userId, long nodeId, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns the last wiki page in the ordered set where userId = ? and nodeId = ? and status = ?.
      Parameters:
      userId - the user ID
      nodeId - the node ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching wiki page, or null if a matching wiki page could not be found
    • findByU_N_S_PrevAndNext

      public static WikiPage[] findByU_N_S_PrevAndNext(long pageId, long userId, long nodeId, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the wiki pages before and after the current wiki page in the ordered set where userId = ? and nodeId = ? and status = ?.
      Parameters:
      pageId - the primary key of the current wiki page
      userId - the user ID
      nodeId - the node ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next wiki page
      Throws:
      NoSuchPageException - if a wiki page with the primary key could not be found
      NoSuchPageException
    • removeByU_N_S

      public static void removeByU_N_S(long userId, long nodeId, int status)
      Removes all the wiki pages where userId = ? and nodeId = ? and status = ? from the database.
      Parameters:
      userId - the user ID
      nodeId - the node ID
      status - the status
    • countByU_N_S

      public static int countByU_N_S(long userId, long nodeId, int status)
      Returns the number of wiki pages where userId = ? and nodeId = ? and status = ?.
      Parameters:
      userId - the user ID
      nodeId - the node ID
      status - the status
      Returns:
      the number of matching wiki pages
    • findByN_T_V

      public static WikiPage findByN_T_V(long nodeId, String title, double version) throws NoSuchPageException
      Returns the wiki page where nodeId = ? and title = ? and version = ? or throws a NoSuchPageException if it could not be found.
      Parameters:
      nodeId - the node ID
      title - the title
      version - the version
      Returns:
      the matching wiki page
      Throws:
      NoSuchPageException - if a matching wiki page could not be found
      NoSuchPageException
    • fetchByN_T_V

      public static WikiPage fetchByN_T_V(long nodeId, String title, double version)
      Returns the wiki page where nodeId = ? and title = ? and version = ? or returns null if it could not be found. Uses the finder cache.
      Parameters:
      nodeId - the node ID
      title - the title
      version - the version
      Returns:
      the matching wiki page, or null if a matching wiki page could not be found
    • fetchByN_T_V

      public static WikiPage fetchByN_T_V(long nodeId, String title, double version, boolean useFinderCache)
      Returns the wiki page where nodeId = ? and title = ? and version = ? or returns null if it could not be found, optionally using the finder cache.
      Parameters:
      nodeId - the node ID
      title - the title
      version - the version
      useFinderCache - whether to use the finder cache
      Returns:
      the matching wiki page, or null if a matching wiki page could not be found
    • removeByN_T_V

      public static WikiPage removeByN_T_V(long nodeId, String title, double version) throws NoSuchPageException
      Removes the wiki page where nodeId = ? and title = ? and version = ? from the database.
      Parameters:
      nodeId - the node ID
      title - the title
      version - the version
      Returns:
      the wiki page that was removed
      Throws:
      NoSuchPageException
    • countByN_T_V

      public static int countByN_T_V(long nodeId, String title, double version)
      Returns the number of wiki pages where nodeId = ? and title = ? and version = ?.
      Parameters:
      nodeId - the node ID
      title - the title
      version - the version
      Returns:
      the number of matching wiki pages
    • findByN_T_H

      public static List<WikiPage> findByN_T_H(long nodeId, String title, boolean head)
      Returns all the wiki pages where nodeId = ? and title = ? and head = ?.
      Parameters:
      nodeId - the node ID
      title - the title
      head - the head
      Returns:
      the matching wiki pages
    • findByN_T_H

      public static List<WikiPage> findByN_T_H(long nodeId, String title, boolean head, int start, int end)
      Returns a range of all the wiki pages where nodeId = ? and title = ? and head = ?.

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

      Parameters:
      nodeId - the node ID
      title - the title
      head - the head
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (not inclusive)
      Returns:
      the range of matching wiki pages
    • findByN_T_H

      public static List<WikiPage> findByN_T_H(long nodeId, String title, boolean head, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns an ordered range of all the wiki pages where nodeId = ? and title = ? and head = ?.

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

      Parameters:
      nodeId - the node ID
      title - the title
      head - the head
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching wiki pages
    • findByN_T_H

      public static List<WikiPage> findByN_T_H(long nodeId, String title, boolean head, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the wiki pages where nodeId = ? and title = ? and head = ?.

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

      Parameters:
      nodeId - the node ID
      title - the title
      head - the head
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (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 wiki pages
    • findByN_T_H_First

      public static WikiPage findByN_T_H_First(long nodeId, String title, boolean head, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the first wiki page in the ordered set where nodeId = ? and title = ? and head = ?.
      Parameters:
      nodeId - the node ID
      title - the title
      head - the head
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching wiki page
      Throws:
      NoSuchPageException - if a matching wiki page could not be found
      NoSuchPageException
    • fetchByN_T_H_First

      public static WikiPage fetchByN_T_H_First(long nodeId, String title, boolean head, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns the first wiki page in the ordered set where nodeId = ? and title = ? and head = ?.
      Parameters:
      nodeId - the node ID
      title - the title
      head - the head
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching wiki page, or null if a matching wiki page could not be found
    • findByN_T_H_Last

      public static WikiPage findByN_T_H_Last(long nodeId, String title, boolean head, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the last wiki page in the ordered set where nodeId = ? and title = ? and head = ?.
      Parameters:
      nodeId - the node ID
      title - the title
      head - the head
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching wiki page
      Throws:
      NoSuchPageException - if a matching wiki page could not be found
      NoSuchPageException
    • fetchByN_T_H_Last

      public static WikiPage fetchByN_T_H_Last(long nodeId, String title, boolean head, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns the last wiki page in the ordered set where nodeId = ? and title = ? and head = ?.
      Parameters:
      nodeId - the node ID
      title - the title
      head - the head
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching wiki page, or null if a matching wiki page could not be found
    • findByN_T_H_PrevAndNext

      public static WikiPage[] findByN_T_H_PrevAndNext(long pageId, long nodeId, String title, boolean head, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the wiki pages before and after the current wiki page in the ordered set where nodeId = ? and title = ? and head = ?.
      Parameters:
      pageId - the primary key of the current wiki page
      nodeId - the node ID
      title - the title
      head - the head
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next wiki page
      Throws:
      NoSuchPageException - if a wiki page with the primary key could not be found
      NoSuchPageException
    • removeByN_T_H

      public static void removeByN_T_H(long nodeId, String title, boolean head)
      Removes all the wiki pages where nodeId = ? and title = ? and head = ? from the database.
      Parameters:
      nodeId - the node ID
      title - the title
      head - the head
    • countByN_T_H

      public static int countByN_T_H(long nodeId, String title, boolean head)
      Returns the number of wiki pages where nodeId = ? and title = ? and head = ?.
      Parameters:
      nodeId - the node ID
      title - the title
      head - the head
      Returns:
      the number of matching wiki pages
    • findByN_T_S

      public static List<WikiPage> findByN_T_S(long nodeId, String title, int status)
      Returns all the wiki pages where nodeId = ? and title = ? and status = ?.
      Parameters:
      nodeId - the node ID
      title - the title
      status - the status
      Returns:
      the matching wiki pages
    • findByN_T_S

      public static List<WikiPage> findByN_T_S(long nodeId, String title, int status, int start, int end)
      Returns a range of all the wiki pages where nodeId = ? and title = ? 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 WikiPageModelImpl.

      Parameters:
      nodeId - the node ID
      title - the title
      status - the status
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (not inclusive)
      Returns:
      the range of matching wiki pages
    • findByN_T_S

      public static List<WikiPage> findByN_T_S(long nodeId, String title, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns an ordered range of all the wiki pages where nodeId = ? and title = ? 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 WikiPageModelImpl.

      Parameters:
      nodeId - the node ID
      title - the title
      status - the status
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching wiki pages
    • findByN_T_S

      public static List<WikiPage> findByN_T_S(long nodeId, String title, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the wiki pages where nodeId = ? and title = ? 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 WikiPageModelImpl.

      Parameters:
      nodeId - the node ID
      title - the title
      status - the status
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (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 wiki pages
    • findByN_T_S_First

      public static WikiPage findByN_T_S_First(long nodeId, String title, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the first wiki page in the ordered set where nodeId = ? and title = ? and status = ?.
      Parameters:
      nodeId - the node ID
      title - the title
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching wiki page
      Throws:
      NoSuchPageException - if a matching wiki page could not be found
      NoSuchPageException
    • fetchByN_T_S_First

      public static WikiPage fetchByN_T_S_First(long nodeId, String title, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns the first wiki page in the ordered set where nodeId = ? and title = ? and status = ?.
      Parameters:
      nodeId - the node ID
      title - the title
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching wiki page, or null if a matching wiki page could not be found
    • findByN_T_S_Last

      public static WikiPage findByN_T_S_Last(long nodeId, String title, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the last wiki page in the ordered set where nodeId = ? and title = ? and status = ?.
      Parameters:
      nodeId - the node ID
      title - the title
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching wiki page
      Throws:
      NoSuchPageException - if a matching wiki page could not be found
      NoSuchPageException
    • fetchByN_T_S_Last

      public static WikiPage fetchByN_T_S_Last(long nodeId, String title, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns the last wiki page in the ordered set where nodeId = ? and title = ? and status = ?.
      Parameters:
      nodeId - the node ID
      title - the title
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching wiki page, or null if a matching wiki page could not be found
    • findByN_T_S_PrevAndNext

      public static WikiPage[] findByN_T_S_PrevAndNext(long pageId, long nodeId, String title, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the wiki pages before and after the current wiki page in the ordered set where nodeId = ? and title = ? and status = ?.
      Parameters:
      pageId - the primary key of the current wiki page
      nodeId - the node ID
      title - the title
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next wiki page
      Throws:
      NoSuchPageException - if a wiki page with the primary key could not be found
      NoSuchPageException
    • removeByN_T_S

      public static void removeByN_T_S(long nodeId, String title, int status)
      Removes all the wiki pages where nodeId = ? and title = ? and status = ? from the database.
      Parameters:
      nodeId - the node ID
      title - the title
      status - the status
    • countByN_T_S

      public static int countByN_T_S(long nodeId, String title, int status)
      Returns the number of wiki pages where nodeId = ? and title = ? and status = ?.
      Parameters:
      nodeId - the node ID
      title - the title
      status - the status
      Returns:
      the number of matching wiki pages
    • findByN_H_P

      public static List<WikiPage> findByN_H_P(long nodeId, boolean head, String parentTitle)
      Returns all the wiki pages where nodeId = ? and head = ? and parentTitle = ?.
      Parameters:
      nodeId - the node ID
      head - the head
      parentTitle - the parent title
      Returns:
      the matching wiki pages
    • findByN_H_P

      public static List<WikiPage> findByN_H_P(long nodeId, boolean head, String parentTitle, int start, int end)
      Returns a range of all the wiki pages where nodeId = ? and head = ? and parentTitle = ?.

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

      Parameters:
      nodeId - the node ID
      head - the head
      parentTitle - the parent title
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (not inclusive)
      Returns:
      the range of matching wiki pages
    • findByN_H_P

      public static List<WikiPage> findByN_H_P(long nodeId, boolean head, String parentTitle, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns an ordered range of all the wiki pages where nodeId = ? and head = ? and parentTitle = ?.

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

      Parameters:
      nodeId - the node ID
      head - the head
      parentTitle - the parent title
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching wiki pages
    • findByN_H_P

      public static List<WikiPage> findByN_H_P(long nodeId, boolean head, String parentTitle, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the wiki pages where nodeId = ? and head = ? and parentTitle = ?.

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

      Parameters:
      nodeId - the node ID
      head - the head
      parentTitle - the parent title
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (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 wiki pages
    • findByN_H_P_First

      public static WikiPage findByN_H_P_First(long nodeId, boolean head, String parentTitle, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the first wiki page in the ordered set where nodeId = ? and head = ? and parentTitle = ?.
      Parameters:
      nodeId - the node ID
      head - the head
      parentTitle - the parent title
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching wiki page
      Throws:
      NoSuchPageException - if a matching wiki page could not be found
      NoSuchPageException
    • fetchByN_H_P_First

      public static WikiPage fetchByN_H_P_First(long nodeId, boolean head, String parentTitle, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns the first wiki page in the ordered set where nodeId = ? and head = ? and parentTitle = ?.
      Parameters:
      nodeId - the node ID
      head - the head
      parentTitle - the parent title
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching wiki page, or null if a matching wiki page could not be found
    • findByN_H_P_Last

      public static WikiPage findByN_H_P_Last(long nodeId, boolean head, String parentTitle, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the last wiki page in the ordered set where nodeId = ? and head = ? and parentTitle = ?.
      Parameters:
      nodeId - the node ID
      head - the head
      parentTitle - the parent title
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching wiki page
      Throws:
      NoSuchPageException - if a matching wiki page could not be found
      NoSuchPageException
    • fetchByN_H_P_Last

      public static WikiPage fetchByN_H_P_Last(long nodeId, boolean head, String parentTitle, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns the last wiki page in the ordered set where nodeId = ? and head = ? and parentTitle = ?.
      Parameters:
      nodeId - the node ID
      head - the head
      parentTitle - the parent title
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching wiki page, or null if a matching wiki page could not be found
    • findByN_H_P_PrevAndNext

      public static WikiPage[] findByN_H_P_PrevAndNext(long pageId, long nodeId, boolean head, String parentTitle, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the wiki pages before and after the current wiki page in the ordered set where nodeId = ? and head = ? and parentTitle = ?.
      Parameters:
      pageId - the primary key of the current wiki page
      nodeId - the node ID
      head - the head
      parentTitle - the parent title
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next wiki page
      Throws:
      NoSuchPageException - if a wiki page with the primary key could not be found
      NoSuchPageException
    • removeByN_H_P

      public static void removeByN_H_P(long nodeId, boolean head, String parentTitle)
      Removes all the wiki pages where nodeId = ? and head = ? and parentTitle = ? from the database.
      Parameters:
      nodeId - the node ID
      head - the head
      parentTitle - the parent title
    • countByN_H_P

      public static int countByN_H_P(long nodeId, boolean head, String parentTitle)
      Returns the number of wiki pages where nodeId = ? and head = ? and parentTitle = ?.
      Parameters:
      nodeId - the node ID
      head - the head
      parentTitle - the parent title
      Returns:
      the number of matching wiki pages
    • findByN_H_R

      public static List<WikiPage> findByN_H_R(long nodeId, boolean head, String redirectTitle)
      Returns all the wiki pages where nodeId = ? and head = ? and redirectTitle = ?.
      Parameters:
      nodeId - the node ID
      head - the head
      redirectTitle - the redirect title
      Returns:
      the matching wiki pages
    • findByN_H_R

      public static List<WikiPage> findByN_H_R(long nodeId, boolean head, String redirectTitle, int start, int end)
      Returns a range of all the wiki pages where nodeId = ? and head = ? and redirectTitle = ?.

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

      Parameters:
      nodeId - the node ID
      head - the head
      redirectTitle - the redirect title
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (not inclusive)
      Returns:
      the range of matching wiki pages
    • findByN_H_R

      public static List<WikiPage> findByN_H_R(long nodeId, boolean head, String redirectTitle, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns an ordered range of all the wiki pages where nodeId = ? and head = ? and redirectTitle = ?.

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

      Parameters:
      nodeId - the node ID
      head - the head
      redirectTitle - the redirect title
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching wiki pages
    • findByN_H_R

      public static List<WikiPage> findByN_H_R(long nodeId, boolean head, String redirectTitle, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the wiki pages where nodeId = ? and head = ? and redirectTitle = ?.

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

      Parameters:
      nodeId - the node ID
      head - the head
      redirectTitle - the redirect title
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (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 wiki pages
    • findByN_H_R_First

      public static WikiPage findByN_H_R_First(long nodeId, boolean head, String redirectTitle, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the first wiki page in the ordered set where nodeId = ? and head = ? and redirectTitle = ?.
      Parameters:
      nodeId - the node ID
      head - the head
      redirectTitle - the redirect title
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching wiki page
      Throws:
      NoSuchPageException - if a matching wiki page could not be found
      NoSuchPageException
    • fetchByN_H_R_First

      public static WikiPage fetchByN_H_R_First(long nodeId, boolean head, String redirectTitle, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns the first wiki page in the ordered set where nodeId = ? and head = ? and redirectTitle = ?.
      Parameters:
      nodeId - the node ID
      head - the head
      redirectTitle - the redirect title
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching wiki page, or null if a matching wiki page could not be found
    • findByN_H_R_Last

      public static WikiPage findByN_H_R_Last(long nodeId, boolean head, String redirectTitle, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the last wiki page in the ordered set where nodeId = ? and head = ? and redirectTitle = ?.
      Parameters:
      nodeId - the node ID
      head - the head
      redirectTitle - the redirect title
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching wiki page
      Throws:
      NoSuchPageException - if a matching wiki page could not be found
      NoSuchPageException
    • fetchByN_H_R_Last

      public static WikiPage fetchByN_H_R_Last(long nodeId, boolean head, String redirectTitle, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns the last wiki page in the ordered set where nodeId = ? and head = ? and redirectTitle = ?.
      Parameters:
      nodeId - the node ID
      head - the head
      redirectTitle - the redirect title
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching wiki page, or null if a matching wiki page could not be found
    • findByN_H_R_PrevAndNext

      public static WikiPage[] findByN_H_R_PrevAndNext(long pageId, long nodeId, boolean head, String redirectTitle, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the wiki pages before and after the current wiki page in the ordered set where nodeId = ? and head = ? and redirectTitle = ?.
      Parameters:
      pageId - the primary key of the current wiki page
      nodeId - the node ID
      head - the head
      redirectTitle - the redirect title
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next wiki page
      Throws:
      NoSuchPageException - if a wiki page with the primary key could not be found
      NoSuchPageException
    • removeByN_H_R

      public static void removeByN_H_R(long nodeId, boolean head, String redirectTitle)
      Removes all the wiki pages where nodeId = ? and head = ? and redirectTitle = ? from the database.
      Parameters:
      nodeId - the node ID
      head - the head
      redirectTitle - the redirect title
    • countByN_H_R

      public static int countByN_H_R(long nodeId, boolean head, String redirectTitle)
      Returns the number of wiki pages where nodeId = ? and head = ? and redirectTitle = ?.
      Parameters:
      nodeId - the node ID
      head - the head
      redirectTitle - the redirect title
      Returns:
      the number of matching wiki pages
    • findByN_H_S

      public static List<WikiPage> findByN_H_S(long nodeId, boolean head, int status)
      Returns all the wiki pages where nodeId = ? and head = ? and status = ?.
      Parameters:
      nodeId - the node ID
      head - the head
      status - the status
      Returns:
      the matching wiki pages
    • findByN_H_S

      public static List<WikiPage> findByN_H_S(long nodeId, boolean head, int status, int start, int end)
      Returns a range of all the wiki pages where nodeId = ? and head = ? 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 WikiPageModelImpl.

      Parameters:
      nodeId - the node ID
      head - the head
      status - the status
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (not inclusive)
      Returns:
      the range of matching wiki pages
    • findByN_H_S

      public static List<WikiPage> findByN_H_S(long nodeId, boolean head, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns an ordered range of all the wiki pages where nodeId = ? and head = ? 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 WikiPageModelImpl.

      Parameters:
      nodeId - the node ID
      head - the head
      status - the status
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching wiki pages
    • findByN_H_S

      public static List<WikiPage> findByN_H_S(long nodeId, boolean head, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the wiki pages where nodeId = ? and head = ? 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 WikiPageModelImpl.

      Parameters:
      nodeId - the node ID
      head - the head
      status - the status
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (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 wiki pages
    • findByN_H_S_First

      public static WikiPage findByN_H_S_First(long nodeId, boolean head, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the first wiki page in the ordered set where nodeId = ? and head = ? and status = ?.
      Parameters:
      nodeId - the node ID
      head - the head
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching wiki page
      Throws:
      NoSuchPageException - if a matching wiki page could not be found
      NoSuchPageException
    • fetchByN_H_S_First

      public static WikiPage fetchByN_H_S_First(long nodeId, boolean head, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns the first wiki page in the ordered set where nodeId = ? and head = ? and status = ?.
      Parameters:
      nodeId - the node ID
      head - the head
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching wiki page, or null if a matching wiki page could not be found
    • findByN_H_S_Last

      public static WikiPage findByN_H_S_Last(long nodeId, boolean head, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the last wiki page in the ordered set where nodeId = ? and head = ? and status = ?.
      Parameters:
      nodeId - the node ID
      head - the head
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching wiki page
      Throws:
      NoSuchPageException - if a matching wiki page could not be found
      NoSuchPageException
    • fetchByN_H_S_Last

      public static WikiPage fetchByN_H_S_Last(long nodeId, boolean head, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns the last wiki page in the ordered set where nodeId = ? and head = ? and status = ?.
      Parameters:
      nodeId - the node ID
      head - the head
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching wiki page, or null if a matching wiki page could not be found
    • findByN_H_S_PrevAndNext

      public static WikiPage[] findByN_H_S_PrevAndNext(long pageId, long nodeId, boolean head, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the wiki pages before and after the current wiki page in the ordered set where nodeId = ? and head = ? and status = ?.
      Parameters:
      pageId - the primary key of the current wiki page
      nodeId - the node ID
      head - the head
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next wiki page
      Throws:
      NoSuchPageException - if a wiki page with the primary key could not be found
      NoSuchPageException
    • removeByN_H_S

      public static void removeByN_H_S(long nodeId, boolean head, int status)
      Removes all the wiki pages where nodeId = ? and head = ? and status = ? from the database.
      Parameters:
      nodeId - the node ID
      head - the head
      status - the status
    • countByN_H_S

      public static int countByN_H_S(long nodeId, boolean head, int status)
      Returns the number of wiki pages where nodeId = ? and head = ? and status = ?.
      Parameters:
      nodeId - the node ID
      head - the head
      status - the status
      Returns:
      the number of matching wiki pages
    • findByN_H_NotS

      public static List<WikiPage> findByN_H_NotS(long nodeId, boolean head, int status)
      Returns all the wiki pages where nodeId = ? and head = ? and status ≠ ?.
      Parameters:
      nodeId - the node ID
      head - the head
      status - the status
      Returns:
      the matching wiki pages
    • findByN_H_NotS

      public static List<WikiPage> findByN_H_NotS(long nodeId, boolean head, int status, int start, int end)
      Returns a range of all the wiki pages where nodeId = ? and head = ? 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 WikiPageModelImpl.

      Parameters:
      nodeId - the node ID
      head - the head
      status - the status
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (not inclusive)
      Returns:
      the range of matching wiki pages
    • findByN_H_NotS

      public static List<WikiPage> findByN_H_NotS(long nodeId, boolean head, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns an ordered range of all the wiki pages where nodeId = ? and head = ? 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 WikiPageModelImpl.

      Parameters:
      nodeId - the node ID
      head - the head
      status - the status
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching wiki pages
    • findByN_H_NotS

      public static List<WikiPage> findByN_H_NotS(long nodeId, boolean head, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the wiki pages where nodeId = ? and head = ? 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 WikiPageModelImpl.

      Parameters:
      nodeId - the node ID
      head - the head
      status - the status
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (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 wiki pages
    • findByN_H_NotS_First

      public static WikiPage findByN_H_NotS_First(long nodeId, boolean head, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the first wiki page in the ordered set where nodeId = ? and head = ? and status ≠ ?.
      Parameters:
      nodeId - the node ID
      head - the head
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching wiki page
      Throws:
      NoSuchPageException - if a matching wiki page could not be found
      NoSuchPageException
    • fetchByN_H_NotS_First

      public static WikiPage fetchByN_H_NotS_First(long nodeId, boolean head, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns the first wiki page in the ordered set where nodeId = ? and head = ? and status ≠ ?.
      Parameters:
      nodeId - the node ID
      head - the head
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching wiki page, or null if a matching wiki page could not be found
    • findByN_H_NotS_Last

      public static WikiPage findByN_H_NotS_Last(long nodeId, boolean head, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the last wiki page in the ordered set where nodeId = ? and head = ? and status ≠ ?.
      Parameters:
      nodeId - the node ID
      head - the head
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching wiki page
      Throws:
      NoSuchPageException - if a matching wiki page could not be found
      NoSuchPageException
    • fetchByN_H_NotS_Last

      public static WikiPage fetchByN_H_NotS_Last(long nodeId, boolean head, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns the last wiki page in the ordered set where nodeId = ? and head = ? and status ≠ ?.
      Parameters:
      nodeId - the node ID
      head - the head
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching wiki page, or null if a matching wiki page could not be found
    • findByN_H_NotS_PrevAndNext

      public static WikiPage[] findByN_H_NotS_PrevAndNext(long pageId, long nodeId, boolean head, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the wiki pages before and after the current wiki page in the ordered set where nodeId = ? and head = ? and status ≠ ?.
      Parameters:
      pageId - the primary key of the current wiki page
      nodeId - the node ID
      head - the head
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next wiki page
      Throws:
      NoSuchPageException - if a wiki page with the primary key could not be found
      NoSuchPageException
    • removeByN_H_NotS

      public static void removeByN_H_NotS(long nodeId, boolean head, int status)
      Removes all the wiki pages where nodeId = ? and head = ? and status ≠ ? from the database.
      Parameters:
      nodeId - the node ID
      head - the head
      status - the status
    • countByN_H_NotS

      public static int countByN_H_NotS(long nodeId, boolean head, int status)
      Returns the number of wiki pages where nodeId = ? and head = ? and status ≠ ?.
      Parameters:
      nodeId - the node ID
      head - the head
      status - the status
      Returns:
      the number of matching wiki pages
    • findByG_U_N_S

      public static List<WikiPage> findByG_U_N_S(long groupId, long userId, long nodeId, int status)
      Returns all the wiki pages where groupId = ? and userId = ? and nodeId = ? and status = ?.
      Parameters:
      groupId - the group ID
      userId - the user ID
      nodeId - the node ID
      status - the status
      Returns:
      the matching wiki pages
    • findByG_U_N_S

      public static List<WikiPage> findByG_U_N_S(long groupId, long userId, long nodeId, int status, int start, int end)
      Returns a range of all the wiki pages where groupId = ? and userId = ? and nodeId = ? 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 WikiPageModelImpl.

      Parameters:
      groupId - the group ID
      userId - the user ID
      nodeId - the node ID
      status - the status
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (not inclusive)
      Returns:
      the range of matching wiki pages
    • findByG_U_N_S

      public static List<WikiPage> findByG_U_N_S(long groupId, long userId, long nodeId, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns an ordered range of all the wiki pages where groupId = ? and userId = ? and nodeId = ? 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 WikiPageModelImpl.

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

      public static List<WikiPage> findByG_U_N_S(long groupId, long userId, long nodeId, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the wiki pages where groupId = ? and userId = ? and nodeId = ? 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 WikiPageModelImpl.

      Parameters:
      groupId - the group ID
      userId - the user ID
      nodeId - the node ID
      status - the status
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (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 wiki pages
    • findByG_U_N_S_First

      public static WikiPage findByG_U_N_S_First(long groupId, long userId, long nodeId, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the first wiki page in the ordered set where groupId = ? and userId = ? and nodeId = ? and status = ?.
      Parameters:
      groupId - the group ID
      userId - the user ID
      nodeId - the node ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching wiki page
      Throws:
      NoSuchPageException - if a matching wiki page could not be found
      NoSuchPageException
    • fetchByG_U_N_S_First

      public static WikiPage fetchByG_U_N_S_First(long groupId, long userId, long nodeId, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns the first wiki page in the ordered set where groupId = ? and userId = ? and nodeId = ? and status = ?.
      Parameters:
      groupId - the group ID
      userId - the user ID
      nodeId - the node ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching wiki page, or null if a matching wiki page could not be found
    • findByG_U_N_S_Last

      public static WikiPage findByG_U_N_S_Last(long groupId, long userId, long nodeId, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the last wiki page in the ordered set where groupId = ? and userId = ? and nodeId = ? and status = ?.
      Parameters:
      groupId - the group ID
      userId - the user ID
      nodeId - the node ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching wiki page
      Throws:
      NoSuchPageException - if a matching wiki page could not be found
      NoSuchPageException
    • fetchByG_U_N_S_Last

      public static WikiPage fetchByG_U_N_S_Last(long groupId, long userId, long nodeId, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns the last wiki page in the ordered set where groupId = ? and userId = ? and nodeId = ? and status = ?.
      Parameters:
      groupId - the group ID
      userId - the user ID
      nodeId - the node ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching wiki page, or null if a matching wiki page could not be found
    • findByG_U_N_S_PrevAndNext

      public static WikiPage[] findByG_U_N_S_PrevAndNext(long pageId, long groupId, long userId, long nodeId, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the wiki pages before and after the current wiki page in the ordered set where groupId = ? and userId = ? and nodeId = ? and status = ?.
      Parameters:
      pageId - the primary key of the current wiki page
      groupId - the group ID
      userId - the user ID
      nodeId - the node ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next wiki page
      Throws:
      NoSuchPageException - if a wiki page with the primary key could not be found
      NoSuchPageException
    • filterFindByG_U_N_S

      public static List<WikiPage> filterFindByG_U_N_S(long groupId, long userId, long nodeId, int status)
      Returns all the wiki pages that the user has permission to view where groupId = ? and userId = ? and nodeId = ? and status = ?.
      Parameters:
      groupId - the group ID
      userId - the user ID
      nodeId - the node ID
      status - the status
      Returns:
      the matching wiki pages that the user has permission to view
    • filterFindByG_U_N_S

      public static List<WikiPage> filterFindByG_U_N_S(long groupId, long userId, long nodeId, int status, int start, int end)
      Returns a range of all the wiki pages that the user has permission to view where groupId = ? and userId = ? and nodeId = ? 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 WikiPageModelImpl.

      Parameters:
      groupId - the group ID
      userId - the user ID
      nodeId - the node ID
      status - the status
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (not inclusive)
      Returns:
      the range of matching wiki pages that the user has permission to view
    • filterFindByG_U_N_S

      public static List<WikiPage> filterFindByG_U_N_S(long groupId, long userId, long nodeId, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns an ordered range of all the wiki pages that the user has permissions to view where groupId = ? and userId = ? and nodeId = ? 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 WikiPageModelImpl.

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

      public static WikiPage[] filterFindByG_U_N_S_PrevAndNext(long pageId, long groupId, long userId, long nodeId, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the wiki pages before and after the current wiki page in the ordered set of wiki pages that the user has permission to view where groupId = ? and userId = ? and nodeId = ? and status = ?.
      Parameters:
      pageId - the primary key of the current wiki page
      groupId - the group ID
      userId - the user ID
      nodeId - the node ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next wiki page
      Throws:
      NoSuchPageException - if a wiki page with the primary key could not be found
      NoSuchPageException
    • removeByG_U_N_S

      public static void removeByG_U_N_S(long groupId, long userId, long nodeId, int status)
      Removes all the wiki pages where groupId = ? and userId = ? and nodeId = ? and status = ? from the database.
      Parameters:
      groupId - the group ID
      userId - the user ID
      nodeId - the node ID
      status - the status
    • countByG_U_N_S

      public static int countByG_U_N_S(long groupId, long userId, long nodeId, int status)
      Returns the number of wiki pages where groupId = ? and userId = ? and nodeId = ? and status = ?.
      Parameters:
      groupId - the group ID
      userId - the user ID
      nodeId - the node ID
      status - the status
      Returns:
      the number of matching wiki pages
    • filterCountByG_U_N_S

      public static int filterCountByG_U_N_S(long groupId, long userId, long nodeId, int status)
      Returns the number of wiki pages that the user has permission to view where groupId = ? and userId = ? and nodeId = ? and status = ?.
      Parameters:
      groupId - the group ID
      userId - the user ID
      nodeId - the node ID
      status - the status
      Returns:
      the number of matching wiki pages that the user has permission to view
    • findByG_N_T_H

      public static List<WikiPage> findByG_N_T_H(long groupId, long nodeId, String title, boolean head)
      Returns all the wiki pages where groupId = ? and nodeId = ? and title = ? and head = ?.
      Parameters:
      groupId - the group ID
      nodeId - the node ID
      title - the title
      head - the head
      Returns:
      the matching wiki pages
    • findByG_N_T_H

      public static List<WikiPage> findByG_N_T_H(long groupId, long nodeId, String title, boolean head, int start, int end)
      Returns a range of all the wiki pages where groupId = ? and nodeId = ? and title = ? and head = ?.

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

      Parameters:
      groupId - the group ID
      nodeId - the node ID
      title - the title
      head - the head
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (not inclusive)
      Returns:
      the range of matching wiki pages
    • findByG_N_T_H

      public static List<WikiPage> findByG_N_T_H(long groupId, long nodeId, String title, boolean head, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns an ordered range of all the wiki pages where groupId = ? and nodeId = ? and title = ? and head = ?.

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

      Parameters:
      groupId - the group ID
      nodeId - the node ID
      title - the title
      head - the head
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching wiki pages
    • findByG_N_T_H

      public static List<WikiPage> findByG_N_T_H(long groupId, long nodeId, String title, boolean head, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the wiki pages where groupId = ? and nodeId = ? and title = ? and head = ?.

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

      Parameters:
      groupId - the group ID
      nodeId - the node ID
      title - the title
      head - the head
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (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 wiki pages
    • findByG_N_T_H_First

      public static WikiPage findByG_N_T_H_First(long groupId, long nodeId, String title, boolean head, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the first wiki page in the ordered set where groupId = ? and nodeId = ? and title = ? and head = ?.
      Parameters:
      groupId - the group ID
      nodeId - the node ID
      title - the title
      head - the head
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching wiki page
      Throws:
      NoSuchPageException - if a matching wiki page could not be found
      NoSuchPageException
    • fetchByG_N_T_H_First

      public static WikiPage fetchByG_N_T_H_First(long groupId, long nodeId, String title, boolean head, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns the first wiki page in the ordered set where groupId = ? and nodeId = ? and title = ? and head = ?.
      Parameters:
      groupId - the group ID
      nodeId - the node ID
      title - the title
      head - the head
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching wiki page, or null if a matching wiki page could not be found
    • findByG_N_T_H_Last

      public static WikiPage findByG_N_T_H_Last(long groupId, long nodeId, String title, boolean head, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the last wiki page in the ordered set where groupId = ? and nodeId = ? and title = ? and head = ?.
      Parameters:
      groupId - the group ID
      nodeId - the node ID
      title - the title
      head - the head
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching wiki page
      Throws:
      NoSuchPageException - if a matching wiki page could not be found
      NoSuchPageException
    • fetchByG_N_T_H_Last

      public static WikiPage fetchByG_N_T_H_Last(long groupId, long nodeId, String title, boolean head, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns the last wiki page in the ordered set where groupId = ? and nodeId = ? and title = ? and head = ?.
      Parameters:
      groupId - the group ID
      nodeId - the node ID
      title - the title
      head - the head
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching wiki page, or null if a matching wiki page could not be found
    • findByG_N_T_H_PrevAndNext

      public static WikiPage[] findByG_N_T_H_PrevAndNext(long pageId, long groupId, long nodeId, String title, boolean head, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the wiki pages before and after the current wiki page in the ordered set where groupId = ? and nodeId = ? and title = ? and head = ?.
      Parameters:
      pageId - the primary key of the current wiki page
      groupId - the group ID
      nodeId - the node ID
      title - the title
      head - the head
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next wiki page
      Throws:
      NoSuchPageException - if a wiki page with the primary key could not be found
      NoSuchPageException
    • filterFindByG_N_T_H

      public static List<WikiPage> filterFindByG_N_T_H(long groupId, long nodeId, String title, boolean head)
      Returns all the wiki pages that the user has permission to view where groupId = ? and nodeId = ? and title = ? and head = ?.
      Parameters:
      groupId - the group ID
      nodeId - the node ID
      title - the title
      head - the head
      Returns:
      the matching wiki pages that the user has permission to view
    • filterFindByG_N_T_H

      public static List<WikiPage> filterFindByG_N_T_H(long groupId, long nodeId, String title, boolean head, int start, int end)
      Returns a range of all the wiki pages that the user has permission to view where groupId = ? and nodeId = ? and title = ? and head = ?.

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

      Parameters:
      groupId - the group ID
      nodeId - the node ID
      title - the title
      head - the head
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (not inclusive)
      Returns:
      the range of matching wiki pages that the user has permission to view
    • filterFindByG_N_T_H

      public static List<WikiPage> filterFindByG_N_T_H(long groupId, long nodeId, String title, boolean head, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns an ordered range of all the wiki pages that the user has permissions to view where groupId = ? and nodeId = ? and title = ? and head = ?.

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

      Parameters:
      groupId - the group ID
      nodeId - the node ID
      title - the title
      head - the head
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching wiki pages that the user has permission to view
    • filterFindByG_N_T_H_PrevAndNext

      public static WikiPage[] filterFindByG_N_T_H_PrevAndNext(long pageId, long groupId, long nodeId, String title, boolean head, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the wiki pages before and after the current wiki page in the ordered set of wiki pages that the user has permission to view where groupId = ? and nodeId = ? and title = ? and head = ?.
      Parameters:
      pageId - the primary key of the current wiki page
      groupId - the group ID
      nodeId - the node ID
      title - the title
      head - the head
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next wiki page
      Throws:
      NoSuchPageException - if a wiki page with the primary key could not be found
      NoSuchPageException
    • removeByG_N_T_H

      public static void removeByG_N_T_H(long groupId, long nodeId, String title, boolean head)
      Removes all the wiki pages where groupId = ? and nodeId = ? and title = ? and head = ? from the database.
      Parameters:
      groupId - the group ID
      nodeId - the node ID
      title - the title
      head - the head
    • countByG_N_T_H

      public static int countByG_N_T_H(long groupId, long nodeId, String title, boolean head)
      Returns the number of wiki pages where groupId = ? and nodeId = ? and title = ? and head = ?.
      Parameters:
      groupId - the group ID
      nodeId - the node ID
      title - the title
      head - the head
      Returns:
      the number of matching wiki pages
    • filterCountByG_N_T_H

      public static int filterCountByG_N_T_H(long groupId, long nodeId, String title, boolean head)
      Returns the number of wiki pages that the user has permission to view where groupId = ? and nodeId = ? and title = ? and head = ?.
      Parameters:
      groupId - the group ID
      nodeId - the node ID
      title - the title
      head - the head
      Returns:
      the number of matching wiki pages that the user has permission to view
    • findByG_N_H_S

      public static List<WikiPage> findByG_N_H_S(long groupId, long nodeId, boolean head, int status)
      Returns all the wiki pages where groupId = ? and nodeId = ? and head = ? and status = ?.
      Parameters:
      groupId - the group ID
      nodeId - the node ID
      head - the head
      status - the status
      Returns:
      the matching wiki pages
    • findByG_N_H_S

      public static List<WikiPage> findByG_N_H_S(long groupId, long nodeId, boolean head, int status, int start, int end)
      Returns a range of all the wiki pages where groupId = ? and nodeId = ? and head = ? 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 WikiPageModelImpl.

      Parameters:
      groupId - the group ID
      nodeId - the node ID
      head - the head
      status - the status
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (not inclusive)
      Returns:
      the range of matching wiki pages
    • findByG_N_H_S

      public static List<WikiPage> findByG_N_H_S(long groupId, long nodeId, boolean head, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns an ordered range of all the wiki pages where groupId = ? and nodeId = ? and head = ? 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 WikiPageModelImpl.

      Parameters:
      groupId - the group ID
      nodeId - the node ID
      head - the head
      status - the status
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching wiki pages
    • findByG_N_H_S

      public static List<WikiPage> findByG_N_H_S(long groupId, long nodeId, boolean head, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the wiki pages where groupId = ? and nodeId = ? and head = ? 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 WikiPageModelImpl.

      Parameters:
      groupId - the group ID
      nodeId - the node ID
      head - the head
      status - the status
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (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 wiki pages
    • findByG_N_H_S_First

      public static WikiPage findByG_N_H_S_First(long groupId, long nodeId, boolean head, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the first wiki page in the ordered set where groupId = ? and nodeId = ? and head = ? and status = ?.
      Parameters:
      groupId - the group ID
      nodeId - the node ID
      head - the head
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching wiki page
      Throws:
      NoSuchPageException - if a matching wiki page could not be found
      NoSuchPageException
    • fetchByG_N_H_S_First

      public static WikiPage fetchByG_N_H_S_First(long groupId, long nodeId, boolean head, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns the first wiki page in the ordered set where groupId = ? and nodeId = ? and head = ? and status = ?.
      Parameters:
      groupId - the group ID
      nodeId - the node ID
      head - the head
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching wiki page, or null if a matching wiki page could not be found
    • findByG_N_H_S_Last

      public static WikiPage findByG_N_H_S_Last(long groupId, long nodeId, boolean head, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the last wiki page in the ordered set where groupId = ? and nodeId = ? and head = ? and status = ?.
      Parameters:
      groupId - the group ID
      nodeId - the node ID
      head - the head
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching wiki page
      Throws:
      NoSuchPageException - if a matching wiki page could not be found
      NoSuchPageException
    • fetchByG_N_H_S_Last

      public static WikiPage fetchByG_N_H_S_Last(long groupId, long nodeId, boolean head, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns the last wiki page in the ordered set where groupId = ? and nodeId = ? and head = ? and status = ?.
      Parameters:
      groupId - the group ID
      nodeId - the node ID
      head - the head
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching wiki page, or null if a matching wiki page could not be found
    • findByG_N_H_S_PrevAndNext

      public static WikiPage[] findByG_N_H_S_PrevAndNext(long pageId, long groupId, long nodeId, boolean head, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the wiki pages before and after the current wiki page in the ordered set where groupId = ? and nodeId = ? and head = ? and status = ?.
      Parameters:
      pageId - the primary key of the current wiki page
      groupId - the group ID
      nodeId - the node ID
      head - the head
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next wiki page
      Throws:
      NoSuchPageException - if a wiki page with the primary key could not be found
      NoSuchPageException
    • filterFindByG_N_H_S

      public static List<WikiPage> filterFindByG_N_H_S(long groupId, long nodeId, boolean head, int status)
      Returns all the wiki pages that the user has permission to view where groupId = ? and nodeId = ? and head = ? and status = ?.
      Parameters:
      groupId - the group ID
      nodeId - the node ID
      head - the head
      status - the status
      Returns:
      the matching wiki pages that the user has permission to view
    • filterFindByG_N_H_S

      public static List<WikiPage> filterFindByG_N_H_S(long groupId, long nodeId, boolean head, int status, int start, int end)
      Returns a range of all the wiki pages that the user has permission to view where groupId = ? and nodeId = ? and head = ? 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 WikiPageModelImpl.

      Parameters:
      groupId - the group ID
      nodeId - the node ID
      head - the head
      status - the status
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (not inclusive)
      Returns:
      the range of matching wiki pages that the user has permission to view
    • filterFindByG_N_H_S

      public static List<WikiPage> filterFindByG_N_H_S(long groupId, long nodeId, boolean head, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns an ordered range of all the wiki pages that the user has permissions to view where groupId = ? and nodeId = ? and head = ? 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 WikiPageModelImpl.

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

      public static WikiPage[] filterFindByG_N_H_S_PrevAndNext(long pageId, long groupId, long nodeId, boolean head, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the wiki pages before and after the current wiki page in the ordered set of wiki pages that the user has permission to view where groupId = ? and nodeId = ? and head = ? and status = ?.
      Parameters:
      pageId - the primary key of the current wiki page
      groupId - the group ID
      nodeId - the node ID
      head - the head
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next wiki page
      Throws:
      NoSuchPageException - if a wiki page with the primary key could not be found
      NoSuchPageException
    • removeByG_N_H_S

      public static void removeByG_N_H_S(long groupId, long nodeId, boolean head, int status)
      Removes all the wiki pages where groupId = ? and nodeId = ? and head = ? and status = ? from the database.
      Parameters:
      groupId - the group ID
      nodeId - the node ID
      head - the head
      status - the status
    • countByG_N_H_S

      public static int countByG_N_H_S(long groupId, long nodeId, boolean head, int status)
      Returns the number of wiki pages where groupId = ? and nodeId = ? and head = ? and status = ?.
      Parameters:
      groupId - the group ID
      nodeId - the node ID
      head - the head
      status - the status
      Returns:
      the number of matching wiki pages
    • filterCountByG_N_H_S

      public static int filterCountByG_N_H_S(long groupId, long nodeId, boolean head, int status)
      Returns the number of wiki pages that the user has permission to view where groupId = ? and nodeId = ? and head = ? and status = ?.
      Parameters:
      groupId - the group ID
      nodeId - the node ID
      head - the head
      status - the status
      Returns:
      the number of matching wiki pages that the user has permission to view
    • findByN_H_P_S

      public static List<WikiPage> findByN_H_P_S(long nodeId, boolean head, String parentTitle, int status)
      Returns all the wiki pages where nodeId = ? and head = ? and parentTitle = ? and status = ?.
      Parameters:
      nodeId - the node ID
      head - the head
      parentTitle - the parent title
      status - the status
      Returns:
      the matching wiki pages
    • findByN_H_P_S

      public static List<WikiPage> findByN_H_P_S(long nodeId, boolean head, String parentTitle, int status, int start, int end)
      Returns a range of all the wiki pages where nodeId = ? and head = ? and parentTitle = ? 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 WikiPageModelImpl.

      Parameters:
      nodeId - the node ID
      head - the head
      parentTitle - the parent title
      status - the status
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (not inclusive)
      Returns:
      the range of matching wiki pages
    • findByN_H_P_S

      public static List<WikiPage> findByN_H_P_S(long nodeId, boolean head, String parentTitle, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns an ordered range of all the wiki pages where nodeId = ? and head = ? and parentTitle = ? 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 WikiPageModelImpl.

      Parameters:
      nodeId - the node ID
      head - the head
      parentTitle - the parent title
      status - the status
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching wiki pages
    • findByN_H_P_S

      public static List<WikiPage> findByN_H_P_S(long nodeId, boolean head, String parentTitle, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the wiki pages where nodeId = ? and head = ? and parentTitle = ? 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 WikiPageModelImpl.

      Parameters:
      nodeId - the node ID
      head - the head
      parentTitle - the parent title
      status - the status
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (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 wiki pages
    • findByN_H_P_S_First

      public static WikiPage findByN_H_P_S_First(long nodeId, boolean head, String parentTitle, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the first wiki page in the ordered set where nodeId = ? and head = ? and parentTitle = ? and status = ?.
      Parameters:
      nodeId - the node ID
      head - the head
      parentTitle - the parent title
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching wiki page
      Throws:
      NoSuchPageException - if a matching wiki page could not be found
      NoSuchPageException
    • fetchByN_H_P_S_First

      public static WikiPage fetchByN_H_P_S_First(long nodeId, boolean head, String parentTitle, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns the first wiki page in the ordered set where nodeId = ? and head = ? and parentTitle = ? and status = ?.
      Parameters:
      nodeId - the node ID
      head - the head
      parentTitle - the parent title
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching wiki page, or null if a matching wiki page could not be found
    • findByN_H_P_S_Last

      public static WikiPage findByN_H_P_S_Last(long nodeId, boolean head, String parentTitle, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the last wiki page in the ordered set where nodeId = ? and head = ? and parentTitle = ? and status = ?.
      Parameters:
      nodeId - the node ID
      head - the head
      parentTitle - the parent title
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching wiki page
      Throws:
      NoSuchPageException - if a matching wiki page could not be found
      NoSuchPageException
    • fetchByN_H_P_S_Last

      public static WikiPage fetchByN_H_P_S_Last(long nodeId, boolean head, String parentTitle, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns the last wiki page in the ordered set where nodeId = ? and head = ? and parentTitle = ? and status = ?.
      Parameters:
      nodeId - the node ID
      head - the head
      parentTitle - the parent title
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching wiki page, or null if a matching wiki page could not be found
    • findByN_H_P_S_PrevAndNext

      public static WikiPage[] findByN_H_P_S_PrevAndNext(long pageId, long nodeId, boolean head, String parentTitle, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the wiki pages before and after the current wiki page in the ordered set where nodeId = ? and head = ? and parentTitle = ? and status = ?.
      Parameters:
      pageId - the primary key of the current wiki page
      nodeId - the node ID
      head - the head
      parentTitle - the parent title
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next wiki page
      Throws:
      NoSuchPageException - if a wiki page with the primary key could not be found
      NoSuchPageException
    • removeByN_H_P_S

      public static void removeByN_H_P_S(long nodeId, boolean head, String parentTitle, int status)
      Removes all the wiki pages where nodeId = ? and head = ? and parentTitle = ? and status = ? from the database.
      Parameters:
      nodeId - the node ID
      head - the head
      parentTitle - the parent title
      status - the status
    • countByN_H_P_S

      public static int countByN_H_P_S(long nodeId, boolean head, String parentTitle, int status)
      Returns the number of wiki pages where nodeId = ? and head = ? and parentTitle = ? and status = ?.
      Parameters:
      nodeId - the node ID
      head - the head
      parentTitle - the parent title
      status - the status
      Returns:
      the number of matching wiki pages
    • findByN_H_P_NotS

      public static List<WikiPage> findByN_H_P_NotS(long nodeId, boolean head, String parentTitle, int status)
      Returns all the wiki pages where nodeId = ? and head = ? and parentTitle = ? and status ≠ ?.
      Parameters:
      nodeId - the node ID
      head - the head
      parentTitle - the parent title
      status - the status
      Returns:
      the matching wiki pages
    • findByN_H_P_NotS

      public static List<WikiPage> findByN_H_P_NotS(long nodeId, boolean head, String parentTitle, int status, int start, int end)
      Returns a range of all the wiki pages where nodeId = ? and head = ? and parentTitle = ? 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 WikiPageModelImpl.

      Parameters:
      nodeId - the node ID
      head - the head
      parentTitle - the parent title
      status - the status
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (not inclusive)
      Returns:
      the range of matching wiki pages
    • findByN_H_P_NotS

      public static List<WikiPage> findByN_H_P_NotS(long nodeId, boolean head, String parentTitle, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns an ordered range of all the wiki pages where nodeId = ? and head = ? and parentTitle = ? 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 WikiPageModelImpl.

      Parameters:
      nodeId - the node ID
      head - the head
      parentTitle - the parent title
      status - the status
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching wiki pages
    • findByN_H_P_NotS

      public static List<WikiPage> findByN_H_P_NotS(long nodeId, boolean head, String parentTitle, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the wiki pages where nodeId = ? and head = ? and parentTitle = ? 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 WikiPageModelImpl.

      Parameters:
      nodeId - the node ID
      head - the head
      parentTitle - the parent title
      status - the status
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (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 wiki pages
    • findByN_H_P_NotS_First

      public static WikiPage findByN_H_P_NotS_First(long nodeId, boolean head, String parentTitle, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the first wiki page in the ordered set where nodeId = ? and head = ? and parentTitle = ? and status ≠ ?.
      Parameters:
      nodeId - the node ID
      head - the head
      parentTitle - the parent title
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching wiki page
      Throws:
      NoSuchPageException - if a matching wiki page could not be found
      NoSuchPageException
    • fetchByN_H_P_NotS_First

      public static WikiPage fetchByN_H_P_NotS_First(long nodeId, boolean head, String parentTitle, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns the first wiki page in the ordered set where nodeId = ? and head = ? and parentTitle = ? and status ≠ ?.
      Parameters:
      nodeId - the node ID
      head - the head
      parentTitle - the parent title
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching wiki page, or null if a matching wiki page could not be found
    • findByN_H_P_NotS_Last

      public static WikiPage findByN_H_P_NotS_Last(long nodeId, boolean head, String parentTitle, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the last wiki page in the ordered set where nodeId = ? and head = ? and parentTitle = ? and status ≠ ?.
      Parameters:
      nodeId - the node ID
      head - the head
      parentTitle - the parent title
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching wiki page
      Throws:
      NoSuchPageException - if a matching wiki page could not be found
      NoSuchPageException
    • fetchByN_H_P_NotS_Last

      public static WikiPage fetchByN_H_P_NotS_Last(long nodeId, boolean head, String parentTitle, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns the last wiki page in the ordered set where nodeId = ? and head = ? and parentTitle = ? and status ≠ ?.
      Parameters:
      nodeId - the node ID
      head - the head
      parentTitle - the parent title
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching wiki page, or null if a matching wiki page could not be found
    • findByN_H_P_NotS_PrevAndNext

      public static WikiPage[] findByN_H_P_NotS_PrevAndNext(long pageId, long nodeId, boolean head, String parentTitle, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the wiki pages before and after the current wiki page in the ordered set where nodeId = ? and head = ? and parentTitle = ? and status ≠ ?.
      Parameters:
      pageId - the primary key of the current wiki page
      nodeId - the node ID
      head - the head
      parentTitle - the parent title
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next wiki page
      Throws:
      NoSuchPageException - if a wiki page with the primary key could not be found
      NoSuchPageException
    • removeByN_H_P_NotS

      public static void removeByN_H_P_NotS(long nodeId, boolean head, String parentTitle, int status)
      Removes all the wiki pages where nodeId = ? and head = ? and parentTitle = ? and status ≠ ? from the database.
      Parameters:
      nodeId - the node ID
      head - the head
      parentTitle - the parent title
      status - the status
    • countByN_H_P_NotS

      public static int countByN_H_P_NotS(long nodeId, boolean head, String parentTitle, int status)
      Returns the number of wiki pages where nodeId = ? and head = ? and parentTitle = ? and status ≠ ?.
      Parameters:
      nodeId - the node ID
      head - the head
      parentTitle - the parent title
      status - the status
      Returns:
      the number of matching wiki pages
    • findByN_H_R_S

      public static List<WikiPage> findByN_H_R_S(long nodeId, boolean head, String redirectTitle, int status)
      Returns all the wiki pages where nodeId = ? and head = ? and redirectTitle = ? and status = ?.
      Parameters:
      nodeId - the node ID
      head - the head
      redirectTitle - the redirect title
      status - the status
      Returns:
      the matching wiki pages
    • findByN_H_R_S

      public static List<WikiPage> findByN_H_R_S(long nodeId, boolean head, String redirectTitle, int status, int start, int end)
      Returns a range of all the wiki pages where nodeId = ? and head = ? and redirectTitle = ? 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 WikiPageModelImpl.

      Parameters:
      nodeId - the node ID
      head - the head
      redirectTitle - the redirect title
      status - the status
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (not inclusive)
      Returns:
      the range of matching wiki pages
    • findByN_H_R_S

      public static List<WikiPage> findByN_H_R_S(long nodeId, boolean head, String redirectTitle, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns an ordered range of all the wiki pages where nodeId = ? and head = ? and redirectTitle = ? 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 WikiPageModelImpl.

      Parameters:
      nodeId - the node ID
      head - the head
      redirectTitle - the redirect title
      status - the status
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching wiki pages
    • findByN_H_R_S

      public static List<WikiPage> findByN_H_R_S(long nodeId, boolean head, String redirectTitle, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the wiki pages where nodeId = ? and head = ? and redirectTitle = ? 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 WikiPageModelImpl.

      Parameters:
      nodeId - the node ID
      head - the head
      redirectTitle - the redirect title
      status - the status
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (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 wiki pages
    • findByN_H_R_S_First

      public static WikiPage findByN_H_R_S_First(long nodeId, boolean head, String redirectTitle, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the first wiki page in the ordered set where nodeId = ? and head = ? and redirectTitle = ? and status = ?.
      Parameters:
      nodeId - the node ID
      head - the head
      redirectTitle - the redirect title
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching wiki page
      Throws:
      NoSuchPageException - if a matching wiki page could not be found
      NoSuchPageException
    • fetchByN_H_R_S_First

      public static WikiPage fetchByN_H_R_S_First(long nodeId, boolean head, String redirectTitle, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns the first wiki page in the ordered set where nodeId = ? and head = ? and redirectTitle = ? and status = ?.
      Parameters:
      nodeId - the node ID
      head - the head
      redirectTitle - the redirect title
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching wiki page, or null if a matching wiki page could not be found
    • findByN_H_R_S_Last

      public static WikiPage findByN_H_R_S_Last(long nodeId, boolean head, String redirectTitle, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the last wiki page in the ordered set where nodeId = ? and head = ? and redirectTitle = ? and status = ?.
      Parameters:
      nodeId - the node ID
      head - the head
      redirectTitle - the redirect title
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching wiki page
      Throws:
      NoSuchPageException - if a matching wiki page could not be found
      NoSuchPageException
    • fetchByN_H_R_S_Last

      public static WikiPage fetchByN_H_R_S_Last(long nodeId, boolean head, String redirectTitle, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns the last wiki page in the ordered set where nodeId = ? and head = ? and redirectTitle = ? and status = ?.
      Parameters:
      nodeId - the node ID
      head - the head
      redirectTitle - the redirect title
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching wiki page, or null if a matching wiki page could not be found
    • findByN_H_R_S_PrevAndNext

      public static WikiPage[] findByN_H_R_S_PrevAndNext(long pageId, long nodeId, boolean head, String redirectTitle, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the wiki pages before and after the current wiki page in the ordered set where nodeId = ? and head = ? and redirectTitle = ? and status = ?.
      Parameters:
      pageId - the primary key of the current wiki page
      nodeId - the node ID
      head - the head
      redirectTitle - the redirect title
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next wiki page
      Throws:
      NoSuchPageException - if a wiki page with the primary key could not be found
      NoSuchPageException
    • removeByN_H_R_S

      public static void removeByN_H_R_S(long nodeId, boolean head, String redirectTitle, int status)
      Removes all the wiki pages where nodeId = ? and head = ? and redirectTitle = ? and status = ? from the database.
      Parameters:
      nodeId - the node ID
      head - the head
      redirectTitle - the redirect title
      status - the status
    • countByN_H_R_S

      public static int countByN_H_R_S(long nodeId, boolean head, String redirectTitle, int status)
      Returns the number of wiki pages where nodeId = ? and head = ? and redirectTitle = ? and status = ?.
      Parameters:
      nodeId - the node ID
      head - the head
      redirectTitle - the redirect title
      status - the status
      Returns:
      the number of matching wiki pages
    • findByN_H_R_NotS

      public static List<WikiPage> findByN_H_R_NotS(long nodeId, boolean head, String redirectTitle, int status)
      Returns all the wiki pages where nodeId = ? and head = ? and redirectTitle = ? and status ≠ ?.
      Parameters:
      nodeId - the node ID
      head - the head
      redirectTitle - the redirect title
      status - the status
      Returns:
      the matching wiki pages
    • findByN_H_R_NotS

      public static List<WikiPage> findByN_H_R_NotS(long nodeId, boolean head, String redirectTitle, int status, int start, int end)
      Returns a range of all the wiki pages where nodeId = ? and head = ? and redirectTitle = ? 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 WikiPageModelImpl.

      Parameters:
      nodeId - the node ID
      head - the head
      redirectTitle - the redirect title
      status - the status
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (not inclusive)
      Returns:
      the range of matching wiki pages
    • findByN_H_R_NotS

      public static List<WikiPage> findByN_H_R_NotS(long nodeId, boolean head, String redirectTitle, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns an ordered range of all the wiki pages where nodeId = ? and head = ? and redirectTitle = ? 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 WikiPageModelImpl.

      Parameters:
      nodeId - the node ID
      head - the head
      redirectTitle - the redirect title
      status - the status
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching wiki pages
    • findByN_H_R_NotS

      public static List<WikiPage> findByN_H_R_NotS(long nodeId, boolean head, String redirectTitle, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the wiki pages where nodeId = ? and head = ? and redirectTitle = ? 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 WikiPageModelImpl.

      Parameters:
      nodeId - the node ID
      head - the head
      redirectTitle - the redirect title
      status - the status
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (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 wiki pages
    • findByN_H_R_NotS_First

      public static WikiPage findByN_H_R_NotS_First(long nodeId, boolean head, String redirectTitle, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the first wiki page in the ordered set where nodeId = ? and head = ? and redirectTitle = ? and status ≠ ?.
      Parameters:
      nodeId - the node ID
      head - the head
      redirectTitle - the redirect title
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching wiki page
      Throws:
      NoSuchPageException - if a matching wiki page could not be found
      NoSuchPageException
    • fetchByN_H_R_NotS_First

      public static WikiPage fetchByN_H_R_NotS_First(long nodeId, boolean head, String redirectTitle, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns the first wiki page in the ordered set where nodeId = ? and head = ? and redirectTitle = ? and status ≠ ?.
      Parameters:
      nodeId - the node ID
      head - the head
      redirectTitle - the redirect title
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching wiki page, or null if a matching wiki page could not be found
    • findByN_H_R_NotS_Last

      public static WikiPage findByN_H_R_NotS_Last(long nodeId, boolean head, String redirectTitle, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the last wiki page in the ordered set where nodeId = ? and head = ? and redirectTitle = ? and status ≠ ?.
      Parameters:
      nodeId - the node ID
      head - the head
      redirectTitle - the redirect title
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching wiki page
      Throws:
      NoSuchPageException - if a matching wiki page could not be found
      NoSuchPageException
    • fetchByN_H_R_NotS_Last

      public static WikiPage fetchByN_H_R_NotS_Last(long nodeId, boolean head, String redirectTitle, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns the last wiki page in the ordered set where nodeId = ? and head = ? and redirectTitle = ? and status ≠ ?.
      Parameters:
      nodeId - the node ID
      head - the head
      redirectTitle - the redirect title
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching wiki page, or null if a matching wiki page could not be found
    • findByN_H_R_NotS_PrevAndNext

      public static WikiPage[] findByN_H_R_NotS_PrevAndNext(long pageId, long nodeId, boolean head, String redirectTitle, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the wiki pages before and after the current wiki page in the ordered set where nodeId = ? and head = ? and redirectTitle = ? and status ≠ ?.
      Parameters:
      pageId - the primary key of the current wiki page
      nodeId - the node ID
      head - the head
      redirectTitle - the redirect title
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next wiki page
      Throws:
      NoSuchPageException - if a wiki page with the primary key could not be found
      NoSuchPageException
    • removeByN_H_R_NotS

      public static void removeByN_H_R_NotS(long nodeId, boolean head, String redirectTitle, int status)
      Removes all the wiki pages where nodeId = ? and head = ? and redirectTitle = ? and status ≠ ? from the database.
      Parameters:
      nodeId - the node ID
      head - the head
      redirectTitle - the redirect title
      status - the status
    • countByN_H_R_NotS

      public static int countByN_H_R_NotS(long nodeId, boolean head, String redirectTitle, int status)
      Returns the number of wiki pages where nodeId = ? and head = ? and redirectTitle = ? and status ≠ ?.
      Parameters:
      nodeId - the node ID
      head - the head
      redirectTitle - the redirect title
      status - the status
      Returns:
      the number of matching wiki pages
    • findByG_N_H_P_S

      public static List<WikiPage> findByG_N_H_P_S(long groupId, long nodeId, boolean head, String parentTitle, int status)
      Returns all the wiki pages where groupId = ? and nodeId = ? and head = ? and parentTitle = ? and status = ?.
      Parameters:
      groupId - the group ID
      nodeId - the node ID
      head - the head
      parentTitle - the parent title
      status - the status
      Returns:
      the matching wiki pages
    • findByG_N_H_P_S

      public static List<WikiPage> findByG_N_H_P_S(long groupId, long nodeId, boolean head, String parentTitle, int status, int start, int end)
      Returns a range of all the wiki pages where groupId = ? and nodeId = ? and head = ? and parentTitle = ? 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 WikiPageModelImpl.

      Parameters:
      groupId - the group ID
      nodeId - the node ID
      head - the head
      parentTitle - the parent title
      status - the status
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (not inclusive)
      Returns:
      the range of matching wiki pages
    • findByG_N_H_P_S

      public static List<WikiPage> findByG_N_H_P_S(long groupId, long nodeId, boolean head, String parentTitle, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns an ordered range of all the wiki pages where groupId = ? and nodeId = ? and head = ? and parentTitle = ? 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 WikiPageModelImpl.

      Parameters:
      groupId - the group ID
      nodeId - the node ID
      head - the head
      parentTitle - the parent title
      status - the status
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching wiki pages
    • findByG_N_H_P_S

      public static List<WikiPage> findByG_N_H_P_S(long groupId, long nodeId, boolean head, String parentTitle, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the wiki pages where groupId = ? and nodeId = ? and head = ? and parentTitle = ? 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 WikiPageModelImpl.

      Parameters:
      groupId - the group ID
      nodeId - the node ID
      head - the head
      parentTitle - the parent title
      status - the status
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (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 wiki pages
    • findByG_N_H_P_S_First

      public static WikiPage findByG_N_H_P_S_First(long groupId, long nodeId, boolean head, String parentTitle, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the first wiki page in the ordered set where groupId = ? and nodeId = ? and head = ? and parentTitle = ? and status = ?.
      Parameters:
      groupId - the group ID
      nodeId - the node ID
      head - the head
      parentTitle - the parent title
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching wiki page
      Throws:
      NoSuchPageException - if a matching wiki page could not be found
      NoSuchPageException
    • fetchByG_N_H_P_S_First

      public static WikiPage fetchByG_N_H_P_S_First(long groupId, long nodeId, boolean head, String parentTitle, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns the first wiki page in the ordered set where groupId = ? and nodeId = ? and head = ? and parentTitle = ? and status = ?.
      Parameters:
      groupId - the group ID
      nodeId - the node ID
      head - the head
      parentTitle - the parent title
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching wiki page, or null if a matching wiki page could not be found
    • findByG_N_H_P_S_Last

      public static WikiPage findByG_N_H_P_S_Last(long groupId, long nodeId, boolean head, String parentTitle, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the last wiki page in the ordered set where groupId = ? and nodeId = ? and head = ? and parentTitle = ? and status = ?.
      Parameters:
      groupId - the group ID
      nodeId - the node ID
      head - the head
      parentTitle - the parent title
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching wiki page
      Throws:
      NoSuchPageException - if a matching wiki page could not be found
      NoSuchPageException
    • fetchByG_N_H_P_S_Last

      public static WikiPage fetchByG_N_H_P_S_Last(long groupId, long nodeId, boolean head, String parentTitle, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns the last wiki page in the ordered set where groupId = ? and nodeId = ? and head = ? and parentTitle = ? and status = ?.
      Parameters:
      groupId - the group ID
      nodeId - the node ID
      head - the head
      parentTitle - the parent title
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching wiki page, or null if a matching wiki page could not be found
    • findByG_N_H_P_S_PrevAndNext

      public static WikiPage[] findByG_N_H_P_S_PrevAndNext(long pageId, long groupId, long nodeId, boolean head, String parentTitle, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the wiki pages before and after the current wiki page in the ordered set where groupId = ? and nodeId = ? and head = ? and parentTitle = ? and status = ?.
      Parameters:
      pageId - the primary key of the current wiki page
      groupId - the group ID
      nodeId - the node ID
      head - the head
      parentTitle - the parent title
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next wiki page
      Throws:
      NoSuchPageException - if a wiki page with the primary key could not be found
      NoSuchPageException
    • filterFindByG_N_H_P_S

      public static List<WikiPage> filterFindByG_N_H_P_S(long groupId, long nodeId, boolean head, String parentTitle, int status)
      Returns all the wiki pages that the user has permission to view where groupId = ? and nodeId = ? and head = ? and parentTitle = ? and status = ?.
      Parameters:
      groupId - the group ID
      nodeId - the node ID
      head - the head
      parentTitle - the parent title
      status - the status
      Returns:
      the matching wiki pages that the user has permission to view
    • filterFindByG_N_H_P_S

      public static List<WikiPage> filterFindByG_N_H_P_S(long groupId, long nodeId, boolean head, String parentTitle, int status, int start, int end)
      Returns a range of all the wiki pages that the user has permission to view where groupId = ? and nodeId = ? and head = ? and parentTitle = ? 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 WikiPageModelImpl.

      Parameters:
      groupId - the group ID
      nodeId - the node ID
      head - the head
      parentTitle - the parent title
      status - the status
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (not inclusive)
      Returns:
      the range of matching wiki pages that the user has permission to view
    • filterFindByG_N_H_P_S

      public static List<WikiPage> filterFindByG_N_H_P_S(long groupId, long nodeId, boolean head, String parentTitle, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns an ordered range of all the wiki pages that the user has permissions to view where groupId = ? and nodeId = ? and head = ? and parentTitle = ? 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 WikiPageModelImpl.

      Parameters:
      groupId - the group ID
      nodeId - the node ID
      head - the head
      parentTitle - the parent title
      status - the status
      start - the lower bound of the range of wiki pages
      end - the upper bound of the range of wiki pages (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching wiki pages that the user has permission to view
    • filterFindByG_N_H_P_S_PrevAndNext

      public static WikiPage[] filterFindByG_N_H_P_S_PrevAndNext(long pageId, long groupId, long nodeId, boolean head, String parentTitle, int status, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator) throws NoSuchPageException
      Returns the wiki pages before and after the current wiki page in the ordered set of wiki pages that the user has permission to view where groupId = ? and nodeId = ? and head = ? and parentTitle = ? and status = ?.
      Parameters:
      pageId - the primary key of the current wiki page
      groupId - the group ID
      nodeId - the node ID
      head - the head
      parentTitle - the parent title
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next wiki page
      Throws:
      NoSuchPageException - if a wiki page with the primary key could not be found
      NoSuchPageException
    • removeByG_N_H_P_S

      public static void removeByG_N_H_P_S(long groupId, long nodeId, boolean head, String parentTitle, int status)
      Removes all the wiki pages where groupId = ? and nodeId = ? and head = ? and parentTitle = ? and status = ? from the database.
      Parameters:
      groupId - the group ID
      nodeId - the node ID
      head - the head
      parentTitle - the parent title
      status - the status
    • countByG_N_H_P_S

      public static int countByG_N_H_P_S(long groupId, long nodeId, boolean head, String parentTitle, int status)
      Returns the number of wiki pages where groupId = ? and nodeId = ? and head = ? and parentTitle = ? and status = ?.
      Parameters:
      groupId - the group ID
      nodeId - the node ID
      head - the head
      parentTitle - the parent title
      status - the status
      Returns:
      the number of matching wiki pages
    • filterCountByG_N_H_P_S

      public static int filterCountByG_N_H_P_S(long groupId, long nodeId, boolean head, String parentTitle, int status)
      Returns the number of wiki pages that the user has permission to view where groupId = ? and nodeId = ? and head = ? and parentTitle = ? and status = ?.
      Parameters:
      groupId - the group ID
      nodeId - the node ID
      head - the head
      parentTitle - the parent title
      status - the status
      Returns:
      the number of matching wiki pages that the user has permission to view
    • cacheResult

      public static void cacheResult(WikiPage wikiPage)
      Caches the wiki page in the entity cache if it is enabled.
      Parameters:
      wikiPage - the wiki page
    • cacheResult

      public static void cacheResult(List<WikiPage> wikiPages)
      Caches the wiki pages in the entity cache if it is enabled.
      Parameters:
      wikiPages - the wiki pages
    • create

      public static WikiPage create(long pageId)
      Creates a new wiki page with the primary key. Does not add the wiki page to the database.
      Parameters:
      pageId - the primary key for the new wiki page
      Returns:
      the new wiki page
    • remove

      public static WikiPage remove(long pageId) throws NoSuchPageException
      Removes the wiki page with the primary key from the database. Also notifies the appropriate model listeners.
      Parameters:
      pageId - the primary key of the wiki page
      Returns:
      the wiki page that was removed
      Throws:
      NoSuchPageException - if a wiki page with the primary key could not be found
      NoSuchPageException
    • updateImpl

      public static WikiPage updateImpl(WikiPage wikiPage)
    • findByPrimaryKey

      public static WikiPage findByPrimaryKey(long pageId) throws NoSuchPageException
      Returns the wiki page with the primary key or throws a NoSuchPageException if it could not be found.
      Parameters:
      pageId - the primary key of the wiki page
      Returns:
      the wiki page
      Throws:
      NoSuchPageException - if a wiki page with the primary key could not be found
      NoSuchPageException
    • fetchByPrimaryKey

      public static WikiPage fetchByPrimaryKey(long pageId)
      Returns the wiki page with the primary key or returns null if it could not be found.
      Parameters:
      pageId - the primary key of the wiki page
      Returns:
      the wiki page, or null if a wiki page with the primary key could not be found
    • findAll

      public static List<WikiPage> findAll()
      Returns all the wiki pages.
      Returns:
      the wiki pages
    • findAll

      public static List<WikiPage> findAll(int start, int end)
      Returns a range of all the wiki pages.

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

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

      public static List<WikiPage> findAll(int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WikiPage> orderByComparator)
      Returns an ordered range of all the wiki pages.

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

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

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

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

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

      public static void removeAll()
      Removes all the wiki pages from the database.
    • countAll

      public static int countAll()
      Returns the number of wiki pages.
      Returns:
      the number of wiki pages
    • getPersistence

      public static WikiPagePersistence getPersistence()
    • setPersistence

      public static void setPersistence(WikiPagePersistence persistence)