com.liferay.fragment.service.persistence.FragmentEntryLinkPersistence Maven / Gradle / Ivy
/**
* 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.fragment.service.persistence;
import com.liferay.fragment.exception.NoSuchEntryLinkException;
import com.liferay.fragment.model.FragmentEntryLink;
import com.liferay.portal.kernel.service.persistence.BasePersistence;
import com.liferay.portal.kernel.service.persistence.change.tracking.CTPersistence;
import org.osgi.annotation.versioning.ProviderType;
/**
* The persistence interface for the fragment entry link service.
*
*
* Caching information and settings can be found in portal.properties
*
*
* @author Brian Wing Shun Chan
* @see FragmentEntryLinkUtil
* @generated
*/
@ProviderType
public interface FragmentEntryLinkPersistence
extends BasePersistence,
CTPersistence {
/*
* NOTE FOR DEVELOPERS:
*
* Never modify or reference this interface directly. Always use {@link FragmentEntryLinkUtil} to access the fragment entry link persistence. Modify service.xml
and rerun ServiceBuilder to regenerate this interface.
*/
/**
* Returns all the fragment entry links where uuid = ?.
*
* @param uuid the uuid
* @return the matching fragment entry links
*/
public java.util.List findByUuid(String uuid);
/**
* Returns a range of all the fragment entry links 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 FragmentEntryLinkModelImpl
.
*
*
* @param uuid the uuid
* @param start the lower bound of the range of fragment entry links
* @param end the upper bound of the range of fragment entry links (not inclusive)
* @return the range of matching fragment entry links
*/
public java.util.List findByUuid(
String uuid, int start, int end);
/**
* Returns an ordered range of all the fragment entry links 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 FragmentEntryLinkModelImpl
.
*
*
* @param uuid the uuid
* @param start the lower bound of the range of fragment entry links
* @param end the upper bound of the range of fragment entry links (not inclusive)
* @param orderByComparator the comparator to order the results by (optionally null
)
* @return the ordered range of matching fragment entry links
*/
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 fragment entry links 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 FragmentEntryLinkModelImpl
.
*
*
* @param uuid the uuid
* @param start the lower bound of the range of fragment entry links
* @param end the upper bound of the range of fragment entry links (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 fragment entry links
*/
public java.util.List findByUuid(
String uuid, int start, int end,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator,
boolean useFinderCache);
/**
* Returns the first fragment entry link 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 fragment entry link
* @throws NoSuchEntryLinkException if a matching fragment entry link could not be found
*/
public FragmentEntryLink findByUuid_First(
String uuid,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchEntryLinkException;
/**
* Returns the first fragment entry link 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 fragment entry link, or null
if a matching fragment entry link could not be found
*/
public FragmentEntryLink fetchByUuid_First(
String uuid,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns the last fragment entry link 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 fragment entry link
* @throws NoSuchEntryLinkException if a matching fragment entry link could not be found
*/
public FragmentEntryLink findByUuid_Last(
String uuid,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchEntryLinkException;
/**
* Returns the last fragment entry link 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 fragment entry link, or null
if a matching fragment entry link could not be found
*/
public FragmentEntryLink fetchByUuid_Last(
String uuid,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns the fragment entry links before and after the current fragment entry link in the ordered set where uuid = ?.
*
* @param fragmentEntryLinkId the primary key of the current fragment entry link
* @param uuid the uuid
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the previous, current, and next fragment entry link
* @throws NoSuchEntryLinkException if a fragment entry link with the primary key could not be found
*/
public FragmentEntryLink[] findByUuid_PrevAndNext(
long fragmentEntryLinkId, String uuid,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchEntryLinkException;
/**
* Removes all the fragment entry links where uuid = ? from the database.
*
* @param uuid the uuid
*/
public void removeByUuid(String uuid);
/**
* Returns the number of fragment entry links where uuid = ?.
*
* @param uuid the uuid
* @return the number of matching fragment entry links
*/
public int countByUuid(String uuid);
/**
* Returns the fragment entry link where uuid = ? and groupId = ? or throws a NoSuchEntryLinkException
if it could not be found.
*
* @param uuid the uuid
* @param groupId the group ID
* @return the matching fragment entry link
* @throws NoSuchEntryLinkException if a matching fragment entry link could not be found
*/
public FragmentEntryLink findByUUID_G(String uuid, long groupId)
throws NoSuchEntryLinkException;
/**
* Returns the fragment entry link where uuid = ? and groupId = ? or returns null
if it could not be found. Uses the finder cache.
*
* @param uuid the uuid
* @param groupId the group ID
* @return the matching fragment entry link, or null
if a matching fragment entry link could not be found
*/
public FragmentEntryLink fetchByUUID_G(String uuid, long groupId);
/**
* Returns the fragment entry link where uuid = ? and groupId = ? or returns null
if it could not be found, optionally using the finder cache.
*
* @param uuid the uuid
* @param groupId the group ID
* @param useFinderCache whether to use the finder cache
* @return the matching fragment entry link, or null
if a matching fragment entry link could not be found
*/
public FragmentEntryLink fetchByUUID_G(
String uuid, long groupId, boolean useFinderCache);
/**
* Removes the fragment entry link where uuid = ? and groupId = ? from the database.
*
* @param uuid the uuid
* @param groupId the group ID
* @return the fragment entry link that was removed
*/
public FragmentEntryLink removeByUUID_G(String uuid, long groupId)
throws NoSuchEntryLinkException;
/**
* Returns the number of fragment entry links where uuid = ? and groupId = ?.
*
* @param uuid the uuid
* @param groupId the group ID
* @return the number of matching fragment entry links
*/
public int countByUUID_G(String uuid, long groupId);
/**
* Returns all the fragment entry links where uuid = ? and companyId = ?.
*
* @param uuid the uuid
* @param companyId the company ID
* @return the matching fragment entry links
*/
public java.util.List findByUuid_C(
String uuid, long companyId);
/**
* Returns a range of all the fragment entry links 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 FragmentEntryLinkModelImpl
.
*
*
* @param uuid the uuid
* @param companyId the company ID
* @param start the lower bound of the range of fragment entry links
* @param end the upper bound of the range of fragment entry links (not inclusive)
* @return the range of matching fragment entry links
*/
public java.util.List findByUuid_C(
String uuid, long companyId, int start, int end);
/**
* Returns an ordered range of all the fragment entry links 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 FragmentEntryLinkModelImpl
.
*
*
* @param uuid the uuid
* @param companyId the company ID
* @param start the lower bound of the range of fragment entry links
* @param end the upper bound of the range of fragment entry links (not inclusive)
* @param orderByComparator the comparator to order the results by (optionally null
)
* @return the ordered range of matching fragment entry links
*/
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 fragment entry links 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 FragmentEntryLinkModelImpl
.
*
*
* @param uuid the uuid
* @param companyId the company ID
* @param start the lower bound of the range of fragment entry links
* @param end the upper bound of the range of fragment entry links (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 fragment entry links
*/
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 fragment entry link 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 fragment entry link
* @throws NoSuchEntryLinkException if a matching fragment entry link could not be found
*/
public FragmentEntryLink findByUuid_C_First(
String uuid, long companyId,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchEntryLinkException;
/**
* Returns the first fragment entry link 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 fragment entry link, or null
if a matching fragment entry link could not be found
*/
public FragmentEntryLink fetchByUuid_C_First(
String uuid, long companyId,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns the last fragment entry link 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 fragment entry link
* @throws NoSuchEntryLinkException if a matching fragment entry link could not be found
*/
public FragmentEntryLink findByUuid_C_Last(
String uuid, long companyId,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchEntryLinkException;
/**
* Returns the last fragment entry link 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 fragment entry link, or null
if a matching fragment entry link could not be found
*/
public FragmentEntryLink fetchByUuid_C_Last(
String uuid, long companyId,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns the fragment entry links before and after the current fragment entry link in the ordered set where uuid = ? and companyId = ?.
*
* @param fragmentEntryLinkId the primary key of the current fragment entry link
* @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 fragment entry link
* @throws NoSuchEntryLinkException if a fragment entry link with the primary key could not be found
*/
public FragmentEntryLink[] findByUuid_C_PrevAndNext(
long fragmentEntryLinkId, String uuid, long companyId,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchEntryLinkException;
/**
* Removes all the fragment entry links 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 fragment entry links where uuid = ? and companyId = ?.
*
* @param uuid the uuid
* @param companyId the company ID
* @return the number of matching fragment entry links
*/
public int countByUuid_C(String uuid, long companyId);
/**
* Returns all the fragment entry links where groupId = ?.
*
* @param groupId the group ID
* @return the matching fragment entry links
*/
public java.util.List findByGroupId(long groupId);
/**
* Returns a range of all the fragment entry links where groupId = ?.
*
*
* 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 FragmentEntryLinkModelImpl
.
*
*
* @param groupId the group ID
* @param start the lower bound of the range of fragment entry links
* @param end the upper bound of the range of fragment entry links (not inclusive)
* @return the range of matching fragment entry links
*/
public java.util.List findByGroupId(
long groupId, int start, int end);
/**
* Returns an ordered range of all the fragment entry links where groupId = ?.
*
*
* 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 FragmentEntryLinkModelImpl
.
*
*
* @param groupId the group ID
* @param start the lower bound of the range of fragment entry links
* @param end the upper bound of the range of fragment entry links (not inclusive)
* @param orderByComparator the comparator to order the results by (optionally null
)
* @return the ordered range of matching fragment entry links
*/
public java.util.List findByGroupId(
long groupId, int start, int end,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns an ordered range of all the fragment entry links where groupId = ?.
*
*
* 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 FragmentEntryLinkModelImpl
.
*
*
* @param groupId the group ID
* @param start the lower bound of the range of fragment entry links
* @param end the upper bound of the range of fragment entry links (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 fragment entry links
*/
public java.util.List findByGroupId(
long groupId, int start, int end,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator,
boolean useFinderCache);
/**
* Returns the first fragment entry link in the ordered set where groupId = ?.
*
* @param groupId the group ID
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the first matching fragment entry link
* @throws NoSuchEntryLinkException if a matching fragment entry link could not be found
*/
public FragmentEntryLink findByGroupId_First(
long groupId,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchEntryLinkException;
/**
* Returns the first fragment entry link in the ordered set where groupId = ?.
*
* @param groupId the group ID
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the first matching fragment entry link, or null
if a matching fragment entry link could not be found
*/
public FragmentEntryLink fetchByGroupId_First(
long groupId,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns the last fragment entry link in the ordered set where groupId = ?.
*
* @param groupId the group ID
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the last matching fragment entry link
* @throws NoSuchEntryLinkException if a matching fragment entry link could not be found
*/
public FragmentEntryLink findByGroupId_Last(
long groupId,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchEntryLinkException;
/**
* Returns the last fragment entry link in the ordered set where groupId = ?.
*
* @param groupId the group ID
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the last matching fragment entry link, or null
if a matching fragment entry link could not be found
*/
public FragmentEntryLink fetchByGroupId_Last(
long groupId,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns the fragment entry links before and after the current fragment entry link in the ordered set where groupId = ?.
*
* @param fragmentEntryLinkId the primary key of the current fragment entry link
* @param groupId the group ID
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the previous, current, and next fragment entry link
* @throws NoSuchEntryLinkException if a fragment entry link with the primary key could not be found
*/
public FragmentEntryLink[] findByGroupId_PrevAndNext(
long fragmentEntryLinkId, long groupId,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchEntryLinkException;
/**
* Removes all the fragment entry links where groupId = ? from the database.
*
* @param groupId the group ID
*/
public void removeByGroupId(long groupId);
/**
* Returns the number of fragment entry links where groupId = ?.
*
* @param groupId the group ID
* @return the number of matching fragment entry links
*/
public int countByGroupId(long groupId);
/**
* Returns all the fragment entry links where fragmentEntryId = ?.
*
* @param fragmentEntryId the fragment entry ID
* @return the matching fragment entry links
*/
public java.util.List findByFragmentEntryId(
long fragmentEntryId);
/**
* Returns a range of all the fragment entry links where fragmentEntryId = ?.
*
*
* 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 FragmentEntryLinkModelImpl
.
*
*
* @param fragmentEntryId the fragment entry ID
* @param start the lower bound of the range of fragment entry links
* @param end the upper bound of the range of fragment entry links (not inclusive)
* @return the range of matching fragment entry links
*/
public java.util.List findByFragmentEntryId(
long fragmentEntryId, int start, int end);
/**
* Returns an ordered range of all the fragment entry links where fragmentEntryId = ?.
*
*
* 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 FragmentEntryLinkModelImpl
.
*
*
* @param fragmentEntryId the fragment entry ID
* @param start the lower bound of the range of fragment entry links
* @param end the upper bound of the range of fragment entry links (not inclusive)
* @param orderByComparator the comparator to order the results by (optionally null
)
* @return the ordered range of matching fragment entry links
*/
public java.util.List findByFragmentEntryId(
long fragmentEntryId, int start, int end,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns an ordered range of all the fragment entry links where fragmentEntryId = ?.
*
*
* 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 FragmentEntryLinkModelImpl
.
*
*
* @param fragmentEntryId the fragment entry ID
* @param start the lower bound of the range of fragment entry links
* @param end the upper bound of the range of fragment entry links (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 fragment entry links
*/
public java.util.List findByFragmentEntryId(
long fragmentEntryId, int start, int end,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator,
boolean useFinderCache);
/**
* Returns the first fragment entry link in the ordered set where fragmentEntryId = ?.
*
* @param fragmentEntryId the fragment entry ID
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the first matching fragment entry link
* @throws NoSuchEntryLinkException if a matching fragment entry link could not be found
*/
public FragmentEntryLink findByFragmentEntryId_First(
long fragmentEntryId,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchEntryLinkException;
/**
* Returns the first fragment entry link in the ordered set where fragmentEntryId = ?.
*
* @param fragmentEntryId the fragment entry ID
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the first matching fragment entry link, or null
if a matching fragment entry link could not be found
*/
public FragmentEntryLink fetchByFragmentEntryId_First(
long fragmentEntryId,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns the last fragment entry link in the ordered set where fragmentEntryId = ?.
*
* @param fragmentEntryId the fragment entry ID
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the last matching fragment entry link
* @throws NoSuchEntryLinkException if a matching fragment entry link could not be found
*/
public FragmentEntryLink findByFragmentEntryId_Last(
long fragmentEntryId,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchEntryLinkException;
/**
* Returns the last fragment entry link in the ordered set where fragmentEntryId = ?.
*
* @param fragmentEntryId the fragment entry ID
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the last matching fragment entry link, or null
if a matching fragment entry link could not be found
*/
public FragmentEntryLink fetchByFragmentEntryId_Last(
long fragmentEntryId,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns the fragment entry links before and after the current fragment entry link in the ordered set where fragmentEntryId = ?.
*
* @param fragmentEntryLinkId the primary key of the current fragment entry link
* @param fragmentEntryId the fragment entry ID
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the previous, current, and next fragment entry link
* @throws NoSuchEntryLinkException if a fragment entry link with the primary key could not be found
*/
public FragmentEntryLink[] findByFragmentEntryId_PrevAndNext(
long fragmentEntryLinkId, long fragmentEntryId,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchEntryLinkException;
/**
* Returns all the fragment entry links where fragmentEntryId = any ?.
*
*
* 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 FragmentEntryLinkModelImpl
.
*
*
* @param fragmentEntryIds the fragment entry IDs
* @return the matching fragment entry links
*/
public java.util.List findByFragmentEntryId(
long[] fragmentEntryIds);
/**
* Returns a range of all the fragment entry links where fragmentEntryId = any ?.
*
*
* 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 FragmentEntryLinkModelImpl
.
*
*
* @param fragmentEntryIds the fragment entry IDs
* @param start the lower bound of the range of fragment entry links
* @param end the upper bound of the range of fragment entry links (not inclusive)
* @return the range of matching fragment entry links
*/
public java.util.List findByFragmentEntryId(
long[] fragmentEntryIds, int start, int end);
/**
* Returns an ordered range of all the fragment entry links where fragmentEntryId = any ?.
*
*
* 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 FragmentEntryLinkModelImpl
.
*
*
* @param fragmentEntryIds the fragment entry IDs
* @param start the lower bound of the range of fragment entry links
* @param end the upper bound of the range of fragment entry links (not inclusive)
* @param orderByComparator the comparator to order the results by (optionally null
)
* @return the ordered range of matching fragment entry links
*/
public java.util.List findByFragmentEntryId(
long[] fragmentEntryIds, int start, int end,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns an ordered range of all the fragment entry links where fragmentEntryId = ?, optionally using the finder cache.
*
*
* 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 FragmentEntryLinkModelImpl
.
*
*
* @param fragmentEntryIds the fragment entry IDs
* @param start the lower bound of the range of fragment entry links
* @param end the upper bound of the range of fragment entry links (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 fragment entry links
*/
public java.util.List findByFragmentEntryId(
long[] fragmentEntryIds, int start, int end,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator,
boolean useFinderCache);
/**
* Removes all the fragment entry links where fragmentEntryId = ? from the database.
*
* @param fragmentEntryId the fragment entry ID
*/
public void removeByFragmentEntryId(long fragmentEntryId);
/**
* Returns the number of fragment entry links where fragmentEntryId = ?.
*
* @param fragmentEntryId the fragment entry ID
* @return the number of matching fragment entry links
*/
public int countByFragmentEntryId(long fragmentEntryId);
/**
* Returns the number of fragment entry links where fragmentEntryId = any ?.
*
* @param fragmentEntryIds the fragment entry IDs
* @return the number of matching fragment entry links
*/
public int countByFragmentEntryId(long[] fragmentEntryIds);
/**
* Returns all the fragment entry links where rendererKey = ?.
*
* @param rendererKey the renderer key
* @return the matching fragment entry links
*/
public java.util.List findByRendererKey(
String rendererKey);
/**
* Returns a range of all the fragment entry links where rendererKey = ?.
*
*
* 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 FragmentEntryLinkModelImpl
.
*
*
* @param rendererKey the renderer key
* @param start the lower bound of the range of fragment entry links
* @param end the upper bound of the range of fragment entry links (not inclusive)
* @return the range of matching fragment entry links
*/
public java.util.List findByRendererKey(
String rendererKey, int start, int end);
/**
* Returns an ordered range of all the fragment entry links where rendererKey = ?.
*
*
* 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 FragmentEntryLinkModelImpl
.
*
*
* @param rendererKey the renderer key
* @param start the lower bound of the range of fragment entry links
* @param end the upper bound of the range of fragment entry links (not inclusive)
* @param orderByComparator the comparator to order the results by (optionally null
)
* @return the ordered range of matching fragment entry links
*/
public java.util.List findByRendererKey(
String rendererKey, int start, int end,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns an ordered range of all the fragment entry links where rendererKey = ?.
*
*
* 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 FragmentEntryLinkModelImpl
.
*
*
* @param rendererKey the renderer key
* @param start the lower bound of the range of fragment entry links
* @param end the upper bound of the range of fragment entry links (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 fragment entry links
*/
public java.util.List findByRendererKey(
String rendererKey, int start, int end,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator,
boolean useFinderCache);
/**
* Returns the first fragment entry link in the ordered set where rendererKey = ?.
*
* @param rendererKey the renderer key
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the first matching fragment entry link
* @throws NoSuchEntryLinkException if a matching fragment entry link could not be found
*/
public FragmentEntryLink findByRendererKey_First(
String rendererKey,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchEntryLinkException;
/**
* Returns the first fragment entry link in the ordered set where rendererKey = ?.
*
* @param rendererKey the renderer key
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the first matching fragment entry link, or null
if a matching fragment entry link could not be found
*/
public FragmentEntryLink fetchByRendererKey_First(
String rendererKey,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns the last fragment entry link in the ordered set where rendererKey = ?.
*
* @param rendererKey the renderer key
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the last matching fragment entry link
* @throws NoSuchEntryLinkException if a matching fragment entry link could not be found
*/
public FragmentEntryLink findByRendererKey_Last(
String rendererKey,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchEntryLinkException;
/**
* Returns the last fragment entry link in the ordered set where rendererKey = ?.
*
* @param rendererKey the renderer key
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the last matching fragment entry link, or null
if a matching fragment entry link could not be found
*/
public FragmentEntryLink fetchByRendererKey_Last(
String rendererKey,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns the fragment entry links before and after the current fragment entry link in the ordered set where rendererKey = ?.
*
* @param fragmentEntryLinkId the primary key of the current fragment entry link
* @param rendererKey the renderer key
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the previous, current, and next fragment entry link
* @throws NoSuchEntryLinkException if a fragment entry link with the primary key could not be found
*/
public FragmentEntryLink[] findByRendererKey_PrevAndNext(
long fragmentEntryLinkId, String rendererKey,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchEntryLinkException;
/**
* Removes all the fragment entry links where rendererKey = ? from the database.
*
* @param rendererKey the renderer key
*/
public void removeByRendererKey(String rendererKey);
/**
* Returns the number of fragment entry links where rendererKey = ?.
*
* @param rendererKey the renderer key
* @return the number of matching fragment entry links
*/
public int countByRendererKey(String rendererKey);
/**
* Returns all the fragment entry links where groupId = ? and fragmentEntryId = ?.
*
* @param groupId the group ID
* @param fragmentEntryId the fragment entry ID
* @return the matching fragment entry links
*/
public java.util.List findByG_F(
long groupId, long fragmentEntryId);
/**
* Returns a range of all the fragment entry links where groupId = ? and fragmentEntryId = ?.
*
*
* 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 FragmentEntryLinkModelImpl
.
*
*
* @param groupId the group ID
* @param fragmentEntryId the fragment entry ID
* @param start the lower bound of the range of fragment entry links
* @param end the upper bound of the range of fragment entry links (not inclusive)
* @return the range of matching fragment entry links
*/
public java.util.List findByG_F(
long groupId, long fragmentEntryId, int start, int end);
/**
* Returns an ordered range of all the fragment entry links where groupId = ? and fragmentEntryId = ?.
*
*
* 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 FragmentEntryLinkModelImpl
.
*
*
* @param groupId the group ID
* @param fragmentEntryId the fragment entry ID
* @param start the lower bound of the range of fragment entry links
* @param end the upper bound of the range of fragment entry links (not inclusive)
* @param orderByComparator the comparator to order the results by (optionally null
)
* @return the ordered range of matching fragment entry links
*/
public java.util.List findByG_F(
long groupId, long fragmentEntryId, int start, int end,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns an ordered range of all the fragment entry links where groupId = ? and fragmentEntryId = ?.
*
*
* 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 FragmentEntryLinkModelImpl
.
*
*
* @param groupId the group ID
* @param fragmentEntryId the fragment entry ID
* @param start the lower bound of the range of fragment entry links
* @param end the upper bound of the range of fragment entry links (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 fragment entry links
*/
public java.util.List findByG_F(
long groupId, long fragmentEntryId, int start, int end,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator,
boolean useFinderCache);
/**
* Returns the first fragment entry link in the ordered set where groupId = ? and fragmentEntryId = ?.
*
* @param groupId the group ID
* @param fragmentEntryId the fragment entry ID
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the first matching fragment entry link
* @throws NoSuchEntryLinkException if a matching fragment entry link could not be found
*/
public FragmentEntryLink findByG_F_First(
long groupId, long fragmentEntryId,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchEntryLinkException;
/**
* Returns the first fragment entry link in the ordered set where groupId = ? and fragmentEntryId = ?.
*
* @param groupId the group ID
* @param fragmentEntryId the fragment entry ID
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the first matching fragment entry link, or null
if a matching fragment entry link could not be found
*/
public FragmentEntryLink fetchByG_F_First(
long groupId, long fragmentEntryId,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns the last fragment entry link in the ordered set where groupId = ? and fragmentEntryId = ?.
*
* @param groupId the group ID
* @param fragmentEntryId the fragment entry ID
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the last matching fragment entry link
* @throws NoSuchEntryLinkException if a matching fragment entry link could not be found
*/
public FragmentEntryLink findByG_F_Last(
long groupId, long fragmentEntryId,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchEntryLinkException;
/**
* Returns the last fragment entry link in the ordered set where groupId = ? and fragmentEntryId = ?.
*
* @param groupId the group ID
* @param fragmentEntryId the fragment entry ID
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the last matching fragment entry link, or null
if a matching fragment entry link could not be found
*/
public FragmentEntryLink fetchByG_F_Last(
long groupId, long fragmentEntryId,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns the fragment entry links before and after the current fragment entry link in the ordered set where groupId = ? and fragmentEntryId = ?.
*
* @param fragmentEntryLinkId the primary key of the current fragment entry link
* @param groupId the group ID
* @param fragmentEntryId the fragment entry ID
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the previous, current, and next fragment entry link
* @throws NoSuchEntryLinkException if a fragment entry link with the primary key could not be found
*/
public FragmentEntryLink[] findByG_F_PrevAndNext(
long fragmentEntryLinkId, long groupId, long fragmentEntryId,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchEntryLinkException;
/**
* Removes all the fragment entry links where groupId = ? and fragmentEntryId = ? from the database.
*
* @param groupId the group ID
* @param fragmentEntryId the fragment entry ID
*/
public void removeByG_F(long groupId, long fragmentEntryId);
/**
* Returns the number of fragment entry links where groupId = ? and fragmentEntryId = ?.
*
* @param groupId the group ID
* @param fragmentEntryId the fragment entry ID
* @return the number of matching fragment entry links
*/
public int countByG_F(long groupId, long fragmentEntryId);
/**
* Returns all the fragment entry links where groupId = ? and plid = ?.
*
* @param groupId the group ID
* @param plid the plid
* @return the matching fragment entry links
*/
public java.util.List findByG_P(long groupId, long plid);
/**
* Returns a range of all the fragment entry links where groupId = ? and plid = ?.
*
*
* 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 FragmentEntryLinkModelImpl
.
*
*
* @param groupId the group ID
* @param plid the plid
* @param start the lower bound of the range of fragment entry links
* @param end the upper bound of the range of fragment entry links (not inclusive)
* @return the range of matching fragment entry links
*/
public java.util.List findByG_P(
long groupId, long plid, int start, int end);
/**
* Returns an ordered range of all the fragment entry links where groupId = ? and plid = ?.
*
*
* 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 FragmentEntryLinkModelImpl
.
*
*
* @param groupId the group ID
* @param plid the plid
* @param start the lower bound of the range of fragment entry links
* @param end the upper bound of the range of fragment entry links (not inclusive)
* @param orderByComparator the comparator to order the results by (optionally null
)
* @return the ordered range of matching fragment entry links
*/
public java.util.List findByG_P(
long groupId, long plid, int start, int end,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns an ordered range of all the fragment entry links where groupId = ? and plid = ?.
*
*
* 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 FragmentEntryLinkModelImpl
.
*
*
* @param groupId the group ID
* @param plid the plid
* @param start the lower bound of the range of fragment entry links
* @param end the upper bound of the range of fragment entry links (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 fragment entry links
*/
public java.util.List findByG_P(
long groupId, long plid, int start, int end,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator,
boolean useFinderCache);
/**
* Returns the first fragment entry link in the ordered set where groupId = ? and plid = ?.
*
* @param groupId the group ID
* @param plid the plid
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the first matching fragment entry link
* @throws NoSuchEntryLinkException if a matching fragment entry link could not be found
*/
public FragmentEntryLink findByG_P_First(
long groupId, long plid,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchEntryLinkException;
/**
* Returns the first fragment entry link in the ordered set where groupId = ? and plid = ?.
*
* @param groupId the group ID
* @param plid the plid
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the first matching fragment entry link, or null
if a matching fragment entry link could not be found
*/
public FragmentEntryLink fetchByG_P_First(
long groupId, long plid,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns the last fragment entry link in the ordered set where groupId = ? and plid = ?.
*
* @param groupId the group ID
* @param plid the plid
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the last matching fragment entry link
* @throws NoSuchEntryLinkException if a matching fragment entry link could not be found
*/
public FragmentEntryLink findByG_P_Last(
long groupId, long plid,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchEntryLinkException;
/**
* Returns the last fragment entry link in the ordered set where groupId = ? and plid = ?.
*
* @param groupId the group ID
* @param plid the plid
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the last matching fragment entry link, or null
if a matching fragment entry link could not be found
*/
public FragmentEntryLink fetchByG_P_Last(
long groupId, long plid,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns the fragment entry links before and after the current fragment entry link in the ordered set where groupId = ? and plid = ?.
*
* @param fragmentEntryLinkId the primary key of the current fragment entry link
* @param groupId the group ID
* @param plid the plid
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the previous, current, and next fragment entry link
* @throws NoSuchEntryLinkException if a fragment entry link with the primary key could not be found
*/
public FragmentEntryLink[] findByG_P_PrevAndNext(
long fragmentEntryLinkId, long groupId, long plid,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchEntryLinkException;
/**
* Removes all the fragment entry links where groupId = ? and plid = ? from the database.
*
* @param groupId the group ID
* @param plid the plid
*/
public void removeByG_P(long groupId, long plid);
/**
* Returns the number of fragment entry links where groupId = ? and plid = ?.
*
* @param groupId the group ID
* @param plid the plid
* @return the number of matching fragment entry links
*/
public int countByG_P(long groupId, long plid);
/**
* Returns all the fragment entry links where companyId = ? and rendererKey = ?.
*
* @param companyId the company ID
* @param rendererKey the renderer key
* @return the matching fragment entry links
*/
public java.util.List findByC_R(
long companyId, String rendererKey);
/**
* Returns a range of all the fragment entry links where companyId = ? and rendererKey = ?.
*
*
* 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 FragmentEntryLinkModelImpl
.
*
*
* @param companyId the company ID
* @param rendererKey the renderer key
* @param start the lower bound of the range of fragment entry links
* @param end the upper bound of the range of fragment entry links (not inclusive)
* @return the range of matching fragment entry links
*/
public java.util.List findByC_R(
long companyId, String rendererKey, int start, int end);
/**
* Returns an ordered range of all the fragment entry links where companyId = ? and rendererKey = ?.
*
*
* 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 FragmentEntryLinkModelImpl
.
*
*
* @param companyId the company ID
* @param rendererKey the renderer key
* @param start the lower bound of the range of fragment entry links
* @param end the upper bound of the range of fragment entry links (not inclusive)
* @param orderByComparator the comparator to order the results by (optionally null
)
* @return the ordered range of matching fragment entry links
*/
public java.util.List findByC_R(
long companyId, String rendererKey, int start, int end,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns an ordered range of all the fragment entry links where companyId = ? and rendererKey = ?.
*
*
* 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 FragmentEntryLinkModelImpl
.
*
*
* @param companyId the company ID
* @param rendererKey the renderer key
* @param start the lower bound of the range of fragment entry links
* @param end the upper bound of the range of fragment entry links (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 fragment entry links
*/
public java.util.List findByC_R(
long companyId, String rendererKey, int start, int end,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator,
boolean useFinderCache);
/**
* Returns the first fragment entry link in the ordered set where companyId = ? and rendererKey = ?.
*
* @param companyId the company ID
* @param rendererKey the renderer key
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the first matching fragment entry link
* @throws NoSuchEntryLinkException if a matching fragment entry link could not be found
*/
public FragmentEntryLink findByC_R_First(
long companyId, String rendererKey,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchEntryLinkException;
/**
* Returns the first fragment entry link in the ordered set where companyId = ? and rendererKey = ?.
*
* @param companyId the company ID
* @param rendererKey the renderer key
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the first matching fragment entry link, or null
if a matching fragment entry link could not be found
*/
public FragmentEntryLink fetchByC_R_First(
long companyId, String rendererKey,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns the last fragment entry link in the ordered set where companyId = ? and rendererKey = ?.
*
* @param companyId the company ID
* @param rendererKey the renderer key
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the last matching fragment entry link
* @throws NoSuchEntryLinkException if a matching fragment entry link could not be found
*/
public FragmentEntryLink findByC_R_Last(
long companyId, String rendererKey,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchEntryLinkException;
/**
* Returns the last fragment entry link in the ordered set where companyId = ? and rendererKey = ?.
*
* @param companyId the company ID
* @param rendererKey the renderer key
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the last matching fragment entry link, or null
if a matching fragment entry link could not be found
*/
public FragmentEntryLink fetchByC_R_Last(
long companyId, String rendererKey,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns the fragment entry links before and after the current fragment entry link in the ordered set where companyId = ? and rendererKey = ?.
*
* @param fragmentEntryLinkId the primary key of the current fragment entry link
* @param companyId the company ID
* @param rendererKey the renderer key
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the previous, current, and next fragment entry link
* @throws NoSuchEntryLinkException if a fragment entry link with the primary key could not be found
*/
public FragmentEntryLink[] findByC_R_PrevAndNext(
long fragmentEntryLinkId, long companyId, String rendererKey,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchEntryLinkException;
/**
* Returns all the fragment entry links where companyId = ? and rendererKey = any ?.
*
*
* 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 FragmentEntryLinkModelImpl
.
*
*
* @param companyId the company ID
* @param rendererKeys the renderer keys
* @return the matching fragment entry links
*/
public java.util.List findByC_R(
long companyId, String[] rendererKeys);
/**
* Returns a range of all the fragment entry links where companyId = ? and rendererKey = any ?.
*
*
* 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 FragmentEntryLinkModelImpl
.
*
*
* @param companyId the company ID
* @param rendererKeys the renderer keys
* @param start the lower bound of the range of fragment entry links
* @param end the upper bound of the range of fragment entry links (not inclusive)
* @return the range of matching fragment entry links
*/
public java.util.List findByC_R(
long companyId, String[] rendererKeys, int start, int end);
/**
* Returns an ordered range of all the fragment entry links where companyId = ? and rendererKey = any ?.
*
*
* 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 FragmentEntryLinkModelImpl
.
*
*
* @param companyId the company ID
* @param rendererKeys the renderer keys
* @param start the lower bound of the range of fragment entry links
* @param end the upper bound of the range of fragment entry links (not inclusive)
* @param orderByComparator the comparator to order the results by (optionally null
)
* @return the ordered range of matching fragment entry links
*/
public java.util.List findByC_R(
long companyId, String[] rendererKeys, int start, int end,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns an ordered range of all the fragment entry links where companyId = ? and rendererKey = ?, optionally using the finder cache.
*
*
* 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 FragmentEntryLinkModelImpl
.
*
*
* @param companyId the company ID
* @param rendererKeys the renderer keys
* @param start the lower bound of the range of fragment entry links
* @param end the upper bound of the range of fragment entry links (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 fragment entry links
*/
public java.util.List findByC_R(
long companyId, String[] rendererKeys, int start, int end,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator,
boolean useFinderCache);
/**
* Removes all the fragment entry links where companyId = ? and rendererKey = ? from the database.
*
* @param companyId the company ID
* @param rendererKey the renderer key
*/
public void removeByC_R(long companyId, String rendererKey);
/**
* Returns the number of fragment entry links where companyId = ? and rendererKey = ?.
*
* @param companyId the company ID
* @param rendererKey the renderer key
* @return the number of matching fragment entry links
*/
public int countByC_R(long companyId, String rendererKey);
/**
* Returns the number of fragment entry links where companyId = ? and rendererKey = any ?.
*
* @param companyId the company ID
* @param rendererKeys the renderer keys
* @return the number of matching fragment entry links
*/
public int countByC_R(long companyId, String[] rendererKeys);
/**
* Returns all the fragment entry links where fragmentEntryId = ? and deleted = ?.
*
* @param fragmentEntryId the fragment entry ID
* @param deleted the deleted
* @return the matching fragment entry links
*/
public java.util.List findByF_D(
long fragmentEntryId, boolean deleted);
/**
* Returns a range of all the fragment entry links where fragmentEntryId = ? and deleted = ?.
*
*
* 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 FragmentEntryLinkModelImpl
.
*
*
* @param fragmentEntryId the fragment entry ID
* @param deleted the deleted
* @param start the lower bound of the range of fragment entry links
* @param end the upper bound of the range of fragment entry links (not inclusive)
* @return the range of matching fragment entry links
*/
public java.util.List findByF_D(
long fragmentEntryId, boolean deleted, int start, int end);
/**
* Returns an ordered range of all the fragment entry links where fragmentEntryId = ? and deleted = ?.
*
*
* 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 FragmentEntryLinkModelImpl
.
*
*
* @param fragmentEntryId the fragment entry ID
* @param deleted the deleted
* @param start the lower bound of the range of fragment entry links
* @param end the upper bound of the range of fragment entry links (not inclusive)
* @param orderByComparator the comparator to order the results by (optionally null
)
* @return the ordered range of matching fragment entry links
*/
public java.util.List findByF_D(
long fragmentEntryId, boolean deleted, int start, int end,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns an ordered range of all the fragment entry links where fragmentEntryId = ? and deleted = ?.
*
*
* 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 FragmentEntryLinkModelImpl
.
*
*
* @param fragmentEntryId the fragment entry ID
* @param deleted the deleted
* @param start the lower bound of the range of fragment entry links
* @param end the upper bound of the range of fragment entry links (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 fragment entry links
*/
public java.util.List findByF_D(
long fragmentEntryId, boolean deleted, int start, int end,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator,
boolean useFinderCache);
/**
* Returns the first fragment entry link in the ordered set where fragmentEntryId = ? and deleted = ?.
*
* @param fragmentEntryId the fragment entry ID
* @param deleted the deleted
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the first matching fragment entry link
* @throws NoSuchEntryLinkException if a matching fragment entry link could not be found
*/
public FragmentEntryLink findByF_D_First(
long fragmentEntryId, boolean deleted,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchEntryLinkException;
/**
* Returns the first fragment entry link in the ordered set where fragmentEntryId = ? and deleted = ?.
*
* @param fragmentEntryId the fragment entry ID
* @param deleted the deleted
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the first matching fragment entry link, or null
if a matching fragment entry link could not be found
*/
public FragmentEntryLink fetchByF_D_First(
long fragmentEntryId, boolean deleted,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns the last fragment entry link in the ordered set where fragmentEntryId = ? and deleted = ?.
*
* @param fragmentEntryId the fragment entry ID
* @param deleted the deleted
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the last matching fragment entry link
* @throws NoSuchEntryLinkException if a matching fragment entry link could not be found
*/
public FragmentEntryLink findByF_D_Last(
long fragmentEntryId, boolean deleted,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchEntryLinkException;
/**
* Returns the last fragment entry link in the ordered set where fragmentEntryId = ? and deleted = ?.
*
* @param fragmentEntryId the fragment entry ID
* @param deleted the deleted
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the last matching fragment entry link, or null
if a matching fragment entry link could not be found
*/
public FragmentEntryLink fetchByF_D_Last(
long fragmentEntryId, boolean deleted,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns the fragment entry links before and after the current fragment entry link in the ordered set where fragmentEntryId = ? and deleted = ?.
*
* @param fragmentEntryLinkId the primary key of the current fragment entry link
* @param fragmentEntryId the fragment entry ID
* @param deleted the deleted
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the previous, current, and next fragment entry link
* @throws NoSuchEntryLinkException if a fragment entry link with the primary key could not be found
*/
public FragmentEntryLink[] findByF_D_PrevAndNext(
long fragmentEntryLinkId, long fragmentEntryId, boolean deleted,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchEntryLinkException;
/**
* Returns all the fragment entry links where fragmentEntryId = any ? and deleted = ?.
*
*
* 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 FragmentEntryLinkModelImpl
.
*
*
* @param fragmentEntryIds the fragment entry IDs
* @param deleted the deleted
* @return the matching fragment entry links
*/
public java.util.List findByF_D(
long[] fragmentEntryIds, boolean deleted);
/**
* Returns a range of all the fragment entry links where fragmentEntryId = any ? and deleted = ?.
*
*
* 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 FragmentEntryLinkModelImpl
.
*
*
* @param fragmentEntryIds the fragment entry IDs
* @param deleted the deleted
* @param start the lower bound of the range of fragment entry links
* @param end the upper bound of the range of fragment entry links (not inclusive)
* @return the range of matching fragment entry links
*/
public java.util.List findByF_D(
long[] fragmentEntryIds, boolean deleted, int start, int end);
/**
* Returns an ordered range of all the fragment entry links where fragmentEntryId = any ? and deleted = ?.
*
*
* 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 FragmentEntryLinkModelImpl
.
*
*
* @param fragmentEntryIds the fragment entry IDs
* @param deleted the deleted
* @param start the lower bound of the range of fragment entry links
* @param end the upper bound of the range of fragment entry links (not inclusive)
* @param orderByComparator the comparator to order the results by (optionally null
)
* @return the ordered range of matching fragment entry links
*/
public java.util.List findByF_D(
long[] fragmentEntryIds, boolean deleted, int start, int end,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns an ordered range of all the fragment entry links where fragmentEntryId = ? and deleted = ?, optionally using the finder cache.
*
*
* 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 FragmentEntryLinkModelImpl
.
*
*
* @param fragmentEntryIds the fragment entry IDs
* @param deleted the deleted
* @param start the lower bound of the range of fragment entry links
* @param end the upper bound of the range of fragment entry links (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 fragment entry links
*/
public java.util.List findByF_D(
long[] fragmentEntryIds, boolean deleted, int start, int end,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator,
boolean useFinderCache);
/**
* Removes all the fragment entry links where fragmentEntryId = ? and deleted = ? from the database.
*
* @param fragmentEntryId the fragment entry ID
* @param deleted the deleted
*/
public void removeByF_D(long fragmentEntryId, boolean deleted);
/**
* Returns the number of fragment entry links where fragmentEntryId = ? and deleted = ?.
*
* @param fragmentEntryId the fragment entry ID
* @param deleted the deleted
* @return the number of matching fragment entry links
*/
public int countByF_D(long fragmentEntryId, boolean deleted);
/**
* Returns the number of fragment entry links where fragmentEntryId = any ? and deleted = ?.
*
* @param fragmentEntryIds the fragment entry IDs
* @param deleted the deleted
* @return the number of matching fragment entry links
*/
public int countByF_D(long[] fragmentEntryIds, boolean deleted);
/**
* Returns all the fragment entry links where groupId = ? and originalFragmentEntryLinkId = ? and plid = ?.
*
* @param groupId the group ID
* @param originalFragmentEntryLinkId the original fragment entry link ID
* @param plid the plid
* @return the matching fragment entry links
*/
public java.util.List findByG_OFELI_P(
long groupId, long originalFragmentEntryLinkId, long plid);
/**
* Returns a range of all the fragment entry links where groupId = ? and originalFragmentEntryLinkId = ? and plid = ?.
*
*
* 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 FragmentEntryLinkModelImpl
.
*
*
* @param groupId the group ID
* @param originalFragmentEntryLinkId the original fragment entry link ID
* @param plid the plid
* @param start the lower bound of the range of fragment entry links
* @param end the upper bound of the range of fragment entry links (not inclusive)
* @return the range of matching fragment entry links
*/
public java.util.List findByG_OFELI_P(
long groupId, long originalFragmentEntryLinkId, long plid, int start,
int end);
/**
* Returns an ordered range of all the fragment entry links where groupId = ? and originalFragmentEntryLinkId = ? and plid = ?.
*
*
* 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 FragmentEntryLinkModelImpl
.
*
*
* @param groupId the group ID
* @param originalFragmentEntryLinkId the original fragment entry link ID
* @param plid the plid
* @param start the lower bound of the range of fragment entry links
* @param end the upper bound of the range of fragment entry links (not inclusive)
* @param orderByComparator the comparator to order the results by (optionally null
)
* @return the ordered range of matching fragment entry links
*/
public java.util.List findByG_OFELI_P(
long groupId, long originalFragmentEntryLinkId, long plid, int start,
int end,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns an ordered range of all the fragment entry links where groupId = ? and originalFragmentEntryLinkId = ? and plid = ?.
*
*
* 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 FragmentEntryLinkModelImpl
.
*
*
* @param groupId the group ID
* @param originalFragmentEntryLinkId the original fragment entry link ID
* @param plid the plid
* @param start the lower bound of the range of fragment entry links
* @param end the upper bound of the range of fragment entry links (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 fragment entry links
*/
public java.util.List findByG_OFELI_P(
long groupId, long originalFragmentEntryLinkId, long plid, int start,
int end,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator,
boolean useFinderCache);
/**
* Returns the first fragment entry link in the ordered set where groupId = ? and originalFragmentEntryLinkId = ? and plid = ?.
*
* @param groupId the group ID
* @param originalFragmentEntryLinkId the original fragment entry link ID
* @param plid the plid
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the first matching fragment entry link
* @throws NoSuchEntryLinkException if a matching fragment entry link could not be found
*/
public FragmentEntryLink findByG_OFELI_P_First(
long groupId, long originalFragmentEntryLinkId, long plid,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchEntryLinkException;
/**
* Returns the first fragment entry link in the ordered set where groupId = ? and originalFragmentEntryLinkId = ? and plid = ?.
*
* @param groupId the group ID
* @param originalFragmentEntryLinkId the original fragment entry link ID
* @param plid the plid
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the first matching fragment entry link, or null
if a matching fragment entry link could not be found
*/
public FragmentEntryLink fetchByG_OFELI_P_First(
long groupId, long originalFragmentEntryLinkId, long plid,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns the last fragment entry link in the ordered set where groupId = ? and originalFragmentEntryLinkId = ? and plid = ?.
*
* @param groupId the group ID
* @param originalFragmentEntryLinkId the original fragment entry link ID
* @param plid the plid
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the last matching fragment entry link
* @throws NoSuchEntryLinkException if a matching fragment entry link could not be found
*/
public FragmentEntryLink findByG_OFELI_P_Last(
long groupId, long originalFragmentEntryLinkId, long plid,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchEntryLinkException;
/**
* Returns the last fragment entry link in the ordered set where groupId = ? and originalFragmentEntryLinkId = ? and plid = ?.
*
* @param groupId the group ID
* @param originalFragmentEntryLinkId the original fragment entry link ID
* @param plid the plid
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the last matching fragment entry link, or null
if a matching fragment entry link could not be found
*/
public FragmentEntryLink fetchByG_OFELI_P_Last(
long groupId, long originalFragmentEntryLinkId, long plid,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns the fragment entry links before and after the current fragment entry link in the ordered set where groupId = ? and originalFragmentEntryLinkId = ? and plid = ?.
*
* @param fragmentEntryLinkId the primary key of the current fragment entry link
* @param groupId the group ID
* @param originalFragmentEntryLinkId the original fragment entry link ID
* @param plid the plid
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the previous, current, and next fragment entry link
* @throws NoSuchEntryLinkException if a fragment entry link with the primary key could not be found
*/
public FragmentEntryLink[] findByG_OFELI_P_PrevAndNext(
long fragmentEntryLinkId, long groupId,
long originalFragmentEntryLinkId, long plid,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchEntryLinkException;
/**
* Removes all the fragment entry links where groupId = ? and originalFragmentEntryLinkId = ? and plid = ? from the database.
*
* @param groupId the group ID
* @param originalFragmentEntryLinkId the original fragment entry link ID
* @param plid the plid
*/
public void removeByG_OFELI_P(
long groupId, long originalFragmentEntryLinkId, long plid);
/**
* Returns the number of fragment entry links where groupId = ? and originalFragmentEntryLinkId = ? and plid = ?.
*
* @param groupId the group ID
* @param originalFragmentEntryLinkId the original fragment entry link ID
* @param plid the plid
* @return the number of matching fragment entry links
*/
public int countByG_OFELI_P(
long groupId, long originalFragmentEntryLinkId, long plid);
/**
* Returns all the fragment entry links where groupId = ? and fragmentEntryId = ? and classNameId = ?.
*
* @param groupId the group ID
* @param fragmentEntryId the fragment entry ID
* @param classNameId the class name ID
* @return the matching fragment entry links
*/
public java.util.List findByG_F_C(
long groupId, long fragmentEntryId, long classNameId);
/**
* Returns a range of all the fragment entry links where groupId = ? and fragmentEntryId = ? and classNameId = ?.
*
*
* 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 FragmentEntryLinkModelImpl
.
*
*
* @param groupId the group ID
* @param fragmentEntryId the fragment entry ID
* @param classNameId the class name ID
* @param start the lower bound of the range of fragment entry links
* @param end the upper bound of the range of fragment entry links (not inclusive)
* @return the range of matching fragment entry links
*/
public java.util.List findByG_F_C(
long groupId, long fragmentEntryId, long classNameId, int start,
int end);
/**
* Returns an ordered range of all the fragment entry links where groupId = ? and fragmentEntryId = ? and classNameId = ?.
*
*
* 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 FragmentEntryLinkModelImpl
.
*
*
* @param groupId the group ID
* @param fragmentEntryId the fragment entry ID
* @param classNameId the class name ID
* @param start the lower bound of the range of fragment entry links
* @param end the upper bound of the range of fragment entry links (not inclusive)
* @param orderByComparator the comparator to order the results by (optionally null
)
* @return the ordered range of matching fragment entry links
*/
public java.util.List findByG_F_C(
long groupId, long fragmentEntryId, long classNameId, int start,
int end,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns an ordered range of all the fragment entry links where groupId = ? and fragmentEntryId = ? and classNameId = ?.
*
*
* 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 FragmentEntryLinkModelImpl
.
*
*
* @param groupId the group ID
* @param fragmentEntryId the fragment entry ID
* @param classNameId the class name ID
* @param start the lower bound of the range of fragment entry links
* @param end the upper bound of the range of fragment entry links (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 fragment entry links
*/
public java.util.List findByG_F_C(
long groupId, long fragmentEntryId, long classNameId, int start,
int end,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator,
boolean useFinderCache);
/**
* Returns the first fragment entry link in the ordered set where groupId = ? and fragmentEntryId = ? and classNameId = ?.
*
* @param groupId the group ID
* @param fragmentEntryId the fragment entry ID
* @param classNameId the class name ID
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the first matching fragment entry link
* @throws NoSuchEntryLinkException if a matching fragment entry link could not be found
*/
public FragmentEntryLink findByG_F_C_First(
long groupId, long fragmentEntryId, long classNameId,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchEntryLinkException;
/**
* Returns the first fragment entry link in the ordered set where groupId = ? and fragmentEntryId = ? and classNameId = ?.
*
* @param groupId the group ID
* @param fragmentEntryId the fragment entry ID
* @param classNameId the class name ID
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the first matching fragment entry link, or null
if a matching fragment entry link could not be found
*/
public FragmentEntryLink fetchByG_F_C_First(
long groupId, long fragmentEntryId, long classNameId,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns the last fragment entry link in the ordered set where groupId = ? and fragmentEntryId = ? and classNameId = ?.
*
* @param groupId the group ID
* @param fragmentEntryId the fragment entry ID
* @param classNameId the class name ID
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the last matching fragment entry link
* @throws NoSuchEntryLinkException if a matching fragment entry link could not be found
*/
public FragmentEntryLink findByG_F_C_Last(
long groupId, long fragmentEntryId, long classNameId,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchEntryLinkException;
/**
* Returns the last fragment entry link in the ordered set where groupId = ? and fragmentEntryId = ? and classNameId = ?.
*
* @param groupId the group ID
* @param fragmentEntryId the fragment entry ID
* @param classNameId the class name ID
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the last matching fragment entry link, or null
if a matching fragment entry link could not be found
*/
public FragmentEntryLink fetchByG_F_C_Last(
long groupId, long fragmentEntryId, long classNameId,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns the fragment entry links before and after the current fragment entry link in the ordered set where groupId = ? and fragmentEntryId = ? and classNameId = ?.
*
* @param fragmentEntryLinkId the primary key of the current fragment entry link
* @param groupId the group ID
* @param fragmentEntryId the fragment entry ID
* @param classNameId the class name ID
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the previous, current, and next fragment entry link
* @throws NoSuchEntryLinkException if a fragment entry link with the primary key could not be found
*/
public FragmentEntryLink[] findByG_F_C_PrevAndNext(
long fragmentEntryLinkId, long groupId, long fragmentEntryId,
long classNameId,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchEntryLinkException;
/**
* Removes all the fragment entry links where groupId = ? and fragmentEntryId = ? and classNameId = ? from the database.
*
* @param groupId the group ID
* @param fragmentEntryId the fragment entry ID
* @param classNameId the class name ID
*/
public void removeByG_F_C(
long groupId, long fragmentEntryId, long classNameId);
/**
* Returns the number of fragment entry links where groupId = ? and fragmentEntryId = ? and classNameId = ?.
*
* @param groupId the group ID
* @param fragmentEntryId the fragment entry ID
* @param classNameId the class name ID
* @return the number of matching fragment entry links
*/
public int countByG_F_C(
long groupId, long fragmentEntryId, long classNameId);
/**
* Returns all the fragment entry links where groupId = ? and fragmentEntryId = ? and plid = ?.
*
* @param groupId the group ID
* @param fragmentEntryId the fragment entry ID
* @param plid the plid
* @return the matching fragment entry links
*/
public java.util.List findByG_F_P(
long groupId, long fragmentEntryId, long plid);
/**
* Returns a range of all the fragment entry links where groupId = ? and fragmentEntryId = ? and plid = ?.
*
*
* 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 FragmentEntryLinkModelImpl
.
*
*
* @param groupId the group ID
* @param fragmentEntryId the fragment entry ID
* @param plid the plid
* @param start the lower bound of the range of fragment entry links
* @param end the upper bound of the range of fragment entry links (not inclusive)
* @return the range of matching fragment entry links
*/
public java.util.List findByG_F_P(
long groupId, long fragmentEntryId, long plid, int start, int end);
/**
* Returns an ordered range of all the fragment entry links where groupId = ? and fragmentEntryId = ? and plid = ?.
*
*
* 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 FragmentEntryLinkModelImpl
.
*
*
* @param groupId the group ID
* @param fragmentEntryId the fragment entry ID
* @param plid the plid
* @param start the lower bound of the range of fragment entry links
* @param end the upper bound of the range of fragment entry links (not inclusive)
* @param orderByComparator the comparator to order the results by (optionally null
)
* @return the ordered range of matching fragment entry links
*/
public java.util.List findByG_F_P(
long groupId, long fragmentEntryId, long plid, int start, int end,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns an ordered range of all the fragment entry links where groupId = ? and fragmentEntryId = ? and plid = ?.
*
*
* 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 FragmentEntryLinkModelImpl
.
*
*
* @param groupId the group ID
* @param fragmentEntryId the fragment entry ID
* @param plid the plid
* @param start the lower bound of the range of fragment entry links
* @param end the upper bound of the range of fragment entry links (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 fragment entry links
*/
public java.util.List findByG_F_P(
long groupId, long fragmentEntryId, long plid, int start, int end,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator,
boolean useFinderCache);
/**
* Returns the first fragment entry link in the ordered set where groupId = ? and fragmentEntryId = ? and plid = ?.
*
* @param groupId the group ID
* @param fragmentEntryId the fragment entry ID
* @param plid the plid
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the first matching fragment entry link
* @throws NoSuchEntryLinkException if a matching fragment entry link could not be found
*/
public FragmentEntryLink findByG_F_P_First(
long groupId, long fragmentEntryId, long plid,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchEntryLinkException;
/**
* Returns the first fragment entry link in the ordered set where groupId = ? and fragmentEntryId = ? and plid = ?.
*
* @param groupId the group ID
* @param fragmentEntryId the fragment entry ID
* @param plid the plid
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the first matching fragment entry link, or null
if a matching fragment entry link could not be found
*/
public FragmentEntryLink fetchByG_F_P_First(
long groupId, long fragmentEntryId, long plid,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns the last fragment entry link in the ordered set where groupId = ? and fragmentEntryId = ? and plid = ?.
*
* @param groupId the group ID
* @param fragmentEntryId the fragment entry ID
* @param plid the plid
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the last matching fragment entry link
* @throws NoSuchEntryLinkException if a matching fragment entry link could not be found
*/
public FragmentEntryLink findByG_F_P_Last(
long groupId, long fragmentEntryId, long plid,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchEntryLinkException;
/**
* Returns the last fragment entry link in the ordered set where groupId = ? and fragmentEntryId = ? and plid = ?.
*
* @param groupId the group ID
* @param fragmentEntryId the fragment entry ID
* @param plid the plid
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the last matching fragment entry link, or null
if a matching fragment entry link could not be found
*/
public FragmentEntryLink fetchByG_F_P_Last(
long groupId, long fragmentEntryId, long plid,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns the fragment entry links before and after the current fragment entry link in the ordered set where groupId = ? and fragmentEntryId = ? and plid = ?.
*
* @param fragmentEntryLinkId the primary key of the current fragment entry link
* @param groupId the group ID
* @param fragmentEntryId the fragment entry ID
* @param plid the plid
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the previous, current, and next fragment entry link
* @throws NoSuchEntryLinkException if a fragment entry link with the primary key could not be found
*/
public FragmentEntryLink[] findByG_F_P_PrevAndNext(
long fragmentEntryLinkId, long groupId, long fragmentEntryId,
long plid,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchEntryLinkException;
/**
* Removes all the fragment entry links where groupId = ? and fragmentEntryId = ? and plid = ? from the database.
*
* @param groupId the group ID
* @param fragmentEntryId the fragment entry ID
* @param plid the plid
*/
public void removeByG_F_P(long groupId, long fragmentEntryId, long plid);
/**
* Returns the number of fragment entry links where groupId = ? and fragmentEntryId = ? and plid = ?.
*
* @param groupId the group ID
* @param fragmentEntryId the fragment entry ID
* @param plid the plid
* @return the number of matching fragment entry links
*/
public int countByG_F_P(long groupId, long fragmentEntryId, long plid);
/**
* Returns all the fragment entry links where groupId = ? and segmentsExperienceId = ? and plid = ?.
*
* @param groupId the group ID
* @param segmentsExperienceId the segments experience ID
* @param plid the plid
* @return the matching fragment entry links
*/
public java.util.List findByG_S_P(
long groupId, long segmentsExperienceId, long plid);
/**
* Returns a range of all the fragment entry links where groupId = ? and segmentsExperienceId = ? and plid = ?.
*
*
* 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 FragmentEntryLinkModelImpl
.
*
*
* @param groupId the group ID
* @param segmentsExperienceId the segments experience ID
* @param plid the plid
* @param start the lower bound of the range of fragment entry links
* @param end the upper bound of the range of fragment entry links (not inclusive)
* @return the range of matching fragment entry links
*/
public java.util.List findByG_S_P(
long groupId, long segmentsExperienceId, long plid, int start, int end);
/**
* Returns an ordered range of all the fragment entry links where groupId = ? and segmentsExperienceId = ? and plid = ?.
*
*
* 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 FragmentEntryLinkModelImpl
.
*
*
* @param groupId the group ID
* @param segmentsExperienceId the segments experience ID
* @param plid the plid
* @param start the lower bound of the range of fragment entry links
* @param end the upper bound of the range of fragment entry links (not inclusive)
* @param orderByComparator the comparator to order the results by (optionally null
)
* @return the ordered range of matching fragment entry links
*/
public java.util.List findByG_S_P(
long groupId, long segmentsExperienceId, long plid, int start, int end,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns an ordered range of all the fragment entry links where groupId = ? and segmentsExperienceId = ? and plid = ?.
*
*
* 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 FragmentEntryLinkModelImpl
.
*
*
* @param groupId the group ID
* @param segmentsExperienceId the segments experience ID
* @param plid the plid
* @param start the lower bound of the range of fragment entry links
* @param end the upper bound of the range of fragment entry links (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 fragment entry links
*/
public java.util.List findByG_S_P(
long groupId, long segmentsExperienceId, long plid, int start, int end,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator,
boolean useFinderCache);
/**
* Returns the first fragment entry link in the ordered set where groupId = ? and segmentsExperienceId = ? and plid = ?.
*
* @param groupId the group ID
* @param segmentsExperienceId the segments experience ID
* @param plid the plid
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the first matching fragment entry link
* @throws NoSuchEntryLinkException if a matching fragment entry link could not be found
*/
public FragmentEntryLink findByG_S_P_First(
long groupId, long segmentsExperienceId, long plid,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchEntryLinkException;
/**
* Returns the first fragment entry link in the ordered set where groupId = ? and segmentsExperienceId = ? and plid = ?.
*
* @param groupId the group ID
* @param segmentsExperienceId the segments experience ID
* @param plid the plid
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the first matching fragment entry link, or null
if a matching fragment entry link could not be found
*/
public FragmentEntryLink fetchByG_S_P_First(
long groupId, long segmentsExperienceId, long plid,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns the last fragment entry link in the ordered set where groupId = ? and segmentsExperienceId = ? and plid = ?.
*
* @param groupId the group ID
* @param segmentsExperienceId the segments experience ID
* @param plid the plid
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the last matching fragment entry link
* @throws NoSuchEntryLinkException if a matching fragment entry link could not be found
*/
public FragmentEntryLink findByG_S_P_Last(
long groupId, long segmentsExperienceId, long plid,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchEntryLinkException;
/**
* Returns the last fragment entry link in the ordered set where groupId = ? and segmentsExperienceId = ? and plid = ?.
*
* @param groupId the group ID
* @param segmentsExperienceId the segments experience ID
* @param plid the plid
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the last matching fragment entry link, or null
if a matching fragment entry link could not be found
*/
public FragmentEntryLink fetchByG_S_P_Last(
long groupId, long segmentsExperienceId, long plid,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns the fragment entry links before and after the current fragment entry link in the ordered set where groupId = ? and segmentsExperienceId = ? and plid = ?.
*
* @param fragmentEntryLinkId the primary key of the current fragment entry link
* @param groupId the group ID
* @param segmentsExperienceId the segments experience ID
* @param plid the plid
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the previous, current, and next fragment entry link
* @throws NoSuchEntryLinkException if a fragment entry link with the primary key could not be found
*/
public FragmentEntryLink[] findByG_S_P_PrevAndNext(
long fragmentEntryLinkId, long groupId, long segmentsExperienceId,
long plid,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchEntryLinkException;
/**
* Returns all the fragment entry links where groupId = ? and segmentsExperienceId = any ? and plid = ?.
*
*
* 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 FragmentEntryLinkModelImpl
.
*
*
* @param groupId the group ID
* @param segmentsExperienceIds the segments experience IDs
* @param plid the plid
* @return the matching fragment entry links
*/
public java.util.List findByG_S_P(
long groupId, long[] segmentsExperienceIds, long plid);
/**
* Returns a range of all the fragment entry links where groupId = ? and segmentsExperienceId = any ? and plid = ?.
*
*
* 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 FragmentEntryLinkModelImpl
.
*
*
* @param groupId the group ID
* @param segmentsExperienceIds the segments experience IDs
* @param plid the plid
* @param start the lower bound of the range of fragment entry links
* @param end the upper bound of the range of fragment entry links (not inclusive)
* @return the range of matching fragment entry links
*/
public java.util.List findByG_S_P(
long groupId, long[] segmentsExperienceIds, long plid, int start,
int end);
/**
* Returns an ordered range of all the fragment entry links where groupId = ? and segmentsExperienceId = any ? and plid = ?.
*
*
* 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 FragmentEntryLinkModelImpl
.
*
*
* @param groupId the group ID
* @param segmentsExperienceIds the segments experience IDs
* @param plid the plid
* @param start the lower bound of the range of fragment entry links
* @param end the upper bound of the range of fragment entry links (not inclusive)
* @param orderByComparator the comparator to order the results by (optionally null
)
* @return the ordered range of matching fragment entry links
*/
public java.util.List findByG_S_P(
long groupId, long[] segmentsExperienceIds, long plid, int start,
int end,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns an ordered range of all the fragment entry links where groupId = ? and segmentsExperienceId = ? and plid = ?, optionally using the finder cache.
*
*
* 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 FragmentEntryLinkModelImpl
.
*
*
* @param groupId the group ID
* @param segmentsExperienceIds the segments experience IDs
* @param plid the plid
* @param start the lower bound of the range of fragment entry links
* @param end the upper bound of the range of fragment entry links (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 fragment entry links
*/
public java.util.List findByG_S_P(
long groupId, long[] segmentsExperienceIds, long plid, int start,
int end,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator,
boolean useFinderCache);
/**
* Removes all the fragment entry links where groupId = ? and segmentsExperienceId = ? and plid = ? from the database.
*
* @param groupId the group ID
* @param segmentsExperienceId the segments experience ID
* @param plid the plid
*/
public void removeByG_S_P(
long groupId, long segmentsExperienceId, long plid);
/**
* Returns the number of fragment entry links where groupId = ? and segmentsExperienceId = ? and plid = ?.
*
* @param groupId the group ID
* @param segmentsExperienceId the segments experience ID
* @param plid the plid
* @return the number of matching fragment entry links
*/
public int countByG_S_P(long groupId, long segmentsExperienceId, long plid);
/**
* Returns the number of fragment entry links where groupId = ? and segmentsExperienceId = any ? and plid = ?.
*
* @param groupId the group ID
* @param segmentsExperienceIds the segments experience IDs
* @param plid the plid
* @return the number of matching fragment entry links
*/
public int countByG_S_P(
long groupId, long[] segmentsExperienceIds, long plid);
/**
* Returns all the fragment entry links where groupId = ? and classNameId = ? and classPK = ?.
*
* @param groupId the group ID
* @param classNameId the class name ID
* @param classPK the class pk
* @return the matching fragment entry links
*/
public java.util.List findByG_C_C(
long groupId, long classNameId, long classPK);
/**
* Returns a range of all the fragment entry links where groupId = ? and classNameId = ? and classPK = ?.
*
*
* 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 FragmentEntryLinkModelImpl
.
*
*
* @param groupId the group ID
* @param classNameId the class name ID
* @param classPK the class pk
* @param start the lower bound of the range of fragment entry links
* @param end the upper bound of the range of fragment entry links (not inclusive)
* @return the range of matching fragment entry links
*/
public java.util.List findByG_C_C(
long groupId, long classNameId, long classPK, int start, int end);
/**
* Returns an ordered range of all the fragment entry links where groupId = ? and classNameId = ? and classPK = ?.
*
*
* 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 FragmentEntryLinkModelImpl
.
*
*
* @param groupId the group ID
* @param classNameId the class name ID
* @param classPK the class pk
* @param start the lower bound of the range of fragment entry links
* @param end the upper bound of the range of fragment entry links (not inclusive)
* @param orderByComparator the comparator to order the results by (optionally null
)
* @return the ordered range of matching fragment entry links
*/
public java.util.List findByG_C_C(
long groupId, long classNameId, long classPK, int start, int end,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns an ordered range of all the fragment entry links where groupId = ? and classNameId = ? and classPK = ?.
*
*
* 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 FragmentEntryLinkModelImpl
.
*
*
* @param groupId the group ID
* @param classNameId the class name ID
* @param classPK the class pk
* @param start the lower bound of the range of fragment entry links
* @param end the upper bound of the range of fragment entry links (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 fragment entry links
*/
public java.util.List findByG_C_C(
long groupId, long classNameId, long classPK, int start, int end,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator,
boolean useFinderCache);
/**
* Returns the first fragment entry link in the ordered set where groupId = ? and classNameId = ? and classPK = ?.
*
* @param groupId the group ID
* @param classNameId the class name ID
* @param classPK the class pk
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the first matching fragment entry link
* @throws NoSuchEntryLinkException if a matching fragment entry link could not be found
*/
public FragmentEntryLink findByG_C_C_First(
long groupId, long classNameId, long classPK,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchEntryLinkException;
/**
* Returns the first fragment entry link in the ordered set where groupId = ? and classNameId = ? and classPK = ?.
*
* @param groupId the group ID
* @param classNameId the class name ID
* @param classPK the class pk
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the first matching fragment entry link, or null
if a matching fragment entry link could not be found
*/
public FragmentEntryLink fetchByG_C_C_First(
long groupId, long classNameId, long classPK,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns the last fragment entry link in the ordered set where groupId = ? and classNameId = ? and classPK = ?.
*
* @param groupId the group ID
* @param classNameId the class name ID
* @param classPK the class pk
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the last matching fragment entry link
* @throws NoSuchEntryLinkException if a matching fragment entry link could not be found
*/
public FragmentEntryLink findByG_C_C_Last(
long groupId, long classNameId, long classPK,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchEntryLinkException;
/**
* Returns the last fragment entry link in the ordered set where groupId = ? and classNameId = ? and classPK = ?.
*
* @param groupId the group ID
* @param classNameId the class name ID
* @param classPK the class pk
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the last matching fragment entry link, or null
if a matching fragment entry link could not be found
*/
public FragmentEntryLink fetchByG_C_C_Last(
long groupId, long classNameId, long classPK,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns the fragment entry links before and after the current fragment entry link in the ordered set where groupId = ? and classNameId = ? and classPK = ?.
*
* @param fragmentEntryLinkId the primary key of the current fragment entry link
* @param groupId the group ID
* @param classNameId the class name ID
* @param classPK the class pk
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the previous, current, and next fragment entry link
* @throws NoSuchEntryLinkException if a fragment entry link with the primary key could not be found
*/
public FragmentEntryLink[] findByG_C_C_PrevAndNext(
long fragmentEntryLinkId, long groupId, long classNameId,
long classPK,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchEntryLinkException;
/**
* Removes all the fragment entry links where groupId = ? and classNameId = ? and classPK = ? from the database.
*
* @param groupId the group ID
* @param classNameId the class name ID
* @param classPK the class pk
*/
public void removeByG_C_C(long groupId, long classNameId, long classPK);
/**
* Returns the number of fragment entry links where groupId = ? and classNameId = ? and classPK = ?.
*
* @param groupId the group ID
* @param classNameId the class name ID
* @param classPK the class pk
* @return the number of matching fragment entry links
*/
public int countByG_C_C(long groupId, long classNameId, long classPK);
/**
* Returns all the fragment entry links where groupId = ? and plid = ? and deleted = ?.
*
* @param groupId the group ID
* @param plid the plid
* @param deleted the deleted
* @return the matching fragment entry links
*/
public java.util.List findByG_P_D(
long groupId, long plid, boolean deleted);
/**
* Returns a range of all the fragment entry links where groupId = ? and plid = ? and deleted = ?.
*
*
* 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 FragmentEntryLinkModelImpl
.
*
*
* @param groupId the group ID
* @param plid the plid
* @param deleted the deleted
* @param start the lower bound of the range of fragment entry links
* @param end the upper bound of the range of fragment entry links (not inclusive)
* @return the range of matching fragment entry links
*/
public java.util.List findByG_P_D(
long groupId, long plid, boolean deleted, int start, int end);
/**
* Returns an ordered range of all the fragment entry links where groupId = ? and plid = ? and deleted = ?.
*
*
* 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 FragmentEntryLinkModelImpl
.
*
*
* @param groupId the group ID
* @param plid the plid
* @param deleted the deleted
* @param start the lower bound of the range of fragment entry links
* @param end the upper bound of the range of fragment entry links (not inclusive)
* @param orderByComparator the comparator to order the results by (optionally null
)
* @return the ordered range of matching fragment entry links
*/
public java.util.List findByG_P_D(
long groupId, long plid, boolean deleted, int start, int end,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns an ordered range of all the fragment entry links where groupId = ? and plid = ? and deleted = ?.
*
*
* 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 FragmentEntryLinkModelImpl
.
*
*
* @param groupId the group ID
* @param plid the plid
* @param deleted the deleted
* @param start the lower bound of the range of fragment entry links
* @param end the upper bound of the range of fragment entry links (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 fragment entry links
*/
public java.util.List findByG_P_D(
long groupId, long plid, boolean deleted, int start, int end,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator,
boolean useFinderCache);
/**
* Returns the first fragment entry link in the ordered set where groupId = ? and plid = ? and deleted = ?.
*
* @param groupId the group ID
* @param plid the plid
* @param deleted the deleted
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the first matching fragment entry link
* @throws NoSuchEntryLinkException if a matching fragment entry link could not be found
*/
public FragmentEntryLink findByG_P_D_First(
long groupId, long plid, boolean deleted,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchEntryLinkException;
/**
* Returns the first fragment entry link in the ordered set where groupId = ? and plid = ? and deleted = ?.
*
* @param groupId the group ID
* @param plid the plid
* @param deleted the deleted
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the first matching fragment entry link, or null
if a matching fragment entry link could not be found
*/
public FragmentEntryLink fetchByG_P_D_First(
long groupId, long plid, boolean deleted,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns the last fragment entry link in the ordered set where groupId = ? and plid = ? and deleted = ?.
*
* @param groupId the group ID
* @param plid the plid
* @param deleted the deleted
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the last matching fragment entry link
* @throws NoSuchEntryLinkException if a matching fragment entry link could not be found
*/
public FragmentEntryLink findByG_P_D_Last(
long groupId, long plid, boolean deleted,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchEntryLinkException;
/**
* Returns the last fragment entry link in the ordered set where groupId = ? and plid = ? and deleted = ?.
*
* @param groupId the group ID
* @param plid the plid
* @param deleted the deleted
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the last matching fragment entry link, or null
if a matching fragment entry link could not be found
*/
public FragmentEntryLink fetchByG_P_D_Last(
long groupId, long plid, boolean deleted,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns the fragment entry links before and after the current fragment entry link in the ordered set where groupId = ? and plid = ? and deleted = ?.
*
* @param fragmentEntryLinkId the primary key of the current fragment entry link
* @param groupId the group ID
* @param plid the plid
* @param deleted the deleted
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the previous, current, and next fragment entry link
* @throws NoSuchEntryLinkException if a fragment entry link with the primary key could not be found
*/
public FragmentEntryLink[] findByG_P_D_PrevAndNext(
long fragmentEntryLinkId, long groupId, long plid, boolean deleted,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchEntryLinkException;
/**
* Removes all the fragment entry links where groupId = ? and plid = ? and deleted = ? from the database.
*
* @param groupId the group ID
* @param plid the plid
* @param deleted the deleted
*/
public void removeByG_P_D(long groupId, long plid, boolean deleted);
/**
* Returns the number of fragment entry links where groupId = ? and plid = ? and deleted = ?.
*
* @param groupId the group ID
* @param plid the plid
* @param deleted the deleted
* @return the number of matching fragment entry links
*/
public int countByG_P_D(long groupId, long plid, boolean deleted);
/**
* Returns all the fragment entry links where groupId = ? and fragmentEntryId = ? and classNameId = ? and classPK = ?.
*
* @param groupId the group ID
* @param fragmentEntryId the fragment entry ID
* @param classNameId the class name ID
* @param classPK the class pk
* @return the matching fragment entry links
*/
public java.util.List findByG_F_C_C(
long groupId, long fragmentEntryId, long classNameId, long classPK);
/**
* Returns a range of all the fragment entry links where groupId = ? and fragmentEntryId = ? and classNameId = ? and classPK = ?.
*
*
* 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 FragmentEntryLinkModelImpl
.
*
*
* @param groupId the group ID
* @param fragmentEntryId the fragment entry ID
* @param classNameId the class name ID
* @param classPK the class pk
* @param start the lower bound of the range of fragment entry links
* @param end the upper bound of the range of fragment entry links (not inclusive)
* @return the range of matching fragment entry links
*/
public java.util.List findByG_F_C_C(
long groupId, long fragmentEntryId, long classNameId, long classPK,
int start, int end);
/**
* Returns an ordered range of all the fragment entry links where groupId = ? and fragmentEntryId = ? and classNameId = ? and classPK = ?.
*
*
* 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 FragmentEntryLinkModelImpl
.
*
*
* @param groupId the group ID
* @param fragmentEntryId the fragment entry ID
* @param classNameId the class name ID
* @param classPK the class pk
* @param start the lower bound of the range of fragment entry links
* @param end the upper bound of the range of fragment entry links (not inclusive)
* @param orderByComparator the comparator to order the results by (optionally null
)
* @return the ordered range of matching fragment entry links
*/
public java.util.List findByG_F_C_C(
long groupId, long fragmentEntryId, long classNameId, long classPK,
int start, int end,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns an ordered range of all the fragment entry links where groupId = ? and fragmentEntryId = ? and classNameId = ? and classPK = ?.
*
*
* 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 FragmentEntryLinkModelImpl
.
*
*
* @param groupId the group ID
* @param fragmentEntryId the fragment entry ID
* @param classNameId the class name ID
* @param classPK the class pk
* @param start the lower bound of the range of fragment entry links
* @param end the upper bound of the range of fragment entry links (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 fragment entry links
*/
public java.util.List findByG_F_C_C(
long groupId, long fragmentEntryId, long classNameId, long classPK,
int start, int end,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator,
boolean useFinderCache);
/**
* Returns the first fragment entry link in the ordered set where groupId = ? and fragmentEntryId = ? and classNameId = ? and classPK = ?.
*
* @param groupId the group ID
* @param fragmentEntryId the fragment entry ID
* @param classNameId the class name ID
* @param classPK the class pk
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the first matching fragment entry link
* @throws NoSuchEntryLinkException if a matching fragment entry link could not be found
*/
public FragmentEntryLink findByG_F_C_C_First(
long groupId, long fragmentEntryId, long classNameId, long classPK,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchEntryLinkException;
/**
* Returns the first fragment entry link in the ordered set where groupId = ? and fragmentEntryId = ? and classNameId = ? and classPK = ?.
*
* @param groupId the group ID
* @param fragmentEntryId the fragment entry ID
* @param classNameId the class name ID
* @param classPK the class pk
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the first matching fragment entry link, or null
if a matching fragment entry link could not be found
*/
public FragmentEntryLink fetchByG_F_C_C_First(
long groupId, long fragmentEntryId, long classNameId, long classPK,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns the last fragment entry link in the ordered set where groupId = ? and fragmentEntryId = ? and classNameId = ? and classPK = ?.
*
* @param groupId the group ID
* @param fragmentEntryId the fragment entry ID
* @param classNameId the class name ID
* @param classPK the class pk
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the last matching fragment entry link
* @throws NoSuchEntryLinkException if a matching fragment entry link could not be found
*/
public FragmentEntryLink findByG_F_C_C_Last(
long groupId, long fragmentEntryId, long classNameId, long classPK,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchEntryLinkException;
/**
* Returns the last fragment entry link in the ordered set where groupId = ? and fragmentEntryId = ? and classNameId = ? and classPK = ?.
*
* @param groupId the group ID
* @param fragmentEntryId the fragment entry ID
* @param classNameId the class name ID
* @param classPK the class pk
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the last matching fragment entry link, or null
if a matching fragment entry link could not be found
*/
public FragmentEntryLink fetchByG_F_C_C_Last(
long groupId, long fragmentEntryId, long classNameId, long classPK,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns the fragment entry links before and after the current fragment entry link in the ordered set where groupId = ? and fragmentEntryId = ? and classNameId = ? and classPK = ?.
*
* @param fragmentEntryLinkId the primary key of the current fragment entry link
* @param groupId the group ID
* @param fragmentEntryId the fragment entry ID
* @param classNameId the class name ID
* @param classPK the class pk
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the previous, current, and next fragment entry link
* @throws NoSuchEntryLinkException if a fragment entry link with the primary key could not be found
*/
public FragmentEntryLink[] findByG_F_C_C_PrevAndNext(
long fragmentEntryLinkId, long groupId, long fragmentEntryId,
long classNameId, long classPK,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchEntryLinkException;
/**
* Removes all the fragment entry links where groupId = ? and fragmentEntryId = ? and classNameId = ? and classPK = ? from the database.
*
* @param groupId the group ID
* @param fragmentEntryId the fragment entry ID
* @param classNameId the class name ID
* @param classPK the class pk
*/
public void removeByG_F_C_C(
long groupId, long fragmentEntryId, long classNameId, long classPK);
/**
* Returns the number of fragment entry links where groupId = ? and fragmentEntryId = ? and classNameId = ? and classPK = ?.
*
* @param groupId the group ID
* @param fragmentEntryId the fragment entry ID
* @param classNameId the class name ID
* @param classPK the class pk
* @return the number of matching fragment entry links
*/
public int countByG_F_C_C(
long groupId, long fragmentEntryId, long classNameId, long classPK);
/**
* Returns all the fragment entry links where groupId = ? and segmentsExperienceId = ? and classNameId = ? and classPK = ?.
*
* @param groupId the group ID
* @param segmentsExperienceId the segments experience ID
* @param classNameId the class name ID
* @param classPK the class pk
* @return the matching fragment entry links
*/
public java.util.List findByG_S_C_C(
long groupId, long segmentsExperienceId, long classNameId,
long classPK);
/**
* Returns a range of all the fragment entry links where groupId = ? and segmentsExperienceId = ? and classNameId = ? and classPK = ?.
*
*
* 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 FragmentEntryLinkModelImpl
.
*
*
* @param groupId the group ID
* @param segmentsExperienceId the segments experience ID
* @param classNameId the class name ID
* @param classPK the class pk
* @param start the lower bound of the range of fragment entry links
* @param end the upper bound of the range of fragment entry links (not inclusive)
* @return the range of matching fragment entry links
*/
public java.util.List findByG_S_C_C(
long groupId, long segmentsExperienceId, long classNameId, long classPK,
int start, int end);
/**
* Returns an ordered range of all the fragment entry links where groupId = ? and segmentsExperienceId = ? and classNameId = ? and classPK = ?.
*
*
* 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 FragmentEntryLinkModelImpl
.
*
*
* @param groupId the group ID
* @param segmentsExperienceId the segments experience ID
* @param classNameId the class name ID
* @param classPK the class pk
* @param start the lower bound of the range of fragment entry links
* @param end the upper bound of the range of fragment entry links (not inclusive)
* @param orderByComparator the comparator to order the results by (optionally null
)
* @return the ordered range of matching fragment entry links
*/
public java.util.List findByG_S_C_C(
long groupId, long segmentsExperienceId, long classNameId, long classPK,
int start, int end,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns an ordered range of all the fragment entry links where groupId = ? and segmentsExperienceId = ? and classNameId = ? and classPK = ?.
*
*
* 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 FragmentEntryLinkModelImpl
.
*
*
* @param groupId the group ID
* @param segmentsExperienceId the segments experience ID
* @param classNameId the class name ID
* @param classPK the class pk
* @param start the lower bound of the range of fragment entry links
* @param end the upper bound of the range of fragment entry links (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 fragment entry links
*/
public java.util.List findByG_S_C_C(
long groupId, long segmentsExperienceId, long classNameId, long classPK,
int start, int end,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator,
boolean useFinderCache);
/**
* Returns the first fragment entry link in the ordered set where groupId = ? and segmentsExperienceId = ? and classNameId = ? and classPK = ?.
*
* @param groupId the group ID
* @param segmentsExperienceId the segments experience ID
* @param classNameId the class name ID
* @param classPK the class pk
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the first matching fragment entry link
* @throws NoSuchEntryLinkException if a matching fragment entry link could not be found
*/
public FragmentEntryLink findByG_S_C_C_First(
long groupId, long segmentsExperienceId, long classNameId,
long classPK,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchEntryLinkException;
/**
* Returns the first fragment entry link in the ordered set where groupId = ? and segmentsExperienceId = ? and classNameId = ? and classPK = ?.
*
* @param groupId the group ID
* @param segmentsExperienceId the segments experience ID
* @param classNameId the class name ID
* @param classPK the class pk
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the first matching fragment entry link, or null
if a matching fragment entry link could not be found
*/
public FragmentEntryLink fetchByG_S_C_C_First(
long groupId, long segmentsExperienceId, long classNameId, long classPK,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns the last fragment entry link in the ordered set where groupId = ? and segmentsExperienceId = ? and classNameId = ? and classPK = ?.
*
* @param groupId the group ID
* @param segmentsExperienceId the segments experience ID
* @param classNameId the class name ID
* @param classPK the class pk
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the last matching fragment entry link
* @throws NoSuchEntryLinkException if a matching fragment entry link could not be found
*/
public FragmentEntryLink findByG_S_C_C_Last(
long groupId, long segmentsExperienceId, long classNameId,
long classPK,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchEntryLinkException;
/**
* Returns the last fragment entry link in the ordered set where groupId = ? and segmentsExperienceId = ? and classNameId = ? and classPK = ?.
*
* @param groupId the group ID
* @param segmentsExperienceId the segments experience ID
* @param classNameId the class name ID
* @param classPK the class pk
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the last matching fragment entry link, or null
if a matching fragment entry link could not be found
*/
public FragmentEntryLink fetchByG_S_C_C_Last(
long groupId, long segmentsExperienceId, long classNameId, long classPK,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns the fragment entry links before and after the current fragment entry link in the ordered set where groupId = ? and segmentsExperienceId = ? and classNameId = ? and classPK = ?.
*
* @param fragmentEntryLinkId the primary key of the current fragment entry link
* @param groupId the group ID
* @param segmentsExperienceId the segments experience ID
* @param classNameId the class name ID
* @param classPK the class pk
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the previous, current, and next fragment entry link
* @throws NoSuchEntryLinkException if a fragment entry link with the primary key could not be found
*/
public FragmentEntryLink[] findByG_S_C_C_PrevAndNext(
long fragmentEntryLinkId, long groupId, long segmentsExperienceId,
long classNameId, long classPK,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchEntryLinkException;
/**
* Removes all the fragment entry links where groupId = ? and segmentsExperienceId = ? and classNameId = ? and classPK = ? from the database.
*
* @param groupId the group ID
* @param segmentsExperienceId the segments experience ID
* @param classNameId the class name ID
* @param classPK the class pk
*/
public void removeByG_S_C_C(
long groupId, long segmentsExperienceId, long classNameId,
long classPK);
/**
* Returns the number of fragment entry links where groupId = ? and segmentsExperienceId = ? and classNameId = ? and classPK = ?.
*
* @param groupId the group ID
* @param segmentsExperienceId the segments experience ID
* @param classNameId the class name ID
* @param classPK the class pk
* @return the number of matching fragment entry links
*/
public int countByG_S_C_C(
long groupId, long segmentsExperienceId, long classNameId,
long classPK);
/**
* Returns all the fragment entry links where groupId = ? and segmentsExperienceId = ? and plid = ? and deleted = ?.
*
* @param groupId the group ID
* @param segmentsExperienceId the segments experience ID
* @param plid the plid
* @param deleted the deleted
* @return the matching fragment entry links
*/
public java.util.List findByG_S_P_D(
long groupId, long segmentsExperienceId, long plid, boolean deleted);
/**
* Returns a range of all the fragment entry links where groupId = ? and segmentsExperienceId = ? and plid = ? and deleted = ?.
*
*
* 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 FragmentEntryLinkModelImpl
.
*
*
* @param groupId the group ID
* @param segmentsExperienceId the segments experience ID
* @param plid the plid
* @param deleted the deleted
* @param start the lower bound of the range of fragment entry links
* @param end the upper bound of the range of fragment entry links (not inclusive)
* @return the range of matching fragment entry links
*/
public java.util.List findByG_S_P_D(
long groupId, long segmentsExperienceId, long plid, boolean deleted,
int start, int end);
/**
* Returns an ordered range of all the fragment entry links where groupId = ? and segmentsExperienceId = ? and plid = ? and deleted = ?.
*
*
* 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 FragmentEntryLinkModelImpl
.
*
*
* @param groupId the group ID
* @param segmentsExperienceId the segments experience ID
* @param plid the plid
* @param deleted the deleted
* @param start the lower bound of the range of fragment entry links
* @param end the upper bound of the range of fragment entry links (not inclusive)
* @param orderByComparator the comparator to order the results by (optionally null
)
* @return the ordered range of matching fragment entry links
*/
public java.util.List findByG_S_P_D(
long groupId, long segmentsExperienceId, long plid, boolean deleted,
int start, int end,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns an ordered range of all the fragment entry links where groupId = ? and segmentsExperienceId = ? and plid = ? and deleted = ?.
*
*
* 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 FragmentEntryLinkModelImpl
.
*
*
* @param groupId the group ID
* @param segmentsExperienceId the segments experience ID
* @param plid the plid
* @param deleted the deleted
* @param start the lower bound of the range of fragment entry links
* @param end the upper bound of the range of fragment entry links (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 fragment entry links
*/
public java.util.List findByG_S_P_D(
long groupId, long segmentsExperienceId, long plid, boolean deleted,
int start, int end,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator,
boolean useFinderCache);
/**
* Returns the first fragment entry link in the ordered set where groupId = ? and segmentsExperienceId = ? and plid = ? and deleted = ?.
*
* @param groupId the group ID
* @param segmentsExperienceId the segments experience ID
* @param plid the plid
* @param deleted the deleted
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the first matching fragment entry link
* @throws NoSuchEntryLinkException if a matching fragment entry link could not be found
*/
public FragmentEntryLink findByG_S_P_D_First(
long groupId, long segmentsExperienceId, long plid, boolean deleted,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchEntryLinkException;
/**
* Returns the first fragment entry link in the ordered set where groupId = ? and segmentsExperienceId = ? and plid = ? and deleted = ?.
*
* @param groupId the group ID
* @param segmentsExperienceId the segments experience ID
* @param plid the plid
* @param deleted the deleted
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the first matching fragment entry link, or null
if a matching fragment entry link could not be found
*/
public FragmentEntryLink fetchByG_S_P_D_First(
long groupId, long segmentsExperienceId, long plid, boolean deleted,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns the last fragment entry link in the ordered set where groupId = ? and segmentsExperienceId = ? and plid = ? and deleted = ?.
*
* @param groupId the group ID
* @param segmentsExperienceId the segments experience ID
* @param plid the plid
* @param deleted the deleted
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the last matching fragment entry link
* @throws NoSuchEntryLinkException if a matching fragment entry link could not be found
*/
public FragmentEntryLink findByG_S_P_D_Last(
long groupId, long segmentsExperienceId, long plid, boolean deleted,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchEntryLinkException;
/**
* Returns the last fragment entry link in the ordered set where groupId = ? and segmentsExperienceId = ? and plid = ? and deleted = ?.
*
* @param groupId the group ID
* @param segmentsExperienceId the segments experience ID
* @param plid the plid
* @param deleted the deleted
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the last matching fragment entry link, or null
if a matching fragment entry link could not be found
*/
public FragmentEntryLink fetchByG_S_P_D_Last(
long groupId, long segmentsExperienceId, long plid, boolean deleted,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns the fragment entry links before and after the current fragment entry link in the ordered set where groupId = ? and segmentsExperienceId = ? and plid = ? and deleted = ?.
*
* @param fragmentEntryLinkId the primary key of the current fragment entry link
* @param groupId the group ID
* @param segmentsExperienceId the segments experience ID
* @param plid the plid
* @param deleted the deleted
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the previous, current, and next fragment entry link
* @throws NoSuchEntryLinkException if a fragment entry link with the primary key could not be found
*/
public FragmentEntryLink[] findByG_S_P_D_PrevAndNext(
long fragmentEntryLinkId, long groupId, long segmentsExperienceId,
long plid, boolean deleted,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchEntryLinkException;
/**
* Returns all the fragment entry links where groupId = ? and segmentsExperienceId = any ? and plid = ? and deleted = ?.
*
*
* 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 FragmentEntryLinkModelImpl
.
*
*
* @param groupId the group ID
* @param segmentsExperienceIds the segments experience IDs
* @param plid the plid
* @param deleted the deleted
* @return the matching fragment entry links
*/
public java.util.List findByG_S_P_D(
long groupId, long[] segmentsExperienceIds, long plid, boolean deleted);
/**
* Returns a range of all the fragment entry links where groupId = ? and segmentsExperienceId = any ? and plid = ? and deleted = ?.
*
*
* 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 FragmentEntryLinkModelImpl
.
*
*
* @param groupId the group ID
* @param segmentsExperienceIds the segments experience IDs
* @param plid the plid
* @param deleted the deleted
* @param start the lower bound of the range of fragment entry links
* @param end the upper bound of the range of fragment entry links (not inclusive)
* @return the range of matching fragment entry links
*/
public java.util.List findByG_S_P_D(
long groupId, long[] segmentsExperienceIds, long plid, boolean deleted,
int start, int end);
/**
* Returns an ordered range of all the fragment entry links where groupId = ? and segmentsExperienceId = any ? and plid = ? and deleted = ?.
*
*
* 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 FragmentEntryLinkModelImpl
.
*
*
* @param groupId the group ID
* @param segmentsExperienceIds the segments experience IDs
* @param plid the plid
* @param deleted the deleted
* @param start the lower bound of the range of fragment entry links
* @param end the upper bound of the range of fragment entry links (not inclusive)
* @param orderByComparator the comparator to order the results by (optionally null
)
* @return the ordered range of matching fragment entry links
*/
public java.util.List findByG_S_P_D(
long groupId, long[] segmentsExperienceIds, long plid, boolean deleted,
int start, int end,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns an ordered range of all the fragment entry links where groupId = ? and segmentsExperienceId = ? and plid = ? and deleted = ?, optionally using the finder cache.
*
*
* 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 FragmentEntryLinkModelImpl
.
*
*
* @param groupId the group ID
* @param segmentsExperienceIds the segments experience IDs
* @param plid the plid
* @param deleted the deleted
* @param start the lower bound of the range of fragment entry links
* @param end the upper bound of the range of fragment entry links (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 fragment entry links
*/
public java.util.List findByG_S_P_D(
long groupId, long[] segmentsExperienceIds, long plid, boolean deleted,
int start, int end,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator,
boolean useFinderCache);
/**
* Removes all the fragment entry links where groupId = ? and segmentsExperienceId = ? and plid = ? and deleted = ? from the database.
*
* @param groupId the group ID
* @param segmentsExperienceId the segments experience ID
* @param plid the plid
* @param deleted the deleted
*/
public void removeByG_S_P_D(
long groupId, long segmentsExperienceId, long plid, boolean deleted);
/**
* Returns the number of fragment entry links where groupId = ? and segmentsExperienceId = ? and plid = ? and deleted = ?.
*
* @param groupId the group ID
* @param segmentsExperienceId the segments experience ID
* @param plid the plid
* @param deleted the deleted
* @return the number of matching fragment entry links
*/
public int countByG_S_P_D(
long groupId, long segmentsExperienceId, long plid, boolean deleted);
/**
* Returns the number of fragment entry links where groupId = ? and segmentsExperienceId = any ? and plid = ? and deleted = ?.
*
* @param groupId the group ID
* @param segmentsExperienceIds the segments experience IDs
* @param plid the plid
* @param deleted the deleted
* @return the number of matching fragment entry links
*/
public int countByG_S_P_D(
long groupId, long[] segmentsExperienceIds, long plid, boolean deleted);
/**
* Returns all the fragment entry links where groupId = ? and segmentsExperienceId = ? and plid = ? and rendererKey = ?.
*
* @param groupId the group ID
* @param segmentsExperienceId the segments experience ID
* @param plid the plid
* @param rendererKey the renderer key
* @return the matching fragment entry links
*/
public java.util.List findByG_S_P_R(
long groupId, long segmentsExperienceId, long plid, String rendererKey);
/**
* Returns a range of all the fragment entry links where groupId = ? and segmentsExperienceId = ? and plid = ? and rendererKey = ?.
*
*
* 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 FragmentEntryLinkModelImpl
.
*
*
* @param groupId the group ID
* @param segmentsExperienceId the segments experience ID
* @param plid the plid
* @param rendererKey the renderer key
* @param start the lower bound of the range of fragment entry links
* @param end the upper bound of the range of fragment entry links (not inclusive)
* @return the range of matching fragment entry links
*/
public java.util.List findByG_S_P_R(
long groupId, long segmentsExperienceId, long plid, String rendererKey,
int start, int end);
/**
* Returns an ordered range of all the fragment entry links where groupId = ? and segmentsExperienceId = ? and plid = ? and rendererKey = ?.
*
*
* 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 FragmentEntryLinkModelImpl
.
*
*
* @param groupId the group ID
* @param segmentsExperienceId the segments experience ID
* @param plid the plid
* @param rendererKey the renderer key
* @param start the lower bound of the range of fragment entry links
* @param end the upper bound of the range of fragment entry links (not inclusive)
* @param orderByComparator the comparator to order the results by (optionally null
)
* @return the ordered range of matching fragment entry links
*/
public java.util.List findByG_S_P_R(
long groupId, long segmentsExperienceId, long plid, String rendererKey,
int start, int end,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns an ordered range of all the fragment entry links where groupId = ? and segmentsExperienceId = ? and plid = ? and rendererKey = ?.
*
*
* 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 FragmentEntryLinkModelImpl
.
*
*
* @param groupId the group ID
* @param segmentsExperienceId the segments experience ID
* @param plid the plid
* @param rendererKey the renderer key
* @param start the lower bound of the range of fragment entry links
* @param end the upper bound of the range of fragment entry links (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 fragment entry links
*/
public java.util.List findByG_S_P_R(
long groupId, long segmentsExperienceId, long plid, String rendererKey,
int start, int end,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator,
boolean useFinderCache);
/**
* Returns the first fragment entry link in the ordered set where groupId = ? and segmentsExperienceId = ? and plid = ? and rendererKey = ?.
*
* @param groupId the group ID
* @param segmentsExperienceId the segments experience ID
* @param plid the plid
* @param rendererKey the renderer key
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the first matching fragment entry link
* @throws NoSuchEntryLinkException if a matching fragment entry link could not be found
*/
public FragmentEntryLink findByG_S_P_R_First(
long groupId, long segmentsExperienceId, long plid,
String rendererKey,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchEntryLinkException;
/**
* Returns the first fragment entry link in the ordered set where groupId = ? and segmentsExperienceId = ? and plid = ? and rendererKey = ?.
*
* @param groupId the group ID
* @param segmentsExperienceId the segments experience ID
* @param plid the plid
* @param rendererKey the renderer key
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the first matching fragment entry link, or null
if a matching fragment entry link could not be found
*/
public FragmentEntryLink fetchByG_S_P_R_First(
long groupId, long segmentsExperienceId, long plid, String rendererKey,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns the last fragment entry link in the ordered set where groupId = ? and segmentsExperienceId = ? and plid = ? and rendererKey = ?.
*
* @param groupId the group ID
* @param segmentsExperienceId the segments experience ID
* @param plid the plid
* @param rendererKey the renderer key
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the last matching fragment entry link
* @throws NoSuchEntryLinkException if a matching fragment entry link could not be found
*/
public FragmentEntryLink findByG_S_P_R_Last(
long groupId, long segmentsExperienceId, long plid,
String rendererKey,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchEntryLinkException;
/**
* Returns the last fragment entry link in the ordered set where groupId = ? and segmentsExperienceId = ? and plid = ? and rendererKey = ?.
*
* @param groupId the group ID
* @param segmentsExperienceId the segments experience ID
* @param plid the plid
* @param rendererKey the renderer key
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the last matching fragment entry link, or null
if a matching fragment entry link could not be found
*/
public FragmentEntryLink fetchByG_S_P_R_Last(
long groupId, long segmentsExperienceId, long plid, String rendererKey,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns the fragment entry links before and after the current fragment entry link in the ordered set where groupId = ? and segmentsExperienceId = ? and plid = ? and rendererKey = ?.
*
* @param fragmentEntryLinkId the primary key of the current fragment entry link
* @param groupId the group ID
* @param segmentsExperienceId the segments experience ID
* @param plid the plid
* @param rendererKey the renderer key
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the previous, current, and next fragment entry link
* @throws NoSuchEntryLinkException if a fragment entry link with the primary key could not be found
*/
public FragmentEntryLink[] findByG_S_P_R_PrevAndNext(
long fragmentEntryLinkId, long groupId, long segmentsExperienceId,
long plid, String rendererKey,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchEntryLinkException;
/**
* Removes all the fragment entry links where groupId = ? and segmentsExperienceId = ? and plid = ? and rendererKey = ? from the database.
*
* @param groupId the group ID
* @param segmentsExperienceId the segments experience ID
* @param plid the plid
* @param rendererKey the renderer key
*/
public void removeByG_S_P_R(
long groupId, long segmentsExperienceId, long plid, String rendererKey);
/**
* Returns the number of fragment entry links where groupId = ? and segmentsExperienceId = ? and plid = ? and rendererKey = ?.
*
* @param groupId the group ID
* @param segmentsExperienceId the segments experience ID
* @param plid the plid
* @param rendererKey the renderer key
* @return the number of matching fragment entry links
*/
public int countByG_S_P_R(
long groupId, long segmentsExperienceId, long plid, String rendererKey);
/**
* Returns the fragment entry link where externalReferenceCode = ? and groupId = ? or throws a NoSuchEntryLinkException
if it could not be found.
*
* @param externalReferenceCode the external reference code
* @param groupId the group ID
* @return the matching fragment entry link
* @throws NoSuchEntryLinkException if a matching fragment entry link could not be found
*/
public FragmentEntryLink findByERC_G(
String externalReferenceCode, long groupId)
throws NoSuchEntryLinkException;
/**
* Returns the fragment entry link where externalReferenceCode = ? and groupId = ? or returns null
if it could not be found. Uses the finder cache.
*
* @param externalReferenceCode the external reference code
* @param groupId the group ID
* @return the matching fragment entry link, or null
if a matching fragment entry link could not be found
*/
public FragmentEntryLink fetchByERC_G(
String externalReferenceCode, long groupId);
/**
* Returns the fragment entry link where externalReferenceCode = ? and groupId = ? or returns null
if it could not be found, optionally using the finder cache.
*
* @param externalReferenceCode the external reference code
* @param groupId the group ID
* @param useFinderCache whether to use the finder cache
* @return the matching fragment entry link, or null
if a matching fragment entry link could not be found
*/
public FragmentEntryLink fetchByERC_G(
String externalReferenceCode, long groupId, boolean useFinderCache);
/**
* Removes the fragment entry link where externalReferenceCode = ? and groupId = ? from the database.
*
* @param externalReferenceCode the external reference code
* @param groupId the group ID
* @return the fragment entry link that was removed
*/
public FragmentEntryLink removeByERC_G(
String externalReferenceCode, long groupId)
throws NoSuchEntryLinkException;
/**
* Returns the number of fragment entry links where externalReferenceCode = ? and groupId = ?.
*
* @param externalReferenceCode the external reference code
* @param groupId the group ID
* @return the number of matching fragment entry links
*/
public int countByERC_G(String externalReferenceCode, long groupId);
/**
* Caches the fragment entry link in the entity cache if it is enabled.
*
* @param fragmentEntryLink the fragment entry link
*/
public void cacheResult(FragmentEntryLink fragmentEntryLink);
/**
* Caches the fragment entry links in the entity cache if it is enabled.
*
* @param fragmentEntryLinks the fragment entry links
*/
public void cacheResult(
java.util.List fragmentEntryLinks);
/**
* Creates a new fragment entry link with the primary key. Does not add the fragment entry link to the database.
*
* @param fragmentEntryLinkId the primary key for the new fragment entry link
* @return the new fragment entry link
*/
public FragmentEntryLink create(long fragmentEntryLinkId);
/**
* Removes the fragment entry link with the primary key from the database. Also notifies the appropriate model listeners.
*
* @param fragmentEntryLinkId the primary key of the fragment entry link
* @return the fragment entry link that was removed
* @throws NoSuchEntryLinkException if a fragment entry link with the primary key could not be found
*/
public FragmentEntryLink remove(long fragmentEntryLinkId)
throws NoSuchEntryLinkException;
public FragmentEntryLink updateImpl(FragmentEntryLink fragmentEntryLink);
/**
* Returns the fragment entry link with the primary key or throws a NoSuchEntryLinkException
if it could not be found.
*
* @param fragmentEntryLinkId the primary key of the fragment entry link
* @return the fragment entry link
* @throws NoSuchEntryLinkException if a fragment entry link with the primary key could not be found
*/
public FragmentEntryLink findByPrimaryKey(long fragmentEntryLinkId)
throws NoSuchEntryLinkException;
/**
* Returns the fragment entry link with the primary key or returns null
if it could not be found.
*
* @param fragmentEntryLinkId the primary key of the fragment entry link
* @return the fragment entry link, or null
if a fragment entry link with the primary key could not be found
*/
public FragmentEntryLink fetchByPrimaryKey(long fragmentEntryLinkId);
/**
* Returns all the fragment entry links.
*
* @return the fragment entry links
*/
public java.util.List findAll();
/**
* Returns a range of all the fragment entry links.
*
*
* 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 FragmentEntryLinkModelImpl
.
*
*
* @param start the lower bound of the range of fragment entry links
* @param end the upper bound of the range of fragment entry links (not inclusive)
* @return the range of fragment entry links
*/
public java.util.List findAll(int start, int end);
/**
* Returns an ordered range of all the fragment entry links.
*
*
* 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 FragmentEntryLinkModelImpl
.
*
*
* @param start the lower bound of the range of fragment entry links
* @param end the upper bound of the range of fragment entry links (not inclusive)
* @param orderByComparator the comparator to order the results by (optionally null
)
* @return the ordered range of fragment entry links
*/
public java.util.List findAll(
int start, int end,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns an ordered range of all the fragment entry links.
*
*
* 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 FragmentEntryLinkModelImpl
.
*
*
* @param start the lower bound of the range of fragment entry links
* @param end the upper bound of the range of fragment entry links (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 fragment entry links
*/
public java.util.List findAll(
int start, int end,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator,
boolean useFinderCache);
/**
* Removes all the fragment entry links from the database.
*/
public void removeAll();
/**
* Returns the number of fragment entry links.
*
* @return the number of fragment entry links
*/
public int countAll();
}