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

com.liferay.portal.kernel.service.persistence.LayoutSetPrototypeUtil 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.portal.kernel.service.persistence;

import aQute.bnd.annotation.ProviderType;

import com.liferay.portal.kernel.bean.PortalBeanLocatorUtil;
import com.liferay.portal.kernel.dao.orm.DynamicQuery;
import com.liferay.portal.kernel.model.LayoutSetPrototype;
import com.liferay.portal.kernel.service.ServiceContext;
import com.liferay.portal.kernel.util.OrderByComparator;

import java.io.Serializable;

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

/**
 * The persistence utility for the layout set prototype service. This utility wraps com.liferay.portal.service.persistence.impl.LayoutSetPrototypePersistenceImpl 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 *

* * @author Brian Wing Shun Chan * @see LayoutSetPrototypePersistence * @generated */ @ProviderType public class LayoutSetPrototypeUtil { /* * NOTE FOR DEVELOPERS: * * Never modify this class directly. Modify service.xml and rerun ServiceBuilder to regenerate this class. */ /** * @see BasePersistence#clearCache() */ public static void clearCache() { getPersistence().clearCache(); } /** * @see BasePersistence#clearCache(com.liferay.portal.kernel.model.BaseModel) */ public static void clearCache(LayoutSetPrototype layoutSetPrototype) { getPersistence().clearCache(layoutSetPrototype); } /** * @see BasePersistence#countWithDynamicQuery(DynamicQuery) */ public static long countWithDynamicQuery(DynamicQuery dynamicQuery) { return getPersistence().countWithDynamicQuery(dynamicQuery); } /** * @see BasePersistence#fetchByPrimaryKeys(Set) */ public static Map fetchByPrimaryKeys( Set primaryKeys) { return getPersistence().fetchByPrimaryKeys(primaryKeys); } /** * @see BasePersistence#findWithDynamicQuery(DynamicQuery) */ public static List findWithDynamicQuery( DynamicQuery dynamicQuery) { return getPersistence().findWithDynamicQuery(dynamicQuery); } /** * @see BasePersistence#findWithDynamicQuery(DynamicQuery, int, int) */ public static List findWithDynamicQuery( DynamicQuery dynamicQuery, int start, int end) { return getPersistence().findWithDynamicQuery(dynamicQuery, start, end); } /** * @see BasePersistence#findWithDynamicQuery(DynamicQuery, int, int, OrderByComparator) */ public static List findWithDynamicQuery( DynamicQuery dynamicQuery, int start, int end, OrderByComparator orderByComparator) { return getPersistence().findWithDynamicQuery( dynamicQuery, start, end, orderByComparator); } /** * @see BasePersistence#update(com.liferay.portal.kernel.model.BaseModel) */ public static LayoutSetPrototype update( LayoutSetPrototype layoutSetPrototype) { return getPersistence().update(layoutSetPrototype); } /** * @see BasePersistence#update(com.liferay.portal.kernel.model.BaseModel, ServiceContext) */ public static LayoutSetPrototype update( LayoutSetPrototype layoutSetPrototype, ServiceContext serviceContext) { return getPersistence().update(layoutSetPrototype, serviceContext); } /** * Returns all the layout set prototypes where uuid = ?. * * @param uuid the uuid * @return the matching layout set prototypes */ public static List findByUuid(String uuid) { return getPersistence().findByUuid(uuid); } /** * Returns a range of all the layout set prototypes 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 LayoutSetPrototypeModelImpl. 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 layout set prototypes * @param end the upper bound of the range of layout set prototypes (not inclusive) * @return the range of matching layout set prototypes */ public static List findByUuid( String uuid, int start, int end) { return getPersistence().findByUuid(uuid, start, end); } /** * Returns an ordered range of all the layout set prototypes 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 LayoutSetPrototypeModelImpl. 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 layout set prototypes * @param end the upper bound of the range of layout set prototypes (not inclusive) * @param orderByComparator the comparator to order the results by (optionally null) * @return the ordered range of matching layout set prototypes */ public static List findByUuid( String uuid, int start, int end, OrderByComparator orderByComparator) { return getPersistence().findByUuid(uuid, start, end, orderByComparator); } /** * Returns an ordered range of all the layout set prototypes 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 LayoutSetPrototypeModelImpl. 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 layout set prototypes * @param end the upper bound of the range of layout set prototypes (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 layout set prototypes */ public static List findByUuid( String uuid, int start, int end, OrderByComparator orderByComparator, boolean retrieveFromCache) { return getPersistence().findByUuid( uuid, start, end, orderByComparator, retrieveFromCache); } /** * Returns the first layout set prototype 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 layout set prototype * @throws NoSuchLayoutSetPrototypeException if a matching layout set prototype could not be found */ public static LayoutSetPrototype findByUuid_First( String uuid, OrderByComparator orderByComparator) throws com.liferay.portal.kernel.exception. NoSuchLayoutSetPrototypeException { return getPersistence().findByUuid_First(uuid, orderByComparator); } /** * Returns the first layout set prototype 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 layout set prototype, or null if a matching layout set prototype could not be found */ public static LayoutSetPrototype fetchByUuid_First( String uuid, OrderByComparator orderByComparator) { return getPersistence().fetchByUuid_First(uuid, orderByComparator); } /** * Returns the last layout set prototype 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 layout set prototype * @throws NoSuchLayoutSetPrototypeException if a matching layout set prototype could not be found */ public static LayoutSetPrototype findByUuid_Last( String uuid, OrderByComparator orderByComparator) throws com.liferay.portal.kernel.exception. NoSuchLayoutSetPrototypeException { return getPersistence().findByUuid_Last(uuid, orderByComparator); } /** * Returns the last layout set prototype 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 layout set prototype, or null if a matching layout set prototype could not be found */ public static LayoutSetPrototype fetchByUuid_Last( String uuid, OrderByComparator orderByComparator) { return getPersistence().fetchByUuid_Last(uuid, orderByComparator); } /** * Returns the layout set prototypes before and after the current layout set prototype in the ordered set where uuid = ?. * * @param layoutSetPrototypeId the primary key of the current layout set prototype * @param uuid the uuid * @param orderByComparator the comparator to order the set by (optionally null) * @return the previous, current, and next layout set prototype * @throws NoSuchLayoutSetPrototypeException if a layout set prototype with the primary key could not be found */ public static LayoutSetPrototype[] findByUuid_PrevAndNext( long layoutSetPrototypeId, String uuid, OrderByComparator orderByComparator) throws com.liferay.portal.kernel.exception. NoSuchLayoutSetPrototypeException { return getPersistence().findByUuid_PrevAndNext( layoutSetPrototypeId, uuid, orderByComparator); } /** * Returns all the layout set prototypes that the user has permission to view where uuid = ?. * * @param uuid the uuid * @return the matching layout set prototypes that the user has permission to view */ public static List filterFindByUuid(String uuid) { return getPersistence().filterFindByUuid(uuid); } /** * Returns a range of all the layout set prototypes that the user has permission to view where uuid = ?. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from LayoutSetPrototypeModelImpl. 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 layout set prototypes * @param end the upper bound of the range of layout set prototypes (not inclusive) * @return the range of matching layout set prototypes that the user has permission to view */ public static List filterFindByUuid( String uuid, int start, int end) { return getPersistence().filterFindByUuid(uuid, start, end); } /** * Returns an ordered range of all the layout set prototypes that the user has permissions to view where uuid = ?. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from LayoutSetPrototypeModelImpl. 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 layout set prototypes * @param end the upper bound of the range of layout set prototypes (not inclusive) * @param orderByComparator the comparator to order the results by (optionally null) * @return the ordered range of matching layout set prototypes that the user has permission to view */ public static List filterFindByUuid( String uuid, int start, int end, OrderByComparator orderByComparator) { return getPersistence().filterFindByUuid( uuid, start, end, orderByComparator); } /** * Returns the layout set prototypes before and after the current layout set prototype in the ordered set of layout set prototypes that the user has permission to view where uuid = ?. * * @param layoutSetPrototypeId the primary key of the current layout set prototype * @param uuid the uuid * @param orderByComparator the comparator to order the set by (optionally null) * @return the previous, current, and next layout set prototype * @throws NoSuchLayoutSetPrototypeException if a layout set prototype with the primary key could not be found */ public static LayoutSetPrototype[] filterFindByUuid_PrevAndNext( long layoutSetPrototypeId, String uuid, OrderByComparator orderByComparator) throws com.liferay.portal.kernel.exception. NoSuchLayoutSetPrototypeException { return getPersistence().filterFindByUuid_PrevAndNext( layoutSetPrototypeId, uuid, orderByComparator); } /** * Removes all the layout set prototypes where uuid = ? from the database. * * @param uuid the uuid */ public static void removeByUuid(String uuid) { getPersistence().removeByUuid(uuid); } /** * Returns the number of layout set prototypes where uuid = ?. * * @param uuid the uuid * @return the number of matching layout set prototypes */ public static int countByUuid(String uuid) { return getPersistence().countByUuid(uuid); } /** * Returns the number of layout set prototypes that the user has permission to view where uuid = ?. * * @param uuid the uuid * @return the number of matching layout set prototypes that the user has permission to view */ public static int filterCountByUuid(String uuid) { return getPersistence().filterCountByUuid(uuid); } /** * Returns all the layout set prototypes where uuid = ? and companyId = ?. * * @param uuid the uuid * @param companyId the company ID * @return the matching layout set prototypes */ public static List findByUuid_C( String uuid, long companyId) { return getPersistence().findByUuid_C(uuid, companyId); } /** * Returns a range of all the layout set prototypes 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 LayoutSetPrototypeModelImpl. 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 layout set prototypes * @param end the upper bound of the range of layout set prototypes (not inclusive) * @return the range of matching layout set prototypes */ public static List findByUuid_C( String uuid, long companyId, int start, int end) { return getPersistence().findByUuid_C(uuid, companyId, start, end); } /** * Returns an ordered range of all the layout set prototypes 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 LayoutSetPrototypeModelImpl. 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 layout set prototypes * @param end the upper bound of the range of layout set prototypes (not inclusive) * @param orderByComparator the comparator to order the results by (optionally null) * @return the ordered range of matching layout set prototypes */ public static List findByUuid_C( String uuid, long companyId, int start, int end, OrderByComparator orderByComparator) { return getPersistence().findByUuid_C( uuid, companyId, start, end, orderByComparator); } /** * Returns an ordered range of all the layout set prototypes 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 LayoutSetPrototypeModelImpl. 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 layout set prototypes * @param end the upper bound of the range of layout set prototypes (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 layout set prototypes */ public static List findByUuid_C( String uuid, long companyId, int start, int end, OrderByComparator orderByComparator, boolean retrieveFromCache) { return getPersistence().findByUuid_C( uuid, companyId, start, end, orderByComparator, retrieveFromCache); } /** * Returns the first layout set prototype 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 layout set prototype * @throws NoSuchLayoutSetPrototypeException if a matching layout set prototype could not be found */ public static LayoutSetPrototype findByUuid_C_First( String uuid, long companyId, OrderByComparator orderByComparator) throws com.liferay.portal.kernel.exception. NoSuchLayoutSetPrototypeException { return getPersistence().findByUuid_C_First( uuid, companyId, orderByComparator); } /** * Returns the first layout set prototype 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 layout set prototype, or null if a matching layout set prototype could not be found */ public static LayoutSetPrototype fetchByUuid_C_First( String uuid, long companyId, OrderByComparator orderByComparator) { return getPersistence().fetchByUuid_C_First( uuid, companyId, orderByComparator); } /** * Returns the last layout set prototype 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 layout set prototype * @throws NoSuchLayoutSetPrototypeException if a matching layout set prototype could not be found */ public static LayoutSetPrototype findByUuid_C_Last( String uuid, long companyId, OrderByComparator orderByComparator) throws com.liferay.portal.kernel.exception. NoSuchLayoutSetPrototypeException { return getPersistence().findByUuid_C_Last( uuid, companyId, orderByComparator); } /** * Returns the last layout set prototype 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 layout set prototype, or null if a matching layout set prototype could not be found */ public static LayoutSetPrototype fetchByUuid_C_Last( String uuid, long companyId, OrderByComparator orderByComparator) { return getPersistence().fetchByUuid_C_Last( uuid, companyId, orderByComparator); } /** * Returns the layout set prototypes before and after the current layout set prototype in the ordered set where uuid = ? and companyId = ?. * * @param layoutSetPrototypeId the primary key of the current layout set prototype * @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 layout set prototype * @throws NoSuchLayoutSetPrototypeException if a layout set prototype with the primary key could not be found */ public static LayoutSetPrototype[] findByUuid_C_PrevAndNext( long layoutSetPrototypeId, String uuid, long companyId, OrderByComparator orderByComparator) throws com.liferay.portal.kernel.exception. NoSuchLayoutSetPrototypeException { return getPersistence().findByUuid_C_PrevAndNext( layoutSetPrototypeId, uuid, companyId, orderByComparator); } /** * Returns all the layout set prototypes that the user has permission to view where uuid = ? and companyId = ?. * * @param uuid the uuid * @param companyId the company ID * @return the matching layout set prototypes that the user has permission to view */ public static List filterFindByUuid_C( String uuid, long companyId) { return getPersistence().filterFindByUuid_C(uuid, companyId); } /** * Returns a range of all the layout set prototypes that the user has permission to view where uuid = ? and companyId = ?. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from LayoutSetPrototypeModelImpl. 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 layout set prototypes * @param end the upper bound of the range of layout set prototypes (not inclusive) * @return the range of matching layout set prototypes that the user has permission to view */ public static List filterFindByUuid_C( String uuid, long companyId, int start, int end) { return getPersistence().filterFindByUuid_C(uuid, companyId, start, end); } /** * Returns an ordered range of all the layout set prototypes that the user has permissions to view where uuid = ? and companyId = ?. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from LayoutSetPrototypeModelImpl. 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 layout set prototypes * @param end the upper bound of the range of layout set prototypes (not inclusive) * @param orderByComparator the comparator to order the results by (optionally null) * @return the ordered range of matching layout set prototypes that the user has permission to view */ public static List filterFindByUuid_C( String uuid, long companyId, int start, int end, OrderByComparator orderByComparator) { return getPersistence().filterFindByUuid_C( uuid, companyId, start, end, orderByComparator); } /** * Returns the layout set prototypes before and after the current layout set prototype in the ordered set of layout set prototypes that the user has permission to view where uuid = ? and companyId = ?. * * @param layoutSetPrototypeId the primary key of the current layout set prototype * @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 layout set prototype * @throws NoSuchLayoutSetPrototypeException if a layout set prototype with the primary key could not be found */ public static LayoutSetPrototype[] filterFindByUuid_C_PrevAndNext( long layoutSetPrototypeId, String uuid, long companyId, OrderByComparator orderByComparator) throws com.liferay.portal.kernel.exception. NoSuchLayoutSetPrototypeException { return getPersistence().filterFindByUuid_C_PrevAndNext( layoutSetPrototypeId, uuid, companyId, orderByComparator); } /** * Removes all the layout set prototypes where uuid = ? and companyId = ? from the database. * * @param uuid the uuid * @param companyId the company ID */ public static void removeByUuid_C(String uuid, long companyId) { getPersistence().removeByUuid_C(uuid, companyId); } /** * Returns the number of layout set prototypes where uuid = ? and companyId = ?. * * @param uuid the uuid * @param companyId the company ID * @return the number of matching layout set prototypes */ public static int countByUuid_C(String uuid, long companyId) { return getPersistence().countByUuid_C(uuid, companyId); } /** * Returns the number of layout set prototypes that the user has permission to view where uuid = ? and companyId = ?. * * @param uuid the uuid * @param companyId the company ID * @return the number of matching layout set prototypes that the user has permission to view */ public static int filterCountByUuid_C(String uuid, long companyId) { return getPersistence().filterCountByUuid_C(uuid, companyId); } /** * Returns all the layout set prototypes where companyId = ?. * * @param companyId the company ID * @return the matching layout set prototypes */ public static List findByCompanyId(long companyId) { return getPersistence().findByCompanyId(companyId); } /** * Returns a range of all the layout set prototypes 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 and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from LayoutSetPrototypeModelImpl. 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 companyId the company ID * @param start the lower bound of the range of layout set prototypes * @param end the upper bound of the range of layout set prototypes (not inclusive) * @return the range of matching layout set prototypes */ public static List findByCompanyId( long companyId, int start, int end) { return getPersistence().findByCompanyId(companyId, start, end); } /** * Returns an ordered range of all the layout set prototypes 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 and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from LayoutSetPrototypeModelImpl. 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 companyId the company ID * @param start the lower bound of the range of layout set prototypes * @param end the upper bound of the range of layout set prototypes (not inclusive) * @param orderByComparator the comparator to order the results by (optionally null) * @return the ordered range of matching layout set prototypes */ public static List findByCompanyId( long companyId, int start, int end, OrderByComparator orderByComparator) { return getPersistence().findByCompanyId( companyId, start, end, orderByComparator); } /** * Returns an ordered range of all the layout set prototypes 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 and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from LayoutSetPrototypeModelImpl. 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 companyId the company ID * @param start the lower bound of the range of layout set prototypes * @param end the upper bound of the range of layout set prototypes (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 layout set prototypes */ public static List findByCompanyId( long companyId, int start, int end, OrderByComparator orderByComparator, boolean retrieveFromCache) { return getPersistence().findByCompanyId( companyId, start, end, orderByComparator, retrieveFromCache); } /** * Returns the first layout set prototype in the ordered set where companyId = ?. * * @param companyId the company ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the first matching layout set prototype * @throws NoSuchLayoutSetPrototypeException if a matching layout set prototype could not be found */ public static LayoutSetPrototype findByCompanyId_First( long companyId, OrderByComparator orderByComparator) throws com.liferay.portal.kernel.exception. NoSuchLayoutSetPrototypeException { return getPersistence().findByCompanyId_First( companyId, orderByComparator); } /** * Returns the first layout set prototype in the ordered set where companyId = ?. * * @param companyId the company ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the first matching layout set prototype, or null if a matching layout set prototype could not be found */ public static LayoutSetPrototype fetchByCompanyId_First( long companyId, OrderByComparator orderByComparator) { return getPersistence().fetchByCompanyId_First( companyId, orderByComparator); } /** * Returns the last layout set prototype in the ordered set where companyId = ?. * * @param companyId the company ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the last matching layout set prototype * @throws NoSuchLayoutSetPrototypeException if a matching layout set prototype could not be found */ public static LayoutSetPrototype findByCompanyId_Last( long companyId, OrderByComparator orderByComparator) throws com.liferay.portal.kernel.exception. NoSuchLayoutSetPrototypeException { return getPersistence().findByCompanyId_Last( companyId, orderByComparator); } /** * Returns the last layout set prototype in the ordered set where companyId = ?. * * @param companyId the company ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the last matching layout set prototype, or null if a matching layout set prototype could not be found */ public static LayoutSetPrototype fetchByCompanyId_Last( long companyId, OrderByComparator orderByComparator) { return getPersistence().fetchByCompanyId_Last( companyId, orderByComparator); } /** * Returns the layout set prototypes before and after the current layout set prototype in the ordered set where companyId = ?. * * @param layoutSetPrototypeId the primary key of the current layout set prototype * @param companyId the company ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the previous, current, and next layout set prototype * @throws NoSuchLayoutSetPrototypeException if a layout set prototype with the primary key could not be found */ public static LayoutSetPrototype[] findByCompanyId_PrevAndNext( long layoutSetPrototypeId, long companyId, OrderByComparator orderByComparator) throws com.liferay.portal.kernel.exception. NoSuchLayoutSetPrototypeException { return getPersistence().findByCompanyId_PrevAndNext( layoutSetPrototypeId, companyId, orderByComparator); } /** * Returns all the layout set prototypes that the user has permission to view where companyId = ?. * * @param companyId the company ID * @return the matching layout set prototypes that the user has permission to view */ public static List filterFindByCompanyId( long companyId) { return getPersistence().filterFindByCompanyId(companyId); } /** * Returns a range of all the layout set prototypes that the user has permission to view where companyId = ?. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from LayoutSetPrototypeModelImpl. 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 companyId the company ID * @param start the lower bound of the range of layout set prototypes * @param end the upper bound of the range of layout set prototypes (not inclusive) * @return the range of matching layout set prototypes that the user has permission to view */ public static List filterFindByCompanyId( long companyId, int start, int end) { return getPersistence().filterFindByCompanyId(companyId, start, end); } /** * Returns an ordered range of all the layout set prototypes that the user has permissions to view where companyId = ?. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from LayoutSetPrototypeModelImpl. 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 companyId the company ID * @param start the lower bound of the range of layout set prototypes * @param end the upper bound of the range of layout set prototypes (not inclusive) * @param orderByComparator the comparator to order the results by (optionally null) * @return the ordered range of matching layout set prototypes that the user has permission to view */ public static List filterFindByCompanyId( long companyId, int start, int end, OrderByComparator orderByComparator) { return getPersistence().filterFindByCompanyId( companyId, start, end, orderByComparator); } /** * Returns the layout set prototypes before and after the current layout set prototype in the ordered set of layout set prototypes that the user has permission to view where companyId = ?. * * @param layoutSetPrototypeId the primary key of the current layout set prototype * @param companyId the company ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the previous, current, and next layout set prototype * @throws NoSuchLayoutSetPrototypeException if a layout set prototype with the primary key could not be found */ public static LayoutSetPrototype[] filterFindByCompanyId_PrevAndNext( long layoutSetPrototypeId, long companyId, OrderByComparator orderByComparator) throws com.liferay.portal.kernel.exception. NoSuchLayoutSetPrototypeException { return getPersistence().filterFindByCompanyId_PrevAndNext( layoutSetPrototypeId, companyId, orderByComparator); } /** * Removes all the layout set prototypes where companyId = ? from the database. * * @param companyId the company ID */ public static void removeByCompanyId(long companyId) { getPersistence().removeByCompanyId(companyId); } /** * Returns the number of layout set prototypes where companyId = ?. * * @param companyId the company ID * @return the number of matching layout set prototypes */ public static int countByCompanyId(long companyId) { return getPersistence().countByCompanyId(companyId); } /** * Returns the number of layout set prototypes that the user has permission to view where companyId = ?. * * @param companyId the company ID * @return the number of matching layout set prototypes that the user has permission to view */ public static int filterCountByCompanyId(long companyId) { return getPersistence().filterCountByCompanyId(companyId); } /** * Returns all the layout set prototypes where companyId = ? and active = ?. * * @param companyId the company ID * @param active the active * @return the matching layout set prototypes */ public static List findByC_A( long companyId, boolean active) { return getPersistence().findByC_A(companyId, active); } /** * Returns a range of all the layout set prototypes where companyId = ? and active = ?. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS 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 LayoutSetPrototypeModelImpl. 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 companyId the company ID * @param active the active * @param start the lower bound of the range of layout set prototypes * @param end the upper bound of the range of layout set prototypes (not inclusive) * @return the range of matching layout set prototypes */ public static List findByC_A( long companyId, boolean active, int start, int end) { return getPersistence().findByC_A(companyId, active, start, end); } /** * Returns an ordered range of all the layout set prototypes where companyId = ? and active = ?. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS 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 LayoutSetPrototypeModelImpl. 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 companyId the company ID * @param active the active * @param start the lower bound of the range of layout set prototypes * @param end the upper bound of the range of layout set prototypes (not inclusive) * @param orderByComparator the comparator to order the results by (optionally null) * @return the ordered range of matching layout set prototypes */ public static List findByC_A( long companyId, boolean active, int start, int end, OrderByComparator orderByComparator) { return getPersistence().findByC_A( companyId, active, start, end, orderByComparator); } /** * Returns an ordered range of all the layout set prototypes where companyId = ? and active = ?. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS 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 LayoutSetPrototypeModelImpl. 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 companyId the company ID * @param active the active * @param start the lower bound of the range of layout set prototypes * @param end the upper bound of the range of layout set prototypes (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 layout set prototypes */ public static List findByC_A( long companyId, boolean active, int start, int end, OrderByComparator orderByComparator, boolean retrieveFromCache) { return getPersistence().findByC_A( companyId, active, start, end, orderByComparator, retrieveFromCache); } /** * Returns the first layout set prototype in the ordered set where companyId = ? and active = ?. * * @param companyId the company ID * @param active the active * @param orderByComparator the comparator to order the set by (optionally null) * @return the first matching layout set prototype * @throws NoSuchLayoutSetPrototypeException if a matching layout set prototype could not be found */ public static LayoutSetPrototype findByC_A_First( long companyId, boolean active, OrderByComparator orderByComparator) throws com.liferay.portal.kernel.exception. NoSuchLayoutSetPrototypeException { return getPersistence().findByC_A_First( companyId, active, orderByComparator); } /** * Returns the first layout set prototype in the ordered set where companyId = ? and active = ?. * * @param companyId the company ID * @param active the active * @param orderByComparator the comparator to order the set by (optionally null) * @return the first matching layout set prototype, or null if a matching layout set prototype could not be found */ public static LayoutSetPrototype fetchByC_A_First( long companyId, boolean active, OrderByComparator orderByComparator) { return getPersistence().fetchByC_A_First( companyId, active, orderByComparator); } /** * Returns the last layout set prototype in the ordered set where companyId = ? and active = ?. * * @param companyId the company ID * @param active the active * @param orderByComparator the comparator to order the set by (optionally null) * @return the last matching layout set prototype * @throws NoSuchLayoutSetPrototypeException if a matching layout set prototype could not be found */ public static LayoutSetPrototype findByC_A_Last( long companyId, boolean active, OrderByComparator orderByComparator) throws com.liferay.portal.kernel.exception. NoSuchLayoutSetPrototypeException { return getPersistence().findByC_A_Last( companyId, active, orderByComparator); } /** * Returns the last layout set prototype in the ordered set where companyId = ? and active = ?. * * @param companyId the company ID * @param active the active * @param orderByComparator the comparator to order the set by (optionally null) * @return the last matching layout set prototype, or null if a matching layout set prototype could not be found */ public static LayoutSetPrototype fetchByC_A_Last( long companyId, boolean active, OrderByComparator orderByComparator) { return getPersistence().fetchByC_A_Last( companyId, active, orderByComparator); } /** * Returns the layout set prototypes before and after the current layout set prototype in the ordered set where companyId = ? and active = ?. * * @param layoutSetPrototypeId the primary key of the current layout set prototype * @param companyId the company ID * @param active the active * @param orderByComparator the comparator to order the set by (optionally null) * @return the previous, current, and next layout set prototype * @throws NoSuchLayoutSetPrototypeException if a layout set prototype with the primary key could not be found */ public static LayoutSetPrototype[] findByC_A_PrevAndNext( long layoutSetPrototypeId, long companyId, boolean active, OrderByComparator orderByComparator) throws com.liferay.portal.kernel.exception. NoSuchLayoutSetPrototypeException { return getPersistence().findByC_A_PrevAndNext( layoutSetPrototypeId, companyId, active, orderByComparator); } /** * Returns all the layout set prototypes that the user has permission to view where companyId = ? and active = ?. * * @param companyId the company ID * @param active the active * @return the matching layout set prototypes that the user has permission to view */ public static List filterFindByC_A( long companyId, boolean active) { return getPersistence().filterFindByC_A(companyId, active); } /** * Returns a range of all the layout set prototypes that the user has permission to view where companyId = ? and active = ?. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS 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 LayoutSetPrototypeModelImpl. 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 companyId the company ID * @param active the active * @param start the lower bound of the range of layout set prototypes * @param end the upper bound of the range of layout set prototypes (not inclusive) * @return the range of matching layout set prototypes that the user has permission to view */ public static List filterFindByC_A( long companyId, boolean active, int start, int end) { return getPersistence().filterFindByC_A(companyId, active, start, end); } /** * Returns an ordered range of all the layout set prototypes that the user has permissions to view where companyId = ? and active = ?. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS 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 LayoutSetPrototypeModelImpl. 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 companyId the company ID * @param active the active * @param start the lower bound of the range of layout set prototypes * @param end the upper bound of the range of layout set prototypes (not inclusive) * @param orderByComparator the comparator to order the results by (optionally null) * @return the ordered range of matching layout set prototypes that the user has permission to view */ public static List filterFindByC_A( long companyId, boolean active, int start, int end, OrderByComparator orderByComparator) { return getPersistence().filterFindByC_A( companyId, active, start, end, orderByComparator); } /** * Returns the layout set prototypes before and after the current layout set prototype in the ordered set of layout set prototypes that the user has permission to view where companyId = ? and active = ?. * * @param layoutSetPrototypeId the primary key of the current layout set prototype * @param companyId the company ID * @param active the active * @param orderByComparator the comparator to order the set by (optionally null) * @return the previous, current, and next layout set prototype * @throws NoSuchLayoutSetPrototypeException if a layout set prototype with the primary key could not be found */ public static LayoutSetPrototype[] filterFindByC_A_PrevAndNext( long layoutSetPrototypeId, long companyId, boolean active, OrderByComparator orderByComparator) throws com.liferay.portal.kernel.exception. NoSuchLayoutSetPrototypeException { return getPersistence().filterFindByC_A_PrevAndNext( layoutSetPrototypeId, companyId, active, orderByComparator); } /** * Removes all the layout set prototypes where companyId = ? and active = ? from the database. * * @param companyId the company ID * @param active the active */ public static void removeByC_A(long companyId, boolean active) { getPersistence().removeByC_A(companyId, active); } /** * Returns the number of layout set prototypes where companyId = ? and active = ?. * * @param companyId the company ID * @param active the active * @return the number of matching layout set prototypes */ public static int countByC_A(long companyId, boolean active) { return getPersistence().countByC_A(companyId, active); } /** * Returns the number of layout set prototypes that the user has permission to view where companyId = ? and active = ?. * * @param companyId the company ID * @param active the active * @return the number of matching layout set prototypes that the user has permission to view */ public static int filterCountByC_A(long companyId, boolean active) { return getPersistence().filterCountByC_A(companyId, active); } /** * Caches the layout set prototype in the entity cache if it is enabled. * * @param layoutSetPrototype the layout set prototype */ public static void cacheResult(LayoutSetPrototype layoutSetPrototype) { getPersistence().cacheResult(layoutSetPrototype); } /** * Caches the layout set prototypes in the entity cache if it is enabled. * * @param layoutSetPrototypes the layout set prototypes */ public static void cacheResult( List layoutSetPrototypes) { getPersistence().cacheResult(layoutSetPrototypes); } /** * Creates a new layout set prototype with the primary key. Does not add the layout set prototype to the database. * * @param layoutSetPrototypeId the primary key for the new layout set prototype * @return the new layout set prototype */ public static LayoutSetPrototype create(long layoutSetPrototypeId) { return getPersistence().create(layoutSetPrototypeId); } /** * Removes the layout set prototype with the primary key from the database. Also notifies the appropriate model listeners. * * @param layoutSetPrototypeId the primary key of the layout set prototype * @return the layout set prototype that was removed * @throws NoSuchLayoutSetPrototypeException if a layout set prototype with the primary key could not be found */ public static LayoutSetPrototype remove(long layoutSetPrototypeId) throws com.liferay.portal.kernel.exception. NoSuchLayoutSetPrototypeException { return getPersistence().remove(layoutSetPrototypeId); } public static LayoutSetPrototype updateImpl( LayoutSetPrototype layoutSetPrototype) { return getPersistence().updateImpl(layoutSetPrototype); } /** * Returns the layout set prototype with the primary key or throws a NoSuchLayoutSetPrototypeException if it could not be found. * * @param layoutSetPrototypeId the primary key of the layout set prototype * @return the layout set prototype * @throws NoSuchLayoutSetPrototypeException if a layout set prototype with the primary key could not be found */ public static LayoutSetPrototype findByPrimaryKey(long layoutSetPrototypeId) throws com.liferay.portal.kernel.exception. NoSuchLayoutSetPrototypeException { return getPersistence().findByPrimaryKey(layoutSetPrototypeId); } /** * Returns the layout set prototype with the primary key or returns null if it could not be found. * * @param layoutSetPrototypeId the primary key of the layout set prototype * @return the layout set prototype, or null if a layout set prototype with the primary key could not be found */ public static LayoutSetPrototype fetchByPrimaryKey( long layoutSetPrototypeId) { return getPersistence().fetchByPrimaryKey(layoutSetPrototypeId); } /** * Returns all the layout set prototypes. * * @return the layout set prototypes */ public static List findAll() { return getPersistence().findAll(); } /** * Returns a range of all the layout set prototypes. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS 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 LayoutSetPrototypeModelImpl. 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 layout set prototypes * @param end the upper bound of the range of layout set prototypes (not inclusive) * @return the range of layout set prototypes */ public static List findAll(int start, int end) { return getPersistence().findAll(start, end); } /** * Returns an ordered range of all the layout set prototypes. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS 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 LayoutSetPrototypeModelImpl. 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 layout set prototypes * @param end the upper bound of the range of layout set prototypes (not inclusive) * @param orderByComparator the comparator to order the results by (optionally null) * @return the ordered range of layout set prototypes */ public static List findAll( int start, int end, OrderByComparator orderByComparator) { return getPersistence().findAll(start, end, orderByComparator); } /** * Returns an ordered range of all the layout set prototypes. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS 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 LayoutSetPrototypeModelImpl. 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 layout set prototypes * @param end the upper bound of the range of layout set prototypes (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 layout set prototypes */ public static List findAll( int start, int end, OrderByComparator orderByComparator, boolean retrieveFromCache) { return getPersistence().findAll( start, end, orderByComparator, retrieveFromCache); } /** * Removes all the layout set prototypes from the database. */ public static void removeAll() { getPersistence().removeAll(); } /** * Returns the number of layout set prototypes. * * @return the number of layout set prototypes */ public static int countAll() { return getPersistence().countAll(); } public static Set getBadColumnNames() { return getPersistence().getBadColumnNames(); } public static LayoutSetPrototypePersistence getPersistence() { if (_persistence == null) { _persistence = (LayoutSetPrototypePersistence)PortalBeanLocatorUtil.locate( LayoutSetPrototypePersistence.class.getName()); } return _persistence; } private static LayoutSetPrototypePersistence _persistence; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy