com.liferay.fragment.service.persistence.FragmentEntryVersionUtil 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.model.FragmentEntryVersion;
import com.liferay.portal.kernel.dao.orm.DynamicQuery;
import com.liferay.portal.kernel.service.ServiceContext;
import com.liferay.portal.kernel.util.OrderByComparator;
import java.io.Serializable;
import java.util.List;
import java.util.Map;
import java.util.Set;
/**
* The persistence utility for the fragment entry version service. This utility wraps com.liferay.fragment.service.persistence.impl.FragmentEntryVersionPersistenceImpl
and provides direct access to the database for CRUD operations. This utility should only be used by the service layer, as it must operate within a transaction. Never access this utility in a JSP, controller, model, or other front-end class.
*
*
* Caching information and settings can be found in portal.properties
*
*
* @author Brian Wing Shun Chan
* @see FragmentEntryVersionPersistence
* @generated
*/
public class FragmentEntryVersionUtil {
/*
* NOTE FOR DEVELOPERS:
*
* Never modify this class directly. Modify service.xml
and rerun ServiceBuilder to regenerate this class.
*/
/**
* @see com.liferay.portal.kernel.service.persistence.BasePersistence#clearCache()
*/
public static void clearCache() {
getPersistence().clearCache();
}
/**
* @see com.liferay.portal.kernel.service.persistence.BasePersistence#clearCache(com.liferay.portal.kernel.model.BaseModel)
*/
public static void clearCache(FragmentEntryVersion fragmentEntryVersion) {
getPersistence().clearCache(fragmentEntryVersion);
}
/**
* @see com.liferay.portal.kernel.service.persistence.BasePersistence#countWithDynamicQuery(DynamicQuery)
*/
public static long countWithDynamicQuery(DynamicQuery dynamicQuery) {
return getPersistence().countWithDynamicQuery(dynamicQuery);
}
/**
* @see com.liferay.portal.kernel.service.persistence.BasePersistence#fetchByPrimaryKeys(Set)
*/
public static Map fetchByPrimaryKeys(
Set primaryKeys) {
return getPersistence().fetchByPrimaryKeys(primaryKeys);
}
/**
* @see com.liferay.portal.kernel.service.persistence.BasePersistence#findWithDynamicQuery(DynamicQuery)
*/
public static List findWithDynamicQuery(
DynamicQuery dynamicQuery) {
return getPersistence().findWithDynamicQuery(dynamicQuery);
}
/**
* @see com.liferay.portal.kernel.service.persistence.BasePersistence#findWithDynamicQuery(DynamicQuery, int, int)
*/
public static List findWithDynamicQuery(
DynamicQuery dynamicQuery, int start, int end) {
return getPersistence().findWithDynamicQuery(dynamicQuery, start, end);
}
/**
* @see com.liferay.portal.kernel.service.persistence.BasePersistence#findWithDynamicQuery(DynamicQuery, int, int, OrderByComparator)
*/
public static List findWithDynamicQuery(
DynamicQuery dynamicQuery, int start, int end,
OrderByComparator orderByComparator) {
return getPersistence().findWithDynamicQuery(
dynamicQuery, start, end, orderByComparator);
}
/**
* @see com.liferay.portal.kernel.service.persistence.BasePersistence#update(com.liferay.portal.kernel.model.BaseModel)
*/
public static FragmentEntryVersion update(
FragmentEntryVersion fragmentEntryVersion) {
return getPersistence().update(fragmentEntryVersion);
}
/**
* @see com.liferay.portal.kernel.service.persistence.BasePersistence#update(com.liferay.portal.kernel.model.BaseModel, ServiceContext)
*/
public static FragmentEntryVersion update(
FragmentEntryVersion fragmentEntryVersion,
ServiceContext serviceContext) {
return getPersistence().update(fragmentEntryVersion, serviceContext);
}
/**
* Returns all the fragment entry versions where fragmentEntryId = ?.
*
* @param fragmentEntryId the fragment entry ID
* @return the matching fragment entry versions
*/
public static List findByFragmentEntryId(
long fragmentEntryId) {
return getPersistence().findByFragmentEntryId(fragmentEntryId);
}
/**
* Returns a range of all the fragment entry versions 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 FragmentEntryVersionModelImpl
.
*
*
* @param fragmentEntryId the fragment entry ID
* @param start the lower bound of the range of fragment entry versions
* @param end the upper bound of the range of fragment entry versions (not inclusive)
* @return the range of matching fragment entry versions
*/
public static List findByFragmentEntryId(
long fragmentEntryId, int start, int end) {
return getPersistence().findByFragmentEntryId(
fragmentEntryId, start, end);
}
/**
* Returns an ordered range of all the fragment entry versions 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 FragmentEntryVersionModelImpl
.
*
*
* @param fragmentEntryId the fragment entry ID
* @param start the lower bound of the range of fragment entry versions
* @param end the upper bound of the range of fragment entry versions (not inclusive)
* @param orderByComparator the comparator to order the results by (optionally null
)
* @return the ordered range of matching fragment entry versions
*/
public static List findByFragmentEntryId(
long fragmentEntryId, int start, int end,
OrderByComparator orderByComparator) {
return getPersistence().findByFragmentEntryId(
fragmentEntryId, start, end, orderByComparator);
}
/**
* Returns an ordered range of all the fragment entry versions 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 FragmentEntryVersionModelImpl
.
*
*
* @param fragmentEntryId the fragment entry ID
* @param start the lower bound of the range of fragment entry versions
* @param end the upper bound of the range of fragment entry versions (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 versions
*/
public static List findByFragmentEntryId(
long fragmentEntryId, int start, int end,
OrderByComparator orderByComparator,
boolean useFinderCache) {
return getPersistence().findByFragmentEntryId(
fragmentEntryId, start, end, orderByComparator, useFinderCache);
}
/**
* Returns the first fragment entry version 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 version
* @throws NoSuchEntryVersionException if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion findByFragmentEntryId_First(
long fragmentEntryId,
OrderByComparator orderByComparator)
throws com.liferay.fragment.exception.NoSuchEntryVersionException {
return getPersistence().findByFragmentEntryId_First(
fragmentEntryId, orderByComparator);
}
/**
* Returns the first fragment entry version 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 version, or null
if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion fetchByFragmentEntryId_First(
long fragmentEntryId,
OrderByComparator orderByComparator) {
return getPersistence().fetchByFragmentEntryId_First(
fragmentEntryId, orderByComparator);
}
/**
* Returns the last fragment entry version 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 version
* @throws NoSuchEntryVersionException if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion findByFragmentEntryId_Last(
long fragmentEntryId,
OrderByComparator orderByComparator)
throws com.liferay.fragment.exception.NoSuchEntryVersionException {
return getPersistence().findByFragmentEntryId_Last(
fragmentEntryId, orderByComparator);
}
/**
* Returns the last fragment entry version 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 version, or null
if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion fetchByFragmentEntryId_Last(
long fragmentEntryId,
OrderByComparator orderByComparator) {
return getPersistence().fetchByFragmentEntryId_Last(
fragmentEntryId, orderByComparator);
}
/**
* Returns the fragment entry versions before and after the current fragment entry version in the ordered set where fragmentEntryId = ?.
*
* @param fragmentEntryVersionId the primary key of the current fragment entry version
* @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 version
* @throws NoSuchEntryVersionException if a fragment entry version with the primary key could not be found
*/
public static FragmentEntryVersion[] findByFragmentEntryId_PrevAndNext(
long fragmentEntryVersionId, long fragmentEntryId,
OrderByComparator orderByComparator)
throws com.liferay.fragment.exception.NoSuchEntryVersionException {
return getPersistence().findByFragmentEntryId_PrevAndNext(
fragmentEntryVersionId, fragmentEntryId, orderByComparator);
}
/**
* Removes all the fragment entry versions where fragmentEntryId = ? from the database.
*
* @param fragmentEntryId the fragment entry ID
*/
public static void removeByFragmentEntryId(long fragmentEntryId) {
getPersistence().removeByFragmentEntryId(fragmentEntryId);
}
/**
* Returns the number of fragment entry versions where fragmentEntryId = ?.
*
* @param fragmentEntryId the fragment entry ID
* @return the number of matching fragment entry versions
*/
public static int countByFragmentEntryId(long fragmentEntryId) {
return getPersistence().countByFragmentEntryId(fragmentEntryId);
}
/**
* Returns the fragment entry version where fragmentEntryId = ? and version = ? or throws a NoSuchEntryVersionException
if it could not be found.
*
* @param fragmentEntryId the fragment entry ID
* @param version the version
* @return the matching fragment entry version
* @throws NoSuchEntryVersionException if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion findByFragmentEntryId_Version(
long fragmentEntryId, int version)
throws com.liferay.fragment.exception.NoSuchEntryVersionException {
return getPersistence().findByFragmentEntryId_Version(
fragmentEntryId, version);
}
/**
* Returns the fragment entry version where fragmentEntryId = ? and version = ? or returns null
if it could not be found. Uses the finder cache.
*
* @param fragmentEntryId the fragment entry ID
* @param version the version
* @return the matching fragment entry version, or null
if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion fetchByFragmentEntryId_Version(
long fragmentEntryId, int version) {
return getPersistence().fetchByFragmentEntryId_Version(
fragmentEntryId, version);
}
/**
* Returns the fragment entry version where fragmentEntryId = ? and version = ? or returns null
if it could not be found, optionally using the finder cache.
*
* @param fragmentEntryId the fragment entry ID
* @param version the version
* @param useFinderCache whether to use the finder cache
* @return the matching fragment entry version, or null
if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion fetchByFragmentEntryId_Version(
long fragmentEntryId, int version, boolean useFinderCache) {
return getPersistence().fetchByFragmentEntryId_Version(
fragmentEntryId, version, useFinderCache);
}
/**
* Removes the fragment entry version where fragmentEntryId = ? and version = ? from the database.
*
* @param fragmentEntryId the fragment entry ID
* @param version the version
* @return the fragment entry version that was removed
*/
public static FragmentEntryVersion removeByFragmentEntryId_Version(
long fragmentEntryId, int version)
throws com.liferay.fragment.exception.NoSuchEntryVersionException {
return getPersistence().removeByFragmentEntryId_Version(
fragmentEntryId, version);
}
/**
* Returns the number of fragment entry versions where fragmentEntryId = ? and version = ?.
*
* @param fragmentEntryId the fragment entry ID
* @param version the version
* @return the number of matching fragment entry versions
*/
public static int countByFragmentEntryId_Version(
long fragmentEntryId, int version) {
return getPersistence().countByFragmentEntryId_Version(
fragmentEntryId, version);
}
/**
* Returns all the fragment entry versions where uuid = ?.
*
* @param uuid the uuid
* @return the matching fragment entry versions
*/
public static List findByUuid(String uuid) {
return getPersistence().findByUuid(uuid);
}
/**
* Returns a range of all the fragment entry versions 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 FragmentEntryVersionModelImpl
.
*
*
* @param uuid the uuid
* @param start the lower bound of the range of fragment entry versions
* @param end the upper bound of the range of fragment entry versions (not inclusive)
* @return the range of matching fragment entry versions
*/
public static List findByUuid(
String uuid, int start, int end) {
return getPersistence().findByUuid(uuid, start, end);
}
/**
* Returns an ordered range of all the fragment entry versions 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 FragmentEntryVersionModelImpl
.
*
*
* @param uuid the uuid
* @param start the lower bound of the range of fragment entry versions
* @param end the upper bound of the range of fragment entry versions (not inclusive)
* @param orderByComparator the comparator to order the results by (optionally null
)
* @return the ordered range of matching fragment entry versions
*/
public static List findByUuid(
String uuid, int start, int end,
OrderByComparator orderByComparator) {
return getPersistence().findByUuid(uuid, start, end, orderByComparator);
}
/**
* Returns an ordered range of all the fragment entry versions 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 FragmentEntryVersionModelImpl
.
*
*
* @param uuid the uuid
* @param start the lower bound of the range of fragment entry versions
* @param end the upper bound of the range of fragment entry versions (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 versions
*/
public static List findByUuid(
String uuid, int start, int end,
OrderByComparator orderByComparator,
boolean useFinderCache) {
return getPersistence().findByUuid(
uuid, start, end, orderByComparator, useFinderCache);
}
/**
* Returns the first fragment entry version 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 version
* @throws NoSuchEntryVersionException if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion findByUuid_First(
String uuid,
OrderByComparator orderByComparator)
throws com.liferay.fragment.exception.NoSuchEntryVersionException {
return getPersistence().findByUuid_First(uuid, orderByComparator);
}
/**
* Returns the first fragment entry version 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 version, or null
if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion fetchByUuid_First(
String uuid,
OrderByComparator orderByComparator) {
return getPersistence().fetchByUuid_First(uuid, orderByComparator);
}
/**
* Returns the last fragment entry version 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 version
* @throws NoSuchEntryVersionException if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion findByUuid_Last(
String uuid,
OrderByComparator orderByComparator)
throws com.liferay.fragment.exception.NoSuchEntryVersionException {
return getPersistence().findByUuid_Last(uuid, orderByComparator);
}
/**
* Returns the last fragment entry version 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 version, or null
if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion fetchByUuid_Last(
String uuid,
OrderByComparator orderByComparator) {
return getPersistence().fetchByUuid_Last(uuid, orderByComparator);
}
/**
* Returns the fragment entry versions before and after the current fragment entry version in the ordered set where uuid = ?.
*
* @param fragmentEntryVersionId the primary key of the current fragment entry version
* @param uuid the uuid
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the previous, current, and next fragment entry version
* @throws NoSuchEntryVersionException if a fragment entry version with the primary key could not be found
*/
public static FragmentEntryVersion[] findByUuid_PrevAndNext(
long fragmentEntryVersionId, String uuid,
OrderByComparator orderByComparator)
throws com.liferay.fragment.exception.NoSuchEntryVersionException {
return getPersistence().findByUuid_PrevAndNext(
fragmentEntryVersionId, uuid, orderByComparator);
}
/**
* Removes all the fragment entry versions where uuid = ? from the database.
*
* @param uuid the uuid
*/
public static void removeByUuid(String uuid) {
getPersistence().removeByUuid(uuid);
}
/**
* Returns the number of fragment entry versions where uuid = ?.
*
* @param uuid the uuid
* @return the number of matching fragment entry versions
*/
public static int countByUuid(String uuid) {
return getPersistence().countByUuid(uuid);
}
/**
* Returns all the fragment entry versions where uuid = ? and version = ?.
*
* @param uuid the uuid
* @param version the version
* @return the matching fragment entry versions
*/
public static List findByUuid_Version(
String uuid, int version) {
return getPersistence().findByUuid_Version(uuid, version);
}
/**
* Returns a range of all the fragment entry versions where uuid = ? and version = ?.
*
*
* 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 FragmentEntryVersionModelImpl
.
*
*
* @param uuid the uuid
* @param version the version
* @param start the lower bound of the range of fragment entry versions
* @param end the upper bound of the range of fragment entry versions (not inclusive)
* @return the range of matching fragment entry versions
*/
public static List findByUuid_Version(
String uuid, int version, int start, int end) {
return getPersistence().findByUuid_Version(uuid, version, start, end);
}
/**
* Returns an ordered range of all the fragment entry versions where uuid = ? and version = ?.
*
*
* 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 FragmentEntryVersionModelImpl
.
*
*
* @param uuid the uuid
* @param version the version
* @param start the lower bound of the range of fragment entry versions
* @param end the upper bound of the range of fragment entry versions (not inclusive)
* @param orderByComparator the comparator to order the results by (optionally null
)
* @return the ordered range of matching fragment entry versions
*/
public static List findByUuid_Version(
String uuid, int version, int start, int end,
OrderByComparator orderByComparator) {
return getPersistence().findByUuid_Version(
uuid, version, start, end, orderByComparator);
}
/**
* Returns an ordered range of all the fragment entry versions where uuid = ? and version = ?.
*
*
* 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 FragmentEntryVersionModelImpl
.
*
*
* @param uuid the uuid
* @param version the version
* @param start the lower bound of the range of fragment entry versions
* @param end the upper bound of the range of fragment entry versions (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 versions
*/
public static List findByUuid_Version(
String uuid, int version, int start, int end,
OrderByComparator orderByComparator,
boolean useFinderCache) {
return getPersistence().findByUuid_Version(
uuid, version, start, end, orderByComparator, useFinderCache);
}
/**
* Returns the first fragment entry version in the ordered set where uuid = ? and version = ?.
*
* @param uuid the uuid
* @param version the version
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the first matching fragment entry version
* @throws NoSuchEntryVersionException if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion findByUuid_Version_First(
String uuid, int version,
OrderByComparator orderByComparator)
throws com.liferay.fragment.exception.NoSuchEntryVersionException {
return getPersistence().findByUuid_Version_First(
uuid, version, orderByComparator);
}
/**
* Returns the first fragment entry version in the ordered set where uuid = ? and version = ?.
*
* @param uuid the uuid
* @param version the version
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the first matching fragment entry version, or null
if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion fetchByUuid_Version_First(
String uuid, int version,
OrderByComparator orderByComparator) {
return getPersistence().fetchByUuid_Version_First(
uuid, version, orderByComparator);
}
/**
* Returns the last fragment entry version in the ordered set where uuid = ? and version = ?.
*
* @param uuid the uuid
* @param version the version
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the last matching fragment entry version
* @throws NoSuchEntryVersionException if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion findByUuid_Version_Last(
String uuid, int version,
OrderByComparator orderByComparator)
throws com.liferay.fragment.exception.NoSuchEntryVersionException {
return getPersistence().findByUuid_Version_Last(
uuid, version, orderByComparator);
}
/**
* Returns the last fragment entry version in the ordered set where uuid = ? and version = ?.
*
* @param uuid the uuid
* @param version the version
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the last matching fragment entry version, or null
if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion fetchByUuid_Version_Last(
String uuid, int version,
OrderByComparator orderByComparator) {
return getPersistence().fetchByUuid_Version_Last(
uuid, version, orderByComparator);
}
/**
* Returns the fragment entry versions before and after the current fragment entry version in the ordered set where uuid = ? and version = ?.
*
* @param fragmentEntryVersionId the primary key of the current fragment entry version
* @param uuid the uuid
* @param version the version
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the previous, current, and next fragment entry version
* @throws NoSuchEntryVersionException if a fragment entry version with the primary key could not be found
*/
public static FragmentEntryVersion[] findByUuid_Version_PrevAndNext(
long fragmentEntryVersionId, String uuid, int version,
OrderByComparator orderByComparator)
throws com.liferay.fragment.exception.NoSuchEntryVersionException {
return getPersistence().findByUuid_Version_PrevAndNext(
fragmentEntryVersionId, uuid, version, orderByComparator);
}
/**
* Removes all the fragment entry versions where uuid = ? and version = ? from the database.
*
* @param uuid the uuid
* @param version the version
*/
public static void removeByUuid_Version(String uuid, int version) {
getPersistence().removeByUuid_Version(uuid, version);
}
/**
* Returns the number of fragment entry versions where uuid = ? and version = ?.
*
* @param uuid the uuid
* @param version the version
* @return the number of matching fragment entry versions
*/
public static int countByUuid_Version(String uuid, int version) {
return getPersistence().countByUuid_Version(uuid, version);
}
/**
* Returns all the fragment entry versions where uuid = ? and groupId = ?.
*
* @param uuid the uuid
* @param groupId the group ID
* @return the matching fragment entry versions
*/
public static List findByUUID_G(
String uuid, long groupId) {
return getPersistence().findByUUID_G(uuid, groupId);
}
/**
* Returns a range of all the fragment entry versions where uuid = ? and 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 FragmentEntryVersionModelImpl
.
*
*
* @param uuid the uuid
* @param groupId the group ID
* @param start the lower bound of the range of fragment entry versions
* @param end the upper bound of the range of fragment entry versions (not inclusive)
* @return the range of matching fragment entry versions
*/
public static List findByUUID_G(
String uuid, long groupId, int start, int end) {
return getPersistence().findByUUID_G(uuid, groupId, start, end);
}
/**
* Returns an ordered range of all the fragment entry versions where uuid = ? and 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 FragmentEntryVersionModelImpl
.
*
*
* @param uuid the uuid
* @param groupId the group ID
* @param start the lower bound of the range of fragment entry versions
* @param end the upper bound of the range of fragment entry versions (not inclusive)
* @param orderByComparator the comparator to order the results by (optionally null
)
* @return the ordered range of matching fragment entry versions
*/
public static List findByUUID_G(
String uuid, long groupId, int start, int end,
OrderByComparator orderByComparator) {
return getPersistence().findByUUID_G(
uuid, groupId, start, end, orderByComparator);
}
/**
* Returns an ordered range of all the fragment entry versions where uuid = ? and 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 FragmentEntryVersionModelImpl
.
*
*
* @param uuid the uuid
* @param groupId the group ID
* @param start the lower bound of the range of fragment entry versions
* @param end the upper bound of the range of fragment entry versions (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 versions
*/
public static List findByUUID_G(
String uuid, long groupId, int start, int end,
OrderByComparator orderByComparator,
boolean useFinderCache) {
return getPersistence().findByUUID_G(
uuid, groupId, start, end, orderByComparator, useFinderCache);
}
/**
* Returns the first fragment entry version in the ordered set where uuid = ? and groupId = ?.
*
* @param uuid the uuid
* @param groupId the group ID
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the first matching fragment entry version
* @throws NoSuchEntryVersionException if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion findByUUID_G_First(
String uuid, long groupId,
OrderByComparator orderByComparator)
throws com.liferay.fragment.exception.NoSuchEntryVersionException {
return getPersistence().findByUUID_G_First(
uuid, groupId, orderByComparator);
}
/**
* Returns the first fragment entry version in the ordered set where uuid = ? and groupId = ?.
*
* @param uuid the uuid
* @param groupId the group ID
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the first matching fragment entry version, or null
if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion fetchByUUID_G_First(
String uuid, long groupId,
OrderByComparator orderByComparator) {
return getPersistence().fetchByUUID_G_First(
uuid, groupId, orderByComparator);
}
/**
* Returns the last fragment entry version in the ordered set where uuid = ? and groupId = ?.
*
* @param uuid the uuid
* @param groupId the group ID
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the last matching fragment entry version
* @throws NoSuchEntryVersionException if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion findByUUID_G_Last(
String uuid, long groupId,
OrderByComparator orderByComparator)
throws com.liferay.fragment.exception.NoSuchEntryVersionException {
return getPersistence().findByUUID_G_Last(
uuid, groupId, orderByComparator);
}
/**
* Returns the last fragment entry version in the ordered set where uuid = ? and groupId = ?.
*
* @param uuid the uuid
* @param groupId the group ID
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the last matching fragment entry version, or null
if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion fetchByUUID_G_Last(
String uuid, long groupId,
OrderByComparator orderByComparator) {
return getPersistence().fetchByUUID_G_Last(
uuid, groupId, orderByComparator);
}
/**
* Returns the fragment entry versions before and after the current fragment entry version in the ordered set where uuid = ? and groupId = ?.
*
* @param fragmentEntryVersionId the primary key of the current fragment entry version
* @param uuid the uuid
* @param groupId the group ID
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the previous, current, and next fragment entry version
* @throws NoSuchEntryVersionException if a fragment entry version with the primary key could not be found
*/
public static FragmentEntryVersion[] findByUUID_G_PrevAndNext(
long fragmentEntryVersionId, String uuid, long groupId,
OrderByComparator orderByComparator)
throws com.liferay.fragment.exception.NoSuchEntryVersionException {
return getPersistence().findByUUID_G_PrevAndNext(
fragmentEntryVersionId, uuid, groupId, orderByComparator);
}
/**
* Removes all the fragment entry versions where uuid = ? and groupId = ? from the database.
*
* @param uuid the uuid
* @param groupId the group ID
*/
public static void removeByUUID_G(String uuid, long groupId) {
getPersistence().removeByUUID_G(uuid, groupId);
}
/**
* Returns the number of fragment entry versions where uuid = ? and groupId = ?.
*
* @param uuid the uuid
* @param groupId the group ID
* @return the number of matching fragment entry versions
*/
public static int countByUUID_G(String uuid, long groupId) {
return getPersistence().countByUUID_G(uuid, groupId);
}
/**
* Returns the fragment entry version where uuid = ? and groupId = ? and version = ? or throws a NoSuchEntryVersionException
if it could not be found.
*
* @param uuid the uuid
* @param groupId the group ID
* @param version the version
* @return the matching fragment entry version
* @throws NoSuchEntryVersionException if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion findByUUID_G_Version(
String uuid, long groupId, int version)
throws com.liferay.fragment.exception.NoSuchEntryVersionException {
return getPersistence().findByUUID_G_Version(uuid, groupId, version);
}
/**
* Returns the fragment entry version where uuid = ? and groupId = ? and version = ? or returns null
if it could not be found. Uses the finder cache.
*
* @param uuid the uuid
* @param groupId the group ID
* @param version the version
* @return the matching fragment entry version, or null
if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion fetchByUUID_G_Version(
String uuid, long groupId, int version) {
return getPersistence().fetchByUUID_G_Version(uuid, groupId, version);
}
/**
* Returns the fragment entry version where uuid = ? and groupId = ? and version = ? or returns null
if it could not be found, optionally using the finder cache.
*
* @param uuid the uuid
* @param groupId the group ID
* @param version the version
* @param useFinderCache whether to use the finder cache
* @return the matching fragment entry version, or null
if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion fetchByUUID_G_Version(
String uuid, long groupId, int version, boolean useFinderCache) {
return getPersistence().fetchByUUID_G_Version(
uuid, groupId, version, useFinderCache);
}
/**
* Removes the fragment entry version where uuid = ? and groupId = ? and version = ? from the database.
*
* @param uuid the uuid
* @param groupId the group ID
* @param version the version
* @return the fragment entry version that was removed
*/
public static FragmentEntryVersion removeByUUID_G_Version(
String uuid, long groupId, int version)
throws com.liferay.fragment.exception.NoSuchEntryVersionException {
return getPersistence().removeByUUID_G_Version(uuid, groupId, version);
}
/**
* Returns the number of fragment entry versions where uuid = ? and groupId = ? and version = ?.
*
* @param uuid the uuid
* @param groupId the group ID
* @param version the version
* @return the number of matching fragment entry versions
*/
public static int countByUUID_G_Version(
String uuid, long groupId, int version) {
return getPersistence().countByUUID_G_Version(uuid, groupId, version);
}
/**
* Returns all the fragment entry versions where uuid = ? and companyId = ?.
*
* @param uuid the uuid
* @param companyId the company ID
* @return the matching fragment entry versions
*/
public static List findByUuid_C(
String uuid, long companyId) {
return getPersistence().findByUuid_C(uuid, companyId);
}
/**
* Returns a range of all the fragment entry versions 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 FragmentEntryVersionModelImpl
.
*
*
* @param uuid the uuid
* @param companyId the company ID
* @param start the lower bound of the range of fragment entry versions
* @param end the upper bound of the range of fragment entry versions (not inclusive)
* @return the range of matching fragment entry versions
*/
public static List findByUuid_C(
String uuid, long companyId, int start, int end) {
return getPersistence().findByUuid_C(uuid, companyId, start, end);
}
/**
* Returns an ordered range of all the fragment entry versions 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 FragmentEntryVersionModelImpl
.
*
*
* @param uuid the uuid
* @param companyId the company ID
* @param start the lower bound of the range of fragment entry versions
* @param end the upper bound of the range of fragment entry versions (not inclusive)
* @param orderByComparator the comparator to order the results by (optionally null
)
* @return the ordered range of matching fragment entry versions
*/
public static List findByUuid_C(
String uuid, long companyId, int start, int end,
OrderByComparator orderByComparator) {
return getPersistence().findByUuid_C(
uuid, companyId, start, end, orderByComparator);
}
/**
* Returns an ordered range of all the fragment entry versions 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 FragmentEntryVersionModelImpl
.
*
*
* @param uuid the uuid
* @param companyId the company ID
* @param start the lower bound of the range of fragment entry versions
* @param end the upper bound of the range of fragment entry versions (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 versions
*/
public static List findByUuid_C(
String uuid, long companyId, int start, int end,
OrderByComparator orderByComparator,
boolean useFinderCache) {
return getPersistence().findByUuid_C(
uuid, companyId, start, end, orderByComparator, useFinderCache);
}
/**
* Returns the first fragment entry version 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 version
* @throws NoSuchEntryVersionException if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion findByUuid_C_First(
String uuid, long companyId,
OrderByComparator orderByComparator)
throws com.liferay.fragment.exception.NoSuchEntryVersionException {
return getPersistence().findByUuid_C_First(
uuid, companyId, orderByComparator);
}
/**
* Returns the first fragment entry version 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 version, or null
if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion fetchByUuid_C_First(
String uuid, long companyId,
OrderByComparator orderByComparator) {
return getPersistence().fetchByUuid_C_First(
uuid, companyId, orderByComparator);
}
/**
* Returns the last fragment entry version 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 version
* @throws NoSuchEntryVersionException if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion findByUuid_C_Last(
String uuid, long companyId,
OrderByComparator orderByComparator)
throws com.liferay.fragment.exception.NoSuchEntryVersionException {
return getPersistence().findByUuid_C_Last(
uuid, companyId, orderByComparator);
}
/**
* Returns the last fragment entry version 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 version, or null
if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion fetchByUuid_C_Last(
String uuid, long companyId,
OrderByComparator orderByComparator) {
return getPersistence().fetchByUuid_C_Last(
uuid, companyId, orderByComparator);
}
/**
* Returns the fragment entry versions before and after the current fragment entry version in the ordered set where uuid = ? and companyId = ?.
*
* @param fragmentEntryVersionId the primary key of the current fragment entry version
* @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 version
* @throws NoSuchEntryVersionException if a fragment entry version with the primary key could not be found
*/
public static FragmentEntryVersion[] findByUuid_C_PrevAndNext(
long fragmentEntryVersionId, String uuid, long companyId,
OrderByComparator orderByComparator)
throws com.liferay.fragment.exception.NoSuchEntryVersionException {
return getPersistence().findByUuid_C_PrevAndNext(
fragmentEntryVersionId, uuid, companyId, orderByComparator);
}
/**
* Removes all the fragment entry versions where uuid = ? and companyId = ? from the database.
*
* @param uuid the uuid
* @param companyId the company ID
*/
public static void removeByUuid_C(String uuid, long companyId) {
getPersistence().removeByUuid_C(uuid, companyId);
}
/**
* Returns the number of fragment entry versions where uuid = ? and companyId = ?.
*
* @param uuid the uuid
* @param companyId the company ID
* @return the number of matching fragment entry versions
*/
public static int countByUuid_C(String uuid, long companyId) {
return getPersistence().countByUuid_C(uuid, companyId);
}
/**
* Returns all the fragment entry versions where uuid = ? and companyId = ? and version = ?.
*
* @param uuid the uuid
* @param companyId the company ID
* @param version the version
* @return the matching fragment entry versions
*/
public static List findByUuid_C_Version(
String uuid, long companyId, int version) {
return getPersistence().findByUuid_C_Version(uuid, companyId, version);
}
/**
* Returns a range of all the fragment entry versions where uuid = ? and companyId = ? and version = ?.
*
*
* 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 FragmentEntryVersionModelImpl
.
*
*
* @param uuid the uuid
* @param companyId the company ID
* @param version the version
* @param start the lower bound of the range of fragment entry versions
* @param end the upper bound of the range of fragment entry versions (not inclusive)
* @return the range of matching fragment entry versions
*/
public static List findByUuid_C_Version(
String uuid, long companyId, int version, int start, int end) {
return getPersistence().findByUuid_C_Version(
uuid, companyId, version, start, end);
}
/**
* Returns an ordered range of all the fragment entry versions where uuid = ? and companyId = ? and version = ?.
*
*
* 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 FragmentEntryVersionModelImpl
.
*
*
* @param uuid the uuid
* @param companyId the company ID
* @param version the version
* @param start the lower bound of the range of fragment entry versions
* @param end the upper bound of the range of fragment entry versions (not inclusive)
* @param orderByComparator the comparator to order the results by (optionally null
)
* @return the ordered range of matching fragment entry versions
*/
public static List findByUuid_C_Version(
String uuid, long companyId, int version, int start, int end,
OrderByComparator orderByComparator) {
return getPersistence().findByUuid_C_Version(
uuid, companyId, version, start, end, orderByComparator);
}
/**
* Returns an ordered range of all the fragment entry versions where uuid = ? and companyId = ? and version = ?.
*
*
* 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 FragmentEntryVersionModelImpl
.
*
*
* @param uuid the uuid
* @param companyId the company ID
* @param version the version
* @param start the lower bound of the range of fragment entry versions
* @param end the upper bound of the range of fragment entry versions (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 versions
*/
public static List findByUuid_C_Version(
String uuid, long companyId, int version, int start, int end,
OrderByComparator orderByComparator,
boolean useFinderCache) {
return getPersistence().findByUuid_C_Version(
uuid, companyId, version, start, end, orderByComparator,
useFinderCache);
}
/**
* Returns the first fragment entry version in the ordered set where uuid = ? and companyId = ? and version = ?.
*
* @param uuid the uuid
* @param companyId the company ID
* @param version the version
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the first matching fragment entry version
* @throws NoSuchEntryVersionException if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion findByUuid_C_Version_First(
String uuid, long companyId, int version,
OrderByComparator orderByComparator)
throws com.liferay.fragment.exception.NoSuchEntryVersionException {
return getPersistence().findByUuid_C_Version_First(
uuid, companyId, version, orderByComparator);
}
/**
* Returns the first fragment entry version in the ordered set where uuid = ? and companyId = ? and version = ?.
*
* @param uuid the uuid
* @param companyId the company ID
* @param version the version
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the first matching fragment entry version, or null
if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion fetchByUuid_C_Version_First(
String uuid, long companyId, int version,
OrderByComparator orderByComparator) {
return getPersistence().fetchByUuid_C_Version_First(
uuid, companyId, version, orderByComparator);
}
/**
* Returns the last fragment entry version in the ordered set where uuid = ? and companyId = ? and version = ?.
*
* @param uuid the uuid
* @param companyId the company ID
* @param version the version
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the last matching fragment entry version
* @throws NoSuchEntryVersionException if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion findByUuid_C_Version_Last(
String uuid, long companyId, int version,
OrderByComparator orderByComparator)
throws com.liferay.fragment.exception.NoSuchEntryVersionException {
return getPersistence().findByUuid_C_Version_Last(
uuid, companyId, version, orderByComparator);
}
/**
* Returns the last fragment entry version in the ordered set where uuid = ? and companyId = ? and version = ?.
*
* @param uuid the uuid
* @param companyId the company ID
* @param version the version
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the last matching fragment entry version, or null
if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion fetchByUuid_C_Version_Last(
String uuid, long companyId, int version,
OrderByComparator orderByComparator) {
return getPersistence().fetchByUuid_C_Version_Last(
uuid, companyId, version, orderByComparator);
}
/**
* Returns the fragment entry versions before and after the current fragment entry version in the ordered set where uuid = ? and companyId = ? and version = ?.
*
* @param fragmentEntryVersionId the primary key of the current fragment entry version
* @param uuid the uuid
* @param companyId the company ID
* @param version the version
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the previous, current, and next fragment entry version
* @throws NoSuchEntryVersionException if a fragment entry version with the primary key could not be found
*/
public static FragmentEntryVersion[] findByUuid_C_Version_PrevAndNext(
long fragmentEntryVersionId, String uuid, long companyId,
int version,
OrderByComparator orderByComparator)
throws com.liferay.fragment.exception.NoSuchEntryVersionException {
return getPersistence().findByUuid_C_Version_PrevAndNext(
fragmentEntryVersionId, uuid, companyId, version,
orderByComparator);
}
/**
* Removes all the fragment entry versions where uuid = ? and companyId = ? and version = ? from the database.
*
* @param uuid the uuid
* @param companyId the company ID
* @param version the version
*/
public static void removeByUuid_C_Version(
String uuid, long companyId, int version) {
getPersistence().removeByUuid_C_Version(uuid, companyId, version);
}
/**
* Returns the number of fragment entry versions where uuid = ? and companyId = ? and version = ?.
*
* @param uuid the uuid
* @param companyId the company ID
* @param version the version
* @return the number of matching fragment entry versions
*/
public static int countByUuid_C_Version(
String uuid, long companyId, int version) {
return getPersistence().countByUuid_C_Version(uuid, companyId, version);
}
/**
* Returns all the fragment entry versions where groupId = ?.
*
* @param groupId the group ID
* @return the matching fragment entry versions
*/
public static List findByGroupId(long groupId) {
return getPersistence().findByGroupId(groupId);
}
/**
* Returns a range of all the fragment entry versions 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 FragmentEntryVersionModelImpl
.
*
*
* @param groupId the group ID
* @param start the lower bound of the range of fragment entry versions
* @param end the upper bound of the range of fragment entry versions (not inclusive)
* @return the range of matching fragment entry versions
*/
public static List findByGroupId(
long groupId, int start, int end) {
return getPersistence().findByGroupId(groupId, start, end);
}
/**
* Returns an ordered range of all the fragment entry versions 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 FragmentEntryVersionModelImpl
.
*
*
* @param groupId the group ID
* @param start the lower bound of the range of fragment entry versions
* @param end the upper bound of the range of fragment entry versions (not inclusive)
* @param orderByComparator the comparator to order the results by (optionally null
)
* @return the ordered range of matching fragment entry versions
*/
public static List findByGroupId(
long groupId, int start, int end,
OrderByComparator orderByComparator) {
return getPersistence().findByGroupId(
groupId, start, end, orderByComparator);
}
/**
* Returns an ordered range of all the fragment entry versions 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 FragmentEntryVersionModelImpl
.
*
*
* @param groupId the group ID
* @param start the lower bound of the range of fragment entry versions
* @param end the upper bound of the range of fragment entry versions (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 versions
*/
public static List findByGroupId(
long groupId, int start, int end,
OrderByComparator orderByComparator,
boolean useFinderCache) {
return getPersistence().findByGroupId(
groupId, start, end, orderByComparator, useFinderCache);
}
/**
* Returns the first fragment entry version 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 version
* @throws NoSuchEntryVersionException if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion findByGroupId_First(
long groupId,
OrderByComparator orderByComparator)
throws com.liferay.fragment.exception.NoSuchEntryVersionException {
return getPersistence().findByGroupId_First(groupId, orderByComparator);
}
/**
* Returns the first fragment entry version 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 version, or null
if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion fetchByGroupId_First(
long groupId,
OrderByComparator orderByComparator) {
return getPersistence().fetchByGroupId_First(
groupId, orderByComparator);
}
/**
* Returns the last fragment entry version 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 version
* @throws NoSuchEntryVersionException if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion findByGroupId_Last(
long groupId,
OrderByComparator orderByComparator)
throws com.liferay.fragment.exception.NoSuchEntryVersionException {
return getPersistence().findByGroupId_Last(groupId, orderByComparator);
}
/**
* Returns the last fragment entry version 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 version, or null
if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion fetchByGroupId_Last(
long groupId,
OrderByComparator orderByComparator) {
return getPersistence().fetchByGroupId_Last(groupId, orderByComparator);
}
/**
* Returns the fragment entry versions before and after the current fragment entry version in the ordered set where groupId = ?.
*
* @param fragmentEntryVersionId the primary key of the current fragment entry version
* @param groupId the group ID
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the previous, current, and next fragment entry version
* @throws NoSuchEntryVersionException if a fragment entry version with the primary key could not be found
*/
public static FragmentEntryVersion[] findByGroupId_PrevAndNext(
long fragmentEntryVersionId, long groupId,
OrderByComparator orderByComparator)
throws com.liferay.fragment.exception.NoSuchEntryVersionException {
return getPersistence().findByGroupId_PrevAndNext(
fragmentEntryVersionId, groupId, orderByComparator);
}
/**
* Removes all the fragment entry versions where groupId = ? from the database.
*
* @param groupId the group ID
*/
public static void removeByGroupId(long groupId) {
getPersistence().removeByGroupId(groupId);
}
/**
* Returns the number of fragment entry versions where groupId = ?.
*
* @param groupId the group ID
* @return the number of matching fragment entry versions
*/
public static int countByGroupId(long groupId) {
return getPersistence().countByGroupId(groupId);
}
/**
* Returns all the fragment entry versions where groupId = ? and version = ?.
*
* @param groupId the group ID
* @param version the version
* @return the matching fragment entry versions
*/
public static List findByGroupId_Version(
long groupId, int version) {
return getPersistence().findByGroupId_Version(groupId, version);
}
/**
* Returns a range of all the fragment entry versions where groupId = ? and version = ?.
*
*
* 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 FragmentEntryVersionModelImpl
.
*
*
* @param groupId the group ID
* @param version the version
* @param start the lower bound of the range of fragment entry versions
* @param end the upper bound of the range of fragment entry versions (not inclusive)
* @return the range of matching fragment entry versions
*/
public static List findByGroupId_Version(
long groupId, int version, int start, int end) {
return getPersistence().findByGroupId_Version(
groupId, version, start, end);
}
/**
* Returns an ordered range of all the fragment entry versions where groupId = ? and version = ?.
*
*
* 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 FragmentEntryVersionModelImpl
.
*
*
* @param groupId the group ID
* @param version the version
* @param start the lower bound of the range of fragment entry versions
* @param end the upper bound of the range of fragment entry versions (not inclusive)
* @param orderByComparator the comparator to order the results by (optionally null
)
* @return the ordered range of matching fragment entry versions
*/
public static List findByGroupId_Version(
long groupId, int version, int start, int end,
OrderByComparator orderByComparator) {
return getPersistence().findByGroupId_Version(
groupId, version, start, end, orderByComparator);
}
/**
* Returns an ordered range of all the fragment entry versions where groupId = ? and version = ?.
*
*
* 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 FragmentEntryVersionModelImpl
.
*
*
* @param groupId the group ID
* @param version the version
* @param start the lower bound of the range of fragment entry versions
* @param end the upper bound of the range of fragment entry versions (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 versions
*/
public static List findByGroupId_Version(
long groupId, int version, int start, int end,
OrderByComparator orderByComparator,
boolean useFinderCache) {
return getPersistence().findByGroupId_Version(
groupId, version, start, end, orderByComparator, useFinderCache);
}
/**
* Returns the first fragment entry version in the ordered set where groupId = ? and version = ?.
*
* @param groupId the group ID
* @param version the version
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the first matching fragment entry version
* @throws NoSuchEntryVersionException if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion findByGroupId_Version_First(
long groupId, int version,
OrderByComparator orderByComparator)
throws com.liferay.fragment.exception.NoSuchEntryVersionException {
return getPersistence().findByGroupId_Version_First(
groupId, version, orderByComparator);
}
/**
* Returns the first fragment entry version in the ordered set where groupId = ? and version = ?.
*
* @param groupId the group ID
* @param version the version
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the first matching fragment entry version, or null
if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion fetchByGroupId_Version_First(
long groupId, int version,
OrderByComparator orderByComparator) {
return getPersistence().fetchByGroupId_Version_First(
groupId, version, orderByComparator);
}
/**
* Returns the last fragment entry version in the ordered set where groupId = ? and version = ?.
*
* @param groupId the group ID
* @param version the version
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the last matching fragment entry version
* @throws NoSuchEntryVersionException if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion findByGroupId_Version_Last(
long groupId, int version,
OrderByComparator orderByComparator)
throws com.liferay.fragment.exception.NoSuchEntryVersionException {
return getPersistence().findByGroupId_Version_Last(
groupId, version, orderByComparator);
}
/**
* Returns the last fragment entry version in the ordered set where groupId = ? and version = ?.
*
* @param groupId the group ID
* @param version the version
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the last matching fragment entry version, or null
if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion fetchByGroupId_Version_Last(
long groupId, int version,
OrderByComparator orderByComparator) {
return getPersistence().fetchByGroupId_Version_Last(
groupId, version, orderByComparator);
}
/**
* Returns the fragment entry versions before and after the current fragment entry version in the ordered set where groupId = ? and version = ?.
*
* @param fragmentEntryVersionId the primary key of the current fragment entry version
* @param groupId the group ID
* @param version the version
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the previous, current, and next fragment entry version
* @throws NoSuchEntryVersionException if a fragment entry version with the primary key could not be found
*/
public static FragmentEntryVersion[] findByGroupId_Version_PrevAndNext(
long fragmentEntryVersionId, long groupId, int version,
OrderByComparator orderByComparator)
throws com.liferay.fragment.exception.NoSuchEntryVersionException {
return getPersistence().findByGroupId_Version_PrevAndNext(
fragmentEntryVersionId, groupId, version, orderByComparator);
}
/**
* Removes all the fragment entry versions where groupId = ? and version = ? from the database.
*
* @param groupId the group ID
* @param version the version
*/
public static void removeByGroupId_Version(long groupId, int version) {
getPersistence().removeByGroupId_Version(groupId, version);
}
/**
* Returns the number of fragment entry versions where groupId = ? and version = ?.
*
* @param groupId the group ID
* @param version the version
* @return the number of matching fragment entry versions
*/
public static int countByGroupId_Version(long groupId, int version) {
return getPersistence().countByGroupId_Version(groupId, version);
}
/**
* Returns all the fragment entry versions where fragmentCollectionId = ?.
*
* @param fragmentCollectionId the fragment collection ID
* @return the matching fragment entry versions
*/
public static List findByFragmentCollectionId(
long fragmentCollectionId) {
return getPersistence().findByFragmentCollectionId(
fragmentCollectionId);
}
/**
* Returns a range of all the fragment entry versions where fragmentCollectionId = ?.
*
*
* 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 FragmentEntryVersionModelImpl
.
*
*
* @param fragmentCollectionId the fragment collection ID
* @param start the lower bound of the range of fragment entry versions
* @param end the upper bound of the range of fragment entry versions (not inclusive)
* @return the range of matching fragment entry versions
*/
public static List findByFragmentCollectionId(
long fragmentCollectionId, int start, int end) {
return getPersistence().findByFragmentCollectionId(
fragmentCollectionId, start, end);
}
/**
* Returns an ordered range of all the fragment entry versions where fragmentCollectionId = ?.
*
*
* 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 FragmentEntryVersionModelImpl
.
*
*
* @param fragmentCollectionId the fragment collection ID
* @param start the lower bound of the range of fragment entry versions
* @param end the upper bound of the range of fragment entry versions (not inclusive)
* @param orderByComparator the comparator to order the results by (optionally null
)
* @return the ordered range of matching fragment entry versions
*/
public static List findByFragmentCollectionId(
long fragmentCollectionId, int start, int end,
OrderByComparator orderByComparator) {
return getPersistence().findByFragmentCollectionId(
fragmentCollectionId, start, end, orderByComparator);
}
/**
* Returns an ordered range of all the fragment entry versions where fragmentCollectionId = ?.
*
*
* 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 FragmentEntryVersionModelImpl
.
*
*
* @param fragmentCollectionId the fragment collection ID
* @param start the lower bound of the range of fragment entry versions
* @param end the upper bound of the range of fragment entry versions (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 versions
*/
public static List findByFragmentCollectionId(
long fragmentCollectionId, int start, int end,
OrderByComparator orderByComparator,
boolean useFinderCache) {
return getPersistence().findByFragmentCollectionId(
fragmentCollectionId, start, end, orderByComparator,
useFinderCache);
}
/**
* Returns the first fragment entry version in the ordered set where fragmentCollectionId = ?.
*
* @param fragmentCollectionId the fragment collection ID
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the first matching fragment entry version
* @throws NoSuchEntryVersionException if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion findByFragmentCollectionId_First(
long fragmentCollectionId,
OrderByComparator orderByComparator)
throws com.liferay.fragment.exception.NoSuchEntryVersionException {
return getPersistence().findByFragmentCollectionId_First(
fragmentCollectionId, orderByComparator);
}
/**
* Returns the first fragment entry version in the ordered set where fragmentCollectionId = ?.
*
* @param fragmentCollectionId the fragment collection ID
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the first matching fragment entry version, or null
if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion fetchByFragmentCollectionId_First(
long fragmentCollectionId,
OrderByComparator orderByComparator) {
return getPersistence().fetchByFragmentCollectionId_First(
fragmentCollectionId, orderByComparator);
}
/**
* Returns the last fragment entry version in the ordered set where fragmentCollectionId = ?.
*
* @param fragmentCollectionId the fragment collection ID
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the last matching fragment entry version
* @throws NoSuchEntryVersionException if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion findByFragmentCollectionId_Last(
long fragmentCollectionId,
OrderByComparator orderByComparator)
throws com.liferay.fragment.exception.NoSuchEntryVersionException {
return getPersistence().findByFragmentCollectionId_Last(
fragmentCollectionId, orderByComparator);
}
/**
* Returns the last fragment entry version in the ordered set where fragmentCollectionId = ?.
*
* @param fragmentCollectionId the fragment collection ID
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the last matching fragment entry version, or null
if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion fetchByFragmentCollectionId_Last(
long fragmentCollectionId,
OrderByComparator orderByComparator) {
return getPersistence().fetchByFragmentCollectionId_Last(
fragmentCollectionId, orderByComparator);
}
/**
* Returns the fragment entry versions before and after the current fragment entry version in the ordered set where fragmentCollectionId = ?.
*
* @param fragmentEntryVersionId the primary key of the current fragment entry version
* @param fragmentCollectionId the fragment collection ID
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the previous, current, and next fragment entry version
* @throws NoSuchEntryVersionException if a fragment entry version with the primary key could not be found
*/
public static FragmentEntryVersion[] findByFragmentCollectionId_PrevAndNext(
long fragmentEntryVersionId, long fragmentCollectionId,
OrderByComparator orderByComparator)
throws com.liferay.fragment.exception.NoSuchEntryVersionException {
return getPersistence().findByFragmentCollectionId_PrevAndNext(
fragmentEntryVersionId, fragmentCollectionId, orderByComparator);
}
/**
* Removes all the fragment entry versions where fragmentCollectionId = ? from the database.
*
* @param fragmentCollectionId the fragment collection ID
*/
public static void removeByFragmentCollectionId(long fragmentCollectionId) {
getPersistence().removeByFragmentCollectionId(fragmentCollectionId);
}
/**
* Returns the number of fragment entry versions where fragmentCollectionId = ?.
*
* @param fragmentCollectionId the fragment collection ID
* @return the number of matching fragment entry versions
*/
public static int countByFragmentCollectionId(long fragmentCollectionId) {
return getPersistence().countByFragmentCollectionId(
fragmentCollectionId);
}
/**
* Returns all the fragment entry versions where fragmentCollectionId = ? and version = ?.
*
* @param fragmentCollectionId the fragment collection ID
* @param version the version
* @return the matching fragment entry versions
*/
public static List findByFragmentCollectionId_Version(
long fragmentCollectionId, int version) {
return getPersistence().findByFragmentCollectionId_Version(
fragmentCollectionId, version);
}
/**
* Returns a range of all the fragment entry versions where fragmentCollectionId = ? and version = ?.
*
*
* 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 FragmentEntryVersionModelImpl
.
*
*
* @param fragmentCollectionId the fragment collection ID
* @param version the version
* @param start the lower bound of the range of fragment entry versions
* @param end the upper bound of the range of fragment entry versions (not inclusive)
* @return the range of matching fragment entry versions
*/
public static List findByFragmentCollectionId_Version(
long fragmentCollectionId, int version, int start, int end) {
return getPersistence().findByFragmentCollectionId_Version(
fragmentCollectionId, version, start, end);
}
/**
* Returns an ordered range of all the fragment entry versions where fragmentCollectionId = ? and version = ?.
*
*
* 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 FragmentEntryVersionModelImpl
.
*
*
* @param fragmentCollectionId the fragment collection ID
* @param version the version
* @param start the lower bound of the range of fragment entry versions
* @param end the upper bound of the range of fragment entry versions (not inclusive)
* @param orderByComparator the comparator to order the results by (optionally null
)
* @return the ordered range of matching fragment entry versions
*/
public static List findByFragmentCollectionId_Version(
long fragmentCollectionId, int version, int start, int end,
OrderByComparator orderByComparator) {
return getPersistence().findByFragmentCollectionId_Version(
fragmentCollectionId, version, start, end, orderByComparator);
}
/**
* Returns an ordered range of all the fragment entry versions where fragmentCollectionId = ? and version = ?.
*
*
* 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 FragmentEntryVersionModelImpl
.
*
*
* @param fragmentCollectionId the fragment collection ID
* @param version the version
* @param start the lower bound of the range of fragment entry versions
* @param end the upper bound of the range of fragment entry versions (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 versions
*/
public static List findByFragmentCollectionId_Version(
long fragmentCollectionId, int version, int start, int end,
OrderByComparator orderByComparator,
boolean useFinderCache) {
return getPersistence().findByFragmentCollectionId_Version(
fragmentCollectionId, version, start, end, orderByComparator,
useFinderCache);
}
/**
* Returns the first fragment entry version in the ordered set where fragmentCollectionId = ? and version = ?.
*
* @param fragmentCollectionId the fragment collection ID
* @param version the version
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the first matching fragment entry version
* @throws NoSuchEntryVersionException if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion findByFragmentCollectionId_Version_First(
long fragmentCollectionId, int version,
OrderByComparator orderByComparator)
throws com.liferay.fragment.exception.NoSuchEntryVersionException {
return getPersistence().findByFragmentCollectionId_Version_First(
fragmentCollectionId, version, orderByComparator);
}
/**
* Returns the first fragment entry version in the ordered set where fragmentCollectionId = ? and version = ?.
*
* @param fragmentCollectionId the fragment collection ID
* @param version the version
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the first matching fragment entry version, or null
if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion
fetchByFragmentCollectionId_Version_First(
long fragmentCollectionId, int version,
OrderByComparator orderByComparator) {
return getPersistence().fetchByFragmentCollectionId_Version_First(
fragmentCollectionId, version, orderByComparator);
}
/**
* Returns the last fragment entry version in the ordered set where fragmentCollectionId = ? and version = ?.
*
* @param fragmentCollectionId the fragment collection ID
* @param version the version
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the last matching fragment entry version
* @throws NoSuchEntryVersionException if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion findByFragmentCollectionId_Version_Last(
long fragmentCollectionId, int version,
OrderByComparator orderByComparator)
throws com.liferay.fragment.exception.NoSuchEntryVersionException {
return getPersistence().findByFragmentCollectionId_Version_Last(
fragmentCollectionId, version, orderByComparator);
}
/**
* Returns the last fragment entry version in the ordered set where fragmentCollectionId = ? and version = ?.
*
* @param fragmentCollectionId the fragment collection ID
* @param version the version
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the last matching fragment entry version, or null
if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion fetchByFragmentCollectionId_Version_Last(
long fragmentCollectionId, int version,
OrderByComparator orderByComparator) {
return getPersistence().fetchByFragmentCollectionId_Version_Last(
fragmentCollectionId, version, orderByComparator);
}
/**
* Returns the fragment entry versions before and after the current fragment entry version in the ordered set where fragmentCollectionId = ? and version = ?.
*
* @param fragmentEntryVersionId the primary key of the current fragment entry version
* @param fragmentCollectionId the fragment collection ID
* @param version the version
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the previous, current, and next fragment entry version
* @throws NoSuchEntryVersionException if a fragment entry version with the primary key could not be found
*/
public static FragmentEntryVersion[]
findByFragmentCollectionId_Version_PrevAndNext(
long fragmentEntryVersionId, long fragmentCollectionId,
int version,
OrderByComparator orderByComparator)
throws com.liferay.fragment.exception.NoSuchEntryVersionException {
return getPersistence().findByFragmentCollectionId_Version_PrevAndNext(
fragmentEntryVersionId, fragmentCollectionId, version,
orderByComparator);
}
/**
* Removes all the fragment entry versions where fragmentCollectionId = ? and version = ? from the database.
*
* @param fragmentCollectionId the fragment collection ID
* @param version the version
*/
public static void removeByFragmentCollectionId_Version(
long fragmentCollectionId, int version) {
getPersistence().removeByFragmentCollectionId_Version(
fragmentCollectionId, version);
}
/**
* Returns the number of fragment entry versions where fragmentCollectionId = ? and version = ?.
*
* @param fragmentCollectionId the fragment collection ID
* @param version the version
* @return the number of matching fragment entry versions
*/
public static int countByFragmentCollectionId_Version(
long fragmentCollectionId, int version) {
return getPersistence().countByFragmentCollectionId_Version(
fragmentCollectionId, version);
}
/**
* Returns all the fragment entry versions where type = ?.
*
* @param type the type
* @return the matching fragment entry versions
*/
public static List findByType(int type) {
return getPersistence().findByType(type);
}
/**
* Returns a range of all the fragment entry versions where type = ?.
*
*
* 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 FragmentEntryVersionModelImpl
.
*
*
* @param type the type
* @param start the lower bound of the range of fragment entry versions
* @param end the upper bound of the range of fragment entry versions (not inclusive)
* @return the range of matching fragment entry versions
*/
public static List findByType(
int type, int start, int end) {
return getPersistence().findByType(type, start, end);
}
/**
* Returns an ordered range of all the fragment entry versions where type = ?.
*
*
* 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 FragmentEntryVersionModelImpl
.
*
*
* @param type the type
* @param start the lower bound of the range of fragment entry versions
* @param end the upper bound of the range of fragment entry versions (not inclusive)
* @param orderByComparator the comparator to order the results by (optionally null
)
* @return the ordered range of matching fragment entry versions
*/
public static List findByType(
int type, int start, int end,
OrderByComparator orderByComparator) {
return getPersistence().findByType(type, start, end, orderByComparator);
}
/**
* Returns an ordered range of all the fragment entry versions where type = ?.
*
*
* 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 FragmentEntryVersionModelImpl
.
*
*
* @param type the type
* @param start the lower bound of the range of fragment entry versions
* @param end the upper bound of the range of fragment entry versions (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 versions
*/
public static List findByType(
int type, int start, int end,
OrderByComparator orderByComparator,
boolean useFinderCache) {
return getPersistence().findByType(
type, start, end, orderByComparator, useFinderCache);
}
/**
* Returns the first fragment entry version in the ordered set where type = ?.
*
* @param type the type
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the first matching fragment entry version
* @throws NoSuchEntryVersionException if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion findByType_First(
int type, OrderByComparator orderByComparator)
throws com.liferay.fragment.exception.NoSuchEntryVersionException {
return getPersistence().findByType_First(type, orderByComparator);
}
/**
* Returns the first fragment entry version in the ordered set where type = ?.
*
* @param type the type
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the first matching fragment entry version, or null
if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion fetchByType_First(
int type, OrderByComparator orderByComparator) {
return getPersistence().fetchByType_First(type, orderByComparator);
}
/**
* Returns the last fragment entry version in the ordered set where type = ?.
*
* @param type the type
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the last matching fragment entry version
* @throws NoSuchEntryVersionException if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion findByType_Last(
int type, OrderByComparator orderByComparator)
throws com.liferay.fragment.exception.NoSuchEntryVersionException {
return getPersistence().findByType_Last(type, orderByComparator);
}
/**
* Returns the last fragment entry version in the ordered set where type = ?.
*
* @param type the type
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the last matching fragment entry version, or null
if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion fetchByType_Last(
int type, OrderByComparator orderByComparator) {
return getPersistence().fetchByType_Last(type, orderByComparator);
}
/**
* Returns the fragment entry versions before and after the current fragment entry version in the ordered set where type = ?.
*
* @param fragmentEntryVersionId the primary key of the current fragment entry version
* @param type the type
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the previous, current, and next fragment entry version
* @throws NoSuchEntryVersionException if a fragment entry version with the primary key could not be found
*/
public static FragmentEntryVersion[] findByType_PrevAndNext(
long fragmentEntryVersionId, int type,
OrderByComparator orderByComparator)
throws com.liferay.fragment.exception.NoSuchEntryVersionException {
return getPersistence().findByType_PrevAndNext(
fragmentEntryVersionId, type, orderByComparator);
}
/**
* Removes all the fragment entry versions where type = ? from the database.
*
* @param type the type
*/
public static void removeByType(int type) {
getPersistence().removeByType(type);
}
/**
* Returns the number of fragment entry versions where type = ?.
*
* @param type the type
* @return the number of matching fragment entry versions
*/
public static int countByType(int type) {
return getPersistence().countByType(type);
}
/**
* Returns all the fragment entry versions where type = ? and version = ?.
*
* @param type the type
* @param version the version
* @return the matching fragment entry versions
*/
public static List findByType_Version(
int type, int version) {
return getPersistence().findByType_Version(type, version);
}
/**
* Returns a range of all the fragment entry versions where type = ? and version = ?.
*
*
* 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 FragmentEntryVersionModelImpl
.
*
*
* @param type the type
* @param version the version
* @param start the lower bound of the range of fragment entry versions
* @param end the upper bound of the range of fragment entry versions (not inclusive)
* @return the range of matching fragment entry versions
*/
public static List findByType_Version(
int type, int version, int start, int end) {
return getPersistence().findByType_Version(type, version, start, end);
}
/**
* Returns an ordered range of all the fragment entry versions where type = ? and version = ?.
*
*
* 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 FragmentEntryVersionModelImpl
.
*
*
* @param type the type
* @param version the version
* @param start the lower bound of the range of fragment entry versions
* @param end the upper bound of the range of fragment entry versions (not inclusive)
* @param orderByComparator the comparator to order the results by (optionally null
)
* @return the ordered range of matching fragment entry versions
*/
public static List findByType_Version(
int type, int version, int start, int end,
OrderByComparator orderByComparator) {
return getPersistence().findByType_Version(
type, version, start, end, orderByComparator);
}
/**
* Returns an ordered range of all the fragment entry versions where type = ? and version = ?.
*
*
* 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 FragmentEntryVersionModelImpl
.
*
*
* @param type the type
* @param version the version
* @param start the lower bound of the range of fragment entry versions
* @param end the upper bound of the range of fragment entry versions (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 versions
*/
public static List findByType_Version(
int type, int version, int start, int end,
OrderByComparator orderByComparator,
boolean useFinderCache) {
return getPersistence().findByType_Version(
type, version, start, end, orderByComparator, useFinderCache);
}
/**
* Returns the first fragment entry version in the ordered set where type = ? and version = ?.
*
* @param type the type
* @param version the version
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the first matching fragment entry version
* @throws NoSuchEntryVersionException if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion findByType_Version_First(
int type, int version,
OrderByComparator orderByComparator)
throws com.liferay.fragment.exception.NoSuchEntryVersionException {
return getPersistence().findByType_Version_First(
type, version, orderByComparator);
}
/**
* Returns the first fragment entry version in the ordered set where type = ? and version = ?.
*
* @param type the type
* @param version the version
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the first matching fragment entry version, or null
if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion fetchByType_Version_First(
int type, int version,
OrderByComparator orderByComparator) {
return getPersistence().fetchByType_Version_First(
type, version, orderByComparator);
}
/**
* Returns the last fragment entry version in the ordered set where type = ? and version = ?.
*
* @param type the type
* @param version the version
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the last matching fragment entry version
* @throws NoSuchEntryVersionException if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion findByType_Version_Last(
int type, int version,
OrderByComparator orderByComparator)
throws com.liferay.fragment.exception.NoSuchEntryVersionException {
return getPersistence().findByType_Version_Last(
type, version, orderByComparator);
}
/**
* Returns the last fragment entry version in the ordered set where type = ? and version = ?.
*
* @param type the type
* @param version the version
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the last matching fragment entry version, or null
if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion fetchByType_Version_Last(
int type, int version,
OrderByComparator orderByComparator) {
return getPersistence().fetchByType_Version_Last(
type, version, orderByComparator);
}
/**
* Returns the fragment entry versions before and after the current fragment entry version in the ordered set where type = ? and version = ?.
*
* @param fragmentEntryVersionId the primary key of the current fragment entry version
* @param type the type
* @param version the version
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the previous, current, and next fragment entry version
* @throws NoSuchEntryVersionException if a fragment entry version with the primary key could not be found
*/
public static FragmentEntryVersion[] findByType_Version_PrevAndNext(
long fragmentEntryVersionId, int type, int version,
OrderByComparator orderByComparator)
throws com.liferay.fragment.exception.NoSuchEntryVersionException {
return getPersistence().findByType_Version_PrevAndNext(
fragmentEntryVersionId, type, version, orderByComparator);
}
/**
* Removes all the fragment entry versions where type = ? and version = ? from the database.
*
* @param type the type
* @param version the version
*/
public static void removeByType_Version(int type, int version) {
getPersistence().removeByType_Version(type, version);
}
/**
* Returns the number of fragment entry versions where type = ? and version = ?.
*
* @param type the type
* @param version the version
* @return the number of matching fragment entry versions
*/
public static int countByType_Version(int type, int version) {
return getPersistence().countByType_Version(type, version);
}
/**
* Returns all the fragment entry versions where groupId = ? and fragmentCollectionId = ?.
*
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @return the matching fragment entry versions
*/
public static List findByG_FCI(
long groupId, long fragmentCollectionId) {
return getPersistence().findByG_FCI(groupId, fragmentCollectionId);
}
/**
* Returns a range of all the fragment entry versions where groupId = ? and fragmentCollectionId = ?.
*
*
* 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 FragmentEntryVersionModelImpl
.
*
*
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param start the lower bound of the range of fragment entry versions
* @param end the upper bound of the range of fragment entry versions (not inclusive)
* @return the range of matching fragment entry versions
*/
public static List findByG_FCI(
long groupId, long fragmentCollectionId, int start, int end) {
return getPersistence().findByG_FCI(
groupId, fragmentCollectionId, start, end);
}
/**
* Returns an ordered range of all the fragment entry versions where groupId = ? and fragmentCollectionId = ?.
*
*
* 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 FragmentEntryVersionModelImpl
.
*
*
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param start the lower bound of the range of fragment entry versions
* @param end the upper bound of the range of fragment entry versions (not inclusive)
* @param orderByComparator the comparator to order the results by (optionally null
)
* @return the ordered range of matching fragment entry versions
*/
public static List findByG_FCI(
long groupId, long fragmentCollectionId, int start, int end,
OrderByComparator orderByComparator) {
return getPersistence().findByG_FCI(
groupId, fragmentCollectionId, start, end, orderByComparator);
}
/**
* Returns an ordered range of all the fragment entry versions where groupId = ? and fragmentCollectionId = ?.
*
*
* 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 FragmentEntryVersionModelImpl
.
*
*
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param start the lower bound of the range of fragment entry versions
* @param end the upper bound of the range of fragment entry versions (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 versions
*/
public static List findByG_FCI(
long groupId, long fragmentCollectionId, int start, int end,
OrderByComparator orderByComparator,
boolean useFinderCache) {
return getPersistence().findByG_FCI(
groupId, fragmentCollectionId, start, end, orderByComparator,
useFinderCache);
}
/**
* Returns the first fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ?.
*
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the first matching fragment entry version
* @throws NoSuchEntryVersionException if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion findByG_FCI_First(
long groupId, long fragmentCollectionId,
OrderByComparator orderByComparator)
throws com.liferay.fragment.exception.NoSuchEntryVersionException {
return getPersistence().findByG_FCI_First(
groupId, fragmentCollectionId, orderByComparator);
}
/**
* Returns the first fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ?.
*
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the first matching fragment entry version, or null
if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion fetchByG_FCI_First(
long groupId, long fragmentCollectionId,
OrderByComparator orderByComparator) {
return getPersistence().fetchByG_FCI_First(
groupId, fragmentCollectionId, orderByComparator);
}
/**
* Returns the last fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ?.
*
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the last matching fragment entry version
* @throws NoSuchEntryVersionException if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion findByG_FCI_Last(
long groupId, long fragmentCollectionId,
OrderByComparator orderByComparator)
throws com.liferay.fragment.exception.NoSuchEntryVersionException {
return getPersistence().findByG_FCI_Last(
groupId, fragmentCollectionId, orderByComparator);
}
/**
* Returns the last fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ?.
*
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the last matching fragment entry version, or null
if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion fetchByG_FCI_Last(
long groupId, long fragmentCollectionId,
OrderByComparator orderByComparator) {
return getPersistence().fetchByG_FCI_Last(
groupId, fragmentCollectionId, orderByComparator);
}
/**
* Returns the fragment entry versions before and after the current fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ?.
*
* @param fragmentEntryVersionId the primary key of the current fragment entry version
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the previous, current, and next fragment entry version
* @throws NoSuchEntryVersionException if a fragment entry version with the primary key could not be found
*/
public static FragmentEntryVersion[] findByG_FCI_PrevAndNext(
long fragmentEntryVersionId, long groupId,
long fragmentCollectionId,
OrderByComparator orderByComparator)
throws com.liferay.fragment.exception.NoSuchEntryVersionException {
return getPersistence().findByG_FCI_PrevAndNext(
fragmentEntryVersionId, groupId, fragmentCollectionId,
orderByComparator);
}
/**
* Removes all the fragment entry versions where groupId = ? and fragmentCollectionId = ? from the database.
*
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
*/
public static void removeByG_FCI(long groupId, long fragmentCollectionId) {
getPersistence().removeByG_FCI(groupId, fragmentCollectionId);
}
/**
* Returns the number of fragment entry versions where groupId = ? and fragmentCollectionId = ?.
*
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @return the number of matching fragment entry versions
*/
public static int countByG_FCI(long groupId, long fragmentCollectionId) {
return getPersistence().countByG_FCI(groupId, fragmentCollectionId);
}
/**
* Returns all the fragment entry versions where groupId = ? and fragmentCollectionId = ? and version = ?.
*
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param version the version
* @return the matching fragment entry versions
*/
public static List findByG_FCI_Version(
long groupId, long fragmentCollectionId, int version) {
return getPersistence().findByG_FCI_Version(
groupId, fragmentCollectionId, version);
}
/**
* Returns a range of all the fragment entry versions where groupId = ? and fragmentCollectionId = ? and version = ?.
*
*
* 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 FragmentEntryVersionModelImpl
.
*
*
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param version the version
* @param start the lower bound of the range of fragment entry versions
* @param end the upper bound of the range of fragment entry versions (not inclusive)
* @return the range of matching fragment entry versions
*/
public static List findByG_FCI_Version(
long groupId, long fragmentCollectionId, int version, int start,
int end) {
return getPersistence().findByG_FCI_Version(
groupId, fragmentCollectionId, version, start, end);
}
/**
* Returns an ordered range of all the fragment entry versions where groupId = ? and fragmentCollectionId = ? and version = ?.
*
*
* 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 FragmentEntryVersionModelImpl
.
*
*
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param version the version
* @param start the lower bound of the range of fragment entry versions
* @param end the upper bound of the range of fragment entry versions (not inclusive)
* @param orderByComparator the comparator to order the results by (optionally null
)
* @return the ordered range of matching fragment entry versions
*/
public static List findByG_FCI_Version(
long groupId, long fragmentCollectionId, int version, int start,
int end, OrderByComparator orderByComparator) {
return getPersistence().findByG_FCI_Version(
groupId, fragmentCollectionId, version, start, end,
orderByComparator);
}
/**
* Returns an ordered range of all the fragment entry versions where groupId = ? and fragmentCollectionId = ? and version = ?.
*
*
* 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 FragmentEntryVersionModelImpl
.
*
*
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param version the version
* @param start the lower bound of the range of fragment entry versions
* @param end the upper bound of the range of fragment entry versions (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 versions
*/
public static List findByG_FCI_Version(
long groupId, long fragmentCollectionId, int version, int start,
int end, OrderByComparator orderByComparator,
boolean useFinderCache) {
return getPersistence().findByG_FCI_Version(
groupId, fragmentCollectionId, version, start, end,
orderByComparator, useFinderCache);
}
/**
* Returns the first fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ? and version = ?.
*
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param version the version
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the first matching fragment entry version
* @throws NoSuchEntryVersionException if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion findByG_FCI_Version_First(
long groupId, long fragmentCollectionId, int version,
OrderByComparator orderByComparator)
throws com.liferay.fragment.exception.NoSuchEntryVersionException {
return getPersistence().findByG_FCI_Version_First(
groupId, fragmentCollectionId, version, orderByComparator);
}
/**
* Returns the first fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ? and version = ?.
*
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param version the version
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the first matching fragment entry version, or null
if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion fetchByG_FCI_Version_First(
long groupId, long fragmentCollectionId, int version,
OrderByComparator orderByComparator) {
return getPersistence().fetchByG_FCI_Version_First(
groupId, fragmentCollectionId, version, orderByComparator);
}
/**
* Returns the last fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ? and version = ?.
*
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param version the version
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the last matching fragment entry version
* @throws NoSuchEntryVersionException if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion findByG_FCI_Version_Last(
long groupId, long fragmentCollectionId, int version,
OrderByComparator orderByComparator)
throws com.liferay.fragment.exception.NoSuchEntryVersionException {
return getPersistence().findByG_FCI_Version_Last(
groupId, fragmentCollectionId, version, orderByComparator);
}
/**
* Returns the last fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ? and version = ?.
*
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param version the version
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the last matching fragment entry version, or null
if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion fetchByG_FCI_Version_Last(
long groupId, long fragmentCollectionId, int version,
OrderByComparator orderByComparator) {
return getPersistence().fetchByG_FCI_Version_Last(
groupId, fragmentCollectionId, version, orderByComparator);
}
/**
* Returns the fragment entry versions before and after the current fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ? and version = ?.
*
* @param fragmentEntryVersionId the primary key of the current fragment entry version
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param version the version
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the previous, current, and next fragment entry version
* @throws NoSuchEntryVersionException if a fragment entry version with the primary key could not be found
*/
public static FragmentEntryVersion[] findByG_FCI_Version_PrevAndNext(
long fragmentEntryVersionId, long groupId,
long fragmentCollectionId, int version,
OrderByComparator orderByComparator)
throws com.liferay.fragment.exception.NoSuchEntryVersionException {
return getPersistence().findByG_FCI_Version_PrevAndNext(
fragmentEntryVersionId, groupId, fragmentCollectionId, version,
orderByComparator);
}
/**
* Removes all the fragment entry versions where groupId = ? and fragmentCollectionId = ? and version = ? from the database.
*
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param version the version
*/
public static void removeByG_FCI_Version(
long groupId, long fragmentCollectionId, int version) {
getPersistence().removeByG_FCI_Version(
groupId, fragmentCollectionId, version);
}
/**
* Returns the number of fragment entry versions where groupId = ? and fragmentCollectionId = ? and version = ?.
*
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param version the version
* @return the number of matching fragment entry versions
*/
public static int countByG_FCI_Version(
long groupId, long fragmentCollectionId, int version) {
return getPersistence().countByG_FCI_Version(
groupId, fragmentCollectionId, version);
}
/**
* Returns all the fragment entry versions where groupId = ? and fragmentEntryKey = ?.
*
* @param groupId the group ID
* @param fragmentEntryKey the fragment entry key
* @return the matching fragment entry versions
*/
public static List findByG_FEK(
long groupId, String fragmentEntryKey) {
return getPersistence().findByG_FEK(groupId, fragmentEntryKey);
}
/**
* Returns a range of all the fragment entry versions where groupId = ? and fragmentEntryKey = ?.
*
*
* 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 FragmentEntryVersionModelImpl
.
*
*
* @param groupId the group ID
* @param fragmentEntryKey the fragment entry key
* @param start the lower bound of the range of fragment entry versions
* @param end the upper bound of the range of fragment entry versions (not inclusive)
* @return the range of matching fragment entry versions
*/
public static List findByG_FEK(
long groupId, String fragmentEntryKey, int start, int end) {
return getPersistence().findByG_FEK(
groupId, fragmentEntryKey, start, end);
}
/**
* Returns an ordered range of all the fragment entry versions where groupId = ? and fragmentEntryKey = ?.
*
*
* 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 FragmentEntryVersionModelImpl
.
*
*
* @param groupId the group ID
* @param fragmentEntryKey the fragment entry key
* @param start the lower bound of the range of fragment entry versions
* @param end the upper bound of the range of fragment entry versions (not inclusive)
* @param orderByComparator the comparator to order the results by (optionally null
)
* @return the ordered range of matching fragment entry versions
*/
public static List findByG_FEK(
long groupId, String fragmentEntryKey, int start, int end,
OrderByComparator orderByComparator) {
return getPersistence().findByG_FEK(
groupId, fragmentEntryKey, start, end, orderByComparator);
}
/**
* Returns an ordered range of all the fragment entry versions where groupId = ? and fragmentEntryKey = ?.
*
*
* 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 FragmentEntryVersionModelImpl
.
*
*
* @param groupId the group ID
* @param fragmentEntryKey the fragment entry key
* @param start the lower bound of the range of fragment entry versions
* @param end the upper bound of the range of fragment entry versions (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 versions
*/
public static List findByG_FEK(
long groupId, String fragmentEntryKey, int start, int end,
OrderByComparator orderByComparator,
boolean useFinderCache) {
return getPersistence().findByG_FEK(
groupId, fragmentEntryKey, start, end, orderByComparator,
useFinderCache);
}
/**
* Returns the first fragment entry version in the ordered set where groupId = ? and fragmentEntryKey = ?.
*
* @param groupId the group ID
* @param fragmentEntryKey the fragment entry key
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the first matching fragment entry version
* @throws NoSuchEntryVersionException if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion findByG_FEK_First(
long groupId, String fragmentEntryKey,
OrderByComparator orderByComparator)
throws com.liferay.fragment.exception.NoSuchEntryVersionException {
return getPersistence().findByG_FEK_First(
groupId, fragmentEntryKey, orderByComparator);
}
/**
* Returns the first fragment entry version in the ordered set where groupId = ? and fragmentEntryKey = ?.
*
* @param groupId the group ID
* @param fragmentEntryKey the fragment entry key
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the first matching fragment entry version, or null
if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion fetchByG_FEK_First(
long groupId, String fragmentEntryKey,
OrderByComparator orderByComparator) {
return getPersistence().fetchByG_FEK_First(
groupId, fragmentEntryKey, orderByComparator);
}
/**
* Returns the last fragment entry version in the ordered set where groupId = ? and fragmentEntryKey = ?.
*
* @param groupId the group ID
* @param fragmentEntryKey the fragment entry key
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the last matching fragment entry version
* @throws NoSuchEntryVersionException if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion findByG_FEK_Last(
long groupId, String fragmentEntryKey,
OrderByComparator orderByComparator)
throws com.liferay.fragment.exception.NoSuchEntryVersionException {
return getPersistence().findByG_FEK_Last(
groupId, fragmentEntryKey, orderByComparator);
}
/**
* Returns the last fragment entry version in the ordered set where groupId = ? and fragmentEntryKey = ?.
*
* @param groupId the group ID
* @param fragmentEntryKey the fragment entry key
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the last matching fragment entry version, or null
if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion fetchByG_FEK_Last(
long groupId, String fragmentEntryKey,
OrderByComparator orderByComparator) {
return getPersistence().fetchByG_FEK_Last(
groupId, fragmentEntryKey, orderByComparator);
}
/**
* Returns the fragment entry versions before and after the current fragment entry version in the ordered set where groupId = ? and fragmentEntryKey = ?.
*
* @param fragmentEntryVersionId the primary key of the current fragment entry version
* @param groupId the group ID
* @param fragmentEntryKey the fragment entry key
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the previous, current, and next fragment entry version
* @throws NoSuchEntryVersionException if a fragment entry version with the primary key could not be found
*/
public static FragmentEntryVersion[] findByG_FEK_PrevAndNext(
long fragmentEntryVersionId, long groupId, String fragmentEntryKey,
OrderByComparator orderByComparator)
throws com.liferay.fragment.exception.NoSuchEntryVersionException {
return getPersistence().findByG_FEK_PrevAndNext(
fragmentEntryVersionId, groupId, fragmentEntryKey,
orderByComparator);
}
/**
* Removes all the fragment entry versions where groupId = ? and fragmentEntryKey = ? from the database.
*
* @param groupId the group ID
* @param fragmentEntryKey the fragment entry key
*/
public static void removeByG_FEK(long groupId, String fragmentEntryKey) {
getPersistence().removeByG_FEK(groupId, fragmentEntryKey);
}
/**
* Returns the number of fragment entry versions where groupId = ? and fragmentEntryKey = ?.
*
* @param groupId the group ID
* @param fragmentEntryKey the fragment entry key
* @return the number of matching fragment entry versions
*/
public static int countByG_FEK(long groupId, String fragmentEntryKey) {
return getPersistence().countByG_FEK(groupId, fragmentEntryKey);
}
/**
* Returns the fragment entry version where groupId = ? and fragmentEntryKey = ? and version = ? or throws a NoSuchEntryVersionException
if it could not be found.
*
* @param groupId the group ID
* @param fragmentEntryKey the fragment entry key
* @param version the version
* @return the matching fragment entry version
* @throws NoSuchEntryVersionException if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion findByG_FEK_Version(
long groupId, String fragmentEntryKey, int version)
throws com.liferay.fragment.exception.NoSuchEntryVersionException {
return getPersistence().findByG_FEK_Version(
groupId, fragmentEntryKey, version);
}
/**
* Returns the fragment entry version where groupId = ? and fragmentEntryKey = ? and version = ? or returns null
if it could not be found. Uses the finder cache.
*
* @param groupId the group ID
* @param fragmentEntryKey the fragment entry key
* @param version the version
* @return the matching fragment entry version, or null
if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion fetchByG_FEK_Version(
long groupId, String fragmentEntryKey, int version) {
return getPersistence().fetchByG_FEK_Version(
groupId, fragmentEntryKey, version);
}
/**
* Returns the fragment entry version where groupId = ? and fragmentEntryKey = ? and version = ? or returns null
if it could not be found, optionally using the finder cache.
*
* @param groupId the group ID
* @param fragmentEntryKey the fragment entry key
* @param version the version
* @param useFinderCache whether to use the finder cache
* @return the matching fragment entry version, or null
if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion fetchByG_FEK_Version(
long groupId, String fragmentEntryKey, int version,
boolean useFinderCache) {
return getPersistence().fetchByG_FEK_Version(
groupId, fragmentEntryKey, version, useFinderCache);
}
/**
* Removes the fragment entry version where groupId = ? and fragmentEntryKey = ? and version = ? from the database.
*
* @param groupId the group ID
* @param fragmentEntryKey the fragment entry key
* @param version the version
* @return the fragment entry version that was removed
*/
public static FragmentEntryVersion removeByG_FEK_Version(
long groupId, String fragmentEntryKey, int version)
throws com.liferay.fragment.exception.NoSuchEntryVersionException {
return getPersistence().removeByG_FEK_Version(
groupId, fragmentEntryKey, version);
}
/**
* Returns the number of fragment entry versions where groupId = ? and fragmentEntryKey = ? and version = ?.
*
* @param groupId the group ID
* @param fragmentEntryKey the fragment entry key
* @param version the version
* @return the number of matching fragment entry versions
*/
public static int countByG_FEK_Version(
long groupId, String fragmentEntryKey, int version) {
return getPersistence().countByG_FEK_Version(
groupId, fragmentEntryKey, version);
}
/**
* Returns all the fragment entry versions where groupId = ? and fragmentCollectionId = ? and name = ?.
*
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param name the name
* @return the matching fragment entry versions
*/
public static List findByG_FCI_LikeN(
long groupId, long fragmentCollectionId, String name) {
return getPersistence().findByG_FCI_LikeN(
groupId, fragmentCollectionId, name);
}
/**
* Returns a range of all the fragment entry versions where groupId = ? and fragmentCollectionId = ? and name = ?.
*
*
* 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 FragmentEntryVersionModelImpl
.
*
*
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param name the name
* @param start the lower bound of the range of fragment entry versions
* @param end the upper bound of the range of fragment entry versions (not inclusive)
* @return the range of matching fragment entry versions
*/
public static List findByG_FCI_LikeN(
long groupId, long fragmentCollectionId, String name, int start,
int end) {
return getPersistence().findByG_FCI_LikeN(
groupId, fragmentCollectionId, name, start, end);
}
/**
* Returns an ordered range of all the fragment entry versions where groupId = ? and fragmentCollectionId = ? and name = ?.
*
*
* 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 FragmentEntryVersionModelImpl
.
*
*
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param name the name
* @param start the lower bound of the range of fragment entry versions
* @param end the upper bound of the range of fragment entry versions (not inclusive)
* @param orderByComparator the comparator to order the results by (optionally null
)
* @return the ordered range of matching fragment entry versions
*/
public static List findByG_FCI_LikeN(
long groupId, long fragmentCollectionId, String name, int start,
int end, OrderByComparator orderByComparator) {
return getPersistence().findByG_FCI_LikeN(
groupId, fragmentCollectionId, name, start, end, orderByComparator);
}
/**
* Returns an ordered range of all the fragment entry versions where groupId = ? and fragmentCollectionId = ? and name = ?.
*
*
* 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 FragmentEntryVersionModelImpl
.
*
*
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param name the name
* @param start the lower bound of the range of fragment entry versions
* @param end the upper bound of the range of fragment entry versions (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 versions
*/
public static List findByG_FCI_LikeN(
long groupId, long fragmentCollectionId, String name, int start,
int end, OrderByComparator orderByComparator,
boolean useFinderCache) {
return getPersistence().findByG_FCI_LikeN(
groupId, fragmentCollectionId, name, start, end, orderByComparator,
useFinderCache);
}
/**
* Returns the first fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ? and name = ?.
*
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param name the name
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the first matching fragment entry version
* @throws NoSuchEntryVersionException if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion findByG_FCI_LikeN_First(
long groupId, long fragmentCollectionId, String name,
OrderByComparator orderByComparator)
throws com.liferay.fragment.exception.NoSuchEntryVersionException {
return getPersistence().findByG_FCI_LikeN_First(
groupId, fragmentCollectionId, name, orderByComparator);
}
/**
* Returns the first fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ? and name = ?.
*
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param name the name
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the first matching fragment entry version, or null
if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion fetchByG_FCI_LikeN_First(
long groupId, long fragmentCollectionId, String name,
OrderByComparator orderByComparator) {
return getPersistence().fetchByG_FCI_LikeN_First(
groupId, fragmentCollectionId, name, orderByComparator);
}
/**
* Returns the last fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ? and name = ?.
*
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param name the name
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the last matching fragment entry version
* @throws NoSuchEntryVersionException if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion findByG_FCI_LikeN_Last(
long groupId, long fragmentCollectionId, String name,
OrderByComparator orderByComparator)
throws com.liferay.fragment.exception.NoSuchEntryVersionException {
return getPersistence().findByG_FCI_LikeN_Last(
groupId, fragmentCollectionId, name, orderByComparator);
}
/**
* Returns the last fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ? and name = ?.
*
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param name the name
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the last matching fragment entry version, or null
if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion fetchByG_FCI_LikeN_Last(
long groupId, long fragmentCollectionId, String name,
OrderByComparator orderByComparator) {
return getPersistence().fetchByG_FCI_LikeN_Last(
groupId, fragmentCollectionId, name, orderByComparator);
}
/**
* Returns the fragment entry versions before and after the current fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ? and name = ?.
*
* @param fragmentEntryVersionId the primary key of the current fragment entry version
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param name the name
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the previous, current, and next fragment entry version
* @throws NoSuchEntryVersionException if a fragment entry version with the primary key could not be found
*/
public static FragmentEntryVersion[] findByG_FCI_LikeN_PrevAndNext(
long fragmentEntryVersionId, long groupId,
long fragmentCollectionId, String name,
OrderByComparator orderByComparator)
throws com.liferay.fragment.exception.NoSuchEntryVersionException {
return getPersistence().findByG_FCI_LikeN_PrevAndNext(
fragmentEntryVersionId, groupId, fragmentCollectionId, name,
orderByComparator);
}
/**
* Removes all the fragment entry versions where groupId = ? and fragmentCollectionId = ? and name = ? from the database.
*
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param name the name
*/
public static void removeByG_FCI_LikeN(
long groupId, long fragmentCollectionId, String name) {
getPersistence().removeByG_FCI_LikeN(
groupId, fragmentCollectionId, name);
}
/**
* Returns the number of fragment entry versions where groupId = ? and fragmentCollectionId = ? and name = ?.
*
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param name the name
* @return the number of matching fragment entry versions
*/
public static int countByG_FCI_LikeN(
long groupId, long fragmentCollectionId, String name) {
return getPersistence().countByG_FCI_LikeN(
groupId, fragmentCollectionId, name);
}
/**
* Returns all the fragment entry versions where groupId = ? and fragmentCollectionId = ? and name = ? and version = ?.
*
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param name the name
* @param version the version
* @return the matching fragment entry versions
*/
public static List findByG_FCI_LikeN_Version(
long groupId, long fragmentCollectionId, String name, int version) {
return getPersistence().findByG_FCI_LikeN_Version(
groupId, fragmentCollectionId, name, version);
}
/**
* Returns a range of all the fragment entry versions where groupId = ? and fragmentCollectionId = ? and name = ? and version = ?.
*
*
* 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 FragmentEntryVersionModelImpl
.
*
*
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param name the name
* @param version the version
* @param start the lower bound of the range of fragment entry versions
* @param end the upper bound of the range of fragment entry versions (not inclusive)
* @return the range of matching fragment entry versions
*/
public static List findByG_FCI_LikeN_Version(
long groupId, long fragmentCollectionId, String name, int version,
int start, int end) {
return getPersistence().findByG_FCI_LikeN_Version(
groupId, fragmentCollectionId, name, version, start, end);
}
/**
* Returns an ordered range of all the fragment entry versions where groupId = ? and fragmentCollectionId = ? and name = ? and version = ?.
*
*
* 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 FragmentEntryVersionModelImpl
.
*
*
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param name the name
* @param version the version
* @param start the lower bound of the range of fragment entry versions
* @param end the upper bound of the range of fragment entry versions (not inclusive)
* @param orderByComparator the comparator to order the results by (optionally null
)
* @return the ordered range of matching fragment entry versions
*/
public static List findByG_FCI_LikeN_Version(
long groupId, long fragmentCollectionId, String name, int version,
int start, int end,
OrderByComparator orderByComparator) {
return getPersistence().findByG_FCI_LikeN_Version(
groupId, fragmentCollectionId, name, version, start, end,
orderByComparator);
}
/**
* Returns an ordered range of all the fragment entry versions where groupId = ? and fragmentCollectionId = ? and name = ? and version = ?.
*
*
* 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 FragmentEntryVersionModelImpl
.
*
*
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param name the name
* @param version the version
* @param start the lower bound of the range of fragment entry versions
* @param end the upper bound of the range of fragment entry versions (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 versions
*/
public static List findByG_FCI_LikeN_Version(
long groupId, long fragmentCollectionId, String name, int version,
int start, int end,
OrderByComparator orderByComparator,
boolean useFinderCache) {
return getPersistence().findByG_FCI_LikeN_Version(
groupId, fragmentCollectionId, name, version, start, end,
orderByComparator, useFinderCache);
}
/**
* Returns the first fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ? and name = ? and version = ?.
*
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param name the name
* @param version the version
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the first matching fragment entry version
* @throws NoSuchEntryVersionException if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion findByG_FCI_LikeN_Version_First(
long groupId, long fragmentCollectionId, String name, int version,
OrderByComparator orderByComparator)
throws com.liferay.fragment.exception.NoSuchEntryVersionException {
return getPersistence().findByG_FCI_LikeN_Version_First(
groupId, fragmentCollectionId, name, version, orderByComparator);
}
/**
* Returns the first fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ? and name = ? and version = ?.
*
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param name the name
* @param version the version
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the first matching fragment entry version, or null
if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion fetchByG_FCI_LikeN_Version_First(
long groupId, long fragmentCollectionId, String name, int version,
OrderByComparator orderByComparator) {
return getPersistence().fetchByG_FCI_LikeN_Version_First(
groupId, fragmentCollectionId, name, version, orderByComparator);
}
/**
* Returns the last fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ? and name = ? and version = ?.
*
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param name the name
* @param version the version
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the last matching fragment entry version
* @throws NoSuchEntryVersionException if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion findByG_FCI_LikeN_Version_Last(
long groupId, long fragmentCollectionId, String name, int version,
OrderByComparator orderByComparator)
throws com.liferay.fragment.exception.NoSuchEntryVersionException {
return getPersistence().findByG_FCI_LikeN_Version_Last(
groupId, fragmentCollectionId, name, version, orderByComparator);
}
/**
* Returns the last fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ? and name = ? and version = ?.
*
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param name the name
* @param version the version
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the last matching fragment entry version, or null
if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion fetchByG_FCI_LikeN_Version_Last(
long groupId, long fragmentCollectionId, String name, int version,
OrderByComparator orderByComparator) {
return getPersistence().fetchByG_FCI_LikeN_Version_Last(
groupId, fragmentCollectionId, name, version, orderByComparator);
}
/**
* Returns the fragment entry versions before and after the current fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ? and name = ? and version = ?.
*
* @param fragmentEntryVersionId the primary key of the current fragment entry version
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param name the name
* @param version the version
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the previous, current, and next fragment entry version
* @throws NoSuchEntryVersionException if a fragment entry version with the primary key could not be found
*/
public static FragmentEntryVersion[] findByG_FCI_LikeN_Version_PrevAndNext(
long fragmentEntryVersionId, long groupId,
long fragmentCollectionId, String name, int version,
OrderByComparator orderByComparator)
throws com.liferay.fragment.exception.NoSuchEntryVersionException {
return getPersistence().findByG_FCI_LikeN_Version_PrevAndNext(
fragmentEntryVersionId, groupId, fragmentCollectionId, name,
version, orderByComparator);
}
/**
* Removes all the fragment entry versions where groupId = ? and fragmentCollectionId = ? and name = ? and version = ? from the database.
*
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param name the name
* @param version the version
*/
public static void removeByG_FCI_LikeN_Version(
long groupId, long fragmentCollectionId, String name, int version) {
getPersistence().removeByG_FCI_LikeN_Version(
groupId, fragmentCollectionId, name, version);
}
/**
* Returns the number of fragment entry versions where groupId = ? and fragmentCollectionId = ? and name = ? and version = ?.
*
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param name the name
* @param version the version
* @return the number of matching fragment entry versions
*/
public static int countByG_FCI_LikeN_Version(
long groupId, long fragmentCollectionId, String name, int version) {
return getPersistence().countByG_FCI_LikeN_Version(
groupId, fragmentCollectionId, name, version);
}
/**
* Returns all the fragment entry versions where groupId = ? and fragmentCollectionId = ? and type = ?.
*
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param type the type
* @return the matching fragment entry versions
*/
public static List findByG_FCI_T(
long groupId, long fragmentCollectionId, int type) {
return getPersistence().findByG_FCI_T(
groupId, fragmentCollectionId, type);
}
/**
* Returns a range of all the fragment entry versions where groupId = ? and fragmentCollectionId = ? and type = ?.
*
*
* 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 FragmentEntryVersionModelImpl
.
*
*
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param type the type
* @param start the lower bound of the range of fragment entry versions
* @param end the upper bound of the range of fragment entry versions (not inclusive)
* @return the range of matching fragment entry versions
*/
public static List findByG_FCI_T(
long groupId, long fragmentCollectionId, int type, int start, int end) {
return getPersistence().findByG_FCI_T(
groupId, fragmentCollectionId, type, start, end);
}
/**
* Returns an ordered range of all the fragment entry versions where groupId = ? and fragmentCollectionId = ? and type = ?.
*
*
* 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 FragmentEntryVersionModelImpl
.
*
*
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param type the type
* @param start the lower bound of the range of fragment entry versions
* @param end the upper bound of the range of fragment entry versions (not inclusive)
* @param orderByComparator the comparator to order the results by (optionally null
)
* @return the ordered range of matching fragment entry versions
*/
public static List findByG_FCI_T(
long groupId, long fragmentCollectionId, int type, int start, int end,
OrderByComparator orderByComparator) {
return getPersistence().findByG_FCI_T(
groupId, fragmentCollectionId, type, start, end, orderByComparator);
}
/**
* Returns an ordered range of all the fragment entry versions where groupId = ? and fragmentCollectionId = ? and type = ?.
*
*
* 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 FragmentEntryVersionModelImpl
.
*
*
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param type the type
* @param start the lower bound of the range of fragment entry versions
* @param end the upper bound of the range of fragment entry versions (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 versions
*/
public static List findByG_FCI_T(
long groupId, long fragmentCollectionId, int type, int start, int end,
OrderByComparator orderByComparator,
boolean useFinderCache) {
return getPersistence().findByG_FCI_T(
groupId, fragmentCollectionId, type, start, end, orderByComparator,
useFinderCache);
}
/**
* Returns the first fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ? and type = ?.
*
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param type the type
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the first matching fragment entry version
* @throws NoSuchEntryVersionException if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion findByG_FCI_T_First(
long groupId, long fragmentCollectionId, int type,
OrderByComparator orderByComparator)
throws com.liferay.fragment.exception.NoSuchEntryVersionException {
return getPersistence().findByG_FCI_T_First(
groupId, fragmentCollectionId, type, orderByComparator);
}
/**
* Returns the first fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ? and type = ?.
*
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param type the type
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the first matching fragment entry version, or null
if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion fetchByG_FCI_T_First(
long groupId, long fragmentCollectionId, int type,
OrderByComparator orderByComparator) {
return getPersistence().fetchByG_FCI_T_First(
groupId, fragmentCollectionId, type, orderByComparator);
}
/**
* Returns the last fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ? and type = ?.
*
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param type the type
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the last matching fragment entry version
* @throws NoSuchEntryVersionException if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion findByG_FCI_T_Last(
long groupId, long fragmentCollectionId, int type,
OrderByComparator orderByComparator)
throws com.liferay.fragment.exception.NoSuchEntryVersionException {
return getPersistence().findByG_FCI_T_Last(
groupId, fragmentCollectionId, type, orderByComparator);
}
/**
* Returns the last fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ? and type = ?.
*
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param type the type
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the last matching fragment entry version, or null
if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion fetchByG_FCI_T_Last(
long groupId, long fragmentCollectionId, int type,
OrderByComparator orderByComparator) {
return getPersistence().fetchByG_FCI_T_Last(
groupId, fragmentCollectionId, type, orderByComparator);
}
/**
* Returns the fragment entry versions before and after the current fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ? and type = ?.
*
* @param fragmentEntryVersionId the primary key of the current fragment entry version
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param type the type
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the previous, current, and next fragment entry version
* @throws NoSuchEntryVersionException if a fragment entry version with the primary key could not be found
*/
public static FragmentEntryVersion[] findByG_FCI_T_PrevAndNext(
long fragmentEntryVersionId, long groupId,
long fragmentCollectionId, int type,
OrderByComparator orderByComparator)
throws com.liferay.fragment.exception.NoSuchEntryVersionException {
return getPersistence().findByG_FCI_T_PrevAndNext(
fragmentEntryVersionId, groupId, fragmentCollectionId, type,
orderByComparator);
}
/**
* Removes all the fragment entry versions where groupId = ? and fragmentCollectionId = ? and type = ? from the database.
*
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param type the type
*/
public static void removeByG_FCI_T(
long groupId, long fragmentCollectionId, int type) {
getPersistence().removeByG_FCI_T(groupId, fragmentCollectionId, type);
}
/**
* Returns the number of fragment entry versions where groupId = ? and fragmentCollectionId = ? and type = ?.
*
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param type the type
* @return the number of matching fragment entry versions
*/
public static int countByG_FCI_T(
long groupId, long fragmentCollectionId, int type) {
return getPersistence().countByG_FCI_T(
groupId, fragmentCollectionId, type);
}
/**
* Returns all the fragment entry versions where groupId = ? and fragmentCollectionId = ? and type = ? and version = ?.
*
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param type the type
* @param version the version
* @return the matching fragment entry versions
*/
public static List findByG_FCI_T_Version(
long groupId, long fragmentCollectionId, int type, int version) {
return getPersistence().findByG_FCI_T_Version(
groupId, fragmentCollectionId, type, version);
}
/**
* Returns a range of all the fragment entry versions where groupId = ? and fragmentCollectionId = ? and type = ? and version = ?.
*
*
* 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 FragmentEntryVersionModelImpl
.
*
*
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param type the type
* @param version the version
* @param start the lower bound of the range of fragment entry versions
* @param end the upper bound of the range of fragment entry versions (not inclusive)
* @return the range of matching fragment entry versions
*/
public static List findByG_FCI_T_Version(
long groupId, long fragmentCollectionId, int type, int version,
int start, int end) {
return getPersistence().findByG_FCI_T_Version(
groupId, fragmentCollectionId, type, version, start, end);
}
/**
* Returns an ordered range of all the fragment entry versions where groupId = ? and fragmentCollectionId = ? and type = ? and version = ?.
*
*
* 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 FragmentEntryVersionModelImpl
.
*
*
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param type the type
* @param version the version
* @param start the lower bound of the range of fragment entry versions
* @param end the upper bound of the range of fragment entry versions (not inclusive)
* @param orderByComparator the comparator to order the results by (optionally null
)
* @return the ordered range of matching fragment entry versions
*/
public static List findByG_FCI_T_Version(
long groupId, long fragmentCollectionId, int type, int version,
int start, int end,
OrderByComparator orderByComparator) {
return getPersistence().findByG_FCI_T_Version(
groupId, fragmentCollectionId, type, version, start, end,
orderByComparator);
}
/**
* Returns an ordered range of all the fragment entry versions where groupId = ? and fragmentCollectionId = ? and type = ? and version = ?.
*
*
* 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 FragmentEntryVersionModelImpl
.
*
*
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param type the type
* @param version the version
* @param start the lower bound of the range of fragment entry versions
* @param end the upper bound of the range of fragment entry versions (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 versions
*/
public static List findByG_FCI_T_Version(
long groupId, long fragmentCollectionId, int type, int version,
int start, int end,
OrderByComparator orderByComparator,
boolean useFinderCache) {
return getPersistence().findByG_FCI_T_Version(
groupId, fragmentCollectionId, type, version, start, end,
orderByComparator, useFinderCache);
}
/**
* Returns the first fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ? and type = ? and version = ?.
*
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param type the type
* @param version the version
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the first matching fragment entry version
* @throws NoSuchEntryVersionException if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion findByG_FCI_T_Version_First(
long groupId, long fragmentCollectionId, int type, int version,
OrderByComparator orderByComparator)
throws com.liferay.fragment.exception.NoSuchEntryVersionException {
return getPersistence().findByG_FCI_T_Version_First(
groupId, fragmentCollectionId, type, version, orderByComparator);
}
/**
* Returns the first fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ? and type = ? and version = ?.
*
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param type the type
* @param version the version
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the first matching fragment entry version, or null
if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion fetchByG_FCI_T_Version_First(
long groupId, long fragmentCollectionId, int type, int version,
OrderByComparator orderByComparator) {
return getPersistence().fetchByG_FCI_T_Version_First(
groupId, fragmentCollectionId, type, version, orderByComparator);
}
/**
* Returns the last fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ? and type = ? and version = ?.
*
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param type the type
* @param version the version
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the last matching fragment entry version
* @throws NoSuchEntryVersionException if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion findByG_FCI_T_Version_Last(
long groupId, long fragmentCollectionId, int type, int version,
OrderByComparator orderByComparator)
throws com.liferay.fragment.exception.NoSuchEntryVersionException {
return getPersistence().findByG_FCI_T_Version_Last(
groupId, fragmentCollectionId, type, version, orderByComparator);
}
/**
* Returns the last fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ? and type = ? and version = ?.
*
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param type the type
* @param version the version
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the last matching fragment entry version, or null
if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion fetchByG_FCI_T_Version_Last(
long groupId, long fragmentCollectionId, int type, int version,
OrderByComparator orderByComparator) {
return getPersistence().fetchByG_FCI_T_Version_Last(
groupId, fragmentCollectionId, type, version, orderByComparator);
}
/**
* Returns the fragment entry versions before and after the current fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ? and type = ? and version = ?.
*
* @param fragmentEntryVersionId the primary key of the current fragment entry version
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param type the type
* @param version the version
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the previous, current, and next fragment entry version
* @throws NoSuchEntryVersionException if a fragment entry version with the primary key could not be found
*/
public static FragmentEntryVersion[] findByG_FCI_T_Version_PrevAndNext(
long fragmentEntryVersionId, long groupId,
long fragmentCollectionId, int type, int version,
OrderByComparator orderByComparator)
throws com.liferay.fragment.exception.NoSuchEntryVersionException {
return getPersistence().findByG_FCI_T_Version_PrevAndNext(
fragmentEntryVersionId, groupId, fragmentCollectionId, type,
version, orderByComparator);
}
/**
* Removes all the fragment entry versions where groupId = ? and fragmentCollectionId = ? and type = ? and version = ? from the database.
*
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param type the type
* @param version the version
*/
public static void removeByG_FCI_T_Version(
long groupId, long fragmentCollectionId, int type, int version) {
getPersistence().removeByG_FCI_T_Version(
groupId, fragmentCollectionId, type, version);
}
/**
* Returns the number of fragment entry versions where groupId = ? and fragmentCollectionId = ? and type = ? and version = ?.
*
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param type the type
* @param version the version
* @return the number of matching fragment entry versions
*/
public static int countByG_FCI_T_Version(
long groupId, long fragmentCollectionId, int type, int version) {
return getPersistence().countByG_FCI_T_Version(
groupId, fragmentCollectionId, type, version);
}
/**
* Returns all the fragment entry versions where groupId = ? and fragmentCollectionId = ? and status = ?.
*
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param status the status
* @return the matching fragment entry versions
*/
public static List findByG_FCI_S(
long groupId, long fragmentCollectionId, int status) {
return getPersistence().findByG_FCI_S(
groupId, fragmentCollectionId, status);
}
/**
* Returns a range of all the fragment entry versions where groupId = ? and fragmentCollectionId = ? and status = ?.
*
*
* 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 FragmentEntryVersionModelImpl
.
*
*
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param status the status
* @param start the lower bound of the range of fragment entry versions
* @param end the upper bound of the range of fragment entry versions (not inclusive)
* @return the range of matching fragment entry versions
*/
public static List findByG_FCI_S(
long groupId, long fragmentCollectionId, int status, int start,
int end) {
return getPersistence().findByG_FCI_S(
groupId, fragmentCollectionId, status, start, end);
}
/**
* Returns an ordered range of all the fragment entry versions where groupId = ? and fragmentCollectionId = ? and status = ?.
*
*
* 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 FragmentEntryVersionModelImpl
.
*
*
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param status the status
* @param start the lower bound of the range of fragment entry versions
* @param end the upper bound of the range of fragment entry versions (not inclusive)
* @param orderByComparator the comparator to order the results by (optionally null
)
* @return the ordered range of matching fragment entry versions
*/
public static List findByG_FCI_S(
long groupId, long fragmentCollectionId, int status, int start, int end,
OrderByComparator orderByComparator) {
return getPersistence().findByG_FCI_S(
groupId, fragmentCollectionId, status, start, end,
orderByComparator);
}
/**
* Returns an ordered range of all the fragment entry versions where groupId = ? and fragmentCollectionId = ? and status = ?.
*
*
* 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 FragmentEntryVersionModelImpl
.
*
*
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param status the status
* @param start the lower bound of the range of fragment entry versions
* @param end the upper bound of the range of fragment entry versions (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 versions
*/
public static List findByG_FCI_S(
long groupId, long fragmentCollectionId, int status, int start, int end,
OrderByComparator orderByComparator,
boolean useFinderCache) {
return getPersistence().findByG_FCI_S(
groupId, fragmentCollectionId, status, start, end,
orderByComparator, useFinderCache);
}
/**
* Returns the first fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ? and status = ?.
*
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param status the status
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the first matching fragment entry version
* @throws NoSuchEntryVersionException if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion findByG_FCI_S_First(
long groupId, long fragmentCollectionId, int status,
OrderByComparator orderByComparator)
throws com.liferay.fragment.exception.NoSuchEntryVersionException {
return getPersistence().findByG_FCI_S_First(
groupId, fragmentCollectionId, status, orderByComparator);
}
/**
* Returns the first fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ? and status = ?.
*
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param status the status
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the first matching fragment entry version, or null
if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion fetchByG_FCI_S_First(
long groupId, long fragmentCollectionId, int status,
OrderByComparator orderByComparator) {
return getPersistence().fetchByG_FCI_S_First(
groupId, fragmentCollectionId, status, orderByComparator);
}
/**
* Returns the last fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ? and status = ?.
*
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param status the status
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the last matching fragment entry version
* @throws NoSuchEntryVersionException if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion findByG_FCI_S_Last(
long groupId, long fragmentCollectionId, int status,
OrderByComparator orderByComparator)
throws com.liferay.fragment.exception.NoSuchEntryVersionException {
return getPersistence().findByG_FCI_S_Last(
groupId, fragmentCollectionId, status, orderByComparator);
}
/**
* Returns the last fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ? and status = ?.
*
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param status the status
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the last matching fragment entry version, or null
if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion fetchByG_FCI_S_Last(
long groupId, long fragmentCollectionId, int status,
OrderByComparator orderByComparator) {
return getPersistence().fetchByG_FCI_S_Last(
groupId, fragmentCollectionId, status, orderByComparator);
}
/**
* Returns the fragment entry versions before and after the current fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ? and status = ?.
*
* @param fragmentEntryVersionId the primary key of the current fragment entry version
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param status the status
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the previous, current, and next fragment entry version
* @throws NoSuchEntryVersionException if a fragment entry version with the primary key could not be found
*/
public static FragmentEntryVersion[] findByG_FCI_S_PrevAndNext(
long fragmentEntryVersionId, long groupId,
long fragmentCollectionId, int status,
OrderByComparator orderByComparator)
throws com.liferay.fragment.exception.NoSuchEntryVersionException {
return getPersistence().findByG_FCI_S_PrevAndNext(
fragmentEntryVersionId, groupId, fragmentCollectionId, status,
orderByComparator);
}
/**
* Removes all the fragment entry versions where groupId = ? and fragmentCollectionId = ? and status = ? from the database.
*
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param status the status
*/
public static void removeByG_FCI_S(
long groupId, long fragmentCollectionId, int status) {
getPersistence().removeByG_FCI_S(groupId, fragmentCollectionId, status);
}
/**
* Returns the number of fragment entry versions where groupId = ? and fragmentCollectionId = ? and status = ?.
*
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param status the status
* @return the number of matching fragment entry versions
*/
public static int countByG_FCI_S(
long groupId, long fragmentCollectionId, int status) {
return getPersistence().countByG_FCI_S(
groupId, fragmentCollectionId, status);
}
/**
* Returns all the fragment entry versions where groupId = ? and fragmentCollectionId = ? and status = ? and version = ?.
*
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param status the status
* @param version the version
* @return the matching fragment entry versions
*/
public static List findByG_FCI_S_Version(
long groupId, long fragmentCollectionId, int status, int version) {
return getPersistence().findByG_FCI_S_Version(
groupId, fragmentCollectionId, status, version);
}
/**
* Returns a range of all the fragment entry versions where groupId = ? and fragmentCollectionId = ? and status = ? and version = ?.
*
*
* 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 FragmentEntryVersionModelImpl
.
*
*
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param status the status
* @param version the version
* @param start the lower bound of the range of fragment entry versions
* @param end the upper bound of the range of fragment entry versions (not inclusive)
* @return the range of matching fragment entry versions
*/
public static List findByG_FCI_S_Version(
long groupId, long fragmentCollectionId, int status, int version,
int start, int end) {
return getPersistence().findByG_FCI_S_Version(
groupId, fragmentCollectionId, status, version, start, end);
}
/**
* Returns an ordered range of all the fragment entry versions where groupId = ? and fragmentCollectionId = ? and status = ? and version = ?.
*
*
* 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 FragmentEntryVersionModelImpl
.
*
*
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param status the status
* @param version the version
* @param start the lower bound of the range of fragment entry versions
* @param end the upper bound of the range of fragment entry versions (not inclusive)
* @param orderByComparator the comparator to order the results by (optionally null
)
* @return the ordered range of matching fragment entry versions
*/
public static List findByG_FCI_S_Version(
long groupId, long fragmentCollectionId, int status, int version,
int start, int end,
OrderByComparator orderByComparator) {
return getPersistence().findByG_FCI_S_Version(
groupId, fragmentCollectionId, status, version, start, end,
orderByComparator);
}
/**
* Returns an ordered range of all the fragment entry versions where groupId = ? and fragmentCollectionId = ? and status = ? and version = ?.
*
*
* 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 FragmentEntryVersionModelImpl
.
*
*
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param status the status
* @param version the version
* @param start the lower bound of the range of fragment entry versions
* @param end the upper bound of the range of fragment entry versions (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 versions
*/
public static List findByG_FCI_S_Version(
long groupId, long fragmentCollectionId, int status, int version,
int start, int end,
OrderByComparator orderByComparator,
boolean useFinderCache) {
return getPersistence().findByG_FCI_S_Version(
groupId, fragmentCollectionId, status, version, start, end,
orderByComparator, useFinderCache);
}
/**
* Returns the first fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ? and status = ? and version = ?.
*
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param status the status
* @param version the version
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the first matching fragment entry version
* @throws NoSuchEntryVersionException if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion findByG_FCI_S_Version_First(
long groupId, long fragmentCollectionId, int status, int version,
OrderByComparator orderByComparator)
throws com.liferay.fragment.exception.NoSuchEntryVersionException {
return getPersistence().findByG_FCI_S_Version_First(
groupId, fragmentCollectionId, status, version, orderByComparator);
}
/**
* Returns the first fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ? and status = ? and version = ?.
*
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param status the status
* @param version the version
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the first matching fragment entry version, or null
if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion fetchByG_FCI_S_Version_First(
long groupId, long fragmentCollectionId, int status, int version,
OrderByComparator orderByComparator) {
return getPersistence().fetchByG_FCI_S_Version_First(
groupId, fragmentCollectionId, status, version, orderByComparator);
}
/**
* Returns the last fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ? and status = ? and version = ?.
*
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param status the status
* @param version the version
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the last matching fragment entry version
* @throws NoSuchEntryVersionException if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion findByG_FCI_S_Version_Last(
long groupId, long fragmentCollectionId, int status, int version,
OrderByComparator orderByComparator)
throws com.liferay.fragment.exception.NoSuchEntryVersionException {
return getPersistence().findByG_FCI_S_Version_Last(
groupId, fragmentCollectionId, status, version, orderByComparator);
}
/**
* Returns the last fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ? and status = ? and version = ?.
*
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param status the status
* @param version the version
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the last matching fragment entry version, or null
if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion fetchByG_FCI_S_Version_Last(
long groupId, long fragmentCollectionId, int status, int version,
OrderByComparator orderByComparator) {
return getPersistence().fetchByG_FCI_S_Version_Last(
groupId, fragmentCollectionId, status, version, orderByComparator);
}
/**
* Returns the fragment entry versions before and after the current fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ? and status = ? and version = ?.
*
* @param fragmentEntryVersionId the primary key of the current fragment entry version
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param status the status
* @param version the version
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the previous, current, and next fragment entry version
* @throws NoSuchEntryVersionException if a fragment entry version with the primary key could not be found
*/
public static FragmentEntryVersion[] findByG_FCI_S_Version_PrevAndNext(
long fragmentEntryVersionId, long groupId,
long fragmentCollectionId, int status, int version,
OrderByComparator orderByComparator)
throws com.liferay.fragment.exception.NoSuchEntryVersionException {
return getPersistence().findByG_FCI_S_Version_PrevAndNext(
fragmentEntryVersionId, groupId, fragmentCollectionId, status,
version, orderByComparator);
}
/**
* Removes all the fragment entry versions where groupId = ? and fragmentCollectionId = ? and status = ? and version = ? from the database.
*
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param status the status
* @param version the version
*/
public static void removeByG_FCI_S_Version(
long groupId, long fragmentCollectionId, int status, int version) {
getPersistence().removeByG_FCI_S_Version(
groupId, fragmentCollectionId, status, version);
}
/**
* Returns the number of fragment entry versions where groupId = ? and fragmentCollectionId = ? and status = ? and version = ?.
*
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param status the status
* @param version the version
* @return the number of matching fragment entry versions
*/
public static int countByG_FCI_S_Version(
long groupId, long fragmentCollectionId, int status, int version) {
return getPersistence().countByG_FCI_S_Version(
groupId, fragmentCollectionId, status, version);
}
/**
* Returns all the fragment entry versions where groupId = ? and fragmentCollectionId = ? and name = ? and status = ?.
*
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param name the name
* @param status the status
* @return the matching fragment entry versions
*/
public static List findByG_FCI_LikeN_S(
long groupId, long fragmentCollectionId, String name, int status) {
return getPersistence().findByG_FCI_LikeN_S(
groupId, fragmentCollectionId, name, status);
}
/**
* Returns a range of all the fragment entry versions where groupId = ? and fragmentCollectionId = ? and name = ? and status = ?.
*
*
* 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 FragmentEntryVersionModelImpl
.
*
*
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param name the name
* @param status the status
* @param start the lower bound of the range of fragment entry versions
* @param end the upper bound of the range of fragment entry versions (not inclusive)
* @return the range of matching fragment entry versions
*/
public static List findByG_FCI_LikeN_S(
long groupId, long fragmentCollectionId, String name, int status,
int start, int end) {
return getPersistence().findByG_FCI_LikeN_S(
groupId, fragmentCollectionId, name, status, start, end);
}
/**
* Returns an ordered range of all the fragment entry versions where groupId = ? and fragmentCollectionId = ? and name = ? and status = ?.
*
*
* 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 FragmentEntryVersionModelImpl
.
*
*
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param name the name
* @param status the status
* @param start the lower bound of the range of fragment entry versions
* @param end the upper bound of the range of fragment entry versions (not inclusive)
* @param orderByComparator the comparator to order the results by (optionally null
)
* @return the ordered range of matching fragment entry versions
*/
public static List findByG_FCI_LikeN_S(
long groupId, long fragmentCollectionId, String name, int status,
int start, int end,
OrderByComparator orderByComparator) {
return getPersistence().findByG_FCI_LikeN_S(
groupId, fragmentCollectionId, name, status, start, end,
orderByComparator);
}
/**
* Returns an ordered range of all the fragment entry versions where groupId = ? and fragmentCollectionId = ? and name = ? and status = ?.
*
*
* 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 FragmentEntryVersionModelImpl
.
*
*
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param name the name
* @param status the status
* @param start the lower bound of the range of fragment entry versions
* @param end the upper bound of the range of fragment entry versions (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 versions
*/
public static List findByG_FCI_LikeN_S(
long groupId, long fragmentCollectionId, String name, int status,
int start, int end,
OrderByComparator orderByComparator,
boolean useFinderCache) {
return getPersistence().findByG_FCI_LikeN_S(
groupId, fragmentCollectionId, name, status, start, end,
orderByComparator, useFinderCache);
}
/**
* Returns the first fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ? and name = ? and status = ?.
*
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param name the name
* @param status the status
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the first matching fragment entry version
* @throws NoSuchEntryVersionException if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion findByG_FCI_LikeN_S_First(
long groupId, long fragmentCollectionId, String name, int status,
OrderByComparator orderByComparator)
throws com.liferay.fragment.exception.NoSuchEntryVersionException {
return getPersistence().findByG_FCI_LikeN_S_First(
groupId, fragmentCollectionId, name, status, orderByComparator);
}
/**
* Returns the first fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ? and name = ? and status = ?.
*
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param name the name
* @param status the status
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the first matching fragment entry version, or null
if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion fetchByG_FCI_LikeN_S_First(
long groupId, long fragmentCollectionId, String name, int status,
OrderByComparator orderByComparator) {
return getPersistence().fetchByG_FCI_LikeN_S_First(
groupId, fragmentCollectionId, name, status, orderByComparator);
}
/**
* Returns the last fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ? and name = ? and status = ?.
*
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param name the name
* @param status the status
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the last matching fragment entry version
* @throws NoSuchEntryVersionException if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion findByG_FCI_LikeN_S_Last(
long groupId, long fragmentCollectionId, String name, int status,
OrderByComparator orderByComparator)
throws com.liferay.fragment.exception.NoSuchEntryVersionException {
return getPersistence().findByG_FCI_LikeN_S_Last(
groupId, fragmentCollectionId, name, status, orderByComparator);
}
/**
* Returns the last fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ? and name = ? and status = ?.
*
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param name the name
* @param status the status
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the last matching fragment entry version, or null
if a matching fragment entry version could not be found
*/
public static FragmentEntryVersion fetchByG_FCI_LikeN_S_Last(
long groupId, long fragmentCollectionId, String name, int status,
OrderByComparator orderByComparator) {
return getPersistence().fetchByG_FCI_LikeN_S_Last(
groupId, fragmentCollectionId, name, status, orderByComparator);
}
/**
* Returns the fragment entry versions before and after the current fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ? and name = ? and status = ?.
*
* @param fragmentEntryVersionId the primary key of the current fragment entry version
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param name the name
* @param status the status
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the previous, current, and next fragment entry version
* @throws NoSuchEntryVersionException if a fragment entry version with the primary key could not be found
*/
public static FragmentEntryVersion[] findByG_FCI_LikeN_S_PrevAndNext(
long fragmentEntryVersionId, long groupId,
long fragmentCollectionId, String name, int status,
OrderByComparator orderByComparator)
throws com.liferay.fragment.exception.NoSuchEntryVersionException {
return getPersistence().findByG_FCI_LikeN_S_PrevAndNext(
fragmentEntryVersionId, groupId, fragmentCollectionId, name, status,
orderByComparator);
}
/**
* Removes all the fragment entry versions where groupId = ? and fragmentCollectionId = ? and name = ? and status = ? from the database.
*
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param name the name
* @param status the status
*/
public static void removeByG_FCI_LikeN_S(
long groupId, long fragmentCollectionId, String name, int status) {
getPersistence().removeByG_FCI_LikeN_S(
groupId, fragmentCollectionId, name, status);
}
/**
* Returns the number of fragment entry versions where groupId = ? and fragmentCollectionId = ? and name = ? and status = ?.
*
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param name the name
* @param status the status
* @return the number of matching fragment entry versions
*/
public static int countByG_FCI_LikeN_S(
long groupId, long fragmentCollectionId, String name, int status) {
return getPersistence().countByG_FCI_LikeN_S(
groupId, fragmentCollectionId, name, status);
}
/**
* Returns all the fragment entry versions where groupId = ? and fragmentCollectionId = ? and name = ? and status = ? and version = ?.
*
* @param groupId the group ID
* @param fragmentCollectionId the fragment collection ID
* @param name the name
* @param status the status
* @param version the version
* @return the matching fragment entry versions
*/
public static List findByG_FCI_LikeN_S_Version(
long groupId, long fragmentCollectionId, String name, int status,
int version) {
return getPersistence().findByG_FCI_LikeN_S_Version(
groupId, fragmentCollectionId, name, status, version);
}
/**
* Returns a range of all the fragment entry versions where groupId = ? and fragmentCollectionId = ? and name = ? and status = ? and version = ?.
*
*
* Useful when paginating results. Returns a maximum of