@ProviderType
public class FragmentEntryUtil
extends java.lang.Object
com.liferay.fragment.service.persistence.impl.FragmentEntryPersistenceImpl
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
FragmentEntryPersistence
,
com.liferay.fragment.service.persistence.impl.FragmentEntryPersistenceImpl
Constructor and Description |
---|
FragmentEntryUtil() |
Modifier and Type | Method and Description |
---|---|
static void |
cacheResult(FragmentEntry fragmentEntry)
Caches the fragment entry in the entity cache if it is enabled.
|
static void |
cacheResult(java.util.List<FragmentEntry> fragmentEntries)
Caches the fragment entries in the entity cache if it is enabled.
|
static void |
clearCache() |
static void |
clearCache(FragmentEntry fragmentEntry) |
static int |
countAll()
Returns the number of fragment entries.
|
static int |
countByFragmentCollectionId(long fragmentCollectionId)
Returns the number of fragment entries where fragmentCollectionId = ?.
|
static int |
countByG_FCI_LikeN_S(long groupId,
long fragmentCollectionId,
java.lang.String name,
int status)
Returns the number of fragment entries where groupId = ? and fragmentCollectionId = ? and name LIKE ? and status = ?.
|
static int |
countByG_FCI_LikeN(long groupId,
long fragmentCollectionId,
java.lang.String name)
Returns the number of fragment entries where groupId = ? and fragmentCollectionId = ? and name LIKE ?.
|
static int |
countByG_FCI_S(long groupId,
long fragmentCollectionId,
int status)
Returns the number of fragment entries where groupId = ? and fragmentCollectionId = ? and status = ?.
|
static int |
countByG_FCI(long groupId,
long fragmentCollectionId)
Returns the number of fragment entries where groupId = ? and fragmentCollectionId = ?.
|
static int |
countByG_FEK(long groupId,
java.lang.String fragmentEntryKey)
Returns the number of fragment entries where groupId = ? and fragmentEntryKey = ?.
|
static int |
countByGroupId(long groupId)
Returns the number of fragment entries where groupId = ?.
|
static int |
countByUuid_C(java.lang.String uuid,
long companyId)
Returns the number of fragment entries where uuid = ? and companyId = ?.
|
static int |
countByUUID_G(java.lang.String uuid,
long groupId)
Returns the number of fragment entries where uuid = ? and groupId = ?.
|
static int |
countByUuid(java.lang.String uuid)
Returns the number of fragment entries where uuid = ?.
|
static long |
countWithDynamicQuery(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery) |
static FragmentEntry |
create(long fragmentEntryId)
Creates a new fragment entry with the primary key.
|
static FragmentEntry |
fetchByFragmentCollectionId_First(long fragmentCollectionId,
com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator)
Returns the first fragment entry in the ordered set where fragmentCollectionId = ?.
|
static FragmentEntry |
fetchByFragmentCollectionId_Last(long fragmentCollectionId,
com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator)
Returns the last fragment entry in the ordered set where fragmentCollectionId = ?.
|
static FragmentEntry |
fetchByG_FCI_First(long groupId,
long fragmentCollectionId,
com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator)
Returns the first fragment entry in the ordered set where groupId = ? and fragmentCollectionId = ?.
|
static FragmentEntry |
fetchByG_FCI_Last(long groupId,
long fragmentCollectionId,
com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator)
Returns the last fragment entry in the ordered set where groupId = ? and fragmentCollectionId = ?.
|
static FragmentEntry |
fetchByG_FCI_LikeN_First(long groupId,
long fragmentCollectionId,
java.lang.String name,
com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator)
Returns the first fragment entry in the ordered set where groupId = ? and fragmentCollectionId = ? and name LIKE ?.
|
static FragmentEntry |
fetchByG_FCI_LikeN_Last(long groupId,
long fragmentCollectionId,
java.lang.String name,
com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator)
Returns the last fragment entry in the ordered set where groupId = ? and fragmentCollectionId = ? and name LIKE ?.
|
static FragmentEntry |
fetchByG_FCI_LikeN_S_First(long groupId,
long fragmentCollectionId,
java.lang.String name,
int status,
com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator)
Returns the first fragment entry in the ordered set where groupId = ? and fragmentCollectionId = ? and name LIKE ? and status = ?.
|
static FragmentEntry |
fetchByG_FCI_LikeN_S_Last(long groupId,
long fragmentCollectionId,
java.lang.String name,
int status,
com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator)
Returns the last fragment entry in the ordered set where groupId = ? and fragmentCollectionId = ? and name LIKE ? and status = ?.
|
static FragmentEntry |
fetchByG_FCI_S_First(long groupId,
long fragmentCollectionId,
int status,
com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator)
Returns the first fragment entry in the ordered set where groupId = ? and fragmentCollectionId = ? and status = ?.
|
static FragmentEntry |
fetchByG_FCI_S_Last(long groupId,
long fragmentCollectionId,
int status,
com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator)
Returns the last fragment entry in the ordered set where groupId = ? and fragmentCollectionId = ? and status = ?.
|
static FragmentEntry |
fetchByG_FEK(long groupId,
java.lang.String fragmentEntryKey)
Returns the fragment entry where groupId = ? and fragmentEntryKey = ? or returns
null if it could not be found. |
static FragmentEntry |
fetchByG_FEK(long groupId,
java.lang.String fragmentEntryKey,
boolean retrieveFromCache)
Returns the fragment entry where groupId = ? and fragmentEntryKey = ? or returns
null if it could not be found, optionally using the finder cache. |
static FragmentEntry |
fetchByGroupId_First(long groupId,
com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator)
Returns the first fragment entry in the ordered set where groupId = ?.
|
static FragmentEntry |
fetchByGroupId_Last(long groupId,
com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator)
Returns the last fragment entry in the ordered set where groupId = ?.
|
static FragmentEntry |
fetchByPrimaryKey(long fragmentEntryId)
Returns the fragment entry with the primary key or returns
null if it could not be found. |
static java.util.Map<java.io.Serializable,FragmentEntry> |
fetchByPrimaryKeys(java.util.Set<java.io.Serializable> primaryKeys) |
static FragmentEntry |
fetchByUuid_C_First(java.lang.String uuid,
long companyId,
com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator)
Returns the first fragment entry in the ordered set where uuid = ? and companyId = ?.
|
static FragmentEntry |
fetchByUuid_C_Last(java.lang.String uuid,
long companyId,
com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator)
Returns the last fragment entry in the ordered set where uuid = ? and companyId = ?.
|
static FragmentEntry |
fetchByUuid_First(java.lang.String uuid,
com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator)
Returns the first fragment entry in the ordered set where uuid = ?.
|
static FragmentEntry |
fetchByUUID_G(java.lang.String uuid,
long groupId)
Returns the fragment entry where uuid = ? and groupId = ? or returns
null if it could not be found. |
static FragmentEntry |
fetchByUUID_G(java.lang.String uuid,
long groupId,
boolean retrieveFromCache)
Returns the fragment entry where uuid = ? and groupId = ? or returns
null if it could not be found, optionally using the finder cache. |
static FragmentEntry |
fetchByUuid_Last(java.lang.String uuid,
com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator)
Returns the last fragment entry in the ordered set where uuid = ?.
|
static java.util.List<FragmentEntry> |
findAll()
Returns all the fragment entries.
|
static java.util.List<FragmentEntry> |
findAll(int start,
int end)
Returns a range of all the fragment entries.
|
static java.util.List<FragmentEntry> |
findAll(int start,
int end,
com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator)
Returns an ordered range of all the fragment entries.
|
static java.util.List<FragmentEntry> |
findAll(int start,
int end,
com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator,
boolean retrieveFromCache)
Returns an ordered range of all the fragment entries.
|
static FragmentEntry |
findByFragmentCollectionId_First(long fragmentCollectionId,
com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator)
Returns the first fragment entry in the ordered set where fragmentCollectionId = ?.
|
static FragmentEntry |
findByFragmentCollectionId_Last(long fragmentCollectionId,
com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator)
Returns the last fragment entry in the ordered set where fragmentCollectionId = ?.
|
static FragmentEntry[] |
findByFragmentCollectionId_PrevAndNext(long fragmentEntryId,
long fragmentCollectionId,
com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator)
Returns the fragment entries before and after the current fragment entry in the ordered set where fragmentCollectionId = ?.
|
static java.util.List<FragmentEntry> |
findByFragmentCollectionId(long fragmentCollectionId)
Returns all the fragment entries where fragmentCollectionId = ?.
|
static java.util.List<FragmentEntry> |
findByFragmentCollectionId(long fragmentCollectionId,
int start,
int end)
Returns a range of all the fragment entries where fragmentCollectionId = ?.
|
static java.util.List<FragmentEntry> |
findByFragmentCollectionId(long fragmentCollectionId,
int start,
int end,
com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator)
Returns an ordered range of all the fragment entries where fragmentCollectionId = ?.
|
static java.util.List<FragmentEntry> |
findByFragmentCollectionId(long fragmentCollectionId,
int start,
int end,
com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator,
boolean retrieveFromCache)
Returns an ordered range of all the fragment entries where fragmentCollectionId = ?.
|
static FragmentEntry |
findByG_FCI_First(long groupId,
long fragmentCollectionId,
com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator)
Returns the first fragment entry in the ordered set where groupId = ? and fragmentCollectionId = ?.
|
static FragmentEntry |
findByG_FCI_Last(long groupId,
long fragmentCollectionId,
com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator)
Returns the last fragment entry in the ordered set where groupId = ? and fragmentCollectionId = ?.
|
static FragmentEntry |
findByG_FCI_LikeN_First(long groupId,
long fragmentCollectionId,
java.lang.String name,
com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator)
Returns the first fragment entry in the ordered set where groupId = ? and fragmentCollectionId = ? and name LIKE ?.
|
static FragmentEntry |
findByG_FCI_LikeN_Last(long groupId,
long fragmentCollectionId,
java.lang.String name,
com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator)
Returns the last fragment entry in the ordered set where groupId = ? and fragmentCollectionId = ? and name LIKE ?.
|
static FragmentEntry[] |
findByG_FCI_LikeN_PrevAndNext(long fragmentEntryId,
long groupId,
long fragmentCollectionId,
java.lang.String name,
com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator)
Returns the fragment entries before and after the current fragment entry in the ordered set where groupId = ? and fragmentCollectionId = ? and name LIKE ?.
|
static FragmentEntry |
findByG_FCI_LikeN_S_First(long groupId,
long fragmentCollectionId,
java.lang.String name,
int status,
com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator)
Returns the first fragment entry in the ordered set where groupId = ? and fragmentCollectionId = ? and name LIKE ? and status = ?.
|
static FragmentEntry |
findByG_FCI_LikeN_S_Last(long groupId,
long fragmentCollectionId,
java.lang.String name,
int status,
com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator)
Returns the last fragment entry in the ordered set where groupId = ? and fragmentCollectionId = ? and name LIKE ? and status = ?.
|
static FragmentEntry[] |
findByG_FCI_LikeN_S_PrevAndNext(long fragmentEntryId,
long groupId,
long fragmentCollectionId,
java.lang.String name,
int status,
com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator)
Returns the fragment entries before and after the current fragment entry in the ordered set where groupId = ? and fragmentCollectionId = ? and name LIKE ? and status = ?.
|
static java.util.List<FragmentEntry> |
findByG_FCI_LikeN_S(long groupId,
long fragmentCollectionId,
java.lang.String name,
int status)
Returns all the fragment entries where groupId = ? and fragmentCollectionId = ? and name LIKE ? and status = ?.
|
static java.util.List<FragmentEntry> |
findByG_FCI_LikeN_S(long groupId,
long fragmentCollectionId,
java.lang.String name,
int status,
int start,
int end)
Returns a range of all the fragment entries where groupId = ? and fragmentCollectionId = ? and name LIKE ? and status = ?.
|
static java.util.List<FragmentEntry> |
findByG_FCI_LikeN_S(long groupId,
long fragmentCollectionId,
java.lang.String name,
int status,
int start,
int end,
com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator)
Returns an ordered range of all the fragment entries where groupId = ? and fragmentCollectionId = ? and name LIKE ? and status = ?.
|
static java.util.List<FragmentEntry> |
findByG_FCI_LikeN_S(long groupId,
long fragmentCollectionId,
java.lang.String name,
int status,
int start,
int end,
com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator,
boolean retrieveFromCache)
Returns an ordered range of all the fragment entries where groupId = ? and fragmentCollectionId = ? and name LIKE ? and status = ?.
|
static java.util.List<FragmentEntry> |
findByG_FCI_LikeN(long groupId,
long fragmentCollectionId,
java.lang.String name)
Returns all the fragment entries where groupId = ? and fragmentCollectionId = ? and name LIKE ?.
|
static java.util.List<FragmentEntry> |
findByG_FCI_LikeN(long groupId,
long fragmentCollectionId,
java.lang.String name,
int start,
int end)
Returns a range of all the fragment entries where groupId = ? and fragmentCollectionId = ? and name LIKE ?.
|
static java.util.List<FragmentEntry> |
findByG_FCI_LikeN(long groupId,
long fragmentCollectionId,
java.lang.String name,
int start,
int end,
com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator)
Returns an ordered range of all the fragment entries where groupId = ? and fragmentCollectionId = ? and name LIKE ?.
|
static java.util.List<FragmentEntry> |
findByG_FCI_LikeN(long groupId,
long fragmentCollectionId,
java.lang.String name,
int start,
int end,
com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator,
boolean retrieveFromCache)
Returns an ordered range of all the fragment entries where groupId = ? and fragmentCollectionId = ? and name LIKE ?.
|
static FragmentEntry[] |
findByG_FCI_PrevAndNext(long fragmentEntryId,
long groupId,
long fragmentCollectionId,
com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator)
Returns the fragment entries before and after the current fragment entry in the ordered set where groupId = ? and fragmentCollectionId = ?.
|
static FragmentEntry |
findByG_FCI_S_First(long groupId,
long fragmentCollectionId,
int status,
com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator)
Returns the first fragment entry in the ordered set where groupId = ? and fragmentCollectionId = ? and status = ?.
|
static FragmentEntry |
findByG_FCI_S_Last(long groupId,
long fragmentCollectionId,
int status,
com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator)
Returns the last fragment entry in the ordered set where groupId = ? and fragmentCollectionId = ? and status = ?.
|
static FragmentEntry[] |
findByG_FCI_S_PrevAndNext(long fragmentEntryId,
long groupId,
long fragmentCollectionId,
int status,
com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator)
Returns the fragment entries before and after the current fragment entry in the ordered set where groupId = ? and fragmentCollectionId = ? and status = ?.
|
static java.util.List<FragmentEntry> |
findByG_FCI_S(long groupId,
long fragmentCollectionId,
int status)
Returns all the fragment entries where groupId = ? and fragmentCollectionId = ? and status = ?.
|
static java.util.List<FragmentEntry> |
findByG_FCI_S(long groupId,
long fragmentCollectionId,
int status,
int start,
int end)
Returns a range of all the fragment entries where groupId = ? and fragmentCollectionId = ? and status = ?.
|
static java.util.List<FragmentEntry> |
findByG_FCI_S(long groupId,
long fragmentCollectionId,
int status,
int start,
int end,
com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator)
Returns an ordered range of all the fragment entries where groupId = ? and fragmentCollectionId = ? and status = ?.
|
static java.util.List<FragmentEntry> |
findByG_FCI_S(long groupId,
long fragmentCollectionId,
int status,
int start,
int end,
com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator,
boolean retrieveFromCache)
Returns an ordered range of all the fragment entries where groupId = ? and fragmentCollectionId = ? and status = ?.
|
static java.util.List<FragmentEntry> |
findByG_FCI(long groupId,
long fragmentCollectionId)
Returns all the fragment entries where groupId = ? and fragmentCollectionId = ?.
|
static java.util.List<FragmentEntry> |
findByG_FCI(long groupId,
long fragmentCollectionId,
int start,
int end)
Returns a range of all the fragment entries where groupId = ? and fragmentCollectionId = ?.
|
static java.util.List<FragmentEntry> |
findByG_FCI(long groupId,
long fragmentCollectionId,
int start,
int end,
com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator)
Returns an ordered range of all the fragment entries where groupId = ? and fragmentCollectionId = ?.
|
static java.util.List<FragmentEntry> |
findByG_FCI(long groupId,
long fragmentCollectionId,
int start,
int end,
com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator,
boolean retrieveFromCache)
Returns an ordered range of all the fragment entries where groupId = ? and fragmentCollectionId = ?.
|
static FragmentEntry |
findByG_FEK(long groupId,
java.lang.String fragmentEntryKey)
Returns the fragment entry where groupId = ? and fragmentEntryKey = ? or throws a
NoSuchEntryException if it could not be found. |
static FragmentEntry |
findByGroupId_First(long groupId,
com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator)
Returns the first fragment entry in the ordered set where groupId = ?.
|
static FragmentEntry |
findByGroupId_Last(long groupId,
com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator)
Returns the last fragment entry in the ordered set where groupId = ?.
|
static FragmentEntry[] |
findByGroupId_PrevAndNext(long fragmentEntryId,
long groupId,
com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator)
Returns the fragment entries before and after the current fragment entry in the ordered set where groupId = ?.
|
static java.util.List<FragmentEntry> |
findByGroupId(long groupId)
Returns all the fragment entries where groupId = ?.
|
static java.util.List<FragmentEntry> |
findByGroupId(long groupId,
int start,
int end)
Returns a range of all the fragment entries where groupId = ?.
|
static java.util.List<FragmentEntry> |
findByGroupId(long groupId,
int start,
int end,
com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator)
Returns an ordered range of all the fragment entries where groupId = ?.
|
static java.util.List<FragmentEntry> |
findByGroupId(long groupId,
int start,
int end,
com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator,
boolean retrieveFromCache)
Returns an ordered range of all the fragment entries where groupId = ?.
|
static FragmentEntry |
findByPrimaryKey(long fragmentEntryId)
Returns the fragment entry with the primary key or throws a
NoSuchEntryException if it could not be found. |
static FragmentEntry |
findByUuid_C_First(java.lang.String uuid,
long companyId,
com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator)
Returns the first fragment entry in the ordered set where uuid = ? and companyId = ?.
|
static FragmentEntry |
findByUuid_C_Last(java.lang.String uuid,
long companyId,
com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator)
Returns the last fragment entry in the ordered set where uuid = ? and companyId = ?.
|
static FragmentEntry[] |
findByUuid_C_PrevAndNext(long fragmentEntryId,
java.lang.String uuid,
long companyId,
com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator)
Returns the fragment entries before and after the current fragment entry in the ordered set where uuid = ? and companyId = ?.
|
static java.util.List<FragmentEntry> |
findByUuid_C(java.lang.String uuid,
long companyId)
Returns all the fragment entries where uuid = ? and companyId = ?.
|
static java.util.List<FragmentEntry> |
findByUuid_C(java.lang.String uuid,
long companyId,
int start,
int end)
Returns a range of all the fragment entries where uuid = ? and companyId = ?.
|
static java.util.List<FragmentEntry> |
findByUuid_C(java.lang.String uuid,
long companyId,
int start,
int end,
com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator)
Returns an ordered range of all the fragment entries where uuid = ? and companyId = ?.
|
static java.util.List<FragmentEntry> |
findByUuid_C(java.lang.String uuid,
long companyId,
int start,
int end,
com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator,
boolean retrieveFromCache)
Returns an ordered range of all the fragment entries where uuid = ? and companyId = ?.
|
static FragmentEntry |
findByUuid_First(java.lang.String uuid,
com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator)
Returns the first fragment entry in the ordered set where uuid = ?.
|
static FragmentEntry |
findByUUID_G(java.lang.String uuid,
long groupId)
Returns the fragment entry where uuid = ? and groupId = ? or throws a
NoSuchEntryException if it could not be found. |
static FragmentEntry |
findByUuid_Last(java.lang.String uuid,
com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator)
Returns the last fragment entry in the ordered set where uuid = ?.
|
static FragmentEntry[] |
findByUuid_PrevAndNext(long fragmentEntryId,
java.lang.String uuid,
com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator)
Returns the fragment entries before and after the current fragment entry in the ordered set where uuid = ?.
|
static java.util.List<FragmentEntry> |
findByUuid(java.lang.String uuid)
Returns all the fragment entries where uuid = ?.
|
static java.util.List<FragmentEntry> |
findByUuid(java.lang.String uuid,
int start,
int end)
Returns a range of all the fragment entries where uuid = ?.
|
static java.util.List<FragmentEntry> |
findByUuid(java.lang.String uuid,
int start,
int end,
com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator)
Returns an ordered range of all the fragment entries where uuid = ?.
|
static java.util.List<FragmentEntry> |
findByUuid(java.lang.String uuid,
int start,
int end,
com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator,
boolean retrieveFromCache)
Returns an ordered range of all the fragment entries where uuid = ?.
|
static java.util.List<FragmentEntry> |
findWithDynamicQuery(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery) |
static java.util.List<FragmentEntry> |
findWithDynamicQuery(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery,
int start,
int end) |
static java.util.List<FragmentEntry> |
findWithDynamicQuery(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery,
int start,
int end,
com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator) |
static java.util.Set<java.lang.String> |
getBadColumnNames() |
static FragmentEntryPersistence |
getPersistence() |
static FragmentEntry |
remove(long fragmentEntryId)
Removes the fragment entry with the primary key from the database.
|
static void |
removeAll()
Removes all the fragment entries from the database.
|
static void |
removeByFragmentCollectionId(long fragmentCollectionId)
Removes all the fragment entries where fragmentCollectionId = ? from the database.
|
static void |
removeByG_FCI_LikeN_S(long groupId,
long fragmentCollectionId,
java.lang.String name,
int status)
Removes all the fragment entries where groupId = ? and fragmentCollectionId = ? and name LIKE ? and status = ? from the database.
|
static void |
removeByG_FCI_LikeN(long groupId,
long fragmentCollectionId,
java.lang.String name)
Removes all the fragment entries where groupId = ? and fragmentCollectionId = ? and name LIKE ? from the database.
|
static void |
removeByG_FCI_S(long groupId,
long fragmentCollectionId,
int status)
Removes all the fragment entries where groupId = ? and fragmentCollectionId = ? and status = ? from the database.
|
static void |
removeByG_FCI(long groupId,
long fragmentCollectionId)
Removes all the fragment entries where groupId = ? and fragmentCollectionId = ? from the database.
|
static FragmentEntry |
removeByG_FEK(long groupId,
java.lang.String fragmentEntryKey)
Removes the fragment entry where groupId = ? and fragmentEntryKey = ? from the database.
|
static void |
removeByGroupId(long groupId)
Removes all the fragment entries where groupId = ? from the database.
|
static void |
removeByUuid_C(java.lang.String uuid,
long companyId)
Removes all the fragment entries where uuid = ? and companyId = ? from the database.
|
static FragmentEntry |
removeByUUID_G(java.lang.String uuid,
long groupId)
Removes the fragment entry where uuid = ? and groupId = ? from the database.
|
static void |
removeByUuid(java.lang.String uuid)
Removes all the fragment entries where uuid = ? from the database.
|
static FragmentEntry |
update(FragmentEntry fragmentEntry) |
static FragmentEntry |
update(FragmentEntry fragmentEntry,
com.liferay.portal.kernel.service.ServiceContext serviceContext) |
static FragmentEntry |
updateImpl(FragmentEntry fragmentEntry) |
public static void clearCache()
BasePersistence.clearCache()
public static void clearCache(FragmentEntry fragmentEntry)
BasePersistence.clearCache(com.liferay.portal.kernel.model.BaseModel)
public static long countWithDynamicQuery(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
BasePersistence.countWithDynamicQuery(DynamicQuery)
public static java.util.List<FragmentEntry> findWithDynamicQuery(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
BasePersistence.findWithDynamicQuery(DynamicQuery)
public static java.util.List<FragmentEntry> findWithDynamicQuery(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start, int end)
BasePersistence.findWithDynamicQuery(DynamicQuery, int, int)
public static java.util.List<FragmentEntry> findWithDynamicQuery(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator)
BasePersistence.findWithDynamicQuery(DynamicQuery, int, int, OrderByComparator)
public static FragmentEntry update(FragmentEntry fragmentEntry)
BasePersistence.update(com.liferay.portal.kernel.model.BaseModel)
public static FragmentEntry update(FragmentEntry fragmentEntry, com.liferay.portal.kernel.service.ServiceContext serviceContext)
BasePersistence.update(com.liferay.portal.kernel.model.BaseModel, ServiceContext)
public static java.util.List<FragmentEntry> findByUuid(java.lang.String uuid)
uuid
- the uuidpublic static java.util.List<FragmentEntry> findByUuid(java.lang.String uuid, int start, int end)
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 and pagination is required (start
and end
are not QueryUtil#ALL_POS
), then the query will include the default ORDER BY logic from FragmentEntryModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
uuid
- the uuidstart
- the lower bound of the range of fragment entriesend
- the upper bound of the range of fragment entries (not inclusive)public static java.util.List<FragmentEntry> findByUuid(java.lang.String uuid, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator)
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 and pagination is required (start
and end
are not QueryUtil#ALL_POS
), then the query will include the default ORDER BY logic from FragmentEntryModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
uuid
- the uuidstart
- the lower bound of the range of fragment entriesend
- the upper bound of the range of fragment entries (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)public static java.util.List<FragmentEntry> findByUuid(java.lang.String uuid, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator, boolean retrieveFromCache)
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 and pagination is required (start
and end
are not QueryUtil#ALL_POS
), then the query will include the default ORDER BY logic from FragmentEntryModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
uuid
- the uuidstart
- the lower bound of the range of fragment entriesend
- the upper bound of the range of fragment entries (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)retrieveFromCache
- whether to retrieve from the finder cachepublic static FragmentEntry findByUuid_First(java.lang.String uuid, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator) throws NoSuchEntryException
uuid
- the uuidorderByComparator
- the comparator to order the set by (optionally null
)NoSuchEntryException
- if a matching fragment entry could not be foundpublic static FragmentEntry fetchByUuid_First(java.lang.String uuid, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator)
uuid
- the uuidorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching fragment entry could not be foundpublic static FragmentEntry findByUuid_Last(java.lang.String uuid, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator) throws NoSuchEntryException
uuid
- the uuidorderByComparator
- the comparator to order the set by (optionally null
)NoSuchEntryException
- if a matching fragment entry could not be foundpublic static FragmentEntry fetchByUuid_Last(java.lang.String uuid, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator)
uuid
- the uuidorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching fragment entry could not be foundpublic static FragmentEntry[] findByUuid_PrevAndNext(long fragmentEntryId, java.lang.String uuid, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator) throws NoSuchEntryException
fragmentEntryId
- the primary key of the current fragment entryuuid
- the uuidorderByComparator
- the comparator to order the set by (optionally null
)NoSuchEntryException
- if a fragment entry with the primary key could not be foundpublic static void removeByUuid(java.lang.String uuid)
uuid
- the uuidpublic static int countByUuid(java.lang.String uuid)
uuid
- the uuidpublic static FragmentEntry findByUUID_G(java.lang.String uuid, long groupId) throws NoSuchEntryException
NoSuchEntryException
if it could not be found.uuid
- the uuidgroupId
- the group IDNoSuchEntryException
- if a matching fragment entry could not be foundpublic static FragmentEntry fetchByUUID_G(java.lang.String uuid, long groupId)
null
if it could not be found. Uses the finder cache.uuid
- the uuidgroupId
- the group IDnull
if a matching fragment entry could not be foundpublic static FragmentEntry fetchByUUID_G(java.lang.String uuid, long groupId, boolean retrieveFromCache)
null
if it could not be found, optionally using the finder cache.uuid
- the uuidgroupId
- the group IDretrieveFromCache
- whether to retrieve from the finder cachenull
if a matching fragment entry could not be foundpublic static FragmentEntry removeByUUID_G(java.lang.String uuid, long groupId) throws NoSuchEntryException
uuid
- the uuidgroupId
- the group IDNoSuchEntryException
public static int countByUUID_G(java.lang.String uuid, long groupId)
uuid
- the uuidgroupId
- the group IDpublic static java.util.List<FragmentEntry> findByUuid_C(java.lang.String uuid, long companyId)
uuid
- the uuidcompanyId
- the company IDpublic static java.util.List<FragmentEntry> findByUuid_C(java.lang.String uuid, long companyId, int start, int end)
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 and pagination is required (start
and end
are not QueryUtil#ALL_POS
), then the query will include the default ORDER BY logic from FragmentEntryModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
uuid
- the uuidcompanyId
- the company IDstart
- the lower bound of the range of fragment entriesend
- the upper bound of the range of fragment entries (not inclusive)public static java.util.List<FragmentEntry> findByUuid_C(java.lang.String uuid, long companyId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator)
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 and pagination is required (start
and end
are not QueryUtil#ALL_POS
), then the query will include the default ORDER BY logic from FragmentEntryModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
uuid
- the uuidcompanyId
- the company IDstart
- the lower bound of the range of fragment entriesend
- the upper bound of the range of fragment entries (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)public static java.util.List<FragmentEntry> findByUuid_C(java.lang.String uuid, long companyId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator, boolean retrieveFromCache)
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 and pagination is required (start
and end
are not QueryUtil#ALL_POS
), then the query will include the default ORDER BY logic from FragmentEntryModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
uuid
- the uuidcompanyId
- the company IDstart
- the lower bound of the range of fragment entriesend
- the upper bound of the range of fragment entries (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)retrieveFromCache
- whether to retrieve from the finder cachepublic static FragmentEntry findByUuid_C_First(java.lang.String uuid, long companyId, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator) throws NoSuchEntryException
uuid
- the uuidcompanyId
- the company IDorderByComparator
- the comparator to order the set by (optionally null
)NoSuchEntryException
- if a matching fragment entry could not be foundpublic static FragmentEntry fetchByUuid_C_First(java.lang.String uuid, long companyId, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator)
uuid
- the uuidcompanyId
- the company IDorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching fragment entry could not be foundpublic static FragmentEntry findByUuid_C_Last(java.lang.String uuid, long companyId, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator) throws NoSuchEntryException
uuid
- the uuidcompanyId
- the company IDorderByComparator
- the comparator to order the set by (optionally null
)NoSuchEntryException
- if a matching fragment entry could not be foundpublic static FragmentEntry fetchByUuid_C_Last(java.lang.String uuid, long companyId, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator)
uuid
- the uuidcompanyId
- the company IDorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching fragment entry could not be foundpublic static FragmentEntry[] findByUuid_C_PrevAndNext(long fragmentEntryId, java.lang.String uuid, long companyId, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator) throws NoSuchEntryException
fragmentEntryId
- the primary key of the current fragment entryuuid
- the uuidcompanyId
- the company IDorderByComparator
- the comparator to order the set by (optionally null
)NoSuchEntryException
- if a fragment entry with the primary key could not be foundpublic static void removeByUuid_C(java.lang.String uuid, long companyId)
uuid
- the uuidcompanyId
- the company IDpublic static int countByUuid_C(java.lang.String uuid, long companyId)
uuid
- the uuidcompanyId
- the company IDpublic static java.util.List<FragmentEntry> findByGroupId(long groupId)
groupId
- the group IDpublic static java.util.List<FragmentEntry> findByGroupId(long groupId, int start, int end)
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 and pagination is required (start
and end
are not QueryUtil#ALL_POS
), then the query will include the default ORDER BY logic from FragmentEntryModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
groupId
- the group IDstart
- the lower bound of the range of fragment entriesend
- the upper bound of the range of fragment entries (not inclusive)public static java.util.List<FragmentEntry> findByGroupId(long groupId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator)
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 and pagination is required (start
and end
are not QueryUtil#ALL_POS
), then the query will include the default ORDER BY logic from FragmentEntryModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
groupId
- the group IDstart
- the lower bound of the range of fragment entriesend
- the upper bound of the range of fragment entries (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)public static java.util.List<FragmentEntry> findByGroupId(long groupId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator, boolean retrieveFromCache)
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 and pagination is required (start
and end
are not QueryUtil#ALL_POS
), then the query will include the default ORDER BY logic from FragmentEntryModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
groupId
- the group IDstart
- the lower bound of the range of fragment entriesend
- the upper bound of the range of fragment entries (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)retrieveFromCache
- whether to retrieve from the finder cachepublic static FragmentEntry findByGroupId_First(long groupId, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator) throws NoSuchEntryException
groupId
- the group IDorderByComparator
- the comparator to order the set by (optionally null
)NoSuchEntryException
- if a matching fragment entry could not be foundpublic static FragmentEntry fetchByGroupId_First(long groupId, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator)
groupId
- the group IDorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching fragment entry could not be foundpublic static FragmentEntry findByGroupId_Last(long groupId, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator) throws NoSuchEntryException
groupId
- the group IDorderByComparator
- the comparator to order the set by (optionally null
)NoSuchEntryException
- if a matching fragment entry could not be foundpublic static FragmentEntry fetchByGroupId_Last(long groupId, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator)
groupId
- the group IDorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching fragment entry could not be foundpublic static FragmentEntry[] findByGroupId_PrevAndNext(long fragmentEntryId, long groupId, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator) throws NoSuchEntryException
fragmentEntryId
- the primary key of the current fragment entrygroupId
- the group IDorderByComparator
- the comparator to order the set by (optionally null
)NoSuchEntryException
- if a fragment entry with the primary key could not be foundpublic static void removeByGroupId(long groupId)
groupId
- the group IDpublic static int countByGroupId(long groupId)
groupId
- the group IDpublic static java.util.List<FragmentEntry> findByFragmentCollectionId(long fragmentCollectionId)
fragmentCollectionId
- the fragment collection IDpublic static java.util.List<FragmentEntry> findByFragmentCollectionId(long fragmentCollectionId, int start, int end)
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 and pagination is required (start
and end
are not QueryUtil#ALL_POS
), then the query will include the default ORDER BY logic from FragmentEntryModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
fragmentCollectionId
- the fragment collection IDstart
- the lower bound of the range of fragment entriesend
- the upper bound of the range of fragment entries (not inclusive)public static java.util.List<FragmentEntry> findByFragmentCollectionId(long fragmentCollectionId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator)
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 and pagination is required (start
and end
are not QueryUtil#ALL_POS
), then the query will include the default ORDER BY logic from FragmentEntryModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
fragmentCollectionId
- the fragment collection IDstart
- the lower bound of the range of fragment entriesend
- the upper bound of the range of fragment entries (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)public static java.util.List<FragmentEntry> findByFragmentCollectionId(long fragmentCollectionId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator, boolean retrieveFromCache)
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 and pagination is required (start
and end
are not QueryUtil#ALL_POS
), then the query will include the default ORDER BY logic from FragmentEntryModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
fragmentCollectionId
- the fragment collection IDstart
- the lower bound of the range of fragment entriesend
- the upper bound of the range of fragment entries (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)retrieveFromCache
- whether to retrieve from the finder cachepublic static FragmentEntry findByFragmentCollectionId_First(long fragmentCollectionId, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator) throws NoSuchEntryException
fragmentCollectionId
- the fragment collection IDorderByComparator
- the comparator to order the set by (optionally null
)NoSuchEntryException
- if a matching fragment entry could not be foundpublic static FragmentEntry fetchByFragmentCollectionId_First(long fragmentCollectionId, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator)
fragmentCollectionId
- the fragment collection IDorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching fragment entry could not be foundpublic static FragmentEntry findByFragmentCollectionId_Last(long fragmentCollectionId, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator) throws NoSuchEntryException
fragmentCollectionId
- the fragment collection IDorderByComparator
- the comparator to order the set by (optionally null
)NoSuchEntryException
- if a matching fragment entry could not be foundpublic static FragmentEntry fetchByFragmentCollectionId_Last(long fragmentCollectionId, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator)
fragmentCollectionId
- the fragment collection IDorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching fragment entry could not be foundpublic static FragmentEntry[] findByFragmentCollectionId_PrevAndNext(long fragmentEntryId, long fragmentCollectionId, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator) throws NoSuchEntryException
fragmentEntryId
- the primary key of the current fragment entryfragmentCollectionId
- the fragment collection IDorderByComparator
- the comparator to order the set by (optionally null
)NoSuchEntryException
- if a fragment entry with the primary key could not be foundpublic static void removeByFragmentCollectionId(long fragmentCollectionId)
fragmentCollectionId
- the fragment collection IDpublic static int countByFragmentCollectionId(long fragmentCollectionId)
fragmentCollectionId
- the fragment collection IDpublic static java.util.List<FragmentEntry> findByG_FCI(long groupId, long fragmentCollectionId)
groupId
- the group IDfragmentCollectionId
- the fragment collection IDpublic static java.util.List<FragmentEntry> findByG_FCI(long groupId, long fragmentCollectionId, int start, int end)
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 and pagination is required (start
and end
are not QueryUtil#ALL_POS
), then the query will include the default ORDER BY logic from FragmentEntryModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
groupId
- the group IDfragmentCollectionId
- the fragment collection IDstart
- the lower bound of the range of fragment entriesend
- the upper bound of the range of fragment entries (not inclusive)public static java.util.List<FragmentEntry> findByG_FCI(long groupId, long fragmentCollectionId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator)
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 and pagination is required (start
and end
are not QueryUtil#ALL_POS
), then the query will include the default ORDER BY logic from FragmentEntryModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
groupId
- the group IDfragmentCollectionId
- the fragment collection IDstart
- the lower bound of the range of fragment entriesend
- the upper bound of the range of fragment entries (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)public static java.util.List<FragmentEntry> findByG_FCI(long groupId, long fragmentCollectionId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator, boolean retrieveFromCache)
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 and pagination is required (start
and end
are not QueryUtil#ALL_POS
), then the query will include the default ORDER BY logic from FragmentEntryModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
groupId
- the group IDfragmentCollectionId
- the fragment collection IDstart
- the lower bound of the range of fragment entriesend
- the upper bound of the range of fragment entries (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)retrieveFromCache
- whether to retrieve from the finder cachepublic static FragmentEntry findByG_FCI_First(long groupId, long fragmentCollectionId, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator) throws NoSuchEntryException
groupId
- the group IDfragmentCollectionId
- the fragment collection IDorderByComparator
- the comparator to order the set by (optionally null
)NoSuchEntryException
- if a matching fragment entry could not be foundpublic static FragmentEntry fetchByG_FCI_First(long groupId, long fragmentCollectionId, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator)
groupId
- the group IDfragmentCollectionId
- the fragment collection IDorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching fragment entry could not be foundpublic static FragmentEntry findByG_FCI_Last(long groupId, long fragmentCollectionId, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator) throws NoSuchEntryException
groupId
- the group IDfragmentCollectionId
- the fragment collection IDorderByComparator
- the comparator to order the set by (optionally null
)NoSuchEntryException
- if a matching fragment entry could not be foundpublic static FragmentEntry fetchByG_FCI_Last(long groupId, long fragmentCollectionId, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator)
groupId
- the group IDfragmentCollectionId
- the fragment collection IDorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching fragment entry could not be foundpublic static FragmentEntry[] findByG_FCI_PrevAndNext(long fragmentEntryId, long groupId, long fragmentCollectionId, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator) throws NoSuchEntryException
fragmentEntryId
- the primary key of the current fragment entrygroupId
- the group IDfragmentCollectionId
- the fragment collection IDorderByComparator
- the comparator to order the set by (optionally null
)NoSuchEntryException
- if a fragment entry with the primary key could not be foundpublic static void removeByG_FCI(long groupId, long fragmentCollectionId)
groupId
- the group IDfragmentCollectionId
- the fragment collection IDpublic static int countByG_FCI(long groupId, long fragmentCollectionId)
groupId
- the group IDfragmentCollectionId
- the fragment collection IDpublic static FragmentEntry findByG_FEK(long groupId, java.lang.String fragmentEntryKey) throws NoSuchEntryException
NoSuchEntryException
if it could not be found.groupId
- the group IDfragmentEntryKey
- the fragment entry keyNoSuchEntryException
- if a matching fragment entry could not be foundpublic static FragmentEntry fetchByG_FEK(long groupId, java.lang.String fragmentEntryKey)
null
if it could not be found. Uses the finder cache.groupId
- the group IDfragmentEntryKey
- the fragment entry keynull
if a matching fragment entry could not be foundpublic static FragmentEntry fetchByG_FEK(long groupId, java.lang.String fragmentEntryKey, boolean retrieveFromCache)
null
if it could not be found, optionally using the finder cache.groupId
- the group IDfragmentEntryKey
- the fragment entry keyretrieveFromCache
- whether to retrieve from the finder cachenull
if a matching fragment entry could not be foundpublic static FragmentEntry removeByG_FEK(long groupId, java.lang.String fragmentEntryKey) throws NoSuchEntryException
groupId
- the group IDfragmentEntryKey
- the fragment entry keyNoSuchEntryException
public static int countByG_FEK(long groupId, java.lang.String fragmentEntryKey)
groupId
- the group IDfragmentEntryKey
- the fragment entry keypublic static java.util.List<FragmentEntry> findByG_FCI_LikeN(long groupId, long fragmentCollectionId, java.lang.String name)
groupId
- the group IDfragmentCollectionId
- the fragment collection IDname
- the namepublic static java.util.List<FragmentEntry> findByG_FCI_LikeN(long groupId, long fragmentCollectionId, java.lang.String name, int start, int end)
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 and pagination is required (start
and end
are not QueryUtil#ALL_POS
), then the query will include the default ORDER BY logic from FragmentEntryModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
groupId
- the group IDfragmentCollectionId
- the fragment collection IDname
- the namestart
- the lower bound of the range of fragment entriesend
- the upper bound of the range of fragment entries (not inclusive)public static java.util.List<FragmentEntry> findByG_FCI_LikeN(long groupId, long fragmentCollectionId, java.lang.String name, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator)
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 and pagination is required (start
and end
are not QueryUtil#ALL_POS
), then the query will include the default ORDER BY logic from FragmentEntryModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
groupId
- the group IDfragmentCollectionId
- the fragment collection IDname
- the namestart
- the lower bound of the range of fragment entriesend
- the upper bound of the range of fragment entries (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)public static java.util.List<FragmentEntry> findByG_FCI_LikeN(long groupId, long fragmentCollectionId, java.lang.String name, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator, boolean retrieveFromCache)
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 and pagination is required (start
and end
are not QueryUtil#ALL_POS
), then the query will include the default ORDER BY logic from FragmentEntryModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
groupId
- the group IDfragmentCollectionId
- the fragment collection IDname
- the namestart
- the lower bound of the range of fragment entriesend
- the upper bound of the range of fragment entries (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)retrieveFromCache
- whether to retrieve from the finder cachepublic static FragmentEntry findByG_FCI_LikeN_First(long groupId, long fragmentCollectionId, java.lang.String name, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator) throws NoSuchEntryException
groupId
- the group IDfragmentCollectionId
- the fragment collection IDname
- the nameorderByComparator
- the comparator to order the set by (optionally null
)NoSuchEntryException
- if a matching fragment entry could not be foundpublic static FragmentEntry fetchByG_FCI_LikeN_First(long groupId, long fragmentCollectionId, java.lang.String name, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator)
groupId
- the group IDfragmentCollectionId
- the fragment collection IDname
- the nameorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching fragment entry could not be foundpublic static FragmentEntry findByG_FCI_LikeN_Last(long groupId, long fragmentCollectionId, java.lang.String name, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator) throws NoSuchEntryException
groupId
- the group IDfragmentCollectionId
- the fragment collection IDname
- the nameorderByComparator
- the comparator to order the set by (optionally null
)NoSuchEntryException
- if a matching fragment entry could not be foundpublic static FragmentEntry fetchByG_FCI_LikeN_Last(long groupId, long fragmentCollectionId, java.lang.String name, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator)
groupId
- the group IDfragmentCollectionId
- the fragment collection IDname
- the nameorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching fragment entry could not be foundpublic static FragmentEntry[] findByG_FCI_LikeN_PrevAndNext(long fragmentEntryId, long groupId, long fragmentCollectionId, java.lang.String name, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator) throws NoSuchEntryException
fragmentEntryId
- the primary key of the current fragment entrygroupId
- the group IDfragmentCollectionId
- the fragment collection IDname
- the nameorderByComparator
- the comparator to order the set by (optionally null
)NoSuchEntryException
- if a fragment entry with the primary key could not be foundpublic static void removeByG_FCI_LikeN(long groupId, long fragmentCollectionId, java.lang.String name)
groupId
- the group IDfragmentCollectionId
- the fragment collection IDname
- the namepublic static int countByG_FCI_LikeN(long groupId, long fragmentCollectionId, java.lang.String name)
groupId
- the group IDfragmentCollectionId
- the fragment collection IDname
- the namepublic static java.util.List<FragmentEntry> findByG_FCI_S(long groupId, long fragmentCollectionId, int status)
groupId
- the group IDfragmentCollectionId
- the fragment collection IDstatus
- the statuspublic static java.util.List<FragmentEntry> findByG_FCI_S(long groupId, long fragmentCollectionId, int status, int start, int end)
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 and pagination is required (start
and end
are not QueryUtil#ALL_POS
), then the query will include the default ORDER BY logic from FragmentEntryModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
groupId
- the group IDfragmentCollectionId
- the fragment collection IDstatus
- the statusstart
- the lower bound of the range of fragment entriesend
- the upper bound of the range of fragment entries (not inclusive)public static java.util.List<FragmentEntry> findByG_FCI_S(long groupId, long fragmentCollectionId, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator)
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 and pagination is required (start
and end
are not QueryUtil#ALL_POS
), then the query will include the default ORDER BY logic from FragmentEntryModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
groupId
- the group IDfragmentCollectionId
- the fragment collection IDstatus
- the statusstart
- the lower bound of the range of fragment entriesend
- the upper bound of the range of fragment entries (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)public static java.util.List<FragmentEntry> findByG_FCI_S(long groupId, long fragmentCollectionId, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator, boolean retrieveFromCache)
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 and pagination is required (start
and end
are not QueryUtil#ALL_POS
), then the query will include the default ORDER BY logic from FragmentEntryModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
groupId
- the group IDfragmentCollectionId
- the fragment collection IDstatus
- the statusstart
- the lower bound of the range of fragment entriesend
- the upper bound of the range of fragment entries (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)retrieveFromCache
- whether to retrieve from the finder cachepublic static FragmentEntry findByG_FCI_S_First(long groupId, long fragmentCollectionId, int status, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator) throws NoSuchEntryException
groupId
- the group IDfragmentCollectionId
- the fragment collection IDstatus
- the statusorderByComparator
- the comparator to order the set by (optionally null
)NoSuchEntryException
- if a matching fragment entry could not be foundpublic static FragmentEntry fetchByG_FCI_S_First(long groupId, long fragmentCollectionId, int status, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator)
groupId
- the group IDfragmentCollectionId
- the fragment collection IDstatus
- the statusorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching fragment entry could not be foundpublic static FragmentEntry findByG_FCI_S_Last(long groupId, long fragmentCollectionId, int status, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator) throws NoSuchEntryException
groupId
- the group IDfragmentCollectionId
- the fragment collection IDstatus
- the statusorderByComparator
- the comparator to order the set by (optionally null
)NoSuchEntryException
- if a matching fragment entry could not be foundpublic static FragmentEntry fetchByG_FCI_S_Last(long groupId, long fragmentCollectionId, int status, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator)
groupId
- the group IDfragmentCollectionId
- the fragment collection IDstatus
- the statusorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching fragment entry could not be foundpublic static FragmentEntry[] findByG_FCI_S_PrevAndNext(long fragmentEntryId, long groupId, long fragmentCollectionId, int status, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator) throws NoSuchEntryException
fragmentEntryId
- the primary key of the current fragment entrygroupId
- the group IDfragmentCollectionId
- the fragment collection IDstatus
- the statusorderByComparator
- the comparator to order the set by (optionally null
)NoSuchEntryException
- if a fragment entry with the primary key could not be foundpublic static void removeByG_FCI_S(long groupId, long fragmentCollectionId, int status)
groupId
- the group IDfragmentCollectionId
- the fragment collection IDstatus
- the statuspublic static int countByG_FCI_S(long groupId, long fragmentCollectionId, int status)
groupId
- the group IDfragmentCollectionId
- the fragment collection IDstatus
- the statuspublic static java.util.List<FragmentEntry> findByG_FCI_LikeN_S(long groupId, long fragmentCollectionId, java.lang.String name, int status)
groupId
- the group IDfragmentCollectionId
- the fragment collection IDname
- the namestatus
- the statuspublic static java.util.List<FragmentEntry> findByG_FCI_LikeN_S(long groupId, long fragmentCollectionId, java.lang.String name, int status, int start, int end)
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 and pagination is required (start
and end
are not QueryUtil#ALL_POS
), then the query will include the default ORDER BY logic from FragmentEntryModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
groupId
- the group IDfragmentCollectionId
- the fragment collection IDname
- the namestatus
- the statusstart
- the lower bound of the range of fragment entriesend
- the upper bound of the range of fragment entries (not inclusive)public static java.util.List<FragmentEntry> findByG_FCI_LikeN_S(long groupId, long fragmentCollectionId, java.lang.String name, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator)
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 and pagination is required (start
and end
are not QueryUtil#ALL_POS
), then the query will include the default ORDER BY logic from FragmentEntryModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
groupId
- the group IDfragmentCollectionId
- the fragment collection IDname
- the namestatus
- the statusstart
- the lower bound of the range of fragment entriesend
- the upper bound of the range of fragment entries (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)public static java.util.List<FragmentEntry> findByG_FCI_LikeN_S(long groupId, long fragmentCollectionId, java.lang.String name, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator, boolean retrieveFromCache)
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 and pagination is required (start
and end
are not QueryUtil#ALL_POS
), then the query will include the default ORDER BY logic from FragmentEntryModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
groupId
- the group IDfragmentCollectionId
- the fragment collection IDname
- the namestatus
- the statusstart
- the lower bound of the range of fragment entriesend
- the upper bound of the range of fragment entries (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)retrieveFromCache
- whether to retrieve from the finder cachepublic static FragmentEntry findByG_FCI_LikeN_S_First(long groupId, long fragmentCollectionId, java.lang.String name, int status, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator) throws NoSuchEntryException
groupId
- the group IDfragmentCollectionId
- the fragment collection IDname
- the namestatus
- the statusorderByComparator
- the comparator to order the set by (optionally null
)NoSuchEntryException
- if a matching fragment entry could not be foundpublic static FragmentEntry fetchByG_FCI_LikeN_S_First(long groupId, long fragmentCollectionId, java.lang.String name, int status, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator)
groupId
- the group IDfragmentCollectionId
- the fragment collection IDname
- the namestatus
- the statusorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching fragment entry could not be foundpublic static FragmentEntry findByG_FCI_LikeN_S_Last(long groupId, long fragmentCollectionId, java.lang.String name, int status, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator) throws NoSuchEntryException
groupId
- the group IDfragmentCollectionId
- the fragment collection IDname
- the namestatus
- the statusorderByComparator
- the comparator to order the set by (optionally null
)NoSuchEntryException
- if a matching fragment entry could not be foundpublic static FragmentEntry fetchByG_FCI_LikeN_S_Last(long groupId, long fragmentCollectionId, java.lang.String name, int status, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator)
groupId
- the group IDfragmentCollectionId
- the fragment collection IDname
- the namestatus
- the statusorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching fragment entry could not be foundpublic static FragmentEntry[] findByG_FCI_LikeN_S_PrevAndNext(long fragmentEntryId, long groupId, long fragmentCollectionId, java.lang.String name, int status, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator) throws NoSuchEntryException
fragmentEntryId
- the primary key of the current fragment entrygroupId
- the group IDfragmentCollectionId
- the fragment collection IDname
- the namestatus
- the statusorderByComparator
- the comparator to order the set by (optionally null
)NoSuchEntryException
- if a fragment entry with the primary key could not be foundpublic static void removeByG_FCI_LikeN_S(long groupId, long fragmentCollectionId, java.lang.String name, int status)
groupId
- the group IDfragmentCollectionId
- the fragment collection IDname
- the namestatus
- the statuspublic static int countByG_FCI_LikeN_S(long groupId, long fragmentCollectionId, java.lang.String name, int status)
groupId
- the group IDfragmentCollectionId
- the fragment collection IDname
- the namestatus
- the statuspublic static void cacheResult(FragmentEntry fragmentEntry)
fragmentEntry
- the fragment entrypublic static void cacheResult(java.util.List<FragmentEntry> fragmentEntries)
fragmentEntries
- the fragment entriespublic static FragmentEntry create(long fragmentEntryId)
fragmentEntryId
- the primary key for the new fragment entrypublic static FragmentEntry remove(long fragmentEntryId) throws NoSuchEntryException
fragmentEntryId
- the primary key of the fragment entryNoSuchEntryException
- if a fragment entry with the primary key could not be foundpublic static FragmentEntry updateImpl(FragmentEntry fragmentEntry)
public static FragmentEntry findByPrimaryKey(long fragmentEntryId) throws NoSuchEntryException
NoSuchEntryException
if it could not be found.fragmentEntryId
- the primary key of the fragment entryNoSuchEntryException
- if a fragment entry with the primary key could not be foundpublic static FragmentEntry fetchByPrimaryKey(long fragmentEntryId)
null
if it could not be found.fragmentEntryId
- the primary key of the fragment entrynull
if a fragment entry with the primary key could not be foundpublic static java.util.Map<java.io.Serializable,FragmentEntry> fetchByPrimaryKeys(java.util.Set<java.io.Serializable> primaryKeys)
public static java.util.List<FragmentEntry> findAll()
public static java.util.List<FragmentEntry> findAll(int start, int end)
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 and pagination is required (start
and end
are not QueryUtil#ALL_POS
), then the query will include the default ORDER BY logic from FragmentEntryModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
start
- the lower bound of the range of fragment entriesend
- the upper bound of the range of fragment entries (not inclusive)public static java.util.List<FragmentEntry> findAll(int start, int end, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator)
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 and pagination is required (start
and end
are not QueryUtil#ALL_POS
), then the query will include the default ORDER BY logic from FragmentEntryModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
start
- the lower bound of the range of fragment entriesend
- the upper bound of the range of fragment entries (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)public static java.util.List<FragmentEntry> findAll(int start, int end, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntry> orderByComparator, boolean retrieveFromCache)
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 and pagination is required (start
and end
are not QueryUtil#ALL_POS
), then the query will include the default ORDER BY logic from FragmentEntryModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
start
- the lower bound of the range of fragment entriesend
- the upper bound of the range of fragment entries (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)retrieveFromCache
- whether to retrieve from the finder cachepublic static void removeAll()
public static int countAll()
public static java.util.Set<java.lang.String> getBadColumnNames()
public static FragmentEntryPersistence getPersistence()