Interface ObjectLayoutColumnPersistence

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

@ProviderType public interface ObjectLayoutColumnPersistence extends com.liferay.portal.kernel.service.persistence.BasePersistence<ObjectLayoutColumn>
The persistence interface for the object layout column service.

Caching information and settings can be found in portal.properties

See Also:
Generated:
  • Method Details

    • findByUuid

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

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

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

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

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

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

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

      ObjectLayoutColumn findByUuid_First(String uuid, com.liferay.portal.kernel.util.OrderByComparator<ObjectLayoutColumn> orderByComparator) throws NoSuchObjectLayoutColumnException
      Returns the first object layout column 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 column
      Throws:
      NoSuchObjectLayoutColumnException - if a matching object layout column could not be found
    • fetchByUuid_First

      ObjectLayoutColumn fetchByUuid_First(String uuid, com.liferay.portal.kernel.util.OrderByComparator<ObjectLayoutColumn> orderByComparator)
      Returns the first object layout column 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 column, or null if a matching object layout column could not be found
    • findByUuid_Last

      ObjectLayoutColumn findByUuid_Last(String uuid, com.liferay.portal.kernel.util.OrderByComparator<ObjectLayoutColumn> orderByComparator) throws NoSuchObjectLayoutColumnException
      Returns the last object layout column 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 column
      Throws:
      NoSuchObjectLayoutColumnException - if a matching object layout column could not be found
    • fetchByUuid_Last

      ObjectLayoutColumn fetchByUuid_Last(String uuid, com.liferay.portal.kernel.util.OrderByComparator<ObjectLayoutColumn> orderByComparator)
      Returns the last object layout column 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 column, or null if a matching object layout column could not be found
    • findByUuid_PrevAndNext

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

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

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

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

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

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

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

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

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

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

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

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

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

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

      ObjectLayoutColumn[] findByUuid_C_PrevAndNext(long objectLayoutColumnId, String uuid, long companyId, com.liferay.portal.kernel.util.OrderByComparator<ObjectLayoutColumn> orderByComparator) throws NoSuchObjectLayoutColumnException
      Returns the object layout columns before and after the current object layout column in the ordered set where uuid = ? and companyId = ?.
      Parameters:
      objectLayoutColumnId - the primary key of the current object layout column
      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 column
      Throws:
      NoSuchObjectLayoutColumnException - if a object layout column with the primary key could not be found
    • removeByUuid_C

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

      List<ObjectLayoutColumn> findByObjectFieldId(long objectFieldId)
      Returns all the object layout columns where objectFieldId = ?.
      Parameters:
      objectFieldId - the object field ID
      Returns:
      the matching object layout columns
    • findByObjectFieldId

      List<ObjectLayoutColumn> findByObjectFieldId(long objectFieldId, int start, int end)
      Returns a range of all the object layout columns where objectFieldId = ?.

      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 ObjectLayoutColumnModelImpl.

      Parameters:
      objectFieldId - the object field ID
      start - the lower bound of the range of object layout columns
      end - the upper bound of the range of object layout columns (not inclusive)
      Returns:
      the range of matching object layout columns
    • findByObjectFieldId

      List<ObjectLayoutColumn> findByObjectFieldId(long objectFieldId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<ObjectLayoutColumn> orderByComparator)
      Returns an ordered range of all the object layout columns where objectFieldId = ?.

      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 ObjectLayoutColumnModelImpl.

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

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

      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 ObjectLayoutColumnModelImpl.

      Parameters:
      objectFieldId - the object field ID
      start - the lower bound of the range of object layout columns
      end - the upper bound of the range of object layout columns (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 columns
    • findByObjectFieldId_First

      ObjectLayoutColumn findByObjectFieldId_First(long objectFieldId, com.liferay.portal.kernel.util.OrderByComparator<ObjectLayoutColumn> orderByComparator) throws NoSuchObjectLayoutColumnException
      Returns the first object layout column in the ordered set where objectFieldId = ?.
      Parameters:
      objectFieldId - the object field ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching object layout column
      Throws:
      NoSuchObjectLayoutColumnException - if a matching object layout column could not be found
    • fetchByObjectFieldId_First

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

      ObjectLayoutColumn findByObjectFieldId_Last(long objectFieldId, com.liferay.portal.kernel.util.OrderByComparator<ObjectLayoutColumn> orderByComparator) throws NoSuchObjectLayoutColumnException
      Returns the last object layout column in the ordered set where objectFieldId = ?.
      Parameters:
      objectFieldId - the object field ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching object layout column
      Throws:
      NoSuchObjectLayoutColumnException - if a matching object layout column could not be found
    • fetchByObjectFieldId_Last

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

      ObjectLayoutColumn[] findByObjectFieldId_PrevAndNext(long objectLayoutColumnId, long objectFieldId, com.liferay.portal.kernel.util.OrderByComparator<ObjectLayoutColumn> orderByComparator) throws NoSuchObjectLayoutColumnException
      Returns the object layout columns before and after the current object layout column in the ordered set where objectFieldId = ?.
      Parameters:
      objectLayoutColumnId - the primary key of the current object layout column
      objectFieldId - the object field ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next object layout column
      Throws:
      NoSuchObjectLayoutColumnException - if a object layout column with the primary key could not be found
    • removeByObjectFieldId

      void removeByObjectFieldId(long objectFieldId)
      Removes all the object layout columns where objectFieldId = ? from the database.
      Parameters:
      objectFieldId - the object field ID
    • countByObjectFieldId

      int countByObjectFieldId(long objectFieldId)
      Returns the number of object layout columns where objectFieldId = ?.
      Parameters:
      objectFieldId - the object field ID
      Returns:
      the number of matching object layout columns
    • findByObjectLayoutRowId

      List<ObjectLayoutColumn> findByObjectLayoutRowId(long objectLayoutRowId)
      Returns all the object layout columns where objectLayoutRowId = ?.
      Parameters:
      objectLayoutRowId - the object layout row ID
      Returns:
      the matching object layout columns
    • findByObjectLayoutRowId

      List<ObjectLayoutColumn> findByObjectLayoutRowId(long objectLayoutRowId, int start, int end)
      Returns a range of all the object layout columns where objectLayoutRowId = ?.

      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 ObjectLayoutColumnModelImpl.

      Parameters:
      objectLayoutRowId - the object layout row ID
      start - the lower bound of the range of object layout columns
      end - the upper bound of the range of object layout columns (not inclusive)
      Returns:
      the range of matching object layout columns
    • findByObjectLayoutRowId

      List<ObjectLayoutColumn> findByObjectLayoutRowId(long objectLayoutRowId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<ObjectLayoutColumn> orderByComparator)
      Returns an ordered range of all the object layout columns where objectLayoutRowId = ?.

      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 ObjectLayoutColumnModelImpl.

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

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

      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 ObjectLayoutColumnModelImpl.

      Parameters:
      objectLayoutRowId - the object layout row ID
      start - the lower bound of the range of object layout columns
      end - the upper bound of the range of object layout columns (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 columns
    • findByObjectLayoutRowId_First

      ObjectLayoutColumn findByObjectLayoutRowId_First(long objectLayoutRowId, com.liferay.portal.kernel.util.OrderByComparator<ObjectLayoutColumn> orderByComparator) throws NoSuchObjectLayoutColumnException
      Returns the first object layout column in the ordered set where objectLayoutRowId = ?.
      Parameters:
      objectLayoutRowId - the object layout row ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching object layout column
      Throws:
      NoSuchObjectLayoutColumnException - if a matching object layout column could not be found
    • fetchByObjectLayoutRowId_First

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

      ObjectLayoutColumn findByObjectLayoutRowId_Last(long objectLayoutRowId, com.liferay.portal.kernel.util.OrderByComparator<ObjectLayoutColumn> orderByComparator) throws NoSuchObjectLayoutColumnException
      Returns the last object layout column in the ordered set where objectLayoutRowId = ?.
      Parameters:
      objectLayoutRowId - the object layout row ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching object layout column
      Throws:
      NoSuchObjectLayoutColumnException - if a matching object layout column could not be found
    • fetchByObjectLayoutRowId_Last

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

      ObjectLayoutColumn[] findByObjectLayoutRowId_PrevAndNext(long objectLayoutColumnId, long objectLayoutRowId, com.liferay.portal.kernel.util.OrderByComparator<ObjectLayoutColumn> orderByComparator) throws NoSuchObjectLayoutColumnException
      Returns the object layout columns before and after the current object layout column in the ordered set where objectLayoutRowId = ?.
      Parameters:
      objectLayoutColumnId - the primary key of the current object layout column
      objectLayoutRowId - the object layout row ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next object layout column
      Throws:
      NoSuchObjectLayoutColumnException - if a object layout column with the primary key could not be found
    • removeByObjectLayoutRowId

      void removeByObjectLayoutRowId(long objectLayoutRowId)
      Removes all the object layout columns where objectLayoutRowId = ? from the database.
      Parameters:
      objectLayoutRowId - the object layout row ID
    • countByObjectLayoutRowId

      int countByObjectLayoutRowId(long objectLayoutRowId)
      Returns the number of object layout columns where objectLayoutRowId = ?.
      Parameters:
      objectLayoutRowId - the object layout row ID
      Returns:
      the number of matching object layout columns
    • cacheResult

      void cacheResult(ObjectLayoutColumn objectLayoutColumn)
      Caches the object layout column in the entity cache if it is enabled.
      Parameters:
      objectLayoutColumn - the object layout column
    • cacheResult

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

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

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

      ObjectLayoutColumn updateImpl(ObjectLayoutColumn objectLayoutColumn)
    • findByPrimaryKey

      ObjectLayoutColumn findByPrimaryKey(long objectLayoutColumnId) throws NoSuchObjectLayoutColumnException
      Returns the object layout column with the primary key or throws a NoSuchObjectLayoutColumnException if it could not be found.
      Parameters:
      objectLayoutColumnId - the primary key of the object layout column
      Returns:
      the object layout column
      Throws:
      NoSuchObjectLayoutColumnException - if a object layout column with the primary key could not be found
    • fetchByPrimaryKey

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

      Returns all the object layout columns.
      Returns:
      the object layout columns
    • findAll

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

      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 ObjectLayoutColumnModelImpl.

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

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

      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 ObjectLayoutColumnModelImpl.

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

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

      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 ObjectLayoutColumnModelImpl.

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

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

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