Class ObjectLayoutColumnUtil

java.lang.Object
com.liferay.object.service.persistence.ObjectLayoutColumnUtil

public class ObjectLayoutColumnUtil extends Object
The persistence utility for the object layout column service. This utility wraps com.liferay.object.service.persistence.impl.ObjectLayoutColumnPersistenceImpl and provides direct access to the database for CRUD operations. This utility should only be used by the service layer, as it must operate within a transaction. Never access this utility in a JSP, controller, model, or other front-end class.

Caching information and settings can be found in portal.properties

See Also:
Generated:
  • Constructor Details

    • ObjectLayoutColumnUtil

      public ObjectLayoutColumnUtil()
  • Method Details

    • clearCache

      public static void clearCache()
      See Also:
      • BasePersistence.clearCache()
    • clearCache

      public static void clearCache(ObjectLayoutColumn objectLayoutColumn)
      See Also:
      • BasePersistence.clearCache(com.liferay.portal.kernel.model.BaseModel)
    • countWithDynamicQuery

      public static long countWithDynamicQuery(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
      See Also:
      • BasePersistence.countWithDynamicQuery(DynamicQuery)
    • fetchByPrimaryKeys

      public static Map<Serializable,ObjectLayoutColumn> fetchByPrimaryKeys(Set<Serializable> primaryKeys)
      See Also:
      • BasePersistence.fetchByPrimaryKeys(Set)
    • findWithDynamicQuery

      public static List<ObjectLayoutColumn> findWithDynamicQuery(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
      See Also:
      • BasePersistence.findWithDynamicQuery(DynamicQuery)
    • findWithDynamicQuery

      public static List<ObjectLayoutColumn> findWithDynamicQuery(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start, int end)
      See Also:
      • BasePersistence.findWithDynamicQuery(DynamicQuery, int, int)
    • findWithDynamicQuery

      public static List<ObjectLayoutColumn> findWithDynamicQuery(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<ObjectLayoutColumn> orderByComparator)
      See Also:
      • BasePersistence.findWithDynamicQuery(DynamicQuery, int, int, OrderByComparator)
    • update

      public static ObjectLayoutColumn update(ObjectLayoutColumn objectLayoutColumn)
      See Also:
      • BasePersistence.update(com.liferay.portal.kernel.model.BaseModel)
    • update

      public static ObjectLayoutColumn update(ObjectLayoutColumn objectLayoutColumn, com.liferay.portal.kernel.service.ServiceContext serviceContext)
      See Also:
      • BasePersistence.update(com.liferay.portal.kernel.model.BaseModel, ServiceContext)
    • findByUuid

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

      public static 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

      public static 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

      public static 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

      public static 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
      NoSuchObjectLayoutColumnException
    • fetchByUuid_First

      public static 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

      public static 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
      NoSuchObjectLayoutColumnException
    • fetchByUuid_Last

      public static 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

      public static 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
      NoSuchObjectLayoutColumnException
    • removeByUuid

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

      public static 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

      public static 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

      public static 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

      public static 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

      public static 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

      public static 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
      NoSuchObjectLayoutColumnException
    • fetchByUuid_C_First

      public static 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

      public static 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
      NoSuchObjectLayoutColumnException
    • fetchByUuid_C_Last

      public static 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

      public static 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
      NoSuchObjectLayoutColumnException
    • removeByUuid_C

      public static 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

      public static 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

      public static 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

      public static 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

      public static 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

      public static 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

      public static 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
      NoSuchObjectLayoutColumnException
    • fetchByObjectFieldId_First

      public static 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

      public static 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
      NoSuchObjectLayoutColumnException
    • fetchByObjectFieldId_Last

      public static 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

      public static 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
      NoSuchObjectLayoutColumnException
    • removeByObjectFieldId

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

      public static 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

      public static 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

      public static 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

      public static 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

      public static 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

      public static 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
      NoSuchObjectLayoutColumnException
    • fetchByObjectLayoutRowId_First

      public static 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

      public static 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
      NoSuchObjectLayoutColumnException
    • fetchByObjectLayoutRowId_Last

      public static 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

      public static 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
      NoSuchObjectLayoutColumnException
    • removeByObjectLayoutRowId

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

      public static 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

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

      public static 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

      public static 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

      public static 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
      NoSuchObjectLayoutColumnException
    • updateImpl

      public static ObjectLayoutColumn updateImpl(ObjectLayoutColumn objectLayoutColumn)
    • findByPrimaryKey

      public static 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
      NoSuchObjectLayoutColumnException
    • fetchByPrimaryKey

      public static 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

      public static List<ObjectLayoutColumn> findAll()
      Returns all the object layout columns.
      Returns:
      the object layout columns
    • findAll

      public static 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

      public static 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

      public static 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

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

      public static int countAll()
      Returns the number of object layout columns.
      Returns:
      the number of object layout columns
    • getPersistence

      public static ObjectLayoutColumnPersistence getPersistence()
    • setPersistence

      public static void setPersistence(ObjectLayoutColumnPersistence persistence)