Interface ObjectLayoutTabPersistence

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

@ProviderType public interface ObjectLayoutTabPersistence extends com.liferay.portal.kernel.service.persistence.BasePersistence<ObjectLayoutTab>
The persistence interface for the object layout tab service.

Caching information and settings can be found in portal.properties

See Also:
Generated:
  • Method Details

    • findByUuid

      List<ObjectLayoutTab> findByUuid(String uuid)
      Returns all the object layout tabs where uuid = ?.
      Parameters:
      uuid - the uuid
      Returns:
      the matching object layout tabs
    • findByUuid

      List<ObjectLayoutTab> findByUuid(String uuid, int start, int end)
      Returns a range of all the object layout tabs 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 ObjectLayoutTabModelImpl.

      Parameters:
      uuid - the uuid
      start - the lower bound of the range of object layout tabs
      end - the upper bound of the range of object layout tabs (not inclusive)
      Returns:
      the range of matching object layout tabs
    • findByUuid

      List<ObjectLayoutTab> findByUuid(String uuid, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<ObjectLayoutTab> orderByComparator)
      Returns an ordered range of all the object layout tabs 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 ObjectLayoutTabModelImpl.

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

      List<ObjectLayoutTab> findByUuid(String uuid, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<ObjectLayoutTab> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the object layout tabs 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 ObjectLayoutTabModelImpl.

      Parameters:
      uuid - the uuid
      start - the lower bound of the range of object layout tabs
      end - the upper bound of the range of object layout tabs (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 object layout tabs
    • findByUuid_First

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

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

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

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

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

      void removeByUuid(String uuid)
      Removes all the object layout tabs where uuid = ? from the database.
      Parameters:
      uuid - the uuid
    • countByUuid

      int countByUuid(String uuid)
      Returns the number of object layout tabs where uuid = ?.
      Parameters:
      uuid - the uuid
      Returns:
      the number of matching object layout tabs
    • findByUuid_C

      List<ObjectLayoutTab> findByUuid_C(String uuid, long companyId)
      Returns all the object layout tabs where uuid = ? and companyId = ?.
      Parameters:
      uuid - the uuid
      companyId - the company ID
      Returns:
      the matching object layout tabs
    • findByUuid_C

      List<ObjectLayoutTab> findByUuid_C(String uuid, long companyId, int start, int end)
      Returns a range of all the object layout tabs 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 ObjectLayoutTabModelImpl.

      Parameters:
      uuid - the uuid
      companyId - the company ID
      start - the lower bound of the range of object layout tabs
      end - the upper bound of the range of object layout tabs (not inclusive)
      Returns:
      the range of matching object layout tabs
    • findByUuid_C

      List<ObjectLayoutTab> findByUuid_C(String uuid, long companyId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<ObjectLayoutTab> orderByComparator)
      Returns an ordered range of all the object layout tabs 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 ObjectLayoutTabModelImpl.

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

      List<ObjectLayoutTab> findByUuid_C(String uuid, long companyId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<ObjectLayoutTab> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the object layout tabs 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 ObjectLayoutTabModelImpl.

      Parameters:
      uuid - the uuid
      companyId - the company ID
      start - the lower bound of the range of object layout tabs
      end - the upper bound of the range of object layout tabs (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 object layout tabs
    • findByUuid_C_First

      ObjectLayoutTab findByUuid_C_First(String uuid, long companyId, com.liferay.portal.kernel.util.OrderByComparator<ObjectLayoutTab> orderByComparator) throws NoSuchObjectLayoutTabException
      Returns the first object layout tab 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 object layout tab
      Throws:
      NoSuchObjectLayoutTabException - if a matching object layout tab could not be found
    • fetchByUuid_C_First

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

      ObjectLayoutTab findByUuid_C_Last(String uuid, long companyId, com.liferay.portal.kernel.util.OrderByComparator<ObjectLayoutTab> orderByComparator) throws NoSuchObjectLayoutTabException
      Returns the last object layout tab 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 object layout tab
      Throws:
      NoSuchObjectLayoutTabException - if a matching object layout tab could not be found
    • fetchByUuid_C_Last

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

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

      void removeByUuid_C(String uuid, long companyId)
      Removes all the object layout tabs 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 object layout tabs where uuid = ? and companyId = ?.
      Parameters:
      uuid - the uuid
      companyId - the company ID
      Returns:
      the number of matching object layout tabs
    • findByObjectLayoutId

      List<ObjectLayoutTab> findByObjectLayoutId(long objectLayoutId)
      Returns all the object layout tabs where objectLayoutId = ?.
      Parameters:
      objectLayoutId - the object layout ID
      Returns:
      the matching object layout tabs
    • findByObjectLayoutId

      List<ObjectLayoutTab> findByObjectLayoutId(long objectLayoutId, int start, int end)
      Returns a range of all the object layout tabs where objectLayoutId = ?.

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

      Parameters:
      objectLayoutId - the object layout ID
      start - the lower bound of the range of object layout tabs
      end - the upper bound of the range of object layout tabs (not inclusive)
      Returns:
      the range of matching object layout tabs
    • findByObjectLayoutId

      List<ObjectLayoutTab> findByObjectLayoutId(long objectLayoutId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<ObjectLayoutTab> orderByComparator)
      Returns an ordered range of all the object layout tabs where objectLayoutId = ?.

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

      Parameters:
      objectLayoutId - the object layout ID
      start - the lower bound of the range of object layout tabs
      end - the upper bound of the range of object layout tabs (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching object layout tabs
    • findByObjectLayoutId

      List<ObjectLayoutTab> findByObjectLayoutId(long objectLayoutId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<ObjectLayoutTab> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the object layout tabs where objectLayoutId = ?.

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

      Parameters:
      objectLayoutId - the object layout ID
      start - the lower bound of the range of object layout tabs
      end - the upper bound of the range of object layout tabs (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 object layout tabs
    • findByObjectLayoutId_First

      ObjectLayoutTab findByObjectLayoutId_First(long objectLayoutId, com.liferay.portal.kernel.util.OrderByComparator<ObjectLayoutTab> orderByComparator) throws NoSuchObjectLayoutTabException
      Returns the first object layout tab in the ordered set where objectLayoutId = ?.
      Parameters:
      objectLayoutId - the object layout ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching object layout tab
      Throws:
      NoSuchObjectLayoutTabException - if a matching object layout tab could not be found
    • fetchByObjectLayoutId_First

      ObjectLayoutTab fetchByObjectLayoutId_First(long objectLayoutId, com.liferay.portal.kernel.util.OrderByComparator<ObjectLayoutTab> orderByComparator)
      Returns the first object layout tab in the ordered set where objectLayoutId = ?.
      Parameters:
      objectLayoutId - the object layout ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching object layout tab, or null if a matching object layout tab could not be found
    • findByObjectLayoutId_Last

      ObjectLayoutTab findByObjectLayoutId_Last(long objectLayoutId, com.liferay.portal.kernel.util.OrderByComparator<ObjectLayoutTab> orderByComparator) throws NoSuchObjectLayoutTabException
      Returns the last object layout tab in the ordered set where objectLayoutId = ?.
      Parameters:
      objectLayoutId - the object layout ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching object layout tab
      Throws:
      NoSuchObjectLayoutTabException - if a matching object layout tab could not be found
    • fetchByObjectLayoutId_Last

      ObjectLayoutTab fetchByObjectLayoutId_Last(long objectLayoutId, com.liferay.portal.kernel.util.OrderByComparator<ObjectLayoutTab> orderByComparator)
      Returns the last object layout tab in the ordered set where objectLayoutId = ?.
      Parameters:
      objectLayoutId - the object layout ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching object layout tab, or null if a matching object layout tab could not be found
    • findByObjectLayoutId_PrevAndNext

      ObjectLayoutTab[] findByObjectLayoutId_PrevAndNext(long objectLayoutTabId, long objectLayoutId, com.liferay.portal.kernel.util.OrderByComparator<ObjectLayoutTab> orderByComparator) throws NoSuchObjectLayoutTabException
      Returns the object layout tabs before and after the current object layout tab in the ordered set where objectLayoutId = ?.
      Parameters:
      objectLayoutTabId - the primary key of the current object layout tab
      objectLayoutId - the object layout ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next object layout tab
      Throws:
      NoSuchObjectLayoutTabException - if a object layout tab with the primary key could not be found
    • removeByObjectLayoutId

      void removeByObjectLayoutId(long objectLayoutId)
      Removes all the object layout tabs where objectLayoutId = ? from the database.
      Parameters:
      objectLayoutId - the object layout ID
    • countByObjectLayoutId

      int countByObjectLayoutId(long objectLayoutId)
      Returns the number of object layout tabs where objectLayoutId = ?.
      Parameters:
      objectLayoutId - the object layout ID
      Returns:
      the number of matching object layout tabs
    • findByObjectRelationshipId

      List<ObjectLayoutTab> findByObjectRelationshipId(long objectRelationshipId)
      Returns all the object layout tabs where objectRelationshipId = ?.
      Parameters:
      objectRelationshipId - the object relationship ID
      Returns:
      the matching object layout tabs
    • findByObjectRelationshipId

      List<ObjectLayoutTab> findByObjectRelationshipId(long objectRelationshipId, int start, int end)
      Returns a range of all the object layout tabs where objectRelationshipId = ?.

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

      Parameters:
      objectRelationshipId - the object relationship ID
      start - the lower bound of the range of object layout tabs
      end - the upper bound of the range of object layout tabs (not inclusive)
      Returns:
      the range of matching object layout tabs
    • findByObjectRelationshipId

      List<ObjectLayoutTab> findByObjectRelationshipId(long objectRelationshipId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<ObjectLayoutTab> orderByComparator)
      Returns an ordered range of all the object layout tabs where objectRelationshipId = ?.

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

      Parameters:
      objectRelationshipId - the object relationship ID
      start - the lower bound of the range of object layout tabs
      end - the upper bound of the range of object layout tabs (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching object layout tabs
    • findByObjectRelationshipId

      List<ObjectLayoutTab> findByObjectRelationshipId(long objectRelationshipId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<ObjectLayoutTab> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the object layout tabs where objectRelationshipId = ?.

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

      Parameters:
      objectRelationshipId - the object relationship ID
      start - the lower bound of the range of object layout tabs
      end - the upper bound of the range of object layout tabs (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 object layout tabs
    • findByObjectRelationshipId_First

      ObjectLayoutTab findByObjectRelationshipId_First(long objectRelationshipId, com.liferay.portal.kernel.util.OrderByComparator<ObjectLayoutTab> orderByComparator) throws NoSuchObjectLayoutTabException
      Returns the first object layout tab in the ordered set where objectRelationshipId = ?.
      Parameters:
      objectRelationshipId - the object relationship ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching object layout tab
      Throws:
      NoSuchObjectLayoutTabException - if a matching object layout tab could not be found
    • fetchByObjectRelationshipId_First

      ObjectLayoutTab fetchByObjectRelationshipId_First(long objectRelationshipId, com.liferay.portal.kernel.util.OrderByComparator<ObjectLayoutTab> orderByComparator)
      Returns the first object layout tab in the ordered set where objectRelationshipId = ?.
      Parameters:
      objectRelationshipId - the object relationship ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching object layout tab, or null if a matching object layout tab could not be found
    • findByObjectRelationshipId_Last

      ObjectLayoutTab findByObjectRelationshipId_Last(long objectRelationshipId, com.liferay.portal.kernel.util.OrderByComparator<ObjectLayoutTab> orderByComparator) throws NoSuchObjectLayoutTabException
      Returns the last object layout tab in the ordered set where objectRelationshipId = ?.
      Parameters:
      objectRelationshipId - the object relationship ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching object layout tab
      Throws:
      NoSuchObjectLayoutTabException - if a matching object layout tab could not be found
    • fetchByObjectRelationshipId_Last

      ObjectLayoutTab fetchByObjectRelationshipId_Last(long objectRelationshipId, com.liferay.portal.kernel.util.OrderByComparator<ObjectLayoutTab> orderByComparator)
      Returns the last object layout tab in the ordered set where objectRelationshipId = ?.
      Parameters:
      objectRelationshipId - the object relationship ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching object layout tab, or null if a matching object layout tab could not be found
    • findByObjectRelationshipId_PrevAndNext

      ObjectLayoutTab[] findByObjectRelationshipId_PrevAndNext(long objectLayoutTabId, long objectRelationshipId, com.liferay.portal.kernel.util.OrderByComparator<ObjectLayoutTab> orderByComparator) throws NoSuchObjectLayoutTabException
      Returns the object layout tabs before and after the current object layout tab in the ordered set where objectRelationshipId = ?.
      Parameters:
      objectLayoutTabId - the primary key of the current object layout tab
      objectRelationshipId - the object relationship ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next object layout tab
      Throws:
      NoSuchObjectLayoutTabException - if a object layout tab with the primary key could not be found
    • removeByObjectRelationshipId

      void removeByObjectRelationshipId(long objectRelationshipId)
      Removes all the object layout tabs where objectRelationshipId = ? from the database.
      Parameters:
      objectRelationshipId - the object relationship ID
    • countByObjectRelationshipId

      int countByObjectRelationshipId(long objectRelationshipId)
      Returns the number of object layout tabs where objectRelationshipId = ?.
      Parameters:
      objectRelationshipId - the object relationship ID
      Returns:
      the number of matching object layout tabs
    • cacheResult

      void cacheResult(ObjectLayoutTab objectLayoutTab)
      Caches the object layout tab in the entity cache if it is enabled.
      Parameters:
      objectLayoutTab - the object layout tab
    • cacheResult

      void cacheResult(List<ObjectLayoutTab> objectLayoutTabs)
      Caches the object layout tabs in the entity cache if it is enabled.
      Parameters:
      objectLayoutTabs - the object layout tabs
    • create

      ObjectLayoutTab create(long objectLayoutTabId)
      Creates a new object layout tab with the primary key. Does not add the object layout tab to the database.
      Parameters:
      objectLayoutTabId - the primary key for the new object layout tab
      Returns:
      the new object layout tab
    • remove

      ObjectLayoutTab remove(long objectLayoutTabId) throws NoSuchObjectLayoutTabException
      Removes the object layout tab with the primary key from the database. Also notifies the appropriate model listeners.
      Parameters:
      objectLayoutTabId - the primary key of the object layout tab
      Returns:
      the object layout tab that was removed
      Throws:
      NoSuchObjectLayoutTabException - if a object layout tab with the primary key could not be found
    • updateImpl

      ObjectLayoutTab updateImpl(ObjectLayoutTab objectLayoutTab)
    • findByPrimaryKey

      ObjectLayoutTab findByPrimaryKey(long objectLayoutTabId) throws NoSuchObjectLayoutTabException
      Returns the object layout tab with the primary key or throws a NoSuchObjectLayoutTabException if it could not be found.
      Parameters:
      objectLayoutTabId - the primary key of the object layout tab
      Returns:
      the object layout tab
      Throws:
      NoSuchObjectLayoutTabException - if a object layout tab with the primary key could not be found
    • fetchByPrimaryKey

      ObjectLayoutTab fetchByPrimaryKey(long objectLayoutTabId)
      Returns the object layout tab with the primary key or returns null if it could not be found.
      Parameters:
      objectLayoutTabId - the primary key of the object layout tab
      Returns:
      the object layout tab, or null if a object layout tab with the primary key could not be found
    • findAll

      List<ObjectLayoutTab> findAll()
      Returns all the object layout tabs.
      Returns:
      the object layout tabs
    • findAll

      List<ObjectLayoutTab> findAll(int start, int end)
      Returns a range of all the object layout tabs.

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

      Parameters:
      start - the lower bound of the range of object layout tabs
      end - the upper bound of the range of object layout tabs (not inclusive)
      Returns:
      the range of object layout tabs
    • findAll

      List<ObjectLayoutTab> findAll(int start, int end, com.liferay.portal.kernel.util.OrderByComparator<ObjectLayoutTab> orderByComparator)
      Returns an ordered range of all the object layout tabs.

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

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

      List<ObjectLayoutTab> findAll(int start, int end, com.liferay.portal.kernel.util.OrderByComparator<ObjectLayoutTab> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the object layout tabs.

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

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

      void removeAll()
      Removes all the object layout tabs from the database.
    • countAll

      int countAll()
      Returns the number of object layout tabs.
      Returns:
      the number of object layout tabs