Interface FragmentEntryVersionPersistence

All Superinterfaces:
com.liferay.portal.kernel.service.persistence.BasePersistence<FragmentEntryVersion>, com.liferay.portal.kernel.service.persistence.change.tracking.CTPersistence<FragmentEntryVersion>

@ProviderType public interface FragmentEntryVersionPersistence extends com.liferay.portal.kernel.service.persistence.BasePersistence<FragmentEntryVersion>, com.liferay.portal.kernel.service.persistence.change.tracking.CTPersistence<FragmentEntryVersion>
The persistence interface for the fragment entry version service.

Caching information and settings can be found in portal.properties

See Also:
Generated:
  • Method Details

    • findByFragmentEntryId

      List<FragmentEntryVersion> findByFragmentEntryId(long fragmentEntryId)
      Returns all the fragment entry versions where fragmentEntryId = ?.
      Parameters:
      fragmentEntryId - the fragment entry ID
      Returns:
      the matching fragment entry versions
    • findByFragmentEntryId

      List<FragmentEntryVersion> findByFragmentEntryId(long fragmentEntryId, int start, int end)
      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.

      Parameters:
      fragmentEntryId - the fragment entry ID
      start - the lower bound of the range of fragment entry versions
      end - the upper bound of the range of fragment entry versions (not inclusive)
      Returns:
      the range of matching fragment entry versions
    • findByFragmentEntryId

      List<FragmentEntryVersion> findByFragmentEntryId(long fragmentEntryId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> 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.

      Parameters:
      fragmentEntryId - the fragment entry ID
      start - the lower bound of the range of fragment entry versions
      end - the upper bound of the range of fragment entry versions (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching fragment entry versions
    • findByFragmentEntryId

      List<FragmentEntryVersion> findByFragmentEntryId(long fragmentEntryId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator, boolean useFinderCache)
      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.

      Parameters:
      fragmentEntryId - the fragment entry ID
      start - the lower bound of the range of fragment entry versions
      end - the upper bound of the range of fragment entry versions (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching fragment entry versions
    • findByFragmentEntryId_First

      FragmentEntryVersion findByFragmentEntryId_First(long fragmentEntryId, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator) throws NoSuchEntryVersionException
      Returns the first fragment entry version in the ordered set where fragmentEntryId = ?.
      Parameters:
      fragmentEntryId - the fragment entry ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching fragment entry version
      Throws:
      NoSuchEntryVersionException - if a matching fragment entry version could not be found
    • fetchByFragmentEntryId_First

      FragmentEntryVersion fetchByFragmentEntryId_First(long fragmentEntryId, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator)
      Returns the first fragment entry version in the ordered set where fragmentEntryId = ?.
      Parameters:
      fragmentEntryId - the fragment entry ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching fragment entry version, or null if a matching fragment entry version could not be found
    • findByFragmentEntryId_Last

      FragmentEntryVersion findByFragmentEntryId_Last(long fragmentEntryId, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator) throws NoSuchEntryVersionException
      Returns the last fragment entry version in the ordered set where fragmentEntryId = ?.
      Parameters:
      fragmentEntryId - the fragment entry ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching fragment entry version
      Throws:
      NoSuchEntryVersionException - if a matching fragment entry version could not be found
    • fetchByFragmentEntryId_Last

      FragmentEntryVersion fetchByFragmentEntryId_Last(long fragmentEntryId, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator)
      Returns the last fragment entry version in the ordered set where fragmentEntryId = ?.
      Parameters:
      fragmentEntryId - the fragment entry ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching fragment entry version, or null if a matching fragment entry version could not be found
    • findByFragmentEntryId_PrevAndNext

      FragmentEntryVersion[] findByFragmentEntryId_PrevAndNext(long fragmentEntryVersionId, long fragmentEntryId, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator) throws NoSuchEntryVersionException
      Returns the fragment entry versions before and after the current fragment entry version in the ordered set where fragmentEntryId = ?.
      Parameters:
      fragmentEntryVersionId - the primary key of the current fragment entry version
      fragmentEntryId - the fragment entry ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next fragment entry version
      Throws:
      NoSuchEntryVersionException - if a fragment entry version with the primary key could not be found
    • removeByFragmentEntryId

      void removeByFragmentEntryId(long fragmentEntryId)
      Removes all the fragment entry versions where fragmentEntryId = ? from the database.
      Parameters:
      fragmentEntryId - the fragment entry ID
    • countByFragmentEntryId

      int countByFragmentEntryId(long fragmentEntryId)
      Returns the number of fragment entry versions where fragmentEntryId = ?.
      Parameters:
      fragmentEntryId - the fragment entry ID
      Returns:
      the number of matching fragment entry versions
    • findByFragmentEntryId_Version

      FragmentEntryVersion findByFragmentEntryId_Version(long fragmentEntryId, int version) throws NoSuchEntryVersionException
      Returns the fragment entry version where fragmentEntryId = ? and version = ? or throws a NoSuchEntryVersionException if it could not be found.
      Parameters:
      fragmentEntryId - the fragment entry ID
      version - the version
      Returns:
      the matching fragment entry version
      Throws:
      NoSuchEntryVersionException - if a matching fragment entry version could not be found
    • fetchByFragmentEntryId_Version

      FragmentEntryVersion fetchByFragmentEntryId_Version(long fragmentEntryId, int version)
      Returns the fragment entry version where fragmentEntryId = ? and version = ? or returns null if it could not be found. Uses the finder cache.
      Parameters:
      fragmentEntryId - the fragment entry ID
      version - the version
      Returns:
      the matching fragment entry version, or null if a matching fragment entry version could not be found
    • fetchByFragmentEntryId_Version

      FragmentEntryVersion fetchByFragmentEntryId_Version(long fragmentEntryId, int version, boolean useFinderCache)
      Returns the fragment entry version where fragmentEntryId = ? and version = ? or returns null if it could not be found, optionally using the finder cache.
      Parameters:
      fragmentEntryId - the fragment entry ID
      version - the version
      useFinderCache - whether to use the finder cache
      Returns:
      the matching fragment entry version, or null if a matching fragment entry version could not be found
    • removeByFragmentEntryId_Version

      FragmentEntryVersion removeByFragmentEntryId_Version(long fragmentEntryId, int version) throws NoSuchEntryVersionException
      Removes the fragment entry version where fragmentEntryId = ? and version = ? from the database.
      Parameters:
      fragmentEntryId - the fragment entry ID
      version - the version
      Returns:
      the fragment entry version that was removed
      Throws:
      NoSuchEntryVersionException
    • countByFragmentEntryId_Version

      int countByFragmentEntryId_Version(long fragmentEntryId, int version)
      Returns the number of fragment entry versions where fragmentEntryId = ? and version = ?.
      Parameters:
      fragmentEntryId - the fragment entry ID
      version - the version
      Returns:
      the number of matching fragment entry versions
    • findByUuid

      List<FragmentEntryVersion> findByUuid(String uuid)
      Returns all the fragment entry versions where uuid = ?.
      Parameters:
      uuid - the uuid
      Returns:
      the matching fragment entry versions
    • findByUuid

      List<FragmentEntryVersion> findByUuid(String uuid, int start, int end)
      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.

      Parameters:
      uuid - the uuid
      start - the lower bound of the range of fragment entry versions
      end - the upper bound of the range of fragment entry versions (not inclusive)
      Returns:
      the range of matching fragment entry versions
    • findByUuid

      List<FragmentEntryVersion> findByUuid(String uuid, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> 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.

      Parameters:
      uuid - the uuid
      start - the lower bound of the range of fragment entry versions
      end - the upper bound of the range of fragment entry versions (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching fragment entry versions
    • findByUuid

      List<FragmentEntryVersion> findByUuid(String uuid, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator, boolean useFinderCache)
      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.

      Parameters:
      uuid - the uuid
      start - the lower bound of the range of fragment entry versions
      end - the upper bound of the range of fragment entry versions (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching fragment entry versions
    • findByUuid_First

      FragmentEntryVersion findByUuid_First(String uuid, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator) throws NoSuchEntryVersionException
      Returns the first fragment entry version in the ordered set where uuid = ?.
      Parameters:
      uuid - the uuid
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching fragment entry version
      Throws:
      NoSuchEntryVersionException - if a matching fragment entry version could not be found
    • fetchByUuid_First

      FragmentEntryVersion fetchByUuid_First(String uuid, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator)
      Returns the first fragment entry version in the ordered set where uuid = ?.
      Parameters:
      uuid - the uuid
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching fragment entry version, or null if a matching fragment entry version could not be found
    • findByUuid_Last

      FragmentEntryVersion findByUuid_Last(String uuid, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator) throws NoSuchEntryVersionException
      Returns the last fragment entry version in the ordered set where uuid = ?.
      Parameters:
      uuid - the uuid
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching fragment entry version
      Throws:
      NoSuchEntryVersionException - if a matching fragment entry version could not be found
    • fetchByUuid_Last

      FragmentEntryVersion fetchByUuid_Last(String uuid, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator)
      Returns the last fragment entry version in the ordered set where uuid = ?.
      Parameters:
      uuid - the uuid
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching fragment entry version, or null if a matching fragment entry version could not be found
    • findByUuid_PrevAndNext

      FragmentEntryVersion[] findByUuid_PrevAndNext(long fragmentEntryVersionId, String uuid, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator) throws NoSuchEntryVersionException
      Returns the fragment entry versions before and after the current fragment entry version in the ordered set where uuid = ?.
      Parameters:
      fragmentEntryVersionId - the primary key of the current fragment entry version
      uuid - the uuid
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next fragment entry version
      Throws:
      NoSuchEntryVersionException - if a fragment entry version with the primary key could not be found
    • removeByUuid

      void removeByUuid(String uuid)
      Removes all the fragment entry versions where uuid = ? from the database.
      Parameters:
      uuid - the uuid
    • countByUuid

      int countByUuid(String uuid)
      Returns the number of fragment entry versions where uuid = ?.
      Parameters:
      uuid - the uuid
      Returns:
      the number of matching fragment entry versions
    • findByUuid_Version

      List<FragmentEntryVersion> findByUuid_Version(String uuid, int version)
      Returns all the fragment entry versions where uuid = ? and version = ?.
      Parameters:
      uuid - the uuid
      version - the version
      Returns:
      the matching fragment entry versions
    • findByUuid_Version

      List<FragmentEntryVersion> findByUuid_Version(String uuid, int version, int start, int end)
      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.

      Parameters:
      uuid - the uuid
      version - the version
      start - the lower bound of the range of fragment entry versions
      end - the upper bound of the range of fragment entry versions (not inclusive)
      Returns:
      the range of matching fragment entry versions
    • findByUuid_Version

      List<FragmentEntryVersion> findByUuid_Version(String uuid, int version, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> 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.

      Parameters:
      uuid - the uuid
      version - the version
      start - the lower bound of the range of fragment entry versions
      end - the upper bound of the range of fragment entry versions (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching fragment entry versions
    • findByUuid_Version

      List<FragmentEntryVersion> findByUuid_Version(String uuid, int version, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator, boolean useFinderCache)
      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.

      Parameters:
      uuid - the uuid
      version - the version
      start - the lower bound of the range of fragment entry versions
      end - the upper bound of the range of fragment entry versions (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching fragment entry versions
    • findByUuid_Version_First

      FragmentEntryVersion findByUuid_Version_First(String uuid, int version, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator) throws NoSuchEntryVersionException
      Returns the first fragment entry version in the ordered set where uuid = ? and version = ?.
      Parameters:
      uuid - the uuid
      version - the version
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching fragment entry version
      Throws:
      NoSuchEntryVersionException - if a matching fragment entry version could not be found
    • fetchByUuid_Version_First

      FragmentEntryVersion fetchByUuid_Version_First(String uuid, int version, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator)
      Returns the first fragment entry version in the ordered set where uuid = ? and version = ?.
      Parameters:
      uuid - the uuid
      version - the version
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching fragment entry version, or null if a matching fragment entry version could not be found
    • findByUuid_Version_Last

      FragmentEntryVersion findByUuid_Version_Last(String uuid, int version, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator) throws NoSuchEntryVersionException
      Returns the last fragment entry version in the ordered set where uuid = ? and version = ?.
      Parameters:
      uuid - the uuid
      version - the version
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching fragment entry version
      Throws:
      NoSuchEntryVersionException - if a matching fragment entry version could not be found
    • fetchByUuid_Version_Last

      FragmentEntryVersion fetchByUuid_Version_Last(String uuid, int version, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator)
      Returns the last fragment entry version in the ordered set where uuid = ? and version = ?.
      Parameters:
      uuid - the uuid
      version - the version
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching fragment entry version, or null if a matching fragment entry version could not be found
    • findByUuid_Version_PrevAndNext

      FragmentEntryVersion[] findByUuid_Version_PrevAndNext(long fragmentEntryVersionId, String uuid, int version, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator) throws NoSuchEntryVersionException
      Returns the fragment entry versions before and after the current fragment entry version in the ordered set where uuid = ? and version = ?.
      Parameters:
      fragmentEntryVersionId - the primary key of the current fragment entry version
      uuid - the uuid
      version - the version
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next fragment entry version
      Throws:
      NoSuchEntryVersionException - if a fragment entry version with the primary key could not be found
    • removeByUuid_Version

      void removeByUuid_Version(String uuid, int version)
      Removes all the fragment entry versions where uuid = ? and version = ? from the database.
      Parameters:
      uuid - the uuid
      version - the version
    • countByUuid_Version

      int countByUuid_Version(String uuid, int version)
      Returns the number of fragment entry versions where uuid = ? and version = ?.
      Parameters:
      uuid - the uuid
      version - the version
      Returns:
      the number of matching fragment entry versions
    • findByUUID_G

      List<FragmentEntryVersion> findByUUID_G(String uuid, long groupId)
      Returns all the fragment entry versions where uuid = ? and groupId = ?.
      Parameters:
      uuid - the uuid
      groupId - the group ID
      Returns:
      the matching fragment entry versions
    • findByUUID_G

      List<FragmentEntryVersion> findByUUID_G(String uuid, long groupId, int start, int end)
      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.

      Parameters:
      uuid - the uuid
      groupId - the group ID
      start - the lower bound of the range of fragment entry versions
      end - the upper bound of the range of fragment entry versions (not inclusive)
      Returns:
      the range of matching fragment entry versions
    • findByUUID_G

      List<FragmentEntryVersion> findByUUID_G(String uuid, long groupId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> 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.

      Parameters:
      uuid - the uuid
      groupId - the group ID
      start - the lower bound of the range of fragment entry versions
      end - the upper bound of the range of fragment entry versions (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching fragment entry versions
    • findByUUID_G

      List<FragmentEntryVersion> findByUUID_G(String uuid, long groupId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator, boolean useFinderCache)
      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.

      Parameters:
      uuid - the uuid
      groupId - the group ID
      start - the lower bound of the range of fragment entry versions
      end - the upper bound of the range of fragment entry versions (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching fragment entry versions
    • findByUUID_G_First

      FragmentEntryVersion findByUUID_G_First(String uuid, long groupId, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator) throws NoSuchEntryVersionException
      Returns the first fragment entry version in the ordered set where uuid = ? and groupId = ?.
      Parameters:
      uuid - the uuid
      groupId - the group ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching fragment entry version
      Throws:
      NoSuchEntryVersionException - if a matching fragment entry version could not be found
    • fetchByUUID_G_First

      FragmentEntryVersion fetchByUUID_G_First(String uuid, long groupId, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator)
      Returns the first fragment entry version in the ordered set where uuid = ? and groupId = ?.
      Parameters:
      uuid - the uuid
      groupId - the group ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching fragment entry version, or null if a matching fragment entry version could not be found
    • findByUUID_G_Last

      FragmentEntryVersion findByUUID_G_Last(String uuid, long groupId, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator) throws NoSuchEntryVersionException
      Returns the last fragment entry version in the ordered set where uuid = ? and groupId = ?.
      Parameters:
      uuid - the uuid
      groupId - the group ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching fragment entry version
      Throws:
      NoSuchEntryVersionException - if a matching fragment entry version could not be found
    • fetchByUUID_G_Last

      FragmentEntryVersion fetchByUUID_G_Last(String uuid, long groupId, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator)
      Returns the last fragment entry version in the ordered set where uuid = ? and groupId = ?.
      Parameters:
      uuid - the uuid
      groupId - the group ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching fragment entry version, or null if a matching fragment entry version could not be found
    • findByUUID_G_PrevAndNext

      FragmentEntryVersion[] findByUUID_G_PrevAndNext(long fragmentEntryVersionId, String uuid, long groupId, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator) throws NoSuchEntryVersionException
      Returns the fragment entry versions before and after the current fragment entry version in the ordered set where uuid = ? and groupId = ?.
      Parameters:
      fragmentEntryVersionId - the primary key of the current fragment entry version
      uuid - the uuid
      groupId - the group ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next fragment entry version
      Throws:
      NoSuchEntryVersionException - if a fragment entry version with the primary key could not be found
    • removeByUUID_G

      void removeByUUID_G(String uuid, long groupId)
      Removes all the fragment entry versions where uuid = ? and groupId = ? from the database.
      Parameters:
      uuid - the uuid
      groupId - the group ID
    • countByUUID_G

      int countByUUID_G(String uuid, long groupId)
      Returns the number of fragment entry versions where uuid = ? and groupId = ?.
      Parameters:
      uuid - the uuid
      groupId - the group ID
      Returns:
      the number of matching fragment entry versions
    • findByUUID_G_Version

      FragmentEntryVersion findByUUID_G_Version(String uuid, long groupId, int version) throws NoSuchEntryVersionException
      Returns the fragment entry version where uuid = ? and groupId = ? and version = ? or throws a NoSuchEntryVersionException if it could not be found.
      Parameters:
      uuid - the uuid
      groupId - the group ID
      version - the version
      Returns:
      the matching fragment entry version
      Throws:
      NoSuchEntryVersionException - if a matching fragment entry version could not be found
    • fetchByUUID_G_Version

      FragmentEntryVersion fetchByUUID_G_Version(String uuid, long groupId, int 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.
      Parameters:
      uuid - the uuid
      groupId - the group ID
      version - the version
      Returns:
      the matching fragment entry version, or null if a matching fragment entry version could not be found
    • fetchByUUID_G_Version

      FragmentEntryVersion fetchByUUID_G_Version(String uuid, long groupId, int version, boolean useFinderCache)
      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.
      Parameters:
      uuid - the uuid
      groupId - the group ID
      version - the version
      useFinderCache - whether to use the finder cache
      Returns:
      the matching fragment entry version, or null if a matching fragment entry version could not be found
    • removeByUUID_G_Version

      FragmentEntryVersion removeByUUID_G_Version(String uuid, long groupId, int version) throws NoSuchEntryVersionException
      Removes the fragment entry version where uuid = ? and groupId = ? and version = ? from the database.
      Parameters:
      uuid - the uuid
      groupId - the group ID
      version - the version
      Returns:
      the fragment entry version that was removed
      Throws:
      NoSuchEntryVersionException
    • countByUUID_G_Version

      int countByUUID_G_Version(String uuid, long groupId, int version)
      Returns the number of fragment entry versions where uuid = ? and groupId = ? and version = ?.
      Parameters:
      uuid - the uuid
      groupId - the group ID
      version - the version
      Returns:
      the number of matching fragment entry versions
    • findByUuid_C

      List<FragmentEntryVersion> findByUuid_C(String uuid, long companyId)
      Returns all the fragment entry versions where uuid = ? and companyId = ?.
      Parameters:
      uuid - the uuid
      companyId - the company ID
      Returns:
      the matching fragment entry versions
    • findByUuid_C

      List<FragmentEntryVersion> findByUuid_C(String uuid, long companyId, int start, int end)
      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.

      Parameters:
      uuid - the uuid
      companyId - the company ID
      start - the lower bound of the range of fragment entry versions
      end - the upper bound of the range of fragment entry versions (not inclusive)
      Returns:
      the range of matching fragment entry versions
    • findByUuid_C

      List<FragmentEntryVersion> findByUuid_C(String uuid, long companyId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> 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.

      Parameters:
      uuid - the uuid
      companyId - the company ID
      start - the lower bound of the range of fragment entry versions
      end - the upper bound of the range of fragment entry versions (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching fragment entry versions
    • findByUuid_C

      List<FragmentEntryVersion> findByUuid_C(String uuid, long companyId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator, boolean useFinderCache)
      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.

      Parameters:
      uuid - the uuid
      companyId - the company ID
      start - the lower bound of the range of fragment entry versions
      end - the upper bound of the range of fragment entry versions (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching fragment entry versions
    • findByUuid_C_First

      FragmentEntryVersion findByUuid_C_First(String uuid, long companyId, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator) throws NoSuchEntryVersionException
      Returns the first fragment entry version in the ordered set where uuid = ? and companyId = ?.
      Parameters:
      uuid - the uuid
      companyId - the company ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching fragment entry version
      Throws:
      NoSuchEntryVersionException - if a matching fragment entry version could not be found
    • fetchByUuid_C_First

      FragmentEntryVersion fetchByUuid_C_First(String uuid, long companyId, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator)
      Returns the first fragment entry version in the ordered set where uuid = ? and companyId = ?.
      Parameters:
      uuid - the uuid
      companyId - the company ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching fragment entry version, or null if a matching fragment entry version could not be found
    • findByUuid_C_Last

      FragmentEntryVersion findByUuid_C_Last(String uuid, long companyId, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator) throws NoSuchEntryVersionException
      Returns the last fragment entry version in the ordered set where uuid = ? and companyId = ?.
      Parameters:
      uuid - the uuid
      companyId - the company ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching fragment entry version
      Throws:
      NoSuchEntryVersionException - if a matching fragment entry version could not be found
    • fetchByUuid_C_Last

      FragmentEntryVersion fetchByUuid_C_Last(String uuid, long companyId, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator)
      Returns the last fragment entry version in the ordered set where uuid = ? and companyId = ?.
      Parameters:
      uuid - the uuid
      companyId - the company ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching fragment entry version, or null if a matching fragment entry version could not be found
    • findByUuid_C_PrevAndNext

      FragmentEntryVersion[] findByUuid_C_PrevAndNext(long fragmentEntryVersionId, String uuid, long companyId, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator) throws NoSuchEntryVersionException
      Returns the fragment entry versions before and after the current fragment entry version in the ordered set where uuid = ? and companyId = ?.
      Parameters:
      fragmentEntryVersionId - the primary key of the current fragment entry version
      uuid - the uuid
      companyId - the company ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next fragment entry version
      Throws:
      NoSuchEntryVersionException - if a fragment entry version with the primary key could not be found
    • removeByUuid_C

      void removeByUuid_C(String uuid, long companyId)
      Removes all the fragment entry versions where uuid = ? and companyId = ? from the database.
      Parameters:
      uuid - the uuid
      companyId - the company ID
    • countByUuid_C

      int countByUuid_C(String uuid, long companyId)
      Returns the number of fragment entry versions where uuid = ? and companyId = ?.
      Parameters:
      uuid - the uuid
      companyId - the company ID
      Returns:
      the number of matching fragment entry versions
    • findByUuid_C_Version

      List<FragmentEntryVersion> findByUuid_C_Version(String uuid, long companyId, int version)
      Returns all the fragment entry versions where uuid = ? and companyId = ? and version = ?.
      Parameters:
      uuid - the uuid
      companyId - the company ID
      version - the version
      Returns:
      the matching fragment entry versions
    • findByUuid_C_Version

      List<FragmentEntryVersion> findByUuid_C_Version(String uuid, long companyId, int version, int start, int end)
      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.

      Parameters:
      uuid - the uuid
      companyId - the company ID
      version - the version
      start - the lower bound of the range of fragment entry versions
      end - the upper bound of the range of fragment entry versions (not inclusive)
      Returns:
      the range of matching fragment entry versions
    • findByUuid_C_Version

      List<FragmentEntryVersion> findByUuid_C_Version(String uuid, long companyId, int version, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> 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.

      Parameters:
      uuid - the uuid
      companyId - the company ID
      version - the version
      start - the lower bound of the range of fragment entry versions
      end - the upper bound of the range of fragment entry versions (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching fragment entry versions
    • findByUuid_C_Version

      List<FragmentEntryVersion> findByUuid_C_Version(String uuid, long companyId, int version, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator, boolean useFinderCache)
      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.

      Parameters:
      uuid - the uuid
      companyId - the company ID
      version - the version
      start - the lower bound of the range of fragment entry versions
      end - the upper bound of the range of fragment entry versions (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching fragment entry versions
    • findByUuid_C_Version_First

      FragmentEntryVersion findByUuid_C_Version_First(String uuid, long companyId, int version, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator) throws NoSuchEntryVersionException
      Returns the first fragment entry version in the ordered set where uuid = ? and companyId = ? and version = ?.
      Parameters:
      uuid - the uuid
      companyId - the company ID
      version - the version
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching fragment entry version
      Throws:
      NoSuchEntryVersionException - if a matching fragment entry version could not be found
    • fetchByUuid_C_Version_First

      FragmentEntryVersion fetchByUuid_C_Version_First(String uuid, long companyId, int version, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator)
      Returns the first fragment entry version in the ordered set where uuid = ? and companyId = ? and version = ?.
      Parameters:
      uuid - the uuid
      companyId - the company ID
      version - the version
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching fragment entry version, or null if a matching fragment entry version could not be found
    • findByUuid_C_Version_Last

      FragmentEntryVersion findByUuid_C_Version_Last(String uuid, long companyId, int version, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator) throws NoSuchEntryVersionException
      Returns the last fragment entry version in the ordered set where uuid = ? and companyId = ? and version = ?.
      Parameters:
      uuid - the uuid
      companyId - the company ID
      version - the version
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching fragment entry version
      Throws:
      NoSuchEntryVersionException - if a matching fragment entry version could not be found
    • fetchByUuid_C_Version_Last

      FragmentEntryVersion fetchByUuid_C_Version_Last(String uuid, long companyId, int version, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator)
      Returns the last fragment entry version in the ordered set where uuid = ? and companyId = ? and version = ?.
      Parameters:
      uuid - the uuid
      companyId - the company ID
      version - the version
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching fragment entry version, or null if a matching fragment entry version could not be found
    • findByUuid_C_Version_PrevAndNext

      FragmentEntryVersion[] findByUuid_C_Version_PrevAndNext(long fragmentEntryVersionId, String uuid, long companyId, int version, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator) throws NoSuchEntryVersionException
      Returns the fragment entry versions before and after the current fragment entry version in the ordered set where uuid = ? and companyId = ? and version = ?.
      Parameters:
      fragmentEntryVersionId - the primary key of the current fragment entry version
      uuid - the uuid
      companyId - the company ID
      version - the version
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next fragment entry version
      Throws:
      NoSuchEntryVersionException - if a fragment entry version with the primary key could not be found
    • removeByUuid_C_Version

      void removeByUuid_C_Version(String uuid, long companyId, int version)
      Removes all the fragment entry versions where uuid = ? and companyId = ? and version = ? from the database.
      Parameters:
      uuid - the uuid
      companyId - the company ID
      version - the version
    • countByUuid_C_Version

      int countByUuid_C_Version(String uuid, long companyId, int version)
      Returns the number of fragment entry versions where uuid = ? and companyId = ? and version = ?.
      Parameters:
      uuid - the uuid
      companyId - the company ID
      version - the version
      Returns:
      the number of matching fragment entry versions
    • findByGroupId

      List<FragmentEntryVersion> findByGroupId(long groupId)
      Returns all the fragment entry versions where groupId = ?.
      Parameters:
      groupId - the group ID
      Returns:
      the matching fragment entry versions
    • findByGroupId

      List<FragmentEntryVersion> findByGroupId(long groupId, int start, int end)
      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.

      Parameters:
      groupId - the group ID
      start - the lower bound of the range of fragment entry versions
      end - the upper bound of the range of fragment entry versions (not inclusive)
      Returns:
      the range of matching fragment entry versions
    • findByGroupId

      List<FragmentEntryVersion> findByGroupId(long groupId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> 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.

      Parameters:
      groupId - the group ID
      start - the lower bound of the range of fragment entry versions
      end - the upper bound of the range of fragment entry versions (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching fragment entry versions
    • findByGroupId

      List<FragmentEntryVersion> findByGroupId(long groupId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator, boolean useFinderCache)
      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.

      Parameters:
      groupId - the group ID
      start - the lower bound of the range of fragment entry versions
      end - the upper bound of the range of fragment entry versions (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching fragment entry versions
    • findByGroupId_First

      FragmentEntryVersion findByGroupId_First(long groupId, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator) throws NoSuchEntryVersionException
      Returns the first fragment entry version in the ordered set where groupId = ?.
      Parameters:
      groupId - the group ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching fragment entry version
      Throws:
      NoSuchEntryVersionException - if a matching fragment entry version could not be found
    • fetchByGroupId_First

      FragmentEntryVersion fetchByGroupId_First(long groupId, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator)
      Returns the first fragment entry version in the ordered set where groupId = ?.
      Parameters:
      groupId - the group ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching fragment entry version, or null if a matching fragment entry version could not be found
    • findByGroupId_Last

      FragmentEntryVersion findByGroupId_Last(long groupId, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator) throws NoSuchEntryVersionException
      Returns the last fragment entry version in the ordered set where groupId = ?.
      Parameters:
      groupId - the group ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching fragment entry version
      Throws:
      NoSuchEntryVersionException - if a matching fragment entry version could not be found
    • fetchByGroupId_Last

      FragmentEntryVersion fetchByGroupId_Last(long groupId, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator)
      Returns the last fragment entry version in the ordered set where groupId = ?.
      Parameters:
      groupId - the group ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching fragment entry version, or null if a matching fragment entry version could not be found
    • findByGroupId_PrevAndNext

      FragmentEntryVersion[] findByGroupId_PrevAndNext(long fragmentEntryVersionId, long groupId, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator) throws NoSuchEntryVersionException
      Returns the fragment entry versions before and after the current fragment entry version in the ordered set where groupId = ?.
      Parameters:
      fragmentEntryVersionId - the primary key of the current fragment entry version
      groupId - the group ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next fragment entry version
      Throws:
      NoSuchEntryVersionException - if a fragment entry version with the primary key could not be found
    • removeByGroupId

      void removeByGroupId(long groupId)
      Removes all the fragment entry versions where groupId = ? from the database.
      Parameters:
      groupId - the group ID
    • countByGroupId

      int countByGroupId(long groupId)
      Returns the number of fragment entry versions where groupId = ?.
      Parameters:
      groupId - the group ID
      Returns:
      the number of matching fragment entry versions
    • findByGroupId_Version

      List<FragmentEntryVersion> findByGroupId_Version(long groupId, int version)
      Returns all the fragment entry versions where groupId = ? and version = ?.
      Parameters:
      groupId - the group ID
      version - the version
      Returns:
      the matching fragment entry versions
    • findByGroupId_Version

      List<FragmentEntryVersion> findByGroupId_Version(long groupId, int version, int start, int end)
      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.

      Parameters:
      groupId - the group ID
      version - the version
      start - the lower bound of the range of fragment entry versions
      end - the upper bound of the range of fragment entry versions (not inclusive)
      Returns:
      the range of matching fragment entry versions
    • findByGroupId_Version

      List<FragmentEntryVersion> findByGroupId_Version(long groupId, int version, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> 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.

      Parameters:
      groupId - the group ID
      version - the version
      start - the lower bound of the range of fragment entry versions
      end - the upper bound of the range of fragment entry versions (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching fragment entry versions
    • findByGroupId_Version

      List<FragmentEntryVersion> findByGroupId_Version(long groupId, int version, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator, boolean useFinderCache)
      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.

      Parameters:
      groupId - the group ID
      version - the version
      start - the lower bound of the range of fragment entry versions
      end - the upper bound of the range of fragment entry versions (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching fragment entry versions
    • findByGroupId_Version_First

      FragmentEntryVersion findByGroupId_Version_First(long groupId, int version, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator) throws NoSuchEntryVersionException
      Returns the first fragment entry version in the ordered set where groupId = ? and version = ?.
      Parameters:
      groupId - the group ID
      version - the version
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching fragment entry version
      Throws:
      NoSuchEntryVersionException - if a matching fragment entry version could not be found
    • fetchByGroupId_Version_First

      FragmentEntryVersion fetchByGroupId_Version_First(long groupId, int version, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator)
      Returns the first fragment entry version in the ordered set where groupId = ? and version = ?.
      Parameters:
      groupId - the group ID
      version - the version
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching fragment entry version, or null if a matching fragment entry version could not be found
    • findByGroupId_Version_Last

      FragmentEntryVersion findByGroupId_Version_Last(long groupId, int version, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator) throws NoSuchEntryVersionException
      Returns the last fragment entry version in the ordered set where groupId = ? and version = ?.
      Parameters:
      groupId - the group ID
      version - the version
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching fragment entry version
      Throws:
      NoSuchEntryVersionException - if a matching fragment entry version could not be found
    • fetchByGroupId_Version_Last

      FragmentEntryVersion fetchByGroupId_Version_Last(long groupId, int version, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator)
      Returns the last fragment entry version in the ordered set where groupId = ? and version = ?.
      Parameters:
      groupId - the group ID
      version - the version
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching fragment entry version, or null if a matching fragment entry version could not be found
    • findByGroupId_Version_PrevAndNext

      FragmentEntryVersion[] findByGroupId_Version_PrevAndNext(long fragmentEntryVersionId, long groupId, int version, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator) throws NoSuchEntryVersionException
      Returns the fragment entry versions before and after the current fragment entry version in the ordered set where groupId = ? and version = ?.
      Parameters:
      fragmentEntryVersionId - the primary key of the current fragment entry version
      groupId - the group ID
      version - the version
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next fragment entry version
      Throws:
      NoSuchEntryVersionException - if a fragment entry version with the primary key could not be found
    • removeByGroupId_Version

      void removeByGroupId_Version(long groupId, int version)
      Removes all the fragment entry versions where groupId = ? and version = ? from the database.
      Parameters:
      groupId - the group ID
      version - the version
    • countByGroupId_Version

      int countByGroupId_Version(long groupId, int version)
      Returns the number of fragment entry versions where groupId = ? and version = ?.
      Parameters:
      groupId - the group ID
      version - the version
      Returns:
      the number of matching fragment entry versions
    • findByFragmentCollectionId

      List<FragmentEntryVersion> findByFragmentCollectionId(long fragmentCollectionId)
      Returns all the fragment entry versions where fragmentCollectionId = ?.
      Parameters:
      fragmentCollectionId - the fragment collection ID
      Returns:
      the matching fragment entry versions
    • findByFragmentCollectionId

      List<FragmentEntryVersion> findByFragmentCollectionId(long fragmentCollectionId, int start, int end)
      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.

      Parameters:
      fragmentCollectionId - the fragment collection ID
      start - the lower bound of the range of fragment entry versions
      end - the upper bound of the range of fragment entry versions (not inclusive)
      Returns:
      the range of matching fragment entry versions
    • findByFragmentCollectionId

      List<FragmentEntryVersion> findByFragmentCollectionId(long fragmentCollectionId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> 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.

      Parameters:
      fragmentCollectionId - the fragment collection ID
      start - the lower bound of the range of fragment entry versions
      end - the upper bound of the range of fragment entry versions (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching fragment entry versions
    • findByFragmentCollectionId

      List<FragmentEntryVersion> findByFragmentCollectionId(long fragmentCollectionId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator, boolean useFinderCache)
      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.

      Parameters:
      fragmentCollectionId - the fragment collection ID
      start - the lower bound of the range of fragment entry versions
      end - the upper bound of the range of fragment entry versions (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching fragment entry versions
    • findByFragmentCollectionId_First

      FragmentEntryVersion findByFragmentCollectionId_First(long fragmentCollectionId, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator) throws NoSuchEntryVersionException
      Returns the first fragment entry version in the ordered set where fragmentCollectionId = ?.
      Parameters:
      fragmentCollectionId - the fragment collection ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching fragment entry version
      Throws:
      NoSuchEntryVersionException - if a matching fragment entry version could not be found
    • fetchByFragmentCollectionId_First

      FragmentEntryVersion fetchByFragmentCollectionId_First(long fragmentCollectionId, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator)
      Returns the first fragment entry version in the ordered set where fragmentCollectionId = ?.
      Parameters:
      fragmentCollectionId - the fragment collection ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching fragment entry version, or null if a matching fragment entry version could not be found
    • findByFragmentCollectionId_Last

      FragmentEntryVersion findByFragmentCollectionId_Last(long fragmentCollectionId, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator) throws NoSuchEntryVersionException
      Returns the last fragment entry version in the ordered set where fragmentCollectionId = ?.
      Parameters:
      fragmentCollectionId - the fragment collection ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching fragment entry version
      Throws:
      NoSuchEntryVersionException - if a matching fragment entry version could not be found
    • fetchByFragmentCollectionId_Last

      FragmentEntryVersion fetchByFragmentCollectionId_Last(long fragmentCollectionId, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator)
      Returns the last fragment entry version in the ordered set where fragmentCollectionId = ?.
      Parameters:
      fragmentCollectionId - the fragment collection ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching fragment entry version, or null if a matching fragment entry version could not be found
    • findByFragmentCollectionId_PrevAndNext

      FragmentEntryVersion[] findByFragmentCollectionId_PrevAndNext(long fragmentEntryVersionId, long fragmentCollectionId, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator) throws NoSuchEntryVersionException
      Returns the fragment entry versions before and after the current fragment entry version in the ordered set where fragmentCollectionId = ?.
      Parameters:
      fragmentEntryVersionId - the primary key of the current fragment entry version
      fragmentCollectionId - the fragment collection ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next fragment entry version
      Throws:
      NoSuchEntryVersionException - if a fragment entry version with the primary key could not be found
    • removeByFragmentCollectionId

      void removeByFragmentCollectionId(long fragmentCollectionId)
      Removes all the fragment entry versions where fragmentCollectionId = ? from the database.
      Parameters:
      fragmentCollectionId - the fragment collection ID
    • countByFragmentCollectionId

      int countByFragmentCollectionId(long fragmentCollectionId)
      Returns the number of fragment entry versions where fragmentCollectionId = ?.
      Parameters:
      fragmentCollectionId - the fragment collection ID
      Returns:
      the number of matching fragment entry versions
    • findByFragmentCollectionId_Version

      List<FragmentEntryVersion> findByFragmentCollectionId_Version(long fragmentCollectionId, int version)
      Returns all the fragment entry versions where fragmentCollectionId = ? and version = ?.
      Parameters:
      fragmentCollectionId - the fragment collection ID
      version - the version
      Returns:
      the matching fragment entry versions
    • findByFragmentCollectionId_Version

      List<FragmentEntryVersion> findByFragmentCollectionId_Version(long fragmentCollectionId, int version, int start, int end)
      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.

      Parameters:
      fragmentCollectionId - the fragment collection ID
      version - the version
      start - the lower bound of the range of fragment entry versions
      end - the upper bound of the range of fragment entry versions (not inclusive)
      Returns:
      the range of matching fragment entry versions
    • findByFragmentCollectionId_Version

      List<FragmentEntryVersion> findByFragmentCollectionId_Version(long fragmentCollectionId, int version, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> 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.

      Parameters:
      fragmentCollectionId - the fragment collection ID
      version - the version
      start - the lower bound of the range of fragment entry versions
      end - the upper bound of the range of fragment entry versions (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching fragment entry versions
    • findByFragmentCollectionId_Version

      List<FragmentEntryVersion> findByFragmentCollectionId_Version(long fragmentCollectionId, int version, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator, boolean useFinderCache)
      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.

      Parameters:
      fragmentCollectionId - the fragment collection ID
      version - the version
      start - the lower bound of the range of fragment entry versions
      end - the upper bound of the range of fragment entry versions (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching fragment entry versions
    • findByFragmentCollectionId_Version_First

      FragmentEntryVersion findByFragmentCollectionId_Version_First(long fragmentCollectionId, int version, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator) throws NoSuchEntryVersionException
      Returns the first fragment entry version in the ordered set where fragmentCollectionId = ? and version = ?.
      Parameters:
      fragmentCollectionId - the fragment collection ID
      version - the version
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching fragment entry version
      Throws:
      NoSuchEntryVersionException - if a matching fragment entry version could not be found
    • fetchByFragmentCollectionId_Version_First

      FragmentEntryVersion fetchByFragmentCollectionId_Version_First(long fragmentCollectionId, int version, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator)
      Returns the first fragment entry version in the ordered set where fragmentCollectionId = ? and version = ?.
      Parameters:
      fragmentCollectionId - the fragment collection ID
      version - the version
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching fragment entry version, or null if a matching fragment entry version could not be found
    • findByFragmentCollectionId_Version_Last

      FragmentEntryVersion findByFragmentCollectionId_Version_Last(long fragmentCollectionId, int version, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator) throws NoSuchEntryVersionException
      Returns the last fragment entry version in the ordered set where fragmentCollectionId = ? and version = ?.
      Parameters:
      fragmentCollectionId - the fragment collection ID
      version - the version
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching fragment entry version
      Throws:
      NoSuchEntryVersionException - if a matching fragment entry version could not be found
    • fetchByFragmentCollectionId_Version_Last

      FragmentEntryVersion fetchByFragmentCollectionId_Version_Last(long fragmentCollectionId, int version, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator)
      Returns the last fragment entry version in the ordered set where fragmentCollectionId = ? and version = ?.
      Parameters:
      fragmentCollectionId - the fragment collection ID
      version - the version
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching fragment entry version, or null if a matching fragment entry version could not be found
    • findByFragmentCollectionId_Version_PrevAndNext

      FragmentEntryVersion[] findByFragmentCollectionId_Version_PrevAndNext(long fragmentEntryVersionId, long fragmentCollectionId, int version, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator) throws NoSuchEntryVersionException
      Returns the fragment entry versions before and after the current fragment entry version in the ordered set where fragmentCollectionId = ? and version = ?.
      Parameters:
      fragmentEntryVersionId - the primary key of the current fragment entry version
      fragmentCollectionId - the fragment collection ID
      version - the version
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next fragment entry version
      Throws:
      NoSuchEntryVersionException - if a fragment entry version with the primary key could not be found
    • removeByFragmentCollectionId_Version

      void removeByFragmentCollectionId_Version(long fragmentCollectionId, int version)
      Removes all the fragment entry versions where fragmentCollectionId = ? and version = ? from the database.
      Parameters:
      fragmentCollectionId - the fragment collection ID
      version - the version
    • countByFragmentCollectionId_Version

      int countByFragmentCollectionId_Version(long fragmentCollectionId, int version)
      Returns the number of fragment entry versions where fragmentCollectionId = ? and version = ?.
      Parameters:
      fragmentCollectionId - the fragment collection ID
      version - the version
      Returns:
      the number of matching fragment entry versions
    • findByType

      List<FragmentEntryVersion> findByType(int type)
      Returns all the fragment entry versions where type = ?.
      Parameters:
      type - the type
      Returns:
      the matching fragment entry versions
    • findByType

      List<FragmentEntryVersion> findByType(int type, int start, int end)
      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.

      Parameters:
      type - the type
      start - the lower bound of the range of fragment entry versions
      end - the upper bound of the range of fragment entry versions (not inclusive)
      Returns:
      the range of matching fragment entry versions
    • findByType

      List<FragmentEntryVersion> findByType(int type, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> 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.

      Parameters:
      type - the type
      start - the lower bound of the range of fragment entry versions
      end - the upper bound of the range of fragment entry versions (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching fragment entry versions
    • findByType

      List<FragmentEntryVersion> findByType(int type, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator, boolean useFinderCache)
      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.

      Parameters:
      type - the type
      start - the lower bound of the range of fragment entry versions
      end - the upper bound of the range of fragment entry versions (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching fragment entry versions
    • findByType_First

      FragmentEntryVersion findByType_First(int type, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator) throws NoSuchEntryVersionException
      Returns the first fragment entry version in the ordered set where type = ?.
      Parameters:
      type - the type
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching fragment entry version
      Throws:
      NoSuchEntryVersionException - if a matching fragment entry version could not be found
    • fetchByType_First

      FragmentEntryVersion fetchByType_First(int type, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator)
      Returns the first fragment entry version in the ordered set where type = ?.
      Parameters:
      type - the type
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching fragment entry version, or null if a matching fragment entry version could not be found
    • findByType_Last

      FragmentEntryVersion findByType_Last(int type, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator) throws NoSuchEntryVersionException
      Returns the last fragment entry version in the ordered set where type = ?.
      Parameters:
      type - the type
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching fragment entry version
      Throws:
      NoSuchEntryVersionException - if a matching fragment entry version could not be found
    • fetchByType_Last

      FragmentEntryVersion fetchByType_Last(int type, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator)
      Returns the last fragment entry version in the ordered set where type = ?.
      Parameters:
      type - the type
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching fragment entry version, or null if a matching fragment entry version could not be found
    • findByType_PrevAndNext

      FragmentEntryVersion[] findByType_PrevAndNext(long fragmentEntryVersionId, int type, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator) throws NoSuchEntryVersionException
      Returns the fragment entry versions before and after the current fragment entry version in the ordered set where type = ?.
      Parameters:
      fragmentEntryVersionId - the primary key of the current fragment entry version
      type - the type
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next fragment entry version
      Throws:
      NoSuchEntryVersionException - if a fragment entry version with the primary key could not be found
    • removeByType

      void removeByType(int type)
      Removes all the fragment entry versions where type = ? from the database.
      Parameters:
      type - the type
    • countByType

      int countByType(int type)
      Returns the number of fragment entry versions where type = ?.
      Parameters:
      type - the type
      Returns:
      the number of matching fragment entry versions
    • findByType_Version

      List<FragmentEntryVersion> findByType_Version(int type, int version)
      Returns all the fragment entry versions where type = ? and version = ?.
      Parameters:
      type - the type
      version - the version
      Returns:
      the matching fragment entry versions
    • findByType_Version

      List<FragmentEntryVersion> findByType_Version(int type, int version, int start, int end)
      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.

      Parameters:
      type - the type
      version - the version
      start - the lower bound of the range of fragment entry versions
      end - the upper bound of the range of fragment entry versions (not inclusive)
      Returns:
      the range of matching fragment entry versions
    • findByType_Version

      List<FragmentEntryVersion> findByType_Version(int type, int version, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> 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.

      Parameters:
      type - the type
      version - the version
      start - the lower bound of the range of fragment entry versions
      end - the upper bound of the range of fragment entry versions (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching fragment entry versions
    • findByType_Version

      List<FragmentEntryVersion> findByType_Version(int type, int version, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator, boolean useFinderCache)
      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.

      Parameters:
      type - the type
      version - the version
      start - the lower bound of the range of fragment entry versions
      end - the upper bound of the range of fragment entry versions (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching fragment entry versions
    • findByType_Version_First

      FragmentEntryVersion findByType_Version_First(int type, int version, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator) throws NoSuchEntryVersionException
      Returns the first fragment entry version in the ordered set where type = ? and version = ?.
      Parameters:
      type - the type
      version - the version
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching fragment entry version
      Throws:
      NoSuchEntryVersionException - if a matching fragment entry version could not be found
    • fetchByType_Version_First

      FragmentEntryVersion fetchByType_Version_First(int type, int version, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator)
      Returns the first fragment entry version in the ordered set where type = ? and version = ?.
      Parameters:
      type - the type
      version - the version
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching fragment entry version, or null if a matching fragment entry version could not be found
    • findByType_Version_Last

      FragmentEntryVersion findByType_Version_Last(int type, int version, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator) throws NoSuchEntryVersionException
      Returns the last fragment entry version in the ordered set where type = ? and version = ?.
      Parameters:
      type - the type
      version - the version
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching fragment entry version
      Throws:
      NoSuchEntryVersionException - if a matching fragment entry version could not be found
    • fetchByType_Version_Last

      FragmentEntryVersion fetchByType_Version_Last(int type, int version, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator)
      Returns the last fragment entry version in the ordered set where type = ? and version = ?.
      Parameters:
      type - the type
      version - the version
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching fragment entry version, or null if a matching fragment entry version could not be found
    • findByType_Version_PrevAndNext

      FragmentEntryVersion[] findByType_Version_PrevAndNext(long fragmentEntryVersionId, int type, int version, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator) throws NoSuchEntryVersionException
      Returns the fragment entry versions before and after the current fragment entry version in the ordered set where type = ? and version = ?.
      Parameters:
      fragmentEntryVersionId - the primary key of the current fragment entry version
      type - the type
      version - the version
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next fragment entry version
      Throws:
      NoSuchEntryVersionException - if a fragment entry version with the primary key could not be found
    • removeByType_Version

      void removeByType_Version(int type, int version)
      Removes all the fragment entry versions where type = ? and version = ? from the database.
      Parameters:
      type - the type
      version - the version
    • countByType_Version

      int countByType_Version(int type, int version)
      Returns the number of fragment entry versions where type = ? and version = ?.
      Parameters:
      type - the type
      version - the version
      Returns:
      the number of matching fragment entry versions
    • findByG_FCI

      List<FragmentEntryVersion> findByG_FCI(long groupId, long fragmentCollectionId)
      Returns all the fragment entry versions where groupId = ? and fragmentCollectionId = ?.
      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      Returns:
      the matching fragment entry versions
    • findByG_FCI

      List<FragmentEntryVersion> findByG_FCI(long groupId, long fragmentCollectionId, int start, int end)
      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.

      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      start - the lower bound of the range of fragment entry versions
      end - the upper bound of the range of fragment entry versions (not inclusive)
      Returns:
      the range of matching fragment entry versions
    • findByG_FCI

      List<FragmentEntryVersion> findByG_FCI(long groupId, long fragmentCollectionId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> 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.

      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      start - the lower bound of the range of fragment entry versions
      end - the upper bound of the range of fragment entry versions (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching fragment entry versions
    • findByG_FCI

      List<FragmentEntryVersion> findByG_FCI(long groupId, long fragmentCollectionId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator, boolean useFinderCache)
      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.

      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      start - the lower bound of the range of fragment entry versions
      end - the upper bound of the range of fragment entry versions (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching fragment entry versions
    • findByG_FCI_First

      FragmentEntryVersion findByG_FCI_First(long groupId, long fragmentCollectionId, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator) throws NoSuchEntryVersionException
      Returns the first fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ?.
      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching fragment entry version
      Throws:
      NoSuchEntryVersionException - if a matching fragment entry version could not be found
    • fetchByG_FCI_First

      FragmentEntryVersion fetchByG_FCI_First(long groupId, long fragmentCollectionId, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator)
      Returns the first fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ?.
      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching fragment entry version, or null if a matching fragment entry version could not be found
    • findByG_FCI_Last

      FragmentEntryVersion findByG_FCI_Last(long groupId, long fragmentCollectionId, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator) throws NoSuchEntryVersionException
      Returns the last fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ?.
      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching fragment entry version
      Throws:
      NoSuchEntryVersionException - if a matching fragment entry version could not be found
    • fetchByG_FCI_Last

      FragmentEntryVersion fetchByG_FCI_Last(long groupId, long fragmentCollectionId, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator)
      Returns the last fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ?.
      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching fragment entry version, or null if a matching fragment entry version could not be found
    • findByG_FCI_PrevAndNext

      FragmentEntryVersion[] findByG_FCI_PrevAndNext(long fragmentEntryVersionId, long groupId, long fragmentCollectionId, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator) throws NoSuchEntryVersionException
      Returns the fragment entry versions before and after the current fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ?.
      Parameters:
      fragmentEntryVersionId - the primary key of the current fragment entry version
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next fragment entry version
      Throws:
      NoSuchEntryVersionException - if a fragment entry version with the primary key could not be found
    • removeByG_FCI

      void removeByG_FCI(long groupId, long fragmentCollectionId)
      Removes all the fragment entry versions where groupId = ? and fragmentCollectionId = ? from the database.
      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
    • countByG_FCI

      int countByG_FCI(long groupId, long fragmentCollectionId)
      Returns the number of fragment entry versions where groupId = ? and fragmentCollectionId = ?.
      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      Returns:
      the number of matching fragment entry versions
    • findByG_FCI_Version

      List<FragmentEntryVersion> findByG_FCI_Version(long groupId, long fragmentCollectionId, int version)
      Returns all the fragment entry versions where groupId = ? and fragmentCollectionId = ? and version = ?.
      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      version - the version
      Returns:
      the matching fragment entry versions
    • findByG_FCI_Version

      List<FragmentEntryVersion> findByG_FCI_Version(long groupId, long fragmentCollectionId, int version, int start, int end)
      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.

      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      version - the version
      start - the lower bound of the range of fragment entry versions
      end - the upper bound of the range of fragment entry versions (not inclusive)
      Returns:
      the range of matching fragment entry versions
    • findByG_FCI_Version

      List<FragmentEntryVersion> findByG_FCI_Version(long groupId, long fragmentCollectionId, int version, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> 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.

      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      version - the version
      start - the lower bound of the range of fragment entry versions
      end - the upper bound of the range of fragment entry versions (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching fragment entry versions
    • findByG_FCI_Version

      List<FragmentEntryVersion> findByG_FCI_Version(long groupId, long fragmentCollectionId, int version, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator, boolean useFinderCache)
      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.

      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      version - the version
      start - the lower bound of the range of fragment entry versions
      end - the upper bound of the range of fragment entry versions (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching fragment entry versions
    • findByG_FCI_Version_First

      FragmentEntryVersion findByG_FCI_Version_First(long groupId, long fragmentCollectionId, int version, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator) throws NoSuchEntryVersionException
      Returns the first fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ? and version = ?.
      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      version - the version
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching fragment entry version
      Throws:
      NoSuchEntryVersionException - if a matching fragment entry version could not be found
    • fetchByG_FCI_Version_First

      FragmentEntryVersion fetchByG_FCI_Version_First(long groupId, long fragmentCollectionId, int version, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator)
      Returns the first fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ? and version = ?.
      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      version - the version
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching fragment entry version, or null if a matching fragment entry version could not be found
    • findByG_FCI_Version_Last

      FragmentEntryVersion findByG_FCI_Version_Last(long groupId, long fragmentCollectionId, int version, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator) throws NoSuchEntryVersionException
      Returns the last fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ? and version = ?.
      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      version - the version
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching fragment entry version
      Throws:
      NoSuchEntryVersionException - if a matching fragment entry version could not be found
    • fetchByG_FCI_Version_Last

      FragmentEntryVersion fetchByG_FCI_Version_Last(long groupId, long fragmentCollectionId, int version, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator)
      Returns the last fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ? and version = ?.
      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      version - the version
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching fragment entry version, or null if a matching fragment entry version could not be found
    • findByG_FCI_Version_PrevAndNext

      FragmentEntryVersion[] findByG_FCI_Version_PrevAndNext(long fragmentEntryVersionId, long groupId, long fragmentCollectionId, int version, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator) throws NoSuchEntryVersionException
      Returns the fragment entry versions before and after the current fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ? and version = ?.
      Parameters:
      fragmentEntryVersionId - the primary key of the current fragment entry version
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      version - the version
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next fragment entry version
      Throws:
      NoSuchEntryVersionException - if a fragment entry version with the primary key could not be found
    • removeByG_FCI_Version

      void removeByG_FCI_Version(long groupId, long fragmentCollectionId, int version)
      Removes all the fragment entry versions where groupId = ? and fragmentCollectionId = ? and version = ? from the database.
      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      version - the version
    • countByG_FCI_Version

      int countByG_FCI_Version(long groupId, long fragmentCollectionId, int version)
      Returns the number of fragment entry versions where groupId = ? and fragmentCollectionId = ? and version = ?.
      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      version - the version
      Returns:
      the number of matching fragment entry versions
    • findByG_FEK

      List<FragmentEntryVersion> findByG_FEK(long groupId, String fragmentEntryKey)
      Returns all the fragment entry versions where groupId = ? and fragmentEntryKey = ?.
      Parameters:
      groupId - the group ID
      fragmentEntryKey - the fragment entry key
      Returns:
      the matching fragment entry versions
    • findByG_FEK

      List<FragmentEntryVersion> findByG_FEK(long groupId, String fragmentEntryKey, int start, int end)
      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.

      Parameters:
      groupId - the group ID
      fragmentEntryKey - the fragment entry key
      start - the lower bound of the range of fragment entry versions
      end - the upper bound of the range of fragment entry versions (not inclusive)
      Returns:
      the range of matching fragment entry versions
    • findByG_FEK

      List<FragmentEntryVersion> findByG_FEK(long groupId, String fragmentEntryKey, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> 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.

      Parameters:
      groupId - the group ID
      fragmentEntryKey - the fragment entry key
      start - the lower bound of the range of fragment entry versions
      end - the upper bound of the range of fragment entry versions (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching fragment entry versions
    • findByG_FEK

      List<FragmentEntryVersion> findByG_FEK(long groupId, String fragmentEntryKey, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator, boolean useFinderCache)
      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.

      Parameters:
      groupId - the group ID
      fragmentEntryKey - the fragment entry key
      start - the lower bound of the range of fragment entry versions
      end - the upper bound of the range of fragment entry versions (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching fragment entry versions
    • findByG_FEK_First

      FragmentEntryVersion findByG_FEK_First(long groupId, String fragmentEntryKey, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator) throws NoSuchEntryVersionException
      Returns the first fragment entry version in the ordered set where groupId = ? and fragmentEntryKey = ?.
      Parameters:
      groupId - the group ID
      fragmentEntryKey - the fragment entry key
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching fragment entry version
      Throws:
      NoSuchEntryVersionException - if a matching fragment entry version could not be found
    • fetchByG_FEK_First

      FragmentEntryVersion fetchByG_FEK_First(long groupId, String fragmentEntryKey, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator)
      Returns the first fragment entry version in the ordered set where groupId = ? and fragmentEntryKey = ?.
      Parameters:
      groupId - the group ID
      fragmentEntryKey - the fragment entry key
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching fragment entry version, or null if a matching fragment entry version could not be found
    • findByG_FEK_Last

      FragmentEntryVersion findByG_FEK_Last(long groupId, String fragmentEntryKey, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator) throws NoSuchEntryVersionException
      Returns the last fragment entry version in the ordered set where groupId = ? and fragmentEntryKey = ?.
      Parameters:
      groupId - the group ID
      fragmentEntryKey - the fragment entry key
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching fragment entry version
      Throws:
      NoSuchEntryVersionException - if a matching fragment entry version could not be found
    • fetchByG_FEK_Last

      FragmentEntryVersion fetchByG_FEK_Last(long groupId, String fragmentEntryKey, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator)
      Returns the last fragment entry version in the ordered set where groupId = ? and fragmentEntryKey = ?.
      Parameters:
      groupId - the group ID
      fragmentEntryKey - the fragment entry key
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching fragment entry version, or null if a matching fragment entry version could not be found
    • findByG_FEK_PrevAndNext

      FragmentEntryVersion[] findByG_FEK_PrevAndNext(long fragmentEntryVersionId, long groupId, String fragmentEntryKey, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator) throws NoSuchEntryVersionException
      Returns the fragment entry versions before and after the current fragment entry version in the ordered set where groupId = ? and fragmentEntryKey = ?.
      Parameters:
      fragmentEntryVersionId - the primary key of the current fragment entry version
      groupId - the group ID
      fragmentEntryKey - the fragment entry key
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next fragment entry version
      Throws:
      NoSuchEntryVersionException - if a fragment entry version with the primary key could not be found
    • removeByG_FEK

      void removeByG_FEK(long groupId, String fragmentEntryKey)
      Removes all the fragment entry versions where groupId = ? and fragmentEntryKey = ? from the database.
      Parameters:
      groupId - the group ID
      fragmentEntryKey - the fragment entry key
    • countByG_FEK

      int countByG_FEK(long groupId, String fragmentEntryKey)
      Returns the number of fragment entry versions where groupId = ? and fragmentEntryKey = ?.
      Parameters:
      groupId - the group ID
      fragmentEntryKey - the fragment entry key
      Returns:
      the number of matching fragment entry versions
    • findByG_FEK_Version

      FragmentEntryVersion findByG_FEK_Version(long groupId, String fragmentEntryKey, int version) throws NoSuchEntryVersionException
      Returns the fragment entry version where groupId = ? and fragmentEntryKey = ? and version = ? or throws a NoSuchEntryVersionException if it could not be found.
      Parameters:
      groupId - the group ID
      fragmentEntryKey - the fragment entry key
      version - the version
      Returns:
      the matching fragment entry version
      Throws:
      NoSuchEntryVersionException - if a matching fragment entry version could not be found
    • fetchByG_FEK_Version

      FragmentEntryVersion fetchByG_FEK_Version(long groupId, String fragmentEntryKey, int 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.
      Parameters:
      groupId - the group ID
      fragmentEntryKey - the fragment entry key
      version - the version
      Returns:
      the matching fragment entry version, or null if a matching fragment entry version could not be found
    • fetchByG_FEK_Version

      FragmentEntryVersion fetchByG_FEK_Version(long groupId, String fragmentEntryKey, int version, boolean useFinderCache)
      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.
      Parameters:
      groupId - the group ID
      fragmentEntryKey - the fragment entry key
      version - the version
      useFinderCache - whether to use the finder cache
      Returns:
      the matching fragment entry version, or null if a matching fragment entry version could not be found
    • removeByG_FEK_Version

      FragmentEntryVersion removeByG_FEK_Version(long groupId, String fragmentEntryKey, int version) throws NoSuchEntryVersionException
      Removes the fragment entry version where groupId = ? and fragmentEntryKey = ? and version = ? from the database.
      Parameters:
      groupId - the group ID
      fragmentEntryKey - the fragment entry key
      version - the version
      Returns:
      the fragment entry version that was removed
      Throws:
      NoSuchEntryVersionException
    • countByG_FEK_Version

      int countByG_FEK_Version(long groupId, String fragmentEntryKey, int version)
      Returns the number of fragment entry versions where groupId = ? and fragmentEntryKey = ? and version = ?.
      Parameters:
      groupId - the group ID
      fragmentEntryKey - the fragment entry key
      version - the version
      Returns:
      the number of matching fragment entry versions
    • findByG_FCI_LikeN

      List<FragmentEntryVersion> findByG_FCI_LikeN(long groupId, long fragmentCollectionId, String name)
      Returns all the fragment entry versions where groupId = ? and fragmentCollectionId = ? and name = ?.
      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      name - the name
      Returns:
      the matching fragment entry versions
    • findByG_FCI_LikeN

      List<FragmentEntryVersion> findByG_FCI_LikeN(long groupId, long fragmentCollectionId, String name, int start, int end)
      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.

      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      name - the name
      start - the lower bound of the range of fragment entry versions
      end - the upper bound of the range of fragment entry versions (not inclusive)
      Returns:
      the range of matching fragment entry versions
    • findByG_FCI_LikeN

      List<FragmentEntryVersion> findByG_FCI_LikeN(long groupId, long fragmentCollectionId, String name, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> 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.

      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      name - the name
      start - the lower bound of the range of fragment entry versions
      end - the upper bound of the range of fragment entry versions (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching fragment entry versions
    • findByG_FCI_LikeN

      List<FragmentEntryVersion> findByG_FCI_LikeN(long groupId, long fragmentCollectionId, String name, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator, boolean useFinderCache)
      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.

      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      name - the name
      start - the lower bound of the range of fragment entry versions
      end - the upper bound of the range of fragment entry versions (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching fragment entry versions
    • findByG_FCI_LikeN_First

      FragmentEntryVersion findByG_FCI_LikeN_First(long groupId, long fragmentCollectionId, String name, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator) throws NoSuchEntryVersionException
      Returns the first fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ? and name = ?.
      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      name - the name
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching fragment entry version
      Throws:
      NoSuchEntryVersionException - if a matching fragment entry version could not be found
    • fetchByG_FCI_LikeN_First

      FragmentEntryVersion fetchByG_FCI_LikeN_First(long groupId, long fragmentCollectionId, String name, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator)
      Returns the first fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ? and name = ?.
      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      name - the name
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching fragment entry version, or null if a matching fragment entry version could not be found
    • findByG_FCI_LikeN_Last

      FragmentEntryVersion findByG_FCI_LikeN_Last(long groupId, long fragmentCollectionId, String name, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator) throws NoSuchEntryVersionException
      Returns the last fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ? and name = ?.
      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      name - the name
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching fragment entry version
      Throws:
      NoSuchEntryVersionException - if a matching fragment entry version could not be found
    • fetchByG_FCI_LikeN_Last

      FragmentEntryVersion fetchByG_FCI_LikeN_Last(long groupId, long fragmentCollectionId, String name, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator)
      Returns the last fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ? and name = ?.
      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      name - the name
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching fragment entry version, or null if a matching fragment entry version could not be found
    • findByG_FCI_LikeN_PrevAndNext

      FragmentEntryVersion[] findByG_FCI_LikeN_PrevAndNext(long fragmentEntryVersionId, long groupId, long fragmentCollectionId, String name, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator) throws NoSuchEntryVersionException
      Returns the fragment entry versions before and after the current fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ? and name = ?.
      Parameters:
      fragmentEntryVersionId - the primary key of the current fragment entry version
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      name - the name
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next fragment entry version
      Throws:
      NoSuchEntryVersionException - if a fragment entry version with the primary key could not be found
    • removeByG_FCI_LikeN

      void removeByG_FCI_LikeN(long groupId, long fragmentCollectionId, String name)
      Removes all the fragment entry versions where groupId = ? and fragmentCollectionId = ? and name = ? from the database.
      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      name - the name
    • countByG_FCI_LikeN

      int countByG_FCI_LikeN(long groupId, long fragmentCollectionId, String name)
      Returns the number of fragment entry versions where groupId = ? and fragmentCollectionId = ? and name = ?.
      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      name - the name
      Returns:
      the number of matching fragment entry versions
    • findByG_FCI_LikeN_Version

      List<FragmentEntryVersion> findByG_FCI_LikeN_Version(long groupId, long fragmentCollectionId, String name, int version)
      Returns all the fragment entry versions where groupId = ? and fragmentCollectionId = ? and name = ? and version = ?.
      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      name - the name
      version - the version
      Returns:
      the matching fragment entry versions
    • findByG_FCI_LikeN_Version

      List<FragmentEntryVersion> findByG_FCI_LikeN_Version(long groupId, long fragmentCollectionId, String name, int version, int start, int end)
      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.

      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      name - the name
      version - the version
      start - the lower bound of the range of fragment entry versions
      end - the upper bound of the range of fragment entry versions (not inclusive)
      Returns:
      the range of matching fragment entry versions
    • findByG_FCI_LikeN_Version

      List<FragmentEntryVersion> findByG_FCI_LikeN_Version(long groupId, long fragmentCollectionId, String name, int version, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> 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.

      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      name - the name
      version - the version
      start - the lower bound of the range of fragment entry versions
      end - the upper bound of the range of fragment entry versions (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching fragment entry versions
    • findByG_FCI_LikeN_Version

      List<FragmentEntryVersion> findByG_FCI_LikeN_Version(long groupId, long fragmentCollectionId, String name, int version, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator, boolean useFinderCache)
      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.

      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      name - the name
      version - the version
      start - the lower bound of the range of fragment entry versions
      end - the upper bound of the range of fragment entry versions (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching fragment entry versions
    • findByG_FCI_LikeN_Version_First

      FragmentEntryVersion findByG_FCI_LikeN_Version_First(long groupId, long fragmentCollectionId, String name, int version, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator) throws NoSuchEntryVersionException
      Returns the first fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ? and name = ? and version = ?.
      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      name - the name
      version - the version
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching fragment entry version
      Throws:
      NoSuchEntryVersionException - if a matching fragment entry version could not be found
    • fetchByG_FCI_LikeN_Version_First

      FragmentEntryVersion fetchByG_FCI_LikeN_Version_First(long groupId, long fragmentCollectionId, String name, int version, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator)
      Returns the first fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ? and name = ? and version = ?.
      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      name - the name
      version - the version
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching fragment entry version, or null if a matching fragment entry version could not be found
    • findByG_FCI_LikeN_Version_Last

      FragmentEntryVersion findByG_FCI_LikeN_Version_Last(long groupId, long fragmentCollectionId, String name, int version, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator) throws NoSuchEntryVersionException
      Returns the last fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ? and name = ? and version = ?.
      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      name - the name
      version - the version
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching fragment entry version
      Throws:
      NoSuchEntryVersionException - if a matching fragment entry version could not be found
    • fetchByG_FCI_LikeN_Version_Last

      FragmentEntryVersion fetchByG_FCI_LikeN_Version_Last(long groupId, long fragmentCollectionId, String name, int version, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator)
      Returns the last fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ? and name = ? and version = ?.
      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      name - the name
      version - the version
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching fragment entry version, or null if a matching fragment entry version could not be found
    • findByG_FCI_LikeN_Version_PrevAndNext

      FragmentEntryVersion[] findByG_FCI_LikeN_Version_PrevAndNext(long fragmentEntryVersionId, long groupId, long fragmentCollectionId, String name, int version, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator) throws NoSuchEntryVersionException
      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 = ?.
      Parameters:
      fragmentEntryVersionId - the primary key of the current fragment entry version
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      name - the name
      version - the version
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next fragment entry version
      Throws:
      NoSuchEntryVersionException - if a fragment entry version with the primary key could not be found
    • removeByG_FCI_LikeN_Version

      void removeByG_FCI_LikeN_Version(long groupId, long fragmentCollectionId, String name, int version)
      Removes all the fragment entry versions where groupId = ? and fragmentCollectionId = ? and name = ? and version = ? from the database.
      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      name - the name
      version - the version
    • countByG_FCI_LikeN_Version

      int countByG_FCI_LikeN_Version(long groupId, long fragmentCollectionId, String name, int version)
      Returns the number of fragment entry versions where groupId = ? and fragmentCollectionId = ? and name = ? and version = ?.
      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      name - the name
      version - the version
      Returns:
      the number of matching fragment entry versions
    • findByG_FCI_T

      List<FragmentEntryVersion> findByG_FCI_T(long groupId, long fragmentCollectionId, int type)
      Returns all the fragment entry versions where groupId = ? and fragmentCollectionId = ? and type = ?.
      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      type - the type
      Returns:
      the matching fragment entry versions
    • findByG_FCI_T

      List<FragmentEntryVersion> findByG_FCI_T(long groupId, long fragmentCollectionId, int type, int start, int end)
      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.

      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      type - the type
      start - the lower bound of the range of fragment entry versions
      end - the upper bound of the range of fragment entry versions (not inclusive)
      Returns:
      the range of matching fragment entry versions
    • findByG_FCI_T

      List<FragmentEntryVersion> findByG_FCI_T(long groupId, long fragmentCollectionId, int type, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> 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.

      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      type - the type
      start - the lower bound of the range of fragment entry versions
      end - the upper bound of the range of fragment entry versions (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching fragment entry versions
    • findByG_FCI_T

      List<FragmentEntryVersion> findByG_FCI_T(long groupId, long fragmentCollectionId, int type, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator, boolean useFinderCache)
      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.

      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      type - the type
      start - the lower bound of the range of fragment entry versions
      end - the upper bound of the range of fragment entry versions (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching fragment entry versions
    • findByG_FCI_T_First

      FragmentEntryVersion findByG_FCI_T_First(long groupId, long fragmentCollectionId, int type, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator) throws NoSuchEntryVersionException
      Returns the first fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ? and type = ?.
      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      type - the type
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching fragment entry version
      Throws:
      NoSuchEntryVersionException - if a matching fragment entry version could not be found
    • fetchByG_FCI_T_First

      FragmentEntryVersion fetchByG_FCI_T_First(long groupId, long fragmentCollectionId, int type, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator)
      Returns the first fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ? and type = ?.
      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      type - the type
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching fragment entry version, or null if a matching fragment entry version could not be found
    • findByG_FCI_T_Last

      FragmentEntryVersion findByG_FCI_T_Last(long groupId, long fragmentCollectionId, int type, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator) throws NoSuchEntryVersionException
      Returns the last fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ? and type = ?.
      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      type - the type
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching fragment entry version
      Throws:
      NoSuchEntryVersionException - if a matching fragment entry version could not be found
    • fetchByG_FCI_T_Last

      FragmentEntryVersion fetchByG_FCI_T_Last(long groupId, long fragmentCollectionId, int type, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator)
      Returns the last fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ? and type = ?.
      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      type - the type
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching fragment entry version, or null if a matching fragment entry version could not be found
    • findByG_FCI_T_PrevAndNext

      FragmentEntryVersion[] findByG_FCI_T_PrevAndNext(long fragmentEntryVersionId, long groupId, long fragmentCollectionId, int type, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator) throws NoSuchEntryVersionException
      Returns the fragment entry versions before and after the current fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ? and type = ?.
      Parameters:
      fragmentEntryVersionId - the primary key of the current fragment entry version
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      type - the type
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next fragment entry version
      Throws:
      NoSuchEntryVersionException - if a fragment entry version with the primary key could not be found
    • removeByG_FCI_T

      void removeByG_FCI_T(long groupId, long fragmentCollectionId, int type)
      Removes all the fragment entry versions where groupId = ? and fragmentCollectionId = ? and type = ? from the database.
      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      type - the type
    • countByG_FCI_T

      int countByG_FCI_T(long groupId, long fragmentCollectionId, int type)
      Returns the number of fragment entry versions where groupId = ? and fragmentCollectionId = ? and type = ?.
      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      type - the type
      Returns:
      the number of matching fragment entry versions
    • findByG_FCI_T_Version

      List<FragmentEntryVersion> findByG_FCI_T_Version(long groupId, long fragmentCollectionId, int type, int version)
      Returns all the fragment entry versions where groupId = ? and fragmentCollectionId = ? and type = ? and version = ?.
      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      type - the type
      version - the version
      Returns:
      the matching fragment entry versions
    • findByG_FCI_T_Version

      List<FragmentEntryVersion> findByG_FCI_T_Version(long groupId, long fragmentCollectionId, int type, int version, int start, int end)
      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.

      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      type - the type
      version - the version
      start - the lower bound of the range of fragment entry versions
      end - the upper bound of the range of fragment entry versions (not inclusive)
      Returns:
      the range of matching fragment entry versions
    • findByG_FCI_T_Version

      List<FragmentEntryVersion> findByG_FCI_T_Version(long groupId, long fragmentCollectionId, int type, int version, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> 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.

      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      type - the type
      version - the version
      start - the lower bound of the range of fragment entry versions
      end - the upper bound of the range of fragment entry versions (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching fragment entry versions
    • findByG_FCI_T_Version

      List<FragmentEntryVersion> findByG_FCI_T_Version(long groupId, long fragmentCollectionId, int type, int version, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator, boolean useFinderCache)
      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.

      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      type - the type
      version - the version
      start - the lower bound of the range of fragment entry versions
      end - the upper bound of the range of fragment entry versions (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching fragment entry versions
    • findByG_FCI_T_Version_First

      FragmentEntryVersion findByG_FCI_T_Version_First(long groupId, long fragmentCollectionId, int type, int version, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator) throws NoSuchEntryVersionException
      Returns the first fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ? and type = ? and version = ?.
      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      type - the type
      version - the version
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching fragment entry version
      Throws:
      NoSuchEntryVersionException - if a matching fragment entry version could not be found
    • fetchByG_FCI_T_Version_First

      FragmentEntryVersion fetchByG_FCI_T_Version_First(long groupId, long fragmentCollectionId, int type, int version, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator)
      Returns the first fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ? and type = ? and version = ?.
      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      type - the type
      version - the version
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching fragment entry version, or null if a matching fragment entry version could not be found
    • findByG_FCI_T_Version_Last

      FragmentEntryVersion findByG_FCI_T_Version_Last(long groupId, long fragmentCollectionId, int type, int version, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator) throws NoSuchEntryVersionException
      Returns the last fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ? and type = ? and version = ?.
      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      type - the type
      version - the version
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching fragment entry version
      Throws:
      NoSuchEntryVersionException - if a matching fragment entry version could not be found
    • fetchByG_FCI_T_Version_Last

      FragmentEntryVersion fetchByG_FCI_T_Version_Last(long groupId, long fragmentCollectionId, int type, int version, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator)
      Returns the last fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ? and type = ? and version = ?.
      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      type - the type
      version - the version
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching fragment entry version, or null if a matching fragment entry version could not be found
    • findByG_FCI_T_Version_PrevAndNext

      FragmentEntryVersion[] findByG_FCI_T_Version_PrevAndNext(long fragmentEntryVersionId, long groupId, long fragmentCollectionId, int type, int version, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator) throws NoSuchEntryVersionException
      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 = ?.
      Parameters:
      fragmentEntryVersionId - the primary key of the current fragment entry version
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      type - the type
      version - the version
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next fragment entry version
      Throws:
      NoSuchEntryVersionException - if a fragment entry version with the primary key could not be found
    • removeByG_FCI_T_Version

      void removeByG_FCI_T_Version(long groupId, long fragmentCollectionId, int type, int version)
      Removes all the fragment entry versions where groupId = ? and fragmentCollectionId = ? and type = ? and version = ? from the database.
      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      type - the type
      version - the version
    • countByG_FCI_T_Version

      int countByG_FCI_T_Version(long groupId, long fragmentCollectionId, int type, int version)
      Returns the number of fragment entry versions where groupId = ? and fragmentCollectionId = ? and type = ? and version = ?.
      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      type - the type
      version - the version
      Returns:
      the number of matching fragment entry versions
    • findByG_FCI_S

      List<FragmentEntryVersion> findByG_FCI_S(long groupId, long fragmentCollectionId, int status)
      Returns all the fragment entry versions where groupId = ? and fragmentCollectionId = ? and status = ?.
      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      status - the status
      Returns:
      the matching fragment entry versions
    • findByG_FCI_S

      List<FragmentEntryVersion> findByG_FCI_S(long groupId, long fragmentCollectionId, int status, int start, int end)
      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.

      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      status - the status
      start - the lower bound of the range of fragment entry versions
      end - the upper bound of the range of fragment entry versions (not inclusive)
      Returns:
      the range of matching fragment entry versions
    • findByG_FCI_S

      List<FragmentEntryVersion> findByG_FCI_S(long groupId, long fragmentCollectionId, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> 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.

      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      status - the status
      start - the lower bound of the range of fragment entry versions
      end - the upper bound of the range of fragment entry versions (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching fragment entry versions
    • findByG_FCI_S

      List<FragmentEntryVersion> findByG_FCI_S(long groupId, long fragmentCollectionId, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator, boolean useFinderCache)
      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.

      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      status - the status
      start - the lower bound of the range of fragment entry versions
      end - the upper bound of the range of fragment entry versions (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching fragment entry versions
    • findByG_FCI_S_First

      FragmentEntryVersion findByG_FCI_S_First(long groupId, long fragmentCollectionId, int status, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator) throws NoSuchEntryVersionException
      Returns the first fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ? and status = ?.
      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching fragment entry version
      Throws:
      NoSuchEntryVersionException - if a matching fragment entry version could not be found
    • fetchByG_FCI_S_First

      FragmentEntryVersion fetchByG_FCI_S_First(long groupId, long fragmentCollectionId, int status, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator)
      Returns the first fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ? and status = ?.
      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching fragment entry version, or null if a matching fragment entry version could not be found
    • findByG_FCI_S_Last

      FragmentEntryVersion findByG_FCI_S_Last(long groupId, long fragmentCollectionId, int status, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator) throws NoSuchEntryVersionException
      Returns the last fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ? and status = ?.
      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching fragment entry version
      Throws:
      NoSuchEntryVersionException - if a matching fragment entry version could not be found
    • fetchByG_FCI_S_Last

      FragmentEntryVersion fetchByG_FCI_S_Last(long groupId, long fragmentCollectionId, int status, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator)
      Returns the last fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ? and status = ?.
      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching fragment entry version, or null if a matching fragment entry version could not be found
    • findByG_FCI_S_PrevAndNext

      FragmentEntryVersion[] findByG_FCI_S_PrevAndNext(long fragmentEntryVersionId, long groupId, long fragmentCollectionId, int status, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator) throws NoSuchEntryVersionException
      Returns the fragment entry versions before and after the current fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ? and status = ?.
      Parameters:
      fragmentEntryVersionId - the primary key of the current fragment entry version
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next fragment entry version
      Throws:
      NoSuchEntryVersionException - if a fragment entry version with the primary key could not be found
    • removeByG_FCI_S

      void removeByG_FCI_S(long groupId, long fragmentCollectionId, int status)
      Removes all the fragment entry versions where groupId = ? and fragmentCollectionId = ? and status = ? from the database.
      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      status - the status
    • countByG_FCI_S

      int countByG_FCI_S(long groupId, long fragmentCollectionId, int status)
      Returns the number of fragment entry versions where groupId = ? and fragmentCollectionId = ? and status = ?.
      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      status - the status
      Returns:
      the number of matching fragment entry versions
    • findByG_FCI_S_Version

      List<FragmentEntryVersion> findByG_FCI_S_Version(long groupId, long fragmentCollectionId, int status, int version)
      Returns all the fragment entry versions where groupId = ? and fragmentCollectionId = ? and status = ? and version = ?.
      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      status - the status
      version - the version
      Returns:
      the matching fragment entry versions
    • findByG_FCI_S_Version

      List<FragmentEntryVersion> findByG_FCI_S_Version(long groupId, long fragmentCollectionId, int status, int version, int start, int end)
      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.

      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      status - the status
      version - the version
      start - the lower bound of the range of fragment entry versions
      end - the upper bound of the range of fragment entry versions (not inclusive)
      Returns:
      the range of matching fragment entry versions
    • findByG_FCI_S_Version

      List<FragmentEntryVersion> findByG_FCI_S_Version(long groupId, long fragmentCollectionId, int status, int version, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> 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.

      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      status - the status
      version - the version
      start - the lower bound of the range of fragment entry versions
      end - the upper bound of the range of fragment entry versions (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching fragment entry versions
    • findByG_FCI_S_Version

      List<FragmentEntryVersion> findByG_FCI_S_Version(long groupId, long fragmentCollectionId, int status, int version, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator, boolean useFinderCache)
      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.

      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      status - the status
      version - the version
      start - the lower bound of the range of fragment entry versions
      end - the upper bound of the range of fragment entry versions (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching fragment entry versions
    • findByG_FCI_S_Version_First

      FragmentEntryVersion findByG_FCI_S_Version_First(long groupId, long fragmentCollectionId, int status, int version, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator) throws NoSuchEntryVersionException
      Returns the first fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ? and status = ? and version = ?.
      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      status - the status
      version - the version
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching fragment entry version
      Throws:
      NoSuchEntryVersionException - if a matching fragment entry version could not be found
    • fetchByG_FCI_S_Version_First

      FragmentEntryVersion fetchByG_FCI_S_Version_First(long groupId, long fragmentCollectionId, int status, int version, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator)
      Returns the first fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ? and status = ? and version = ?.
      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      status - the status
      version - the version
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching fragment entry version, or null if a matching fragment entry version could not be found
    • findByG_FCI_S_Version_Last

      FragmentEntryVersion findByG_FCI_S_Version_Last(long groupId, long fragmentCollectionId, int status, int version, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator) throws NoSuchEntryVersionException
      Returns the last fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ? and status = ? and version = ?.
      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      status - the status
      version - the version
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching fragment entry version
      Throws:
      NoSuchEntryVersionException - if a matching fragment entry version could not be found
    • fetchByG_FCI_S_Version_Last

      FragmentEntryVersion fetchByG_FCI_S_Version_Last(long groupId, long fragmentCollectionId, int status, int version, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator)
      Returns the last fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ? and status = ? and version = ?.
      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      status - the status
      version - the version
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching fragment entry version, or null if a matching fragment entry version could not be found
    • findByG_FCI_S_Version_PrevAndNext

      FragmentEntryVersion[] findByG_FCI_S_Version_PrevAndNext(long fragmentEntryVersionId, long groupId, long fragmentCollectionId, int status, int version, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator) throws NoSuchEntryVersionException
      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 = ?.
      Parameters:
      fragmentEntryVersionId - the primary key of the current fragment entry version
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      status - the status
      version - the version
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next fragment entry version
      Throws:
      NoSuchEntryVersionException - if a fragment entry version with the primary key could not be found
    • removeByG_FCI_S_Version

      void removeByG_FCI_S_Version(long groupId, long fragmentCollectionId, int status, int version)
      Removes all the fragment entry versions where groupId = ? and fragmentCollectionId = ? and status = ? and version = ? from the database.
      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      status - the status
      version - the version
    • countByG_FCI_S_Version

      int countByG_FCI_S_Version(long groupId, long fragmentCollectionId, int status, int version)
      Returns the number of fragment entry versions where groupId = ? and fragmentCollectionId = ? and status = ? and version = ?.
      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      status - the status
      version - the version
      Returns:
      the number of matching fragment entry versions
    • findByG_FCI_LikeN_S

      List<FragmentEntryVersion> findByG_FCI_LikeN_S(long groupId, long fragmentCollectionId, String name, int status)
      Returns all the fragment entry versions where groupId = ? and fragmentCollectionId = ? and name = ? and status = ?.
      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      name - the name
      status - the status
      Returns:
      the matching fragment entry versions
    • findByG_FCI_LikeN_S

      List<FragmentEntryVersion> findByG_FCI_LikeN_S(long groupId, long fragmentCollectionId, String name, int status, int start, int end)
      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.

      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      name - the name
      status - the status
      start - the lower bound of the range of fragment entry versions
      end - the upper bound of the range of fragment entry versions (not inclusive)
      Returns:
      the range of matching fragment entry versions
    • findByG_FCI_LikeN_S

      List<FragmentEntryVersion> findByG_FCI_LikeN_S(long groupId, long fragmentCollectionId, String name, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> 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.

      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      name - the name
      status - the status
      start - the lower bound of the range of fragment entry versions
      end - the upper bound of the range of fragment entry versions (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching fragment entry versions
    • findByG_FCI_LikeN_S

      List<FragmentEntryVersion> findByG_FCI_LikeN_S(long groupId, long fragmentCollectionId, String name, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator, boolean useFinderCache)
      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.

      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      name - the name
      status - the status
      start - the lower bound of the range of fragment entry versions
      end - the upper bound of the range of fragment entry versions (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching fragment entry versions
    • findByG_FCI_LikeN_S_First

      FragmentEntryVersion findByG_FCI_LikeN_S_First(long groupId, long fragmentCollectionId, String name, int status, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator) throws NoSuchEntryVersionException
      Returns the first fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ? and name = ? and status = ?.
      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      name - the name
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching fragment entry version
      Throws:
      NoSuchEntryVersionException - if a matching fragment entry version could not be found
    • fetchByG_FCI_LikeN_S_First

      FragmentEntryVersion fetchByG_FCI_LikeN_S_First(long groupId, long fragmentCollectionId, String name, int status, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator)
      Returns the first fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ? and name = ? and status = ?.
      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      name - the name
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching fragment entry version, or null if a matching fragment entry version could not be found
    • findByG_FCI_LikeN_S_Last

      FragmentEntryVersion findByG_FCI_LikeN_S_Last(long groupId, long fragmentCollectionId, String name, int status, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator) throws NoSuchEntryVersionException
      Returns the last fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ? and name = ? and status = ?.
      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      name - the name
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching fragment entry version
      Throws:
      NoSuchEntryVersionException - if a matching fragment entry version could not be found
    • fetchByG_FCI_LikeN_S_Last

      FragmentEntryVersion fetchByG_FCI_LikeN_S_Last(long groupId, long fragmentCollectionId, String name, int status, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator)
      Returns the last fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ? and name = ? and status = ?.
      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      name - the name
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching fragment entry version, or null if a matching fragment entry version could not be found
    • findByG_FCI_LikeN_S_PrevAndNext

      FragmentEntryVersion[] findByG_FCI_LikeN_S_PrevAndNext(long fragmentEntryVersionId, long groupId, long fragmentCollectionId, String name, int status, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator) throws NoSuchEntryVersionException
      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 = ?.
      Parameters:
      fragmentEntryVersionId - the primary key of the current fragment entry version
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      name - the name
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next fragment entry version
      Throws:
      NoSuchEntryVersionException - if a fragment entry version with the primary key could not be found
    • removeByG_FCI_LikeN_S

      void removeByG_FCI_LikeN_S(long groupId, long fragmentCollectionId, String name, int status)
      Removes all the fragment entry versions where groupId = ? and fragmentCollectionId = ? and name = ? and status = ? from the database.
      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      name - the name
      status - the status
    • countByG_FCI_LikeN_S

      int countByG_FCI_LikeN_S(long groupId, long fragmentCollectionId, String name, int status)
      Returns the number of fragment entry versions where groupId = ? and fragmentCollectionId = ? and name = ? and status = ?.
      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      name - the name
      status - the status
      Returns:
      the number of matching fragment entry versions
    • findByG_FCI_LikeN_S_Version

      List<FragmentEntryVersion> findByG_FCI_LikeN_S_Version(long groupId, long fragmentCollectionId, String name, int status, int version)
      Returns all the fragment entry versions where groupId = ? and fragmentCollectionId = ? and name = ? and status = ? and version = ?.
      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      name - the name
      status - the status
      version - the version
      Returns:
      the matching fragment entry versions
    • findByG_FCI_LikeN_S_Version

      List<FragmentEntryVersion> findByG_FCI_LikeN_S_Version(long groupId, long fragmentCollectionId, String name, int status, int version, int start, int end)
      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 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.

      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      name - the name
      status - the status
      version - the version
      start - the lower bound of the range of fragment entry versions
      end - the upper bound of the range of fragment entry versions (not inclusive)
      Returns:
      the range of matching fragment entry versions
    • findByG_FCI_LikeN_S_Version

      List<FragmentEntryVersion> findByG_FCI_LikeN_S_Version(long groupId, long fragmentCollectionId, String name, int status, int version, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator)
      Returns an ordered 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 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.

      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      name - the name
      status - the status
      version - the version
      start - the lower bound of the range of fragment entry versions
      end - the upper bound of the range of fragment entry versions (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching fragment entry versions
    • findByG_FCI_LikeN_S_Version

      List<FragmentEntryVersion> findByG_FCI_LikeN_S_Version(long groupId, long fragmentCollectionId, String name, int status, int version, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator, boolean useFinderCache)
      Returns an ordered 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 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.

      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      name - the name
      status - the status
      version - the version
      start - the lower bound of the range of fragment entry versions
      end - the upper bound of the range of fragment entry versions (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching fragment entry versions
    • findByG_FCI_LikeN_S_Version_First

      FragmentEntryVersion findByG_FCI_LikeN_S_Version_First(long groupId, long fragmentCollectionId, String name, int status, int version, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator) throws NoSuchEntryVersionException
      Returns the first fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ? and name = ? and status = ? and version = ?.
      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      name - the name
      status - the status
      version - the version
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching fragment entry version
      Throws:
      NoSuchEntryVersionException - if a matching fragment entry version could not be found
    • fetchByG_FCI_LikeN_S_Version_First

      FragmentEntryVersion fetchByG_FCI_LikeN_S_Version_First(long groupId, long fragmentCollectionId, String name, int status, int version, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator)
      Returns the first fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ? and name = ? and status = ? and version = ?.
      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      name - the name
      status - the status
      version - the version
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching fragment entry version, or null if a matching fragment entry version could not be found
    • findByG_FCI_LikeN_S_Version_Last

      FragmentEntryVersion findByG_FCI_LikeN_S_Version_Last(long groupId, long fragmentCollectionId, String name, int status, int version, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator) throws NoSuchEntryVersionException
      Returns the last fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ? and name = ? and status = ? and version = ?.
      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      name - the name
      status - the status
      version - the version
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching fragment entry version
      Throws:
      NoSuchEntryVersionException - if a matching fragment entry version could not be found
    • fetchByG_FCI_LikeN_S_Version_Last

      FragmentEntryVersion fetchByG_FCI_LikeN_S_Version_Last(long groupId, long fragmentCollectionId, String name, int status, int version, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator)
      Returns the last fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ? and name = ? and status = ? and version = ?.
      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      name - the name
      status - the status
      version - the version
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching fragment entry version, or null if a matching fragment entry version could not be found
    • findByG_FCI_LikeN_S_Version_PrevAndNext

      FragmentEntryVersion[] findByG_FCI_LikeN_S_Version_PrevAndNext(long fragmentEntryVersionId, long groupId, long fragmentCollectionId, String name, int status, int version, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator) throws NoSuchEntryVersionException
      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 = ? and version = ?.
      Parameters:
      fragmentEntryVersionId - the primary key of the current fragment entry version
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      name - the name
      status - the status
      version - the version
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next fragment entry version
      Throws:
      NoSuchEntryVersionException - if a fragment entry version with the primary key could not be found
    • removeByG_FCI_LikeN_S_Version

      void removeByG_FCI_LikeN_S_Version(long groupId, long fragmentCollectionId, String name, int status, int version)
      Removes all the fragment entry versions where groupId = ? and fragmentCollectionId = ? and name = ? and status = ? and version = ? from the database.
      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      name - the name
      status - the status
      version - the version
    • countByG_FCI_LikeN_S_Version

      int countByG_FCI_LikeN_S_Version(long groupId, long fragmentCollectionId, String name, int status, int version)
      Returns the number of fragment entry versions where groupId = ? and fragmentCollectionId = ? and name = ? and status = ? and version = ?.
      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      name - the name
      status - the status
      version - the version
      Returns:
      the number of matching fragment entry versions
    • findByG_FCI_T_S

      List<FragmentEntryVersion> findByG_FCI_T_S(long groupId, long fragmentCollectionId, int type, int status)
      Returns all the fragment entry versions where groupId = ? and fragmentCollectionId = ? and type = ? and status = ?.
      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      type - the type
      status - the status
      Returns:
      the matching fragment entry versions
    • findByG_FCI_T_S

      List<FragmentEntryVersion> findByG_FCI_T_S(long groupId, long fragmentCollectionId, int type, int status, int start, int end)
      Returns a range of all the fragment entry versions where groupId = ? and fragmentCollectionId = ? and type = ? 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.

      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      type - the type
      status - the status
      start - the lower bound of the range of fragment entry versions
      end - the upper bound of the range of fragment entry versions (not inclusive)
      Returns:
      the range of matching fragment entry versions
    • findByG_FCI_T_S

      List<FragmentEntryVersion> findByG_FCI_T_S(long groupId, long fragmentCollectionId, int type, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator)
      Returns an ordered range of all the fragment entry versions where groupId = ? and fragmentCollectionId = ? and type = ? 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.

      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      type - the type
      status - the status
      start - the lower bound of the range of fragment entry versions
      end - the upper bound of the range of fragment entry versions (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching fragment entry versions
    • findByG_FCI_T_S

      List<FragmentEntryVersion> findByG_FCI_T_S(long groupId, long fragmentCollectionId, int type, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the fragment entry versions where groupId = ? and fragmentCollectionId = ? and type = ? 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.

      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      type - the type
      status - the status
      start - the lower bound of the range of fragment entry versions
      end - the upper bound of the range of fragment entry versions (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching fragment entry versions
    • findByG_FCI_T_S_First

      FragmentEntryVersion findByG_FCI_T_S_First(long groupId, long fragmentCollectionId, int type, int status, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator) throws NoSuchEntryVersionException
      Returns the first fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ? and type = ? and status = ?.
      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      type - the type
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching fragment entry version
      Throws:
      NoSuchEntryVersionException - if a matching fragment entry version could not be found
    • fetchByG_FCI_T_S_First

      FragmentEntryVersion fetchByG_FCI_T_S_First(long groupId, long fragmentCollectionId, int type, int status, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator)
      Returns the first fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ? and type = ? and status = ?.
      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      type - the type
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching fragment entry version, or null if a matching fragment entry version could not be found
    • findByG_FCI_T_S_Last

      FragmentEntryVersion findByG_FCI_T_S_Last(long groupId, long fragmentCollectionId, int type, int status, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator) throws NoSuchEntryVersionException
      Returns the last fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ? and type = ? and status = ?.
      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      type - the type
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching fragment entry version
      Throws:
      NoSuchEntryVersionException - if a matching fragment entry version could not be found
    • fetchByG_FCI_T_S_Last

      FragmentEntryVersion fetchByG_FCI_T_S_Last(long groupId, long fragmentCollectionId, int type, int status, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator)
      Returns the last fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ? and type = ? and status = ?.
      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      type - the type
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching fragment entry version, or null if a matching fragment entry version could not be found
    • findByG_FCI_T_S_PrevAndNext

      FragmentEntryVersion[] findByG_FCI_T_S_PrevAndNext(long fragmentEntryVersionId, long groupId, long fragmentCollectionId, int type, int status, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator) throws NoSuchEntryVersionException
      Returns the fragment entry versions before and after the current fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ? and type = ? and status = ?.
      Parameters:
      fragmentEntryVersionId - the primary key of the current fragment entry version
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      type - the type
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next fragment entry version
      Throws:
      NoSuchEntryVersionException - if a fragment entry version with the primary key could not be found
    • removeByG_FCI_T_S

      void removeByG_FCI_T_S(long groupId, long fragmentCollectionId, int type, int status)
      Removes all the fragment entry versions where groupId = ? and fragmentCollectionId = ? and type = ? and status = ? from the database.
      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      type - the type
      status - the status
    • countByG_FCI_T_S

      int countByG_FCI_T_S(long groupId, long fragmentCollectionId, int type, int status)
      Returns the number of fragment entry versions where groupId = ? and fragmentCollectionId = ? and type = ? and status = ?.
      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      type - the type
      status - the status
      Returns:
      the number of matching fragment entry versions
    • findByG_FCI_T_S_Version

      List<FragmentEntryVersion> findByG_FCI_T_S_Version(long groupId, long fragmentCollectionId, int type, int status, int version)
      Returns all the fragment entry versions where groupId = ? and fragmentCollectionId = ? and type = ? and status = ? and version = ?.
      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      type - the type
      status - the status
      version - the version
      Returns:
      the matching fragment entry versions
    • findByG_FCI_T_S_Version

      List<FragmentEntryVersion> findByG_FCI_T_S_Version(long groupId, long fragmentCollectionId, int type, int status, int version, int start, int end)
      Returns a range of all the fragment entry versions where groupId = ? and fragmentCollectionId = ? and type = ? 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.

      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      type - the type
      status - the status
      version - the version
      start - the lower bound of the range of fragment entry versions
      end - the upper bound of the range of fragment entry versions (not inclusive)
      Returns:
      the range of matching fragment entry versions
    • findByG_FCI_T_S_Version

      List<FragmentEntryVersion> findByG_FCI_T_S_Version(long groupId, long fragmentCollectionId, int type, int status, int version, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator)
      Returns an ordered range of all the fragment entry versions where groupId = ? and fragmentCollectionId = ? and type = ? 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.

      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      type - the type
      status - the status
      version - the version
      start - the lower bound of the range of fragment entry versions
      end - the upper bound of the range of fragment entry versions (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching fragment entry versions
    • findByG_FCI_T_S_Version

      List<FragmentEntryVersion> findByG_FCI_T_S_Version(long groupId, long fragmentCollectionId, int type, int status, int version, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the fragment entry versions where groupId = ? and fragmentCollectionId = ? and type = ? 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.

      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      type - the type
      status - the status
      version - the version
      start - the lower bound of the range of fragment entry versions
      end - the upper bound of the range of fragment entry versions (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching fragment entry versions
    • findByG_FCI_T_S_Version_First

      FragmentEntryVersion findByG_FCI_T_S_Version_First(long groupId, long fragmentCollectionId, int type, int status, int version, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator) throws NoSuchEntryVersionException
      Returns the first fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ? and type = ? and status = ? and version = ?.
      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      type - the type
      status - the status
      version - the version
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching fragment entry version
      Throws:
      NoSuchEntryVersionException - if a matching fragment entry version could not be found
    • fetchByG_FCI_T_S_Version_First

      FragmentEntryVersion fetchByG_FCI_T_S_Version_First(long groupId, long fragmentCollectionId, int type, int status, int version, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator)
      Returns the first fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ? and type = ? and status = ? and version = ?.
      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      type - the type
      status - the status
      version - the version
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching fragment entry version, or null if a matching fragment entry version could not be found
    • findByG_FCI_T_S_Version_Last

      FragmentEntryVersion findByG_FCI_T_S_Version_Last(long groupId, long fragmentCollectionId, int type, int status, int version, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator) throws NoSuchEntryVersionException
      Returns the last fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ? and type = ? and status = ? and version = ?.
      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      type - the type
      status - the status
      version - the version
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching fragment entry version
      Throws:
      NoSuchEntryVersionException - if a matching fragment entry version could not be found
    • fetchByG_FCI_T_S_Version_Last

      FragmentEntryVersion fetchByG_FCI_T_S_Version_Last(long groupId, long fragmentCollectionId, int type, int status, int version, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator)
      Returns the last fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ? and type = ? and status = ? and version = ?.
      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      type - the type
      status - the status
      version - the version
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching fragment entry version, or null if a matching fragment entry version could not be found
    • findByG_FCI_T_S_Version_PrevAndNext

      FragmentEntryVersion[] findByG_FCI_T_S_Version_PrevAndNext(long fragmentEntryVersionId, long groupId, long fragmentCollectionId, int type, int status, int version, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator) throws NoSuchEntryVersionException
      Returns the fragment entry versions before and after the current fragment entry version in the ordered set where groupId = ? and fragmentCollectionId = ? and type = ? and status = ? and version = ?.
      Parameters:
      fragmentEntryVersionId - the primary key of the current fragment entry version
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      type - the type
      status - the status
      version - the version
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next fragment entry version
      Throws:
      NoSuchEntryVersionException - if a fragment entry version with the primary key could not be found
    • removeByG_FCI_T_S_Version

      void removeByG_FCI_T_S_Version(long groupId, long fragmentCollectionId, int type, int status, int version)
      Removes all the fragment entry versions where groupId = ? and fragmentCollectionId = ? and type = ? and status = ? and version = ? from the database.
      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      type - the type
      status - the status
      version - the version
    • countByG_FCI_T_S_Version

      int countByG_FCI_T_S_Version(long groupId, long fragmentCollectionId, int type, int status, int version)
      Returns the number of fragment entry versions where groupId = ? and fragmentCollectionId = ? and type = ? and status = ? and version = ?.
      Parameters:
      groupId - the group ID
      fragmentCollectionId - the fragment collection ID
      type - the type
      status - the status
      version - the version
      Returns:
      the number of matching fragment entry versions
    • cacheResult

      void cacheResult(FragmentEntryVersion fragmentEntryVersion)
      Caches the fragment entry version in the entity cache if it is enabled.
      Parameters:
      fragmentEntryVersion - the fragment entry version
    • cacheResult

      void cacheResult(List<FragmentEntryVersion> fragmentEntryVersions)
      Caches the fragment entry versions in the entity cache if it is enabled.
      Parameters:
      fragmentEntryVersions - the fragment entry versions
    • create

      FragmentEntryVersion create(long fragmentEntryVersionId)
      Creates a new fragment entry version with the primary key. Does not add the fragment entry version to the database.
      Parameters:
      fragmentEntryVersionId - the primary key for the new fragment entry version
      Returns:
      the new fragment entry version
    • remove

      FragmentEntryVersion remove(long fragmentEntryVersionId) throws NoSuchEntryVersionException
      Removes the fragment entry version with the primary key from the database. Also notifies the appropriate model listeners.
      Parameters:
      fragmentEntryVersionId - the primary key of the fragment entry version
      Returns:
      the fragment entry version that was removed
      Throws:
      NoSuchEntryVersionException - if a fragment entry version with the primary key could not be found
    • updateImpl

      FragmentEntryVersion updateImpl(FragmentEntryVersion fragmentEntryVersion)
    • findByPrimaryKey

      FragmentEntryVersion findByPrimaryKey(long fragmentEntryVersionId) throws NoSuchEntryVersionException
      Returns the fragment entry version with the primary key or throws a NoSuchEntryVersionException if it could not be found.
      Parameters:
      fragmentEntryVersionId - the primary key of the fragment entry version
      Returns:
      the fragment entry version
      Throws:
      NoSuchEntryVersionException - if a fragment entry version with the primary key could not be found
    • fetchByPrimaryKey

      FragmentEntryVersion fetchByPrimaryKey(long fragmentEntryVersionId)
      Returns the fragment entry version with the primary key or returns null if it could not be found.
      Parameters:
      fragmentEntryVersionId - the primary key of the fragment entry version
      Returns:
      the fragment entry version, or null if a fragment entry version with the primary key could not be found
    • findAll

      Returns all the fragment entry versions.
      Returns:
      the fragment entry versions
    • findAll

      List<FragmentEntryVersion> findAll(int start, int end)
      Returns a range of all the fragment entry versions.

      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.

      Parameters:
      start - the lower bound of the range of fragment entry versions
      end - the upper bound of the range of fragment entry versions (not inclusive)
      Returns:
      the range of fragment entry versions
    • findAll

      List<FragmentEntryVersion> findAll(int start, int end, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator)
      Returns an ordered range of all the fragment entry versions.

      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.

      Parameters:
      start - the lower bound of the range of fragment entry versions
      end - the upper bound of the range of fragment entry versions (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of fragment entry versions
    • findAll

      List<FragmentEntryVersion> findAll(int start, int end, com.liferay.portal.kernel.util.OrderByComparator<FragmentEntryVersion> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the fragment entry versions.

      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.

      Parameters:
      start - the lower bound of the range of fragment entry versions
      end - the upper bound of the range of fragment entry versions (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of fragment entry versions
    • removeAll

      void removeAll()
      Removes all the fragment entry versions from the database.
    • countAll

      int countAll()
      Returns the number of fragment entry versions.
      Returns:
      the number of fragment entry versions