/** * 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 com.liferay.portal.kernel.util.ReferenceRegistry; import java.util.List; /** * The persistence utility for the layout set prototype service. This utility wraps {@link 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. * * <p> * Caching information and settings can be found in <code>portal.properties</code> * </p> * * @author Brian Wing Shun Chan * @see LayoutSetPrototypePersistence * @see com.liferay.portal.service.persistence.impl.LayoutSetPrototypePersistenceImpl * @generated */ @ProviderType public class LayoutSetPrototypeUtil { /* * NOTE FOR DEVELOPERS: * * Never modify this class directly. Modify <code>service.xml</code> 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#findWithDynamicQuery(DynamicQuery) */ public static List<LayoutSetPrototype> findWithDynamicQuery( DynamicQuery dynamicQuery) { return getPersistence().findWithDynamicQuery(dynamicQuery); } /** * @see BasePersistence#findWithDynamicQuery(DynamicQuery, int, int) */ public static List<LayoutSetPrototype> findWithDynamicQuery( DynamicQuery dynamicQuery, int start, int end) { return getPersistence().findWithDynamicQuery(dynamicQuery, start, end); } /** * @see BasePersistence#findWithDynamicQuery(DynamicQuery, int, int, OrderByComparator) */ public static List<LayoutSetPrototype> findWithDynamicQuery( DynamicQuery dynamicQuery, int start, int end, OrderByComparator<LayoutSetPrototype> 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<LayoutSetPrototype> findByUuid(java.lang.String uuid) { return getPersistence().findByUuid(uuid); } /** * Returns a range of all the layout set prototypes where uuid = ?. * * <p> * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link LayoutSetPrototypeModelImpl}. If both <code>orderByComparator</code> 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. * </p> * * @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<LayoutSetPrototype> findByUuid(java.lang.String uuid, int start, int end) { return getPersistence().findByUuid(uuid, start, end); } /** * Returns an ordered range of all the layout set prototypes where uuid = ?. * * <p> * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link LayoutSetPrototypeModelImpl}. If both <code>orderByComparator</code> 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. * </p> * * @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 <code>null</code>) * @return the ordered range of matching layout set prototypes */ public static List<LayoutSetPrototype> findByUuid(java.lang.String uuid, int start, int end, OrderByComparator<LayoutSetPrototype> orderByComparator) { return getPersistence().findByUuid(uuid, start, end, orderByComparator); } /** * Returns an ordered range of all the layout set prototypes where uuid = ?. * * <p> * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link LayoutSetPrototypeModelImpl}. If both <code>orderByComparator</code> 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. * </p> * * @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 <code>null</code>) * @param retrieveFromCache whether to retrieve from the finder cache * @return the ordered range of matching layout set prototypes */ public static List<LayoutSetPrototype> findByUuid(java.lang.String uuid, int start, int end, OrderByComparator<LayoutSetPrototype> 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 <code>null</code>) * @return the first matching layout set prototype * @throws NoSuchLayoutSetPrototypeException if a matching layout set prototype could not be found */ public static LayoutSetPrototype findByUuid_First(java.lang.String uuid, OrderByComparator<LayoutSetPrototype> 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 <code>null</code>) * @return the first matching layout set prototype, or <code>null</code> if a matching layout set prototype could not be found */ public static LayoutSetPrototype fetchByUuid_First(java.lang.String uuid, OrderByComparator<LayoutSetPrototype> 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 <code>null</code>) * @return the last matching layout set prototype * @throws NoSuchLayoutSetPrototypeException if a matching layout set prototype could not be found */ public static LayoutSetPrototype findByUuid_Last(java.lang.String uuid, OrderByComparator<LayoutSetPrototype> 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 <code>null</code>) * @return the last matching layout set prototype, or <code>null</code> if a matching layout set prototype could not be found */ public static LayoutSetPrototype fetchByUuid_Last(java.lang.String uuid, OrderByComparator<LayoutSetPrototype> 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 <code>null</code>) * @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, java.lang.String uuid, OrderByComparator<LayoutSetPrototype> 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<LayoutSetPrototype> filterFindByUuid( java.lang.String uuid) { return getPersistence().filterFindByUuid(uuid); } /** * Returns a range of all the layout set prototypes that the user has permission to view where uuid = ?. * * <p> * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link LayoutSetPrototypeModelImpl}. If both <code>orderByComparator</code> 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. * </p> * * @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<LayoutSetPrototype> filterFindByUuid( java.lang.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 = ?. * * <p> * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link LayoutSetPrototypeModelImpl}. If both <code>orderByComparator</code> 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. * </p> * * @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 <code>null</code>) * @return the ordered range of matching layout set prototypes that the user has permission to view */ public static List<LayoutSetPrototype> filterFindByUuid( java.lang.String uuid, int start, int end, OrderByComparator<LayoutSetPrototype> 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 <code>null</code>) * @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, java.lang.String uuid, OrderByComparator<LayoutSetPrototype> 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(java.lang.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(java.lang.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(java.lang.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<LayoutSetPrototype> findByUuid_C(java.lang.String uuid, long companyId) { return getPersistence().findByUuid_C(uuid, companyId); } /** * Returns a range of all the layout set prototypes where uuid = ? and companyId = ?. * * <p> * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link LayoutSetPrototypeModelImpl}. If both <code>orderByComparator</code> 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. * </p> * * @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<LayoutSetPrototype> findByUuid_C(java.lang.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 = ?. * * <p> * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link LayoutSetPrototypeModelImpl}. If both <code>orderByComparator</code> 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. * </p> * * @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 <code>null</code>) * @return the ordered range of matching layout set prototypes */ public static List<LayoutSetPrototype> findByUuid_C(java.lang.String uuid, long companyId, int start, int end, OrderByComparator<LayoutSetPrototype> orderByComparator) { return getPersistence() .findByUuid_C(uuid, companyId, start, end, orderByComparator); } /** * Returns an ordered range of all the layout set prototypes where uuid = ? and companyId = ?. * * <p> * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link LayoutSetPrototypeModelImpl}. If both <code>orderByComparator</code> 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. * </p> * * @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 <code>null</code>) * @param retrieveFromCache whether to retrieve from the finder cache * @return the ordered range of matching layout set prototypes */ public static List<LayoutSetPrototype> findByUuid_C(java.lang.String uuid, long companyId, int start, int end, OrderByComparator<LayoutSetPrototype> 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 <code>null</code>) * @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(java.lang.String uuid, long companyId, OrderByComparator<LayoutSetPrototype> 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 <code>null</code>) * @return the first matching layout set prototype, or <code>null</code> if a matching layout set prototype could not be found */ public static LayoutSetPrototype fetchByUuid_C_First( java.lang.String uuid, long companyId, OrderByComparator<LayoutSetPrototype> 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 <code>null</code>) * @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(java.lang.String uuid, long companyId, OrderByComparator<LayoutSetPrototype> 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 <code>null</code>) * @return the last matching layout set prototype, or <code>null</code> if a matching layout set prototype could not be found */ public static LayoutSetPrototype fetchByUuid_C_Last(java.lang.String uuid, long companyId, OrderByComparator<LayoutSetPrototype> 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 <code>null</code>) * @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, java.lang.String uuid, long companyId, OrderByComparator<LayoutSetPrototype> 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<LayoutSetPrototype> filterFindByUuid_C( java.lang.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 = ?. * * <p> * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link LayoutSetPrototypeModelImpl}. If both <code>orderByComparator</code> 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. * </p> * * @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<LayoutSetPrototype> filterFindByUuid_C( java.lang.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 = ?. * * <p> * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link LayoutSetPrototypeModelImpl}. If both <code>orderByComparator</code> 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. * </p> * * @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 <code>null</code>) * @return the ordered range of matching layout set prototypes that the user has permission to view */ public static List<LayoutSetPrototype> filterFindByUuid_C( java.lang.String uuid, long companyId, int start, int end, OrderByComparator<LayoutSetPrototype> 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 <code>null</code>) * @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, java.lang.String uuid, long companyId, OrderByComparator<LayoutSetPrototype> 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(java.lang.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(java.lang.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(java.lang.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<LayoutSetPrototype> findByCompanyId(long companyId) { return getPersistence().findByCompanyId(companyId); } /** * Returns a range of all the layout set prototypes where companyId = ?. * * <p> * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link LayoutSetPrototypeModelImpl}. If both <code>orderByComparator</code> 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. * </p> * * @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<LayoutSetPrototype> 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 = ?. * * <p> * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link LayoutSetPrototypeModelImpl}. If both <code>orderByComparator</code> 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. * </p> * * @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 <code>null</code>) * @return the ordered range of matching layout set prototypes */ public static List<LayoutSetPrototype> findByCompanyId(long companyId, int start, int end, OrderByComparator<LayoutSetPrototype> orderByComparator) { return getPersistence() .findByCompanyId(companyId, start, end, orderByComparator); } /** * Returns an ordered range of all the layout set prototypes where companyId = ?. * * <p> * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link LayoutSetPrototypeModelImpl}. If both <code>orderByComparator</code> 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. * </p> * * @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 <code>null</code>) * @param retrieveFromCache whether to retrieve from the finder cache * @return the ordered range of matching layout set prototypes */ public static List<LayoutSetPrototype> findByCompanyId(long companyId, int start, int end, OrderByComparator<LayoutSetPrototype> 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 <code>null</code>) * @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<LayoutSetPrototype> 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 <code>null</code>) * @return the first matching layout set prototype, or <code>null</code> if a matching layout set prototype could not be found */ public static LayoutSetPrototype fetchByCompanyId_First(long companyId, OrderByComparator<LayoutSetPrototype> 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 <code>null</code>) * @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<LayoutSetPrototype> 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 <code>null</code>) * @return the last matching layout set prototype, or <code>null</code> if a matching layout set prototype could not be found */ public static LayoutSetPrototype fetchByCompanyId_Last(long companyId, OrderByComparator<LayoutSetPrototype> 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 <code>null</code>) * @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<LayoutSetPrototype> 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<LayoutSetPrototype> 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 = ?. * * <p> * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link LayoutSetPrototypeModelImpl}. If both <code>orderByComparator</code> 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. * </p> * * @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<LayoutSetPrototype> 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 = ?. * * <p> * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link LayoutSetPrototypeModelImpl}. If both <code>orderByComparator</code> 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. * </p> * * @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 <code>null</code>) * @return the ordered range of matching layout set prototypes that the user has permission to view */ public static List<LayoutSetPrototype> filterFindByCompanyId( long companyId, int start, int end, OrderByComparator<LayoutSetPrototype> 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 <code>null</code>) * @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<LayoutSetPrototype> 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<LayoutSetPrototype> 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 = ?. * * <p> * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link LayoutSetPrototypeModelImpl}. If both <code>orderByComparator</code> 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. * </p> * * @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<LayoutSetPrototype> 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 = ?. * * <p> * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link LayoutSetPrototypeModelImpl}. If both <code>orderByComparator</code> 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. * </p> * * @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 <code>null</code>) * @return the ordered range of matching layout set prototypes */ public static List<LayoutSetPrototype> findByC_A(long companyId, boolean active, int start, int end, OrderByComparator<LayoutSetPrototype> orderByComparator) { return getPersistence() .findByC_A(companyId, active, start, end, orderByComparator); } /** * Returns an ordered range of all the layout set prototypes where companyId = ? and active = ?. * * <p> * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link LayoutSetPrototypeModelImpl}. If both <code>orderByComparator</code> 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. * </p> * * @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 <code>null</code>) * @param retrieveFromCache whether to retrieve from the finder cache * @return the ordered range of matching layout set prototypes */ public static List<LayoutSetPrototype> findByC_A(long companyId, boolean active, int start, int end, OrderByComparator<LayoutSetPrototype> 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 <code>null</code>) * @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<LayoutSetPrototype> 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 <code>null</code>) * @return the first matching layout set prototype, or <code>null</code> if a matching layout set prototype could not be found */ public static LayoutSetPrototype fetchByC_A_First(long companyId, boolean active, OrderByComparator<LayoutSetPrototype> 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 <code>null</code>) * @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<LayoutSetPrototype> 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 <code>null</code>) * @return the last matching layout set prototype, or <code>null</code> if a matching layout set prototype could not be found */ public static LayoutSetPrototype fetchByC_A_Last(long companyId, boolean active, OrderByComparator<LayoutSetPrototype> 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 <code>null</code>) * @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<LayoutSetPrototype> 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<LayoutSetPrototype> 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 = ?. * * <p> * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link LayoutSetPrototypeModelImpl}. If both <code>orderByComparator</code> 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. * </p> * * @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<LayoutSetPrototype> 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 = ?. * * <p> * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link LayoutSetPrototypeModelImpl}. If both <code>orderByComparator</code> 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. * </p> * * @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 <code>null</code>) * @return the ordered range of matching layout set prototypes that the user has permission to view */ public static List<LayoutSetPrototype> filterFindByC_A(long companyId, boolean active, int start, int end, OrderByComparator<LayoutSetPrototype> 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 <code>null</code>) * @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<LayoutSetPrototype> 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<LayoutSetPrototype> 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 {@link 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 <code>null</code> if it could not be found. * * @param layoutSetPrototypeId the primary key of the layout set prototype * @return the layout set prototype, or <code>null</code> if a layout set prototype with the primary key could not be found */ public static LayoutSetPrototype fetchByPrimaryKey( long layoutSetPrototypeId) { return getPersistence().fetchByPrimaryKey(layoutSetPrototypeId); } public static java.util.Map<java.io.Serializable, LayoutSetPrototype> fetchByPrimaryKeys( java.util.Set<java.io.Serializable> primaryKeys) { return getPersistence().fetchByPrimaryKeys(primaryKeys); } /** * Returns all the layout set prototypes. * * @return the layout set prototypes */ public static List<LayoutSetPrototype> findAll() { return getPersistence().findAll(); } /** * Returns a range of all the layout set prototypes. * * <p> * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link LayoutSetPrototypeModelImpl}. If both <code>orderByComparator</code> 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. * </p> * * @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<LayoutSetPrototype> findAll(int start, int end) { return getPersistence().findAll(start, end); } /** * Returns an ordered range of all the layout set prototypes. * * <p> * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link LayoutSetPrototypeModelImpl}. If both <code>orderByComparator</code> 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. * </p> * * @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 <code>null</code>) * @return the ordered range of layout set prototypes */ public static List<LayoutSetPrototype> findAll(int start, int end, OrderByComparator<LayoutSetPrototype> orderByComparator) { return getPersistence().findAll(start, end, orderByComparator); } /** * Returns an ordered range of all the layout set prototypes. * * <p> * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link LayoutSetPrototypeModelImpl}. If both <code>orderByComparator</code> 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. * </p> * * @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 <code>null</code>) * @param retrieveFromCache whether to retrieve from the finder cache * @return the ordered range of layout set prototypes */ public static List<LayoutSetPrototype> findAll(int start, int end, OrderByComparator<LayoutSetPrototype> 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 java.util.Set<java.lang.String> getBadColumnNames() { return getPersistence().getBadColumnNames(); } public static LayoutSetPrototypePersistence getPersistence() { if (_persistence == null) { _persistence = (LayoutSetPrototypePersistence)PortalBeanLocatorUtil.locate(LayoutSetPrototypePersistence.class.getName()); ReferenceRegistry.registerReference(LayoutSetPrototypeUtil.class, "_persistence"); } return _persistence; } private static LayoutSetPrototypePersistence _persistence; }