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

com.liferay.object.service.persistence.ObjectLayoutTabPersistence Maven / Gradle / Ivy

There is a newer version: 99.0.0
Show newest version
/**
 * SPDX-FileCopyrightText: (c) 2000 Liferay, Inc. https://liferay.com
 * SPDX-License-Identifier: LGPL-2.1-or-later OR LicenseRef-Liferay-DXP-EULA-2.0.0-2023-06
 */

package com.liferay.object.service.persistence;

import com.liferay.object.exception.NoSuchObjectLayoutTabException;
import com.liferay.object.model.ObjectLayoutTab;
import com.liferay.portal.kernel.service.persistence.BasePersistence;

import org.osgi.annotation.versioning.ProviderType;

/**
 * The persistence interface for the object layout tab service.
 *
 * 

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

* * @author Marco Leo * @see ObjectLayoutTabUtil * @generated */ @ProviderType public interface ObjectLayoutTabPersistence extends BasePersistence { /* * NOTE FOR DEVELOPERS: * * Never modify or reference this interface directly. Always use {@link ObjectLayoutTabUtil} to access the object layout tab persistence. Modify service.xml and rerun ServiceBuilder to regenerate this interface. */ /** * Returns all the object layout tabs where uuid = ?. * * @param uuid the uuid * @return the matching object layout tabs */ public java.util.List findByUuid(String uuid); /** * Returns a range of all the object layout tabs where uuid = ?. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from ObjectLayoutTabModelImpl. *

* * @param uuid the uuid * @param start the lower bound of the range of object layout tabs * @param end the upper bound of the range of object layout tabs (not inclusive) * @return the range of matching object layout tabs */ public java.util.List findByUuid( String uuid, int start, int end); /** * Returns an ordered range of all the object layout tabs where uuid = ?. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from ObjectLayoutTabModelImpl. *

* * @param uuid the uuid * @param start the lower bound of the range of object layout tabs * @param end the upper bound of the range of object layout tabs (not inclusive) * @param orderByComparator the comparator to order the results by (optionally null) * @return the ordered range of matching object layout tabs */ public java.util.List findByUuid( String uuid, int start, int end, com.liferay.portal.kernel.util.OrderByComparator orderByComparator); /** * Returns an ordered range of all the object layout tabs where uuid = ?. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from ObjectLayoutTabModelImpl. *

* * @param uuid the uuid * @param start the lower bound of the range of object layout tabs * @param end the upper bound of the range of object layout tabs (not inclusive) * @param orderByComparator the comparator to order the results by (optionally null) * @param useFinderCache whether to use the finder cache * @return the ordered range of matching object layout tabs */ public java.util.List findByUuid( String uuid, int start, int end, com.liferay.portal.kernel.util.OrderByComparator orderByComparator, boolean useFinderCache); /** * Returns the first object layout tab in the ordered set where uuid = ?. * * @param uuid the uuid * @param orderByComparator the comparator to order the set by (optionally null) * @return the first matching object layout tab * @throws NoSuchObjectLayoutTabException if a matching object layout tab could not be found */ public ObjectLayoutTab findByUuid_First( String uuid, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws NoSuchObjectLayoutTabException; /** * Returns the first object layout tab in the ordered set where uuid = ?. * * @param uuid the uuid * @param orderByComparator the comparator to order the set by (optionally null) * @return the first matching object layout tab, or null if a matching object layout tab could not be found */ public ObjectLayoutTab fetchByUuid_First( String uuid, com.liferay.portal.kernel.util.OrderByComparator orderByComparator); /** * Returns the last object layout tab in the ordered set where uuid = ?. * * @param uuid the uuid * @param orderByComparator the comparator to order the set by (optionally null) * @return the last matching object layout tab * @throws NoSuchObjectLayoutTabException if a matching object layout tab could not be found */ public ObjectLayoutTab findByUuid_Last( String uuid, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws NoSuchObjectLayoutTabException; /** * Returns the last object layout tab in the ordered set where uuid = ?. * * @param uuid the uuid * @param orderByComparator the comparator to order the set by (optionally null) * @return the last matching object layout tab, or null if a matching object layout tab could not be found */ public ObjectLayoutTab fetchByUuid_Last( String uuid, com.liferay.portal.kernel.util.OrderByComparator orderByComparator); /** * Returns the object layout tabs before and after the current object layout tab in the ordered set where uuid = ?. * * @param objectLayoutTabId the primary key of the current object layout tab * @param uuid the uuid * @param orderByComparator the comparator to order the set by (optionally null) * @return the previous, current, and next object layout tab * @throws NoSuchObjectLayoutTabException if a object layout tab with the primary key could not be found */ public ObjectLayoutTab[] findByUuid_PrevAndNext( long objectLayoutTabId, String uuid, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws NoSuchObjectLayoutTabException; /** * Removes all the object layout tabs where uuid = ? from the database. * * @param uuid the uuid */ public void removeByUuid(String uuid); /** * Returns the number of object layout tabs where uuid = ?. * * @param uuid the uuid * @return the number of matching object layout tabs */ public int countByUuid(String uuid); /** * Returns all the object layout tabs where uuid = ? and companyId = ?. * * @param uuid the uuid * @param companyId the company ID * @return the matching object layout tabs */ public java.util.List findByUuid_C( String uuid, long companyId); /** * Returns a range of all the object layout tabs where uuid = ? and companyId = ?. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from ObjectLayoutTabModelImpl. *

* * @param uuid the uuid * @param companyId the company ID * @param start the lower bound of the range of object layout tabs * @param end the upper bound of the range of object layout tabs (not inclusive) * @return the range of matching object layout tabs */ public java.util.List findByUuid_C( String uuid, long companyId, int start, int end); /** * Returns an ordered range of all the object layout tabs where uuid = ? and companyId = ?. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from ObjectLayoutTabModelImpl. *

* * @param uuid the uuid * @param companyId the company ID * @param start the lower bound of the range of object layout tabs * @param end the upper bound of the range of object layout tabs (not inclusive) * @param orderByComparator the comparator to order the results by (optionally null) * @return the ordered range of matching object layout tabs */ public java.util.List findByUuid_C( String uuid, long companyId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator orderByComparator); /** * Returns an ordered range of all the object layout tabs where uuid = ? and companyId = ?. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from ObjectLayoutTabModelImpl. *

* * @param uuid the uuid * @param companyId the company ID * @param start the lower bound of the range of object layout tabs * @param end the upper bound of the range of object layout tabs (not inclusive) * @param orderByComparator the comparator to order the results by (optionally null) * @param useFinderCache whether to use the finder cache * @return the ordered range of matching object layout tabs */ public java.util.List findByUuid_C( String uuid, long companyId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator orderByComparator, boolean useFinderCache); /** * Returns the first object layout tab in the ordered set where uuid = ? and companyId = ?. * * @param uuid the uuid * @param companyId the company ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the first matching object layout tab * @throws NoSuchObjectLayoutTabException if a matching object layout tab could not be found */ public ObjectLayoutTab findByUuid_C_First( String uuid, long companyId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws NoSuchObjectLayoutTabException; /** * Returns the first object layout tab in the ordered set where uuid = ? and companyId = ?. * * @param uuid the uuid * @param companyId the company ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the first matching object layout tab, or null if a matching object layout tab could not be found */ public ObjectLayoutTab fetchByUuid_C_First( String uuid, long companyId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator); /** * Returns the last object layout tab in the ordered set where uuid = ? and companyId = ?. * * @param uuid the uuid * @param companyId the company ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the last matching object layout tab * @throws NoSuchObjectLayoutTabException if a matching object layout tab could not be found */ public ObjectLayoutTab findByUuid_C_Last( String uuid, long companyId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws NoSuchObjectLayoutTabException; /** * Returns the last object layout tab in the ordered set where uuid = ? and companyId = ?. * * @param uuid the uuid * @param companyId the company ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the last matching object layout tab, or null if a matching object layout tab could not be found */ public ObjectLayoutTab fetchByUuid_C_Last( String uuid, long companyId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator); /** * Returns the object layout tabs before and after the current object layout tab in the ordered set where uuid = ? and companyId = ?. * * @param objectLayoutTabId the primary key of the current object layout tab * @param uuid the uuid * @param companyId the company ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the previous, current, and next object layout tab * @throws NoSuchObjectLayoutTabException if a object layout tab with the primary key could not be found */ public ObjectLayoutTab[] findByUuid_C_PrevAndNext( long objectLayoutTabId, String uuid, long companyId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws NoSuchObjectLayoutTabException; /** * Removes all the object layout tabs where uuid = ? and companyId = ? from the database. * * @param uuid the uuid * @param companyId the company ID */ public void removeByUuid_C(String uuid, long companyId); /** * Returns the number of object layout tabs where uuid = ? and companyId = ?. * * @param uuid the uuid * @param companyId the company ID * @return the number of matching object layout tabs */ public int countByUuid_C(String uuid, long companyId); /** * Returns all the object layout tabs where objectLayoutId = ?. * * @param objectLayoutId the object layout ID * @return the matching object layout tabs */ public java.util.List findByObjectLayoutId( long objectLayoutId); /** * Returns a range of all the object layout tabs where objectLayoutId = ?. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from ObjectLayoutTabModelImpl. *

* * @param objectLayoutId the object layout ID * @param start the lower bound of the range of object layout tabs * @param end the upper bound of the range of object layout tabs (not inclusive) * @return the range of matching object layout tabs */ public java.util.List findByObjectLayoutId( long objectLayoutId, int start, int end); /** * Returns an ordered range of all the object layout tabs where objectLayoutId = ?. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from ObjectLayoutTabModelImpl. *

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

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from ObjectLayoutTabModelImpl. *

* * @param objectLayoutId the object layout ID * @param start the lower bound of the range of object layout tabs * @param end the upper bound of the range of object layout tabs (not inclusive) * @param orderByComparator the comparator to order the results by (optionally null) * @param useFinderCache whether to use the finder cache * @return the ordered range of matching object layout tabs */ public java.util.List findByObjectLayoutId( long objectLayoutId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator orderByComparator, boolean useFinderCache); /** * Returns the first object layout tab in the ordered set where objectLayoutId = ?. * * @param objectLayoutId the object layout ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the first matching object layout tab * @throws NoSuchObjectLayoutTabException if a matching object layout tab could not be found */ public ObjectLayoutTab findByObjectLayoutId_First( long objectLayoutId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws NoSuchObjectLayoutTabException; /** * Returns the first object layout tab in the ordered set where objectLayoutId = ?. * * @param objectLayoutId the object layout ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the first matching object layout tab, or null if a matching object layout tab could not be found */ public ObjectLayoutTab fetchByObjectLayoutId_First( long objectLayoutId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator); /** * Returns the last object layout tab in the ordered set where objectLayoutId = ?. * * @param objectLayoutId the object layout ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the last matching object layout tab * @throws NoSuchObjectLayoutTabException if a matching object layout tab could not be found */ public ObjectLayoutTab findByObjectLayoutId_Last( long objectLayoutId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws NoSuchObjectLayoutTabException; /** * Returns the last object layout tab in the ordered set where objectLayoutId = ?. * * @param objectLayoutId the object layout ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the last matching object layout tab, or null if a matching object layout tab could not be found */ public ObjectLayoutTab fetchByObjectLayoutId_Last( long objectLayoutId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator); /** * Returns the object layout tabs before and after the current object layout tab in the ordered set where objectLayoutId = ?. * * @param objectLayoutTabId the primary key of the current object layout tab * @param objectLayoutId the object layout ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the previous, current, and next object layout tab * @throws NoSuchObjectLayoutTabException if a object layout tab with the primary key could not be found */ public ObjectLayoutTab[] findByObjectLayoutId_PrevAndNext( long objectLayoutTabId, long objectLayoutId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws NoSuchObjectLayoutTabException; /** * Removes all the object layout tabs where objectLayoutId = ? from the database. * * @param objectLayoutId the object layout ID */ public void removeByObjectLayoutId(long objectLayoutId); /** * Returns the number of object layout tabs where objectLayoutId = ?. * * @param objectLayoutId the object layout ID * @return the number of matching object layout tabs */ public int countByObjectLayoutId(long objectLayoutId); /** * Returns all the object layout tabs where objectRelationshipId = ?. * * @param objectRelationshipId the object relationship ID * @return the matching object layout tabs */ public java.util.List findByObjectRelationshipId( long objectRelationshipId); /** * Returns a range of all the object layout tabs where objectRelationshipId = ?. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from ObjectLayoutTabModelImpl. *

* * @param objectRelationshipId the object relationship ID * @param start the lower bound of the range of object layout tabs * @param end the upper bound of the range of object layout tabs (not inclusive) * @return the range of matching object layout tabs */ public java.util.List findByObjectRelationshipId( long objectRelationshipId, int start, int end); /** * Returns an ordered range of all the object layout tabs where objectRelationshipId = ?. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from ObjectLayoutTabModelImpl. *

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

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from ObjectLayoutTabModelImpl. *

* * @param objectRelationshipId the object relationship ID * @param start the lower bound of the range of object layout tabs * @param end the upper bound of the range of object layout tabs (not inclusive) * @param orderByComparator the comparator to order the results by (optionally null) * @param useFinderCache whether to use the finder cache * @return the ordered range of matching object layout tabs */ public java.util.List findByObjectRelationshipId( long objectRelationshipId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator orderByComparator, boolean useFinderCache); /** * Returns the first object layout tab in the ordered set where objectRelationshipId = ?. * * @param objectRelationshipId the object relationship ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the first matching object layout tab * @throws NoSuchObjectLayoutTabException if a matching object layout tab could not be found */ public ObjectLayoutTab findByObjectRelationshipId_First( long objectRelationshipId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws NoSuchObjectLayoutTabException; /** * Returns the first object layout tab in the ordered set where objectRelationshipId = ?. * * @param objectRelationshipId the object relationship ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the first matching object layout tab, or null if a matching object layout tab could not be found */ public ObjectLayoutTab fetchByObjectRelationshipId_First( long objectRelationshipId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator); /** * Returns the last object layout tab in the ordered set where objectRelationshipId = ?. * * @param objectRelationshipId the object relationship ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the last matching object layout tab * @throws NoSuchObjectLayoutTabException if a matching object layout tab could not be found */ public ObjectLayoutTab findByObjectRelationshipId_Last( long objectRelationshipId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws NoSuchObjectLayoutTabException; /** * Returns the last object layout tab in the ordered set where objectRelationshipId = ?. * * @param objectRelationshipId the object relationship ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the last matching object layout tab, or null if a matching object layout tab could not be found */ public ObjectLayoutTab fetchByObjectRelationshipId_Last( long objectRelationshipId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator); /** * Returns the object layout tabs before and after the current object layout tab in the ordered set where objectRelationshipId = ?. * * @param objectLayoutTabId the primary key of the current object layout tab * @param objectRelationshipId the object relationship ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the previous, current, and next object layout tab * @throws NoSuchObjectLayoutTabException if a object layout tab with the primary key could not be found */ public ObjectLayoutTab[] findByObjectRelationshipId_PrevAndNext( long objectLayoutTabId, long objectRelationshipId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws NoSuchObjectLayoutTabException; /** * Removes all the object layout tabs where objectRelationshipId = ? from the database. * * @param objectRelationshipId the object relationship ID */ public void removeByObjectRelationshipId(long objectRelationshipId); /** * Returns the number of object layout tabs where objectRelationshipId = ?. * * @param objectRelationshipId the object relationship ID * @return the number of matching object layout tabs */ public int countByObjectRelationshipId(long objectRelationshipId); /** * Caches the object layout tab in the entity cache if it is enabled. * * @param objectLayoutTab the object layout tab */ public void cacheResult(ObjectLayoutTab objectLayoutTab); /** * Caches the object layout tabs in the entity cache if it is enabled. * * @param objectLayoutTabs the object layout tabs */ public void cacheResult(java.util.List objectLayoutTabs); /** * Creates a new object layout tab with the primary key. Does not add the object layout tab to the database. * * @param objectLayoutTabId the primary key for the new object layout tab * @return the new object layout tab */ public ObjectLayoutTab create(long objectLayoutTabId); /** * Removes the object layout tab with the primary key from the database. Also notifies the appropriate model listeners. * * @param objectLayoutTabId the primary key of the object layout tab * @return the object layout tab that was removed * @throws NoSuchObjectLayoutTabException if a object layout tab with the primary key could not be found */ public ObjectLayoutTab remove(long objectLayoutTabId) throws NoSuchObjectLayoutTabException; public ObjectLayoutTab updateImpl(ObjectLayoutTab objectLayoutTab); /** * Returns the object layout tab with the primary key or throws a NoSuchObjectLayoutTabException if it could not be found. * * @param objectLayoutTabId the primary key of the object layout tab * @return the object layout tab * @throws NoSuchObjectLayoutTabException if a object layout tab with the primary key could not be found */ public ObjectLayoutTab findByPrimaryKey(long objectLayoutTabId) throws NoSuchObjectLayoutTabException; /** * Returns the object layout tab with the primary key or returns null if it could not be found. * * @param objectLayoutTabId the primary key of the object layout tab * @return the object layout tab, or null if a object layout tab with the primary key could not be found */ public ObjectLayoutTab fetchByPrimaryKey(long objectLayoutTabId); /** * Returns all the object layout tabs. * * @return the object layout tabs */ public java.util.List findAll(); /** * Returns a range of all the object layout tabs. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from ObjectLayoutTabModelImpl. *

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

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from ObjectLayoutTabModelImpl. *

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

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from ObjectLayoutTabModelImpl. *

* * @param start the lower bound of the range of object layout tabs * @param end the upper bound of the range of object layout tabs (not inclusive) * @param orderByComparator the comparator to order the results by (optionally null) * @param useFinderCache whether to use the finder cache * @return the ordered range of object layout tabs */ public java.util.List findAll( int start, int end, com.liferay.portal.kernel.util.OrderByComparator orderByComparator, boolean useFinderCache); /** * Removes all the object layout tabs from the database. */ public void removeAll(); /** * Returns the number of object layout tabs. * * @return the number of object layout tabs */ public int countAll(); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy