Interface CPDefinitionVirtualSettingPersistence

All Superinterfaces:
com.liferay.portal.kernel.service.persistence.BasePersistence<CPDefinitionVirtualSetting>

@ProviderType public interface CPDefinitionVirtualSettingPersistence extends com.liferay.portal.kernel.service.persistence.BasePersistence<CPDefinitionVirtualSetting>
The persistence interface for the cp definition virtual setting service.

Caching information and settings can be found in portal.properties

See Also:
Generated:
  • Method Details

    • findByUuid

      Returns all the cp definition virtual settings where uuid = ?.
      Parameters:
      uuid - the uuid
      Returns:
      the matching cp definition virtual settings
    • findByUuid

      List<CPDefinitionVirtualSetting> findByUuid(String uuid, int start, int end)
      Returns a range of all the cp definition virtual settings 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 CPDefinitionVirtualSettingModelImpl.

      Parameters:
      uuid - the uuid
      start - the lower bound of the range of cp definition virtual settings
      end - the upper bound of the range of cp definition virtual settings (not inclusive)
      Returns:
      the range of matching cp definition virtual settings
    • findByUuid

      List<CPDefinitionVirtualSetting> findByUuid(String uuid, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<CPDefinitionVirtualSetting> orderByComparator)
      Returns an ordered range of all the cp definition virtual settings 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 CPDefinitionVirtualSettingModelImpl.

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

      List<CPDefinitionVirtualSetting> findByUuid(String uuid, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<CPDefinitionVirtualSetting> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the cp definition virtual settings 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 CPDefinitionVirtualSettingModelImpl.

      Parameters:
      uuid - the uuid
      start - the lower bound of the range of cp definition virtual settings
      end - the upper bound of the range of cp definition virtual settings (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 cp definition virtual settings
    • findByUuid_First

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

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

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

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

      CPDefinitionVirtualSetting[] findByUuid_PrevAndNext(long CPDefinitionVirtualSettingId, String uuid, com.liferay.portal.kernel.util.OrderByComparator<CPDefinitionVirtualSetting> orderByComparator) throws NoSuchCPDefinitionVirtualSettingException
      Returns the cp definition virtual settings before and after the current cp definition virtual setting in the ordered set where uuid = ?.
      Parameters:
      CPDefinitionVirtualSettingId - the primary key of the current cp definition virtual setting
      uuid - the uuid
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next cp definition virtual setting
      Throws:
      NoSuchCPDefinitionVirtualSettingException - if a cp definition virtual setting with the primary key could not be found
    • removeByUuid

      void removeByUuid(String uuid)
      Removes all the cp definition virtual settings where uuid = ? from the database.
      Parameters:
      uuid - the uuid
    • countByUuid

      int countByUuid(String uuid)
      Returns the number of cp definition virtual settings where uuid = ?.
      Parameters:
      uuid - the uuid
      Returns:
      the number of matching cp definition virtual settings
    • findByUUID_G

      Returns the cp definition virtual setting where uuid = ? and groupId = ? or throws a NoSuchCPDefinitionVirtualSettingException if it could not be found.
      Parameters:
      uuid - the uuid
      groupId - the group ID
      Returns:
      the matching cp definition virtual setting
      Throws:
      NoSuchCPDefinitionVirtualSettingException - if a matching cp definition virtual setting could not be found
    • fetchByUUID_G

      CPDefinitionVirtualSetting fetchByUUID_G(String uuid, long groupId)
      Returns the cp definition virtual setting where uuid = ? and groupId = ? or returns null if it could not be found. Uses the finder cache.
      Parameters:
      uuid - the uuid
      groupId - the group ID
      Returns:
      the matching cp definition virtual setting, or null if a matching cp definition virtual setting could not be found
    • fetchByUUID_G

      CPDefinitionVirtualSetting fetchByUUID_G(String uuid, long groupId, boolean useFinderCache)
      Returns the cp definition virtual setting where uuid = ? and groupId = ? or returns null if it could not be found, optionally using the finder cache.
      Parameters:
      uuid - the uuid
      groupId - the group ID
      useFinderCache - whether to use the finder cache
      Returns:
      the matching cp definition virtual setting, or null if a matching cp definition virtual setting could not be found
    • removeByUUID_G

      Removes the cp definition virtual setting where uuid = ? and groupId = ? from the database.
      Parameters:
      uuid - the uuid
      groupId - the group ID
      Returns:
      the cp definition virtual setting that was removed
      Throws:
      NoSuchCPDefinitionVirtualSettingException
    • countByUUID_G

      int countByUUID_G(String uuid, long groupId)
      Returns the number of cp definition virtual settings where uuid = ? and groupId = ?.
      Parameters:
      uuid - the uuid
      groupId - the group ID
      Returns:
      the number of matching cp definition virtual settings
    • findByUuid_C

      List<CPDefinitionVirtualSetting> findByUuid_C(String uuid, long companyId)
      Returns all the cp definition virtual settings where uuid = ? and companyId = ?.
      Parameters:
      uuid - the uuid
      companyId - the company ID
      Returns:
      the matching cp definition virtual settings
    • findByUuid_C

      List<CPDefinitionVirtualSetting> findByUuid_C(String uuid, long companyId, int start, int end)
      Returns a range of all the cp definition virtual settings 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 CPDefinitionVirtualSettingModelImpl.

      Parameters:
      uuid - the uuid
      companyId - the company ID
      start - the lower bound of the range of cp definition virtual settings
      end - the upper bound of the range of cp definition virtual settings (not inclusive)
      Returns:
      the range of matching cp definition virtual settings
    • findByUuid_C

      List<CPDefinitionVirtualSetting> findByUuid_C(String uuid, long companyId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<CPDefinitionVirtualSetting> orderByComparator)
      Returns an ordered range of all the cp definition virtual settings 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 CPDefinitionVirtualSettingModelImpl.

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

      List<CPDefinitionVirtualSetting> findByUuid_C(String uuid, long companyId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<CPDefinitionVirtualSetting> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the cp definition virtual settings 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 CPDefinitionVirtualSettingModelImpl.

      Parameters:
      uuid - the uuid
      companyId - the company ID
      start - the lower bound of the range of cp definition virtual settings
      end - the upper bound of the range of cp definition virtual settings (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 cp definition virtual settings
    • findByUuid_C_First

      CPDefinitionVirtualSetting findByUuid_C_First(String uuid, long companyId, com.liferay.portal.kernel.util.OrderByComparator<CPDefinitionVirtualSetting> orderByComparator) throws NoSuchCPDefinitionVirtualSettingException
      Returns the first cp definition virtual setting 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 cp definition virtual setting
      Throws:
      NoSuchCPDefinitionVirtualSettingException - if a matching cp definition virtual setting could not be found
    • fetchByUuid_C_First

      CPDefinitionVirtualSetting fetchByUuid_C_First(String uuid, long companyId, com.liferay.portal.kernel.util.OrderByComparator<CPDefinitionVirtualSetting> orderByComparator)
      Returns the first cp definition virtual setting 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 cp definition virtual setting, or null if a matching cp definition virtual setting could not be found
    • findByUuid_C_Last

      CPDefinitionVirtualSetting findByUuid_C_Last(String uuid, long companyId, com.liferay.portal.kernel.util.OrderByComparator<CPDefinitionVirtualSetting> orderByComparator) throws NoSuchCPDefinitionVirtualSettingException
      Returns the last cp definition virtual setting 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 cp definition virtual setting
      Throws:
      NoSuchCPDefinitionVirtualSettingException - if a matching cp definition virtual setting could not be found
    • fetchByUuid_C_Last

      CPDefinitionVirtualSetting fetchByUuid_C_Last(String uuid, long companyId, com.liferay.portal.kernel.util.OrderByComparator<CPDefinitionVirtualSetting> orderByComparator)
      Returns the last cp definition virtual setting 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 cp definition virtual setting, or null if a matching cp definition virtual setting could not be found
    • findByUuid_C_PrevAndNext

      CPDefinitionVirtualSetting[] findByUuid_C_PrevAndNext(long CPDefinitionVirtualSettingId, String uuid, long companyId, com.liferay.portal.kernel.util.OrderByComparator<CPDefinitionVirtualSetting> orderByComparator) throws NoSuchCPDefinitionVirtualSettingException
      Returns the cp definition virtual settings before and after the current cp definition virtual setting in the ordered set where uuid = ? and companyId = ?.
      Parameters:
      CPDefinitionVirtualSettingId - the primary key of the current cp definition virtual setting
      uuid - the uuid
      companyId - the company ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next cp definition virtual setting
      Throws:
      NoSuchCPDefinitionVirtualSettingException - if a cp definition virtual setting with the primary key could not be found
    • removeByUuid_C

      void removeByUuid_C(String uuid, long companyId)
      Removes all the cp definition virtual settings 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 cp definition virtual settings where uuid = ? and companyId = ?.
      Parameters:
      uuid - the uuid
      companyId - the company ID
      Returns:
      the number of matching cp definition virtual settings
    • findByC_C

      CPDefinitionVirtualSetting findByC_C(long classNameId, long classPK) throws NoSuchCPDefinitionVirtualSettingException
      Returns the cp definition virtual setting where classNameId = ? and classPK = ? or throws a NoSuchCPDefinitionVirtualSettingException if it could not be found.
      Parameters:
      classNameId - the class name ID
      classPK - the class pk
      Returns:
      the matching cp definition virtual setting
      Throws:
      NoSuchCPDefinitionVirtualSettingException - if a matching cp definition virtual setting could not be found
    • fetchByC_C

      CPDefinitionVirtualSetting fetchByC_C(long classNameId, long classPK)
      Returns the cp definition virtual setting where classNameId = ? and classPK = ? or returns null if it could not be found. Uses the finder cache.
      Parameters:
      classNameId - the class name ID
      classPK - the class pk
      Returns:
      the matching cp definition virtual setting, or null if a matching cp definition virtual setting could not be found
    • fetchByC_C

      CPDefinitionVirtualSetting fetchByC_C(long classNameId, long classPK, boolean useFinderCache)
      Returns the cp definition virtual setting where classNameId = ? and classPK = ? or returns null if it could not be found, optionally using the finder cache.
      Parameters:
      classNameId - the class name ID
      classPK - the class pk
      useFinderCache - whether to use the finder cache
      Returns:
      the matching cp definition virtual setting, or null if a matching cp definition virtual setting could not be found
    • removeByC_C

      CPDefinitionVirtualSetting removeByC_C(long classNameId, long classPK) throws NoSuchCPDefinitionVirtualSettingException
      Removes the cp definition virtual setting where classNameId = ? and classPK = ? from the database.
      Parameters:
      classNameId - the class name ID
      classPK - the class pk
      Returns:
      the cp definition virtual setting that was removed
      Throws:
      NoSuchCPDefinitionVirtualSettingException
    • countByC_C

      int countByC_C(long classNameId, long classPK)
      Returns the number of cp definition virtual settings where classNameId = ? and classPK = ?.
      Parameters:
      classNameId - the class name ID
      classPK - the class pk
      Returns:
      the number of matching cp definition virtual settings
    • cacheResult

      void cacheResult(CPDefinitionVirtualSetting cpDefinitionVirtualSetting)
      Caches the cp definition virtual setting in the entity cache if it is enabled.
      Parameters:
      cpDefinitionVirtualSetting - the cp definition virtual setting
    • cacheResult

      void cacheResult(List<CPDefinitionVirtualSetting> cpDefinitionVirtualSettings)
      Caches the cp definition virtual settings in the entity cache if it is enabled.
      Parameters:
      cpDefinitionVirtualSettings - the cp definition virtual settings
    • create

      CPDefinitionVirtualSetting create(long CPDefinitionVirtualSettingId)
      Creates a new cp definition virtual setting with the primary key. Does not add the cp definition virtual setting to the database.
      Parameters:
      CPDefinitionVirtualSettingId - the primary key for the new cp definition virtual setting
      Returns:
      the new cp definition virtual setting
    • remove

      CPDefinitionVirtualSetting remove(long CPDefinitionVirtualSettingId) throws NoSuchCPDefinitionVirtualSettingException
      Removes the cp definition virtual setting with the primary key from the database. Also notifies the appropriate model listeners.
      Parameters:
      CPDefinitionVirtualSettingId - the primary key of the cp definition virtual setting
      Returns:
      the cp definition virtual setting that was removed
      Throws:
      NoSuchCPDefinitionVirtualSettingException - if a cp definition virtual setting with the primary key could not be found
    • updateImpl

      CPDefinitionVirtualSetting updateImpl(CPDefinitionVirtualSetting cpDefinitionVirtualSetting)
    • findByPrimaryKey

      CPDefinitionVirtualSetting findByPrimaryKey(long CPDefinitionVirtualSettingId) throws NoSuchCPDefinitionVirtualSettingException
      Returns the cp definition virtual setting with the primary key or throws a NoSuchCPDefinitionVirtualSettingException if it could not be found.
      Parameters:
      CPDefinitionVirtualSettingId - the primary key of the cp definition virtual setting
      Returns:
      the cp definition virtual setting
      Throws:
      NoSuchCPDefinitionVirtualSettingException - if a cp definition virtual setting with the primary key could not be found
    • fetchByPrimaryKey

      CPDefinitionVirtualSetting fetchByPrimaryKey(long CPDefinitionVirtualSettingId)
      Returns the cp definition virtual setting with the primary key or returns null if it could not be found.
      Parameters:
      CPDefinitionVirtualSettingId - the primary key of the cp definition virtual setting
      Returns:
      the cp definition virtual setting, or null if a cp definition virtual setting with the primary key could not be found
    • findAll

      Returns all the cp definition virtual settings.
      Returns:
      the cp definition virtual settings
    • findAll

      List<CPDefinitionVirtualSetting> findAll(int start, int end)
      Returns a range of all the cp definition virtual settings.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS 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 CPDefinitionVirtualSettingModelImpl.

      Parameters:
      start - the lower bound of the range of cp definition virtual settings
      end - the upper bound of the range of cp definition virtual settings (not inclusive)
      Returns:
      the range of cp definition virtual settings
    • findAll

      List<CPDefinitionVirtualSetting> findAll(int start, int end, com.liferay.portal.kernel.util.OrderByComparator<CPDefinitionVirtualSetting> orderByComparator)
      Returns an ordered range of all the cp definition virtual settings.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS 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 CPDefinitionVirtualSettingModelImpl.

      Parameters:
      start - the lower bound of the range of cp definition virtual settings
      end - the upper bound of the range of cp definition virtual settings (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of cp definition virtual settings
    • findAll

      List<CPDefinitionVirtualSetting> findAll(int start, int end, com.liferay.portal.kernel.util.OrderByComparator<CPDefinitionVirtualSetting> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the cp definition virtual settings.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS 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 CPDefinitionVirtualSettingModelImpl.

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

      void removeAll()
      Removes all the cp definition virtual settings from the database.
    • countAll

      int countAll()
      Returns the number of cp definition virtual settings.
      Returns:
      the number of cp definition virtual settings