All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.liferay.site.navigation.service.persistence.SiteNavigationMenuItemPersistence Maven / Gradle / Ivy

There is a newer version: 7.4.3.112-ga112
Show newest version
/**
 * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
 *
 * This library is free software; you can redistribute it and/or modify it under
 * the terms of the GNU Lesser General Public License as published by the Free
 * Software Foundation; either version 2.1 of the License, or (at your option)
 * any later version.
 *
 * This library is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
 * details.
 */

package com.liferay.site.navigation.service.persistence;

import aQute.bnd.annotation.ProviderType;

import com.liferay.portal.kernel.service.persistence.BasePersistence;
import com.liferay.site.navigation.exception.NoSuchMenuItemException;
import com.liferay.site.navigation.model.SiteNavigationMenuItem;

import java.io.Serializable;

import java.util.Map;
import java.util.Set;

/**
 * The persistence interface for the site navigation menu item service.
 *
 * 

* Caching information and settings can be found in portal.properties *

* * @author Brian Wing Shun Chan * @see SiteNavigationMenuItemUtil * @generated */ @ProviderType public interface SiteNavigationMenuItemPersistence extends BasePersistence { /* * NOTE FOR DEVELOPERS: * * Never modify or reference this interface directly. Always use {@link SiteNavigationMenuItemUtil} to access the site navigation menu item persistence. Modify service.xml and rerun ServiceBuilder to regenerate this interface. */ @Override public Map fetchByPrimaryKeys( Set primaryKeys); /** * Returns all the site navigation menu items where uuid = ?. * * @param uuid the uuid * @return the matching site navigation menu items */ public java.util.List findByUuid(String uuid); /** * Returns a range of all the site navigation menu items 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 and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from SiteNavigationMenuItemModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. *

* * @param uuid the uuid * @param start the lower bound of the range of site navigation menu items * @param end the upper bound of the range of site navigation menu items (not inclusive) * @return the range of matching site navigation menu items */ public java.util.List findByUuid( String uuid, int start, int end); /** * Returns an ordered range of all the site navigation menu items 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 and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from SiteNavigationMenuItemModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. *

* * @param uuid the uuid * @param start the lower bound of the range of site navigation menu items * @param end the upper bound of the range of site navigation menu items (not inclusive) * @param orderByComparator the comparator to order the results by (optionally null) * @return the ordered range of matching site navigation menu items */ public java.util.List findByUuid( String uuid, int start, int end, com.liferay.portal.kernel.util.OrderByComparator orderByComparator); /** * Returns an ordered range of all the site navigation menu items 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 and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from SiteNavigationMenuItemModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. *

* * @param uuid the uuid * @param start the lower bound of the range of site navigation menu items * @param end the upper bound of the range of site navigation menu items (not inclusive) * @param orderByComparator the comparator to order the results by (optionally null) * @param retrieveFromCache whether to retrieve from the finder cache * @return the ordered range of matching site navigation menu items */ public java.util.List findByUuid( String uuid, int start, int end, com.liferay.portal.kernel.util.OrderByComparator orderByComparator, boolean retrieveFromCache); /** * Returns the first site navigation menu item in the ordered set where uuid = ?. * * @param uuid the uuid * @param orderByComparator the comparator to order the set by (optionally null) * @return the first matching site navigation menu item * @throws NoSuchMenuItemException if a matching site navigation menu item could not be found */ public SiteNavigationMenuItem findByUuid_First( String uuid, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws NoSuchMenuItemException; /** * Returns the first site navigation menu item in the ordered set where uuid = ?. * * @param uuid the uuid * @param orderByComparator the comparator to order the set by (optionally null) * @return the first matching site navigation menu item, or null if a matching site navigation menu item could not be found */ public SiteNavigationMenuItem fetchByUuid_First( String uuid, com.liferay.portal.kernel.util.OrderByComparator orderByComparator); /** * Returns the last site navigation menu item in the ordered set where uuid = ?. * * @param uuid the uuid * @param orderByComparator the comparator to order the set by (optionally null) * @return the last matching site navigation menu item * @throws NoSuchMenuItemException if a matching site navigation menu item could not be found */ public SiteNavigationMenuItem findByUuid_Last( String uuid, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws NoSuchMenuItemException; /** * Returns the last site navigation menu item in the ordered set where uuid = ?. * * @param uuid the uuid * @param orderByComparator the comparator to order the set by (optionally null) * @return the last matching site navigation menu item, or null if a matching site navigation menu item could not be found */ public SiteNavigationMenuItem fetchByUuid_Last( String uuid, com.liferay.portal.kernel.util.OrderByComparator orderByComparator); /** * Returns the site navigation menu items before and after the current site navigation menu item in the ordered set where uuid = ?. * * @param siteNavigationMenuItemId the primary key of the current site navigation menu item * @param uuid the uuid * @param orderByComparator the comparator to order the set by (optionally null) * @return the previous, current, and next site navigation menu item * @throws NoSuchMenuItemException if a site navigation menu item with the primary key could not be found */ public SiteNavigationMenuItem[] findByUuid_PrevAndNext( long siteNavigationMenuItemId, String uuid, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws NoSuchMenuItemException; /** * Removes all the site navigation menu items where uuid = ? from the database. * * @param uuid the uuid */ public void removeByUuid(String uuid); /** * Returns the number of site navigation menu items where uuid = ?. * * @param uuid the uuid * @return the number of matching site navigation menu items */ public int countByUuid(String uuid); /** * Returns the site navigation menu item where uuid = ? and groupId = ? or throws a NoSuchMenuItemException if it could not be found. * * @param uuid the uuid * @param groupId the group ID * @return the matching site navigation menu item * @throws NoSuchMenuItemException if a matching site navigation menu item could not be found */ public SiteNavigationMenuItem findByUUID_G(String uuid, long groupId) throws NoSuchMenuItemException; /** * Returns the site navigation menu item where uuid = ? and groupId = ? or returns null if it could not be found. Uses the finder cache. * * @param uuid the uuid * @param groupId the group ID * @return the matching site navigation menu item, or null if a matching site navigation menu item could not be found */ public SiteNavigationMenuItem fetchByUUID_G(String uuid, long groupId); /** * Returns the site navigation menu item where uuid = ? and groupId = ? or returns null if it could not be found, optionally using the finder cache. * * @param uuid the uuid * @param groupId the group ID * @param retrieveFromCache whether to retrieve from the finder cache * @return the matching site navigation menu item, or null if a matching site navigation menu item could not be found */ public SiteNavigationMenuItem fetchByUUID_G( String uuid, long groupId, boolean retrieveFromCache); /** * Removes the site navigation menu item where uuid = ? and groupId = ? from the database. * * @param uuid the uuid * @param groupId the group ID * @return the site navigation menu item that was removed */ public SiteNavigationMenuItem removeByUUID_G(String uuid, long groupId) throws NoSuchMenuItemException; /** * Returns the number of site navigation menu items where uuid = ? and groupId = ?. * * @param uuid the uuid * @param groupId the group ID * @return the number of matching site navigation menu items */ public int countByUUID_G(String uuid, long groupId); /** * Returns all the site navigation menu items where uuid = ? and companyId = ?. * * @param uuid the uuid * @param companyId the company ID * @return the matching site navigation menu items */ public java.util.List findByUuid_C( String uuid, long companyId); /** * Returns a range of all the site navigation menu items 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 and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from SiteNavigationMenuItemModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. *

* * @param uuid the uuid * @param companyId the company ID * @param start the lower bound of the range of site navigation menu items * @param end the upper bound of the range of site navigation menu items (not inclusive) * @return the range of matching site navigation menu items */ public java.util.List findByUuid_C( String uuid, long companyId, int start, int end); /** * Returns an ordered range of all the site navigation menu items 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 and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from SiteNavigationMenuItemModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. *

* * @param uuid the uuid * @param companyId the company ID * @param start the lower bound of the range of site navigation menu items * @param end the upper bound of the range of site navigation menu items (not inclusive) * @param orderByComparator the comparator to order the results by (optionally null) * @return the ordered range of matching site navigation menu items */ public java.util.List findByUuid_C( String uuid, long companyId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator orderByComparator); /** * Returns an ordered range of all the site navigation menu items 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 and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from SiteNavigationMenuItemModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. *

* * @param uuid the uuid * @param companyId the company ID * @param start the lower bound of the range of site navigation menu items * @param end the upper bound of the range of site navigation menu items (not inclusive) * @param orderByComparator the comparator to order the results by (optionally null) * @param retrieveFromCache whether to retrieve from the finder cache * @return the ordered range of matching site navigation menu items */ public java.util.List findByUuid_C( String uuid, long companyId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator orderByComparator, boolean retrieveFromCache); /** * Returns the first site navigation menu item in the ordered set where uuid = ? and companyId = ?. * * @param uuid the uuid * @param companyId the company ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the first matching site navigation menu item * @throws NoSuchMenuItemException if a matching site navigation menu item could not be found */ public SiteNavigationMenuItem findByUuid_C_First( String uuid, long companyId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws NoSuchMenuItemException; /** * Returns the first site navigation menu item in the ordered set where uuid = ? and companyId = ?. * * @param uuid the uuid * @param companyId the company ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the first matching site navigation menu item, or null if a matching site navigation menu item could not be found */ public SiteNavigationMenuItem fetchByUuid_C_First( String uuid, long companyId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator); /** * Returns the last site navigation menu item in the ordered set where uuid = ? and companyId = ?. * * @param uuid the uuid * @param companyId the company ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the last matching site navigation menu item * @throws NoSuchMenuItemException if a matching site navigation menu item could not be found */ public SiteNavigationMenuItem findByUuid_C_Last( String uuid, long companyId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws NoSuchMenuItemException; /** * Returns the last site navigation menu item in the ordered set where uuid = ? and companyId = ?. * * @param uuid the uuid * @param companyId the company ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the last matching site navigation menu item, or null if a matching site navigation menu item could not be found */ public SiteNavigationMenuItem fetchByUuid_C_Last( String uuid, long companyId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator); /** * Returns the site navigation menu items before and after the current site navigation menu item in the ordered set where uuid = ? and companyId = ?. * * @param siteNavigationMenuItemId the primary key of the current site navigation menu item * @param uuid the uuid * @param companyId the company ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the previous, current, and next site navigation menu item * @throws NoSuchMenuItemException if a site navigation menu item with the primary key could not be found */ public SiteNavigationMenuItem[] findByUuid_C_PrevAndNext( long siteNavigationMenuItemId, String uuid, long companyId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws NoSuchMenuItemException; /** * Removes all the site navigation menu items where uuid = ? and companyId = ? from the database. * * @param uuid the uuid * @param companyId the company ID */ public void removeByUuid_C(String uuid, long companyId); /** * Returns the number of site navigation menu items where uuid = ? and companyId = ?. * * @param uuid the uuid * @param companyId the company ID * @return the number of matching site navigation menu items */ public int countByUuid_C(String uuid, long companyId); /** * Returns all the site navigation menu items where siteNavigationMenuId = ?. * * @param siteNavigationMenuId the site navigation menu ID * @return the matching site navigation menu items */ public java.util.List findBySiteNavigationMenuId( long siteNavigationMenuId); /** * Returns a range of all the site navigation menu items where siteNavigationMenuId = ?. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from SiteNavigationMenuItemModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. *

* * @param siteNavigationMenuId the site navigation menu ID * @param start the lower bound of the range of site navigation menu items * @param end the upper bound of the range of site navigation menu items (not inclusive) * @return the range of matching site navigation menu items */ public java.util.List findBySiteNavigationMenuId( long siteNavigationMenuId, int start, int end); /** * Returns an ordered range of all the site navigation menu items where siteNavigationMenuId = ?. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from SiteNavigationMenuItemModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. *

* * @param siteNavigationMenuId the site navigation menu ID * @param start the lower bound of the range of site navigation menu items * @param end the upper bound of the range of site navigation menu items (not inclusive) * @param orderByComparator the comparator to order the results by (optionally null) * @return the ordered range of matching site navigation menu items */ public java.util.List findBySiteNavigationMenuId( long siteNavigationMenuId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator orderByComparator); /** * Returns an ordered range of all the site navigation menu items where siteNavigationMenuId = ?. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from SiteNavigationMenuItemModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. *

* * @param siteNavigationMenuId the site navigation menu ID * @param start the lower bound of the range of site navigation menu items * @param end the upper bound of the range of site navigation menu items (not inclusive) * @param orderByComparator the comparator to order the results by (optionally null) * @param retrieveFromCache whether to retrieve from the finder cache * @return the ordered range of matching site navigation menu items */ public java.util.List findBySiteNavigationMenuId( long siteNavigationMenuId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator orderByComparator, boolean retrieveFromCache); /** * Returns the first site navigation menu item in the ordered set where siteNavigationMenuId = ?. * * @param siteNavigationMenuId the site navigation menu ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the first matching site navigation menu item * @throws NoSuchMenuItemException if a matching site navigation menu item could not be found */ public SiteNavigationMenuItem findBySiteNavigationMenuId_First( long siteNavigationMenuId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws NoSuchMenuItemException; /** * Returns the first site navigation menu item in the ordered set where siteNavigationMenuId = ?. * * @param siteNavigationMenuId the site navigation menu ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the first matching site navigation menu item, or null if a matching site navigation menu item could not be found */ public SiteNavigationMenuItem fetchBySiteNavigationMenuId_First( long siteNavigationMenuId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator); /** * Returns the last site navigation menu item in the ordered set where siteNavigationMenuId = ?. * * @param siteNavigationMenuId the site navigation menu ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the last matching site navigation menu item * @throws NoSuchMenuItemException if a matching site navigation menu item could not be found */ public SiteNavigationMenuItem findBySiteNavigationMenuId_Last( long siteNavigationMenuId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws NoSuchMenuItemException; /** * Returns the last site navigation menu item in the ordered set where siteNavigationMenuId = ?. * * @param siteNavigationMenuId the site navigation menu ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the last matching site navigation menu item, or null if a matching site navigation menu item could not be found */ public SiteNavigationMenuItem fetchBySiteNavigationMenuId_Last( long siteNavigationMenuId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator); /** * Returns the site navigation menu items before and after the current site navigation menu item in the ordered set where siteNavigationMenuId = ?. * * @param siteNavigationMenuItemId the primary key of the current site navigation menu item * @param siteNavigationMenuId the site navigation menu ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the previous, current, and next site navigation menu item * @throws NoSuchMenuItemException if a site navigation menu item with the primary key could not be found */ public SiteNavigationMenuItem[] findBySiteNavigationMenuId_PrevAndNext( long siteNavigationMenuItemId, long siteNavigationMenuId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws NoSuchMenuItemException; /** * Removes all the site navigation menu items where siteNavigationMenuId = ? from the database. * * @param siteNavigationMenuId the site navigation menu ID */ public void removeBySiteNavigationMenuId(long siteNavigationMenuId); /** * Returns the number of site navigation menu items where siteNavigationMenuId = ?. * * @param siteNavigationMenuId the site navigation menu ID * @return the number of matching site navigation menu items */ public int countBySiteNavigationMenuId(long siteNavigationMenuId); /** * Returns all the site navigation menu items where parentSiteNavigationMenuItemId = ?. * * @param parentSiteNavigationMenuItemId the parent site navigation menu item ID * @return the matching site navigation menu items */ public java.util.List findByParentSiteNavigationMenuItemId( long parentSiteNavigationMenuItemId); /** * Returns a range of all the site navigation menu items where parentSiteNavigationMenuItemId = ?. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from SiteNavigationMenuItemModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. *

* * @param parentSiteNavigationMenuItemId the parent site navigation menu item ID * @param start the lower bound of the range of site navigation menu items * @param end the upper bound of the range of site navigation menu items (not inclusive) * @return the range of matching site navigation menu items */ public java.util.List findByParentSiteNavigationMenuItemId( long parentSiteNavigationMenuItemId, int start, int end); /** * Returns an ordered range of all the site navigation menu items where parentSiteNavigationMenuItemId = ?. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from SiteNavigationMenuItemModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. *

* * @param parentSiteNavigationMenuItemId the parent site navigation menu item ID * @param start the lower bound of the range of site navigation menu items * @param end the upper bound of the range of site navigation menu items (not inclusive) * @param orderByComparator the comparator to order the results by (optionally null) * @return the ordered range of matching site navigation menu items */ public java.util.List findByParentSiteNavigationMenuItemId( long parentSiteNavigationMenuItemId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator orderByComparator); /** * Returns an ordered range of all the site navigation menu items where parentSiteNavigationMenuItemId = ?. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from SiteNavigationMenuItemModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. *

* * @param parentSiteNavigationMenuItemId the parent site navigation menu item ID * @param start the lower bound of the range of site navigation menu items * @param end the upper bound of the range of site navigation menu items (not inclusive) * @param orderByComparator the comparator to order the results by (optionally null) * @param retrieveFromCache whether to retrieve from the finder cache * @return the ordered range of matching site navigation menu items */ public java.util.List findByParentSiteNavigationMenuItemId( long parentSiteNavigationMenuItemId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator orderByComparator, boolean retrieveFromCache); /** * Returns the first site navigation menu item in the ordered set where parentSiteNavigationMenuItemId = ?. * * @param parentSiteNavigationMenuItemId the parent site navigation menu item ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the first matching site navigation menu item * @throws NoSuchMenuItemException if a matching site navigation menu item could not be found */ public SiteNavigationMenuItem findByParentSiteNavigationMenuItemId_First( long parentSiteNavigationMenuItemId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws NoSuchMenuItemException; /** * Returns the first site navigation menu item in the ordered set where parentSiteNavigationMenuItemId = ?. * * @param parentSiteNavigationMenuItemId the parent site navigation menu item ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the first matching site navigation menu item, or null if a matching site navigation menu item could not be found */ public SiteNavigationMenuItem fetchByParentSiteNavigationMenuItemId_First( long parentSiteNavigationMenuItemId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator); /** * Returns the last site navigation menu item in the ordered set where parentSiteNavigationMenuItemId = ?. * * @param parentSiteNavigationMenuItemId the parent site navigation menu item ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the last matching site navigation menu item * @throws NoSuchMenuItemException if a matching site navigation menu item could not be found */ public SiteNavigationMenuItem findByParentSiteNavigationMenuItemId_Last( long parentSiteNavigationMenuItemId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws NoSuchMenuItemException; /** * Returns the last site navigation menu item in the ordered set where parentSiteNavigationMenuItemId = ?. * * @param parentSiteNavigationMenuItemId the parent site navigation menu item ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the last matching site navigation menu item, or null if a matching site navigation menu item could not be found */ public SiteNavigationMenuItem fetchByParentSiteNavigationMenuItemId_Last( long parentSiteNavigationMenuItemId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator); /** * Returns the site navigation menu items before and after the current site navigation menu item in the ordered set where parentSiteNavigationMenuItemId = ?. * * @param siteNavigationMenuItemId the primary key of the current site navigation menu item * @param parentSiteNavigationMenuItemId the parent site navigation menu item ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the previous, current, and next site navigation menu item * @throws NoSuchMenuItemException if a site navigation menu item with the primary key could not be found */ public SiteNavigationMenuItem[] findByParentSiteNavigationMenuItemId_PrevAndNext( long siteNavigationMenuItemId, long parentSiteNavigationMenuItemId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws NoSuchMenuItemException; /** * Removes all the site navigation menu items where parentSiteNavigationMenuItemId = ? from the database. * * @param parentSiteNavigationMenuItemId the parent site navigation menu item ID */ public void removeByParentSiteNavigationMenuItemId( long parentSiteNavigationMenuItemId); /** * Returns the number of site navigation menu items where parentSiteNavigationMenuItemId = ?. * * @param parentSiteNavigationMenuItemId the parent site navigation menu item ID * @return the number of matching site navigation menu items */ public int countByParentSiteNavigationMenuItemId( long parentSiteNavigationMenuItemId); /** * Returns all the site navigation menu items where siteNavigationMenuId = ? and parentSiteNavigationMenuItemId = ?. * * @param siteNavigationMenuId the site navigation menu ID * @param parentSiteNavigationMenuItemId the parent site navigation menu item ID * @return the matching site navigation menu items */ public java.util.List findByS_P( long siteNavigationMenuId, long parentSiteNavigationMenuItemId); /** * Returns a range of all the site navigation menu items where siteNavigationMenuId = ? and parentSiteNavigationMenuItemId = ?. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from SiteNavigationMenuItemModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. *

* * @param siteNavigationMenuId the site navigation menu ID * @param parentSiteNavigationMenuItemId the parent site navigation menu item ID * @param start the lower bound of the range of site navigation menu items * @param end the upper bound of the range of site navigation menu items (not inclusive) * @return the range of matching site navigation menu items */ public java.util.List findByS_P( long siteNavigationMenuId, long parentSiteNavigationMenuItemId, int start, int end); /** * Returns an ordered range of all the site navigation menu items where siteNavigationMenuId = ? and parentSiteNavigationMenuItemId = ?. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from SiteNavigationMenuItemModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. *

* * @param siteNavigationMenuId the site navigation menu ID * @param parentSiteNavigationMenuItemId the parent site navigation menu item ID * @param start the lower bound of the range of site navigation menu items * @param end the upper bound of the range of site navigation menu items (not inclusive) * @param orderByComparator the comparator to order the results by (optionally null) * @return the ordered range of matching site navigation menu items */ public java.util.List findByS_P( long siteNavigationMenuId, long parentSiteNavigationMenuItemId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator orderByComparator); /** * Returns an ordered range of all the site navigation menu items where siteNavigationMenuId = ? and parentSiteNavigationMenuItemId = ?. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from SiteNavigationMenuItemModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. *

* * @param siteNavigationMenuId the site navigation menu ID * @param parentSiteNavigationMenuItemId the parent site navigation menu item ID * @param start the lower bound of the range of site navigation menu items * @param end the upper bound of the range of site navigation menu items (not inclusive) * @param orderByComparator the comparator to order the results by (optionally null) * @param retrieveFromCache whether to retrieve from the finder cache * @return the ordered range of matching site navigation menu items */ public java.util.List findByS_P( long siteNavigationMenuId, long parentSiteNavigationMenuItemId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator orderByComparator, boolean retrieveFromCache); /** * Returns the first site navigation menu item in the ordered set where siteNavigationMenuId = ? and parentSiteNavigationMenuItemId = ?. * * @param siteNavigationMenuId the site navigation menu ID * @param parentSiteNavigationMenuItemId the parent site navigation menu item ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the first matching site navigation menu item * @throws NoSuchMenuItemException if a matching site navigation menu item could not be found */ public SiteNavigationMenuItem findByS_P_First( long siteNavigationMenuId, long parentSiteNavigationMenuItemId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws NoSuchMenuItemException; /** * Returns the first site navigation menu item in the ordered set where siteNavigationMenuId = ? and parentSiteNavigationMenuItemId = ?. * * @param siteNavigationMenuId the site navigation menu ID * @param parentSiteNavigationMenuItemId the parent site navigation menu item ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the first matching site navigation menu item, or null if a matching site navigation menu item could not be found */ public SiteNavigationMenuItem fetchByS_P_First( long siteNavigationMenuId, long parentSiteNavigationMenuItemId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator); /** * Returns the last site navigation menu item in the ordered set where siteNavigationMenuId = ? and parentSiteNavigationMenuItemId = ?. * * @param siteNavigationMenuId the site navigation menu ID * @param parentSiteNavigationMenuItemId the parent site navigation menu item ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the last matching site navigation menu item * @throws NoSuchMenuItemException if a matching site navigation menu item could not be found */ public SiteNavigationMenuItem findByS_P_Last( long siteNavigationMenuId, long parentSiteNavigationMenuItemId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws NoSuchMenuItemException; /** * Returns the last site navigation menu item in the ordered set where siteNavigationMenuId = ? and parentSiteNavigationMenuItemId = ?. * * @param siteNavigationMenuId the site navigation menu ID * @param parentSiteNavigationMenuItemId the parent site navigation menu item ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the last matching site navigation menu item, or null if a matching site navigation menu item could not be found */ public SiteNavigationMenuItem fetchByS_P_Last( long siteNavigationMenuId, long parentSiteNavigationMenuItemId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator); /** * Returns the site navigation menu items before and after the current site navigation menu item in the ordered set where siteNavigationMenuId = ? and parentSiteNavigationMenuItemId = ?. * * @param siteNavigationMenuItemId the primary key of the current site navigation menu item * @param siteNavigationMenuId the site navigation menu ID * @param parentSiteNavigationMenuItemId the parent site navigation menu item ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the previous, current, and next site navigation menu item * @throws NoSuchMenuItemException if a site navigation menu item with the primary key could not be found */ public SiteNavigationMenuItem[] findByS_P_PrevAndNext( long siteNavigationMenuItemId, long siteNavigationMenuId, long parentSiteNavigationMenuItemId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws NoSuchMenuItemException; /** * Removes all the site navigation menu items where siteNavigationMenuId = ? and parentSiteNavigationMenuItemId = ? from the database. * * @param siteNavigationMenuId the site navigation menu ID * @param parentSiteNavigationMenuItemId the parent site navigation menu item ID */ public void removeByS_P( long siteNavigationMenuId, long parentSiteNavigationMenuItemId); /** * Returns the number of site navigation menu items where siteNavigationMenuId = ? and parentSiteNavigationMenuItemId = ?. * * @param siteNavigationMenuId the site navigation menu ID * @param parentSiteNavigationMenuItemId the parent site navigation menu item ID * @return the number of matching site navigation menu items */ public int countByS_P( long siteNavigationMenuId, long parentSiteNavigationMenuItemId); /** * Returns all the site navigation menu items where siteNavigationMenuId = ? and name LIKE ?. * * @param siteNavigationMenuId the site navigation menu ID * @param name the name * @return the matching site navigation menu items */ public java.util.List findByS_LikeN( long siteNavigationMenuId, String name); /** * Returns a range of all the site navigation menu items where siteNavigationMenuId = ? and name LIKE ?. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from SiteNavigationMenuItemModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. *

* * @param siteNavigationMenuId the site navigation menu ID * @param name the name * @param start the lower bound of the range of site navigation menu items * @param end the upper bound of the range of site navigation menu items (not inclusive) * @return the range of matching site navigation menu items */ public java.util.List findByS_LikeN( long siteNavigationMenuId, String name, int start, int end); /** * Returns an ordered range of all the site navigation menu items where siteNavigationMenuId = ? and name LIKE ?. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from SiteNavigationMenuItemModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. *

* * @param siteNavigationMenuId the site navigation menu ID * @param name the name * @param start the lower bound of the range of site navigation menu items * @param end the upper bound of the range of site navigation menu items (not inclusive) * @param orderByComparator the comparator to order the results by (optionally null) * @return the ordered range of matching site navigation menu items */ public java.util.List findByS_LikeN( long siteNavigationMenuId, String name, int start, int end, com.liferay.portal.kernel.util.OrderByComparator orderByComparator); /** * Returns an ordered range of all the site navigation menu items where siteNavigationMenuId = ? and name LIKE ?. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from SiteNavigationMenuItemModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. *

* * @param siteNavigationMenuId the site navigation menu ID * @param name the name * @param start the lower bound of the range of site navigation menu items * @param end the upper bound of the range of site navigation menu items (not inclusive) * @param orderByComparator the comparator to order the results by (optionally null) * @param retrieveFromCache whether to retrieve from the finder cache * @return the ordered range of matching site navigation menu items */ public java.util.List findByS_LikeN( long siteNavigationMenuId, String name, int start, int end, com.liferay.portal.kernel.util.OrderByComparator orderByComparator, boolean retrieveFromCache); /** * Returns the first site navigation menu item in the ordered set where siteNavigationMenuId = ? and name LIKE ?. * * @param siteNavigationMenuId the site navigation menu ID * @param name the name * @param orderByComparator the comparator to order the set by (optionally null) * @return the first matching site navigation menu item * @throws NoSuchMenuItemException if a matching site navigation menu item could not be found */ public SiteNavigationMenuItem findByS_LikeN_First( long siteNavigationMenuId, String name, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws NoSuchMenuItemException; /** * Returns the first site navigation menu item in the ordered set where siteNavigationMenuId = ? and name LIKE ?. * * @param siteNavigationMenuId the site navigation menu ID * @param name the name * @param orderByComparator the comparator to order the set by (optionally null) * @return the first matching site navigation menu item, or null if a matching site navigation menu item could not be found */ public SiteNavigationMenuItem fetchByS_LikeN_First( long siteNavigationMenuId, String name, com.liferay.portal.kernel.util.OrderByComparator orderByComparator); /** * Returns the last site navigation menu item in the ordered set where siteNavigationMenuId = ? and name LIKE ?. * * @param siteNavigationMenuId the site navigation menu ID * @param name the name * @param orderByComparator the comparator to order the set by (optionally null) * @return the last matching site navigation menu item * @throws NoSuchMenuItemException if a matching site navigation menu item could not be found */ public SiteNavigationMenuItem findByS_LikeN_Last( long siteNavigationMenuId, String name, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws NoSuchMenuItemException; /** * Returns the last site navigation menu item in the ordered set where siteNavigationMenuId = ? and name LIKE ?. * * @param siteNavigationMenuId the site navigation menu ID * @param name the name * @param orderByComparator the comparator to order the set by (optionally null) * @return the last matching site navigation menu item, or null if a matching site navigation menu item could not be found */ public SiteNavigationMenuItem fetchByS_LikeN_Last( long siteNavigationMenuId, String name, com.liferay.portal.kernel.util.OrderByComparator orderByComparator); /** * Returns the site navigation menu items before and after the current site navigation menu item in the ordered set where siteNavigationMenuId = ? and name LIKE ?. * * @param siteNavigationMenuItemId the primary key of the current site navigation menu item * @param siteNavigationMenuId the site navigation menu ID * @param name the name * @param orderByComparator the comparator to order the set by (optionally null) * @return the previous, current, and next site navigation menu item * @throws NoSuchMenuItemException if a site navigation menu item with the primary key could not be found */ public SiteNavigationMenuItem[] findByS_LikeN_PrevAndNext( long siteNavigationMenuItemId, long siteNavigationMenuId, String name, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws NoSuchMenuItemException; /** * Removes all the site navigation menu items where siteNavigationMenuId = ? and name LIKE ? from the database. * * @param siteNavigationMenuId the site navigation menu ID * @param name the name */ public void removeByS_LikeN(long siteNavigationMenuId, String name); /** * Returns the number of site navigation menu items where siteNavigationMenuId = ? and name LIKE ?. * * @param siteNavigationMenuId the site navigation menu ID * @param name the name * @return the number of matching site navigation menu items */ public int countByS_LikeN(long siteNavigationMenuId, String name); /** * Caches the site navigation menu item in the entity cache if it is enabled. * * @param siteNavigationMenuItem the site navigation menu item */ public void cacheResult(SiteNavigationMenuItem siteNavigationMenuItem); /** * Caches the site navigation menu items in the entity cache if it is enabled. * * @param siteNavigationMenuItems the site navigation menu items */ public void cacheResult( java.util.List siteNavigationMenuItems); /** * Creates a new site navigation menu item with the primary key. Does not add the site navigation menu item to the database. * * @param siteNavigationMenuItemId the primary key for the new site navigation menu item * @return the new site navigation menu item */ public SiteNavigationMenuItem create(long siteNavigationMenuItemId); /** * Removes the site navigation menu item with the primary key from the database. Also notifies the appropriate model listeners. * * @param siteNavigationMenuItemId the primary key of the site navigation menu item * @return the site navigation menu item that was removed * @throws NoSuchMenuItemException if a site navigation menu item with the primary key could not be found */ public SiteNavigationMenuItem remove(long siteNavigationMenuItemId) throws NoSuchMenuItemException; public SiteNavigationMenuItem updateImpl( SiteNavigationMenuItem siteNavigationMenuItem); /** * Returns the site navigation menu item with the primary key or throws a NoSuchMenuItemException if it could not be found. * * @param siteNavigationMenuItemId the primary key of the site navigation menu item * @return the site navigation menu item * @throws NoSuchMenuItemException if a site navigation menu item with the primary key could not be found */ public SiteNavigationMenuItem findByPrimaryKey( long siteNavigationMenuItemId) throws NoSuchMenuItemException; /** * Returns the site navigation menu item with the primary key or returns null if it could not be found. * * @param siteNavigationMenuItemId the primary key of the site navigation menu item * @return the site navigation menu item, or null if a site navigation menu item with the primary key could not be found */ public SiteNavigationMenuItem fetchByPrimaryKey( long siteNavigationMenuItemId); /** * Returns all the site navigation menu items. * * @return the site navigation menu items */ public java.util.List findAll(); /** * Returns a range of all the site navigation menu items. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from SiteNavigationMenuItemModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. *

* * @param start the lower bound of the range of site navigation menu items * @param end the upper bound of the range of site navigation menu items (not inclusive) * @return the range of site navigation menu items */ public java.util.List findAll(int start, int end); /** * Returns an ordered range of all the site navigation menu items. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from SiteNavigationMenuItemModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. *

* * @param start the lower bound of the range of site navigation menu items * @param end the upper bound of the range of site navigation menu items (not inclusive) * @param orderByComparator the comparator to order the results by (optionally null) * @return the ordered range of site navigation menu items */ public java.util.List findAll( int start, int end, com.liferay.portal.kernel.util.OrderByComparator orderByComparator); /** * Returns an ordered range of all the site navigation menu items. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from SiteNavigationMenuItemModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. *

* * @param start the lower bound of the range of site navigation menu items * @param end the upper bound of the range of site navigation menu items (not inclusive) * @param orderByComparator the comparator to order the results by (optionally null) * @param retrieveFromCache whether to retrieve from the finder cache * @return the ordered range of site navigation menu items */ public java.util.List findAll( int start, int end, com.liferay.portal.kernel.util.OrderByComparator orderByComparator, boolean retrieveFromCache); /** * Removes all the site navigation menu items from the database. */ public void removeAll(); /** * Returns the number of site navigation menu items. * * @return the number of site navigation menu items */ public int countAll(); @Override public Set getBadColumnNames(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy