/** * 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.LayoutSet; 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 service. This utility wraps {@link com.liferay.portal.service.persistence.impl.LayoutSetPersistenceImpl} 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 LayoutSetPersistence * @see com.liferay.portal.service.persistence.impl.LayoutSetPersistenceImpl * @generated */ @ProviderType public class LayoutSetUtil { /* * 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(LayoutSet layoutSet) { getPersistence().clearCache(layoutSet); } /** * @see BasePersistence#countWithDynamicQuery(DynamicQuery) */ public static long countWithDynamicQuery(DynamicQuery dynamicQuery) { return getPersistence().countWithDynamicQuery(dynamicQuery); } /** * @see BasePersistence#findWithDynamicQuery(DynamicQuery) */ public static List<LayoutSet> findWithDynamicQuery( DynamicQuery dynamicQuery) { return getPersistence().findWithDynamicQuery(dynamicQuery); } /** * @see BasePersistence#findWithDynamicQuery(DynamicQuery, int, int) */ public static List<LayoutSet> findWithDynamicQuery( DynamicQuery dynamicQuery, int start, int end) { return getPersistence().findWithDynamicQuery(dynamicQuery, start, end); } /** * @see BasePersistence#findWithDynamicQuery(DynamicQuery, int, int, OrderByComparator) */ public static List<LayoutSet> findWithDynamicQuery( DynamicQuery dynamicQuery, int start, int end, OrderByComparator<LayoutSet> orderByComparator) { return getPersistence() .findWithDynamicQuery(dynamicQuery, start, end, orderByComparator); } /** * @see BasePersistence#update(com.liferay.portal.kernel.model.BaseModel) */ public static LayoutSet update(LayoutSet layoutSet) { return getPersistence().update(layoutSet); } /** * @see BasePersistence#update(com.liferay.portal.kernel.model.BaseModel, ServiceContext) */ public static LayoutSet update(LayoutSet layoutSet, ServiceContext serviceContext) { return getPersistence().update(layoutSet, serviceContext); } /** * Returns all the layout sets where groupId = ?. * * @param groupId the group ID * @return the matching layout sets */ public static List<LayoutSet> findByGroupId(long groupId) { return getPersistence().findByGroupId(groupId); } /** * Returns a range of all the layout sets where groupId = ?. * * <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 LayoutSetModelImpl}. 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 groupId the group ID * @param start the lower bound of the range of layout sets * @param end the upper bound of the range of layout sets (not inclusive) * @return the range of matching layout sets */ public static List<LayoutSet> findByGroupId(long groupId, int start, int end) { return getPersistence().findByGroupId(groupId, start, end); } /** * Returns an ordered range of all the layout sets where groupId = ?. * * <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 LayoutSetModelImpl}. 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 groupId the group ID * @param start the lower bound of the range of layout sets * @param end the upper bound of the range of layout sets (not inclusive) * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) * @return the ordered range of matching layout sets */ public static List<LayoutSet> findByGroupId(long groupId, int start, int end, OrderByComparator<LayoutSet> orderByComparator) { return getPersistence() .findByGroupId(groupId, start, end, orderByComparator); } /** * Returns an ordered range of all the layout sets where groupId = ?. * * <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 LayoutSetModelImpl}. 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 groupId the group ID * @param start the lower bound of the range of layout sets * @param end the upper bound of the range of layout sets (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 sets */ public static List<LayoutSet> findByGroupId(long groupId, int start, int end, OrderByComparator<LayoutSet> orderByComparator, boolean retrieveFromCache) { return getPersistence() .findByGroupId(groupId, start, end, orderByComparator, retrieveFromCache); } /** * Returns the first layout set in the ordered set where groupId = ?. * * @param groupId the group ID * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the first matching layout set * @throws NoSuchLayoutSetException if a matching layout set could not be found */ public static LayoutSet findByGroupId_First(long groupId, OrderByComparator<LayoutSet> orderByComparator) throws com.liferay.portal.kernel.exception.NoSuchLayoutSetException { return getPersistence().findByGroupId_First(groupId, orderByComparator); } /** * Returns the first layout set in the ordered set where groupId = ?. * * @param groupId the group ID * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the first matching layout set, or <code>null</code> if a matching layout set could not be found */ public static LayoutSet fetchByGroupId_First(long groupId, OrderByComparator<LayoutSet> orderByComparator) { return getPersistence().fetchByGroupId_First(groupId, orderByComparator); } /** * Returns the last layout set in the ordered set where groupId = ?. * * @param groupId the group ID * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the last matching layout set * @throws NoSuchLayoutSetException if a matching layout set could not be found */ public static LayoutSet findByGroupId_Last(long groupId, OrderByComparator<LayoutSet> orderByComparator) throws com.liferay.portal.kernel.exception.NoSuchLayoutSetException { return getPersistence().findByGroupId_Last(groupId, orderByComparator); } /** * Returns the last layout set in the ordered set where groupId = ?. * * @param groupId the group ID * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the last matching layout set, or <code>null</code> if a matching layout set could not be found */ public static LayoutSet fetchByGroupId_Last(long groupId, OrderByComparator<LayoutSet> orderByComparator) { return getPersistence().fetchByGroupId_Last(groupId, orderByComparator); } /** * Returns the layout sets before and after the current layout set in the ordered set where groupId = ?. * * @param layoutSetId the primary key of the current layout set * @param groupId the group ID * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the previous, current, and next layout set * @throws NoSuchLayoutSetException if a layout set with the primary key could not be found */ public static LayoutSet[] findByGroupId_PrevAndNext(long layoutSetId, long groupId, OrderByComparator<LayoutSet> orderByComparator) throws com.liferay.portal.kernel.exception.NoSuchLayoutSetException { return getPersistence() .findByGroupId_PrevAndNext(layoutSetId, groupId, orderByComparator); } /** * Removes all the layout sets where groupId = ? from the database. * * @param groupId the group ID */ public static void removeByGroupId(long groupId) { getPersistence().removeByGroupId(groupId); } /** * Returns the number of layout sets where groupId = ?. * * @param groupId the group ID * @return the number of matching layout sets */ public static int countByGroupId(long groupId) { return getPersistence().countByGroupId(groupId); } /** * Returns all the layout sets where layoutSetPrototypeUuid = ?. * * @param layoutSetPrototypeUuid the layout set prototype uuid * @return the matching layout sets */ public static List<LayoutSet> findByLayoutSetPrototypeUuid( java.lang.String layoutSetPrototypeUuid) { return getPersistence() .findByLayoutSetPrototypeUuid(layoutSetPrototypeUuid); } /** * Returns a range of all the layout sets where layoutSetPrototypeUuid = ?. * * <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 LayoutSetModelImpl}. 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 layoutSetPrototypeUuid the layout set prototype uuid * @param start the lower bound of the range of layout sets * @param end the upper bound of the range of layout sets (not inclusive) * @return the range of matching layout sets */ public static List<LayoutSet> findByLayoutSetPrototypeUuid( java.lang.String layoutSetPrototypeUuid, int start, int end) { return getPersistence() .findByLayoutSetPrototypeUuid(layoutSetPrototypeUuid, start, end); } /** * Returns an ordered range of all the layout sets where layoutSetPrototypeUuid = ?. * * <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 LayoutSetModelImpl}. 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 layoutSetPrototypeUuid the layout set prototype uuid * @param start the lower bound of the range of layout sets * @param end the upper bound of the range of layout sets (not inclusive) * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) * @return the ordered range of matching layout sets */ public static List<LayoutSet> findByLayoutSetPrototypeUuid( java.lang.String layoutSetPrototypeUuid, int start, int end, OrderByComparator<LayoutSet> orderByComparator) { return getPersistence() .findByLayoutSetPrototypeUuid(layoutSetPrototypeUuid, start, end, orderByComparator); } /** * Returns an ordered range of all the layout sets where layoutSetPrototypeUuid = ?. * * <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 LayoutSetModelImpl}. 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 layoutSetPrototypeUuid the layout set prototype uuid * @param start the lower bound of the range of layout sets * @param end the upper bound of the range of layout sets (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 sets */ public static List<LayoutSet> findByLayoutSetPrototypeUuid( java.lang.String layoutSetPrototypeUuid, int start, int end, OrderByComparator<LayoutSet> orderByComparator, boolean retrieveFromCache) { return getPersistence() .findByLayoutSetPrototypeUuid(layoutSetPrototypeUuid, start, end, orderByComparator, retrieveFromCache); } /** * Returns the first layout set in the ordered set where layoutSetPrototypeUuid = ?. * * @param layoutSetPrototypeUuid the layout set prototype uuid * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the first matching layout set * @throws NoSuchLayoutSetException if a matching layout set could not be found */ public static LayoutSet findByLayoutSetPrototypeUuid_First( java.lang.String layoutSetPrototypeUuid, OrderByComparator<LayoutSet> orderByComparator) throws com.liferay.portal.kernel.exception.NoSuchLayoutSetException { return getPersistence() .findByLayoutSetPrototypeUuid_First(layoutSetPrototypeUuid, orderByComparator); } /** * Returns the first layout set in the ordered set where layoutSetPrototypeUuid = ?. * * @param layoutSetPrototypeUuid the layout set prototype uuid * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the first matching layout set, or <code>null</code> if a matching layout set could not be found */ public static LayoutSet fetchByLayoutSetPrototypeUuid_First( java.lang.String layoutSetPrototypeUuid, OrderByComparator<LayoutSet> orderByComparator) { return getPersistence() .fetchByLayoutSetPrototypeUuid_First(layoutSetPrototypeUuid, orderByComparator); } /** * Returns the last layout set in the ordered set where layoutSetPrototypeUuid = ?. * * @param layoutSetPrototypeUuid the layout set prototype uuid * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the last matching layout set * @throws NoSuchLayoutSetException if a matching layout set could not be found */ public static LayoutSet findByLayoutSetPrototypeUuid_Last( java.lang.String layoutSetPrototypeUuid, OrderByComparator<LayoutSet> orderByComparator) throws com.liferay.portal.kernel.exception.NoSuchLayoutSetException { return getPersistence() .findByLayoutSetPrototypeUuid_Last(layoutSetPrototypeUuid, orderByComparator); } /** * Returns the last layout set in the ordered set where layoutSetPrototypeUuid = ?. * * @param layoutSetPrototypeUuid the layout set prototype uuid * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the last matching layout set, or <code>null</code> if a matching layout set could not be found */ public static LayoutSet fetchByLayoutSetPrototypeUuid_Last( java.lang.String layoutSetPrototypeUuid, OrderByComparator<LayoutSet> orderByComparator) { return getPersistence() .fetchByLayoutSetPrototypeUuid_Last(layoutSetPrototypeUuid, orderByComparator); } /** * Returns the layout sets before and after the current layout set in the ordered set where layoutSetPrototypeUuid = ?. * * @param layoutSetId the primary key of the current layout set * @param layoutSetPrototypeUuid the layout set prototype uuid * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the previous, current, and next layout set * @throws NoSuchLayoutSetException if a layout set with the primary key could not be found */ public static LayoutSet[] findByLayoutSetPrototypeUuid_PrevAndNext( long layoutSetId, java.lang.String layoutSetPrototypeUuid, OrderByComparator<LayoutSet> orderByComparator) throws com.liferay.portal.kernel.exception.NoSuchLayoutSetException { return getPersistence() .findByLayoutSetPrototypeUuid_PrevAndNext(layoutSetId, layoutSetPrototypeUuid, orderByComparator); } /** * Removes all the layout sets where layoutSetPrototypeUuid = ? from the database. * * @param layoutSetPrototypeUuid the layout set prototype uuid */ public static void removeByLayoutSetPrototypeUuid( java.lang.String layoutSetPrototypeUuid) { getPersistence().removeByLayoutSetPrototypeUuid(layoutSetPrototypeUuid); } /** * Returns the number of layout sets where layoutSetPrototypeUuid = ?. * * @param layoutSetPrototypeUuid the layout set prototype uuid * @return the number of matching layout sets */ public static int countByLayoutSetPrototypeUuid( java.lang.String layoutSetPrototypeUuid) { return getPersistence() .countByLayoutSetPrototypeUuid(layoutSetPrototypeUuid); } /** * Returns the layout set where groupId = ? and privateLayout = ? or throws a {@link NoSuchLayoutSetException} if it could not be found. * * @param groupId the group ID * @param privateLayout the private layout * @return the matching layout set * @throws NoSuchLayoutSetException if a matching layout set could not be found */ public static LayoutSet findByG_P(long groupId, boolean privateLayout) throws com.liferay.portal.kernel.exception.NoSuchLayoutSetException { return getPersistence().findByG_P(groupId, privateLayout); } /** * Returns the layout set where groupId = ? and privateLayout = ? or returns <code>null</code> if it could not be found. Uses the finder cache. * * @param groupId the group ID * @param privateLayout the private layout * @return the matching layout set, or <code>null</code> if a matching layout set could not be found */ public static LayoutSet fetchByG_P(long groupId, boolean privateLayout) { return getPersistence().fetchByG_P(groupId, privateLayout); } /** * Returns the layout set where groupId = ? and privateLayout = ? or returns <code>null</code> if it could not be found, optionally using the finder cache. * * @param groupId the group ID * @param privateLayout the private layout * @param retrieveFromCache whether to retrieve from the finder cache * @return the matching layout set, or <code>null</code> if a matching layout set could not be found */ public static LayoutSet fetchByG_P(long groupId, boolean privateLayout, boolean retrieveFromCache) { return getPersistence() .fetchByG_P(groupId, privateLayout, retrieveFromCache); } /** * Removes the layout set where groupId = ? and privateLayout = ? from the database. * * @param groupId the group ID * @param privateLayout the private layout * @return the layout set that was removed */ public static LayoutSet removeByG_P(long groupId, boolean privateLayout) throws com.liferay.portal.kernel.exception.NoSuchLayoutSetException { return getPersistence().removeByG_P(groupId, privateLayout); } /** * Returns the number of layout sets where groupId = ? and privateLayout = ?. * * @param groupId the group ID * @param privateLayout the private layout * @return the number of matching layout sets */ public static int countByG_P(long groupId, boolean privateLayout) { return getPersistence().countByG_P(groupId, privateLayout); } /** * Returns the layout set where privateLayout = ? and logoId = ? or throws a {@link NoSuchLayoutSetException} if it could not be found. * * @param privateLayout the private layout * @param logoId the logo ID * @return the matching layout set * @throws NoSuchLayoutSetException if a matching layout set could not be found */ public static LayoutSet findByP_L(boolean privateLayout, long logoId) throws com.liferay.portal.kernel.exception.NoSuchLayoutSetException { return getPersistence().findByP_L(privateLayout, logoId); } /** * Returns the layout set where privateLayout = ? and logoId = ? or returns <code>null</code> if it could not be found. Uses the finder cache. * * @param privateLayout the private layout * @param logoId the logo ID * @return the matching layout set, or <code>null</code> if a matching layout set could not be found */ public static LayoutSet fetchByP_L(boolean privateLayout, long logoId) { return getPersistence().fetchByP_L(privateLayout, logoId); } /** * Returns the layout set where privateLayout = ? and logoId = ? or returns <code>null</code> if it could not be found, optionally using the finder cache. * * @param privateLayout the private layout * @param logoId the logo ID * @param retrieveFromCache whether to retrieve from the finder cache * @return the matching layout set, or <code>null</code> if a matching layout set could not be found */ public static LayoutSet fetchByP_L(boolean privateLayout, long logoId, boolean retrieveFromCache) { return getPersistence() .fetchByP_L(privateLayout, logoId, retrieveFromCache); } /** * Removes the layout set where privateLayout = ? and logoId = ? from the database. * * @param privateLayout the private layout * @param logoId the logo ID * @return the layout set that was removed */ public static LayoutSet removeByP_L(boolean privateLayout, long logoId) throws com.liferay.portal.kernel.exception.NoSuchLayoutSetException { return getPersistence().removeByP_L(privateLayout, logoId); } /** * Returns the number of layout sets where privateLayout = ? and logoId = ?. * * @param privateLayout the private layout * @param logoId the logo ID * @return the number of matching layout sets */ public static int countByP_L(boolean privateLayout, long logoId) { return getPersistence().countByP_L(privateLayout, logoId); } /** * Caches the layout set in the entity cache if it is enabled. * * @param layoutSet the layout set */ public static void cacheResult(LayoutSet layoutSet) { getPersistence().cacheResult(layoutSet); } /** * Caches the layout sets in the entity cache if it is enabled. * * @param layoutSets the layout sets */ public static void cacheResult(List<LayoutSet> layoutSets) { getPersistence().cacheResult(layoutSets); } /** * Creates a new layout set with the primary key. Does not add the layout set to the database. * * @param layoutSetId the primary key for the new layout set * @return the new layout set */ public static LayoutSet create(long layoutSetId) { return getPersistence().create(layoutSetId); } /** * Removes the layout set with the primary key from the database. Also notifies the appropriate model listeners. * * @param layoutSetId the primary key of the layout set * @return the layout set that was removed * @throws NoSuchLayoutSetException if a layout set with the primary key could not be found */ public static LayoutSet remove(long layoutSetId) throws com.liferay.portal.kernel.exception.NoSuchLayoutSetException { return getPersistence().remove(layoutSetId); } public static LayoutSet updateImpl(LayoutSet layoutSet) { return getPersistence().updateImpl(layoutSet); } /** * Returns the layout set with the primary key or throws a {@link NoSuchLayoutSetException} if it could not be found. * * @param layoutSetId the primary key of the layout set * @return the layout set * @throws NoSuchLayoutSetException if a layout set with the primary key could not be found */ public static LayoutSet findByPrimaryKey(long layoutSetId) throws com.liferay.portal.kernel.exception.NoSuchLayoutSetException { return getPersistence().findByPrimaryKey(layoutSetId); } /** * Returns the layout set with the primary key or returns <code>null</code> if it could not be found. * * @param layoutSetId the primary key of the layout set * @return the layout set, or <code>null</code> if a layout set with the primary key could not be found */ public static LayoutSet fetchByPrimaryKey(long layoutSetId) { return getPersistence().fetchByPrimaryKey(layoutSetId); } public static java.util.Map<java.io.Serializable, LayoutSet> fetchByPrimaryKeys( java.util.Set<java.io.Serializable> primaryKeys) { return getPersistence().fetchByPrimaryKeys(primaryKeys); } /** * Returns all the layout sets. * * @return the layout sets */ public static List<LayoutSet> findAll() { return getPersistence().findAll(); } /** * Returns a range of all the layout sets. * * <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 LayoutSetModelImpl}. 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 sets * @param end the upper bound of the range of layout sets (not inclusive) * @return the range of layout sets */ public static List<LayoutSet> findAll(int start, int end) { return getPersistence().findAll(start, end); } /** * Returns an ordered range of all the layout sets. * * <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 LayoutSetModelImpl}. 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 sets * @param end the upper bound of the range of layout sets (not inclusive) * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) * @return the ordered range of layout sets */ public static List<LayoutSet> findAll(int start, int end, OrderByComparator<LayoutSet> orderByComparator) { return getPersistence().findAll(start, end, orderByComparator); } /** * Returns an ordered range of all the layout sets. * * <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 LayoutSetModelImpl}. 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 sets * @param end the upper bound of the range of layout sets (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 sets */ public static List<LayoutSet> findAll(int start, int end, OrderByComparator<LayoutSet> orderByComparator, boolean retrieveFromCache) { return getPersistence() .findAll(start, end, orderByComparator, retrieveFromCache); } /** * Removes all the layout sets from the database. */ public static void removeAll() { getPersistence().removeAll(); } /** * Returns the number of layout sets. * * @return the number of layout sets */ public static int countAll() { return getPersistence().countAll(); } public static java.util.Set<java.lang.String> getBadColumnNames() { return getPersistence().getBadColumnNames(); } public static LayoutSetPersistence getPersistence() { if (_persistence == null) { _persistence = (LayoutSetPersistence)PortalBeanLocatorUtil.locate(LayoutSetPersistence.class.getName()); ReferenceRegistry.registerReference(LayoutSetUtil.class, "_persistence"); } return _persistence; } private static LayoutSetPersistence _persistence; }