Interface ObjectViewFilterColumnPersistence

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

@ProviderType public interface ObjectViewFilterColumnPersistence extends com.liferay.portal.kernel.service.persistence.BasePersistence<ObjectViewFilterColumn>
The persistence interface for the object view filter column service.

Caching information and settings can be found in portal.properties

See Also:
Generated:
  • Method Details

    • findByUuid

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

      List<ObjectViewFilterColumn> findByUuid(String uuid, int start, int end)
      Returns a range of all the object view filter 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 ObjectViewFilterColumnModelImpl.

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

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

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

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

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

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

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

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

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

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

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

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

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

      List<ObjectViewFilterColumn> findByUuid_C(String uuid, long companyId, int start, int end)
      Returns a range of all the object view filter 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 ObjectViewFilterColumnModelImpl.

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

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

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

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

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

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

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

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

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

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

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

      List<ObjectViewFilterColumn> findByObjectViewId(long objectViewId)
      Returns all the object view filter columns where objectViewId = ?.
      Parameters:
      objectViewId - the object view ID
      Returns:
      the matching object view filter columns
    • findByObjectViewId

      List<ObjectViewFilterColumn> findByObjectViewId(long objectViewId, int start, int end)
      Returns a range of all the object view filter columns where objectViewId = ?.

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

      Parameters:
      objectViewId - the object view ID
      start - the lower bound of the range of object view filter columns
      end - the upper bound of the range of object view filter columns (not inclusive)
      Returns:
      the range of matching object view filter columns
    • findByObjectViewId

      List<ObjectViewFilterColumn> findByObjectViewId(long objectViewId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<ObjectViewFilterColumn> orderByComparator)
      Returns an ordered range of all the object view filter columns where objectViewId = ?.

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

      Parameters:
      objectViewId - the object view ID
      start - the lower bound of the range of object view filter columns
      end - the upper bound of the range of object view filter columns (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching object view filter columns
    • findByObjectViewId

      List<ObjectViewFilterColumn> findByObjectViewId(long objectViewId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<ObjectViewFilterColumn> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the object view filter columns where objectViewId = ?.

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

      Parameters:
      objectViewId - the object view ID
      start - the lower bound of the range of object view filter columns
      end - the upper bound of the range of object view filter 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 view filter columns
    • findByObjectViewId_First

      ObjectViewFilterColumn findByObjectViewId_First(long objectViewId, com.liferay.portal.kernel.util.OrderByComparator<ObjectViewFilterColumn> orderByComparator) throws NoSuchObjectViewFilterColumnException
      Returns the first object view filter column in the ordered set where objectViewId = ?.
      Parameters:
      objectViewId - the object view ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching object view filter column
      Throws:
      NoSuchObjectViewFilterColumnException - if a matching object view filter column could not be found
    • fetchByObjectViewId_First

      ObjectViewFilterColumn fetchByObjectViewId_First(long objectViewId, com.liferay.portal.kernel.util.OrderByComparator<ObjectViewFilterColumn> orderByComparator)
      Returns the first object view filter column in the ordered set where objectViewId = ?.
      Parameters:
      objectViewId - the object view ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching object view filter column, or null if a matching object view filter column could not be found
    • findByObjectViewId_Last

      ObjectViewFilterColumn findByObjectViewId_Last(long objectViewId, com.liferay.portal.kernel.util.OrderByComparator<ObjectViewFilterColumn> orderByComparator) throws NoSuchObjectViewFilterColumnException
      Returns the last object view filter column in the ordered set where objectViewId = ?.
      Parameters:
      objectViewId - the object view ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching object view filter column
      Throws:
      NoSuchObjectViewFilterColumnException - if a matching object view filter column could not be found
    • fetchByObjectViewId_Last

      ObjectViewFilterColumn fetchByObjectViewId_Last(long objectViewId, com.liferay.portal.kernel.util.OrderByComparator<ObjectViewFilterColumn> orderByComparator)
      Returns the last object view filter column in the ordered set where objectViewId = ?.
      Parameters:
      objectViewId - the object view ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching object view filter column, or null if a matching object view filter column could not be found
    • findByObjectViewId_PrevAndNext

      ObjectViewFilterColumn[] findByObjectViewId_PrevAndNext(long objectViewFilterColumnId, long objectViewId, com.liferay.portal.kernel.util.OrderByComparator<ObjectViewFilterColumn> orderByComparator) throws NoSuchObjectViewFilterColumnException
      Returns the object view filter columns before and after the current object view filter column in the ordered set where objectViewId = ?.
      Parameters:
      objectViewFilterColumnId - the primary key of the current object view filter column
      objectViewId - the object view ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next object view filter column
      Throws:
      NoSuchObjectViewFilterColumnException - if a object view filter column with the primary key could not be found
    • removeByObjectViewId

      void removeByObjectViewId(long objectViewId)
      Removes all the object view filter columns where objectViewId = ? from the database.
      Parameters:
      objectViewId - the object view ID
    • countByObjectViewId

      int countByObjectViewId(long objectViewId)
      Returns the number of object view filter columns where objectViewId = ?.
      Parameters:
      objectViewId - the object view ID
      Returns:
      the number of matching object view filter columns
    • findByOVI_OFN

      List<ObjectViewFilterColumn> findByOVI_OFN(long objectViewId, String objectFieldName)
      Returns all the object view filter columns where objectViewId = ? and objectFieldName = ?.
      Parameters:
      objectViewId - the object view ID
      objectFieldName - the object field name
      Returns:
      the matching object view filter columns
    • findByOVI_OFN

      List<ObjectViewFilterColumn> findByOVI_OFN(long objectViewId, String objectFieldName, int start, int end)
      Returns a range of all the object view filter columns where objectViewId = ? and objectFieldName = ?.

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

      Parameters:
      objectViewId - the object view ID
      objectFieldName - the object field name
      start - the lower bound of the range of object view filter columns
      end - the upper bound of the range of object view filter columns (not inclusive)
      Returns:
      the range of matching object view filter columns
    • findByOVI_OFN

      List<ObjectViewFilterColumn> findByOVI_OFN(long objectViewId, String objectFieldName, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<ObjectViewFilterColumn> orderByComparator)
      Returns an ordered range of all the object view filter columns where objectViewId = ? and objectFieldName = ?.

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

      Parameters:
      objectViewId - the object view ID
      objectFieldName - the object field name
      start - the lower bound of the range of object view filter columns
      end - the upper bound of the range of object view filter columns (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching object view filter columns
    • findByOVI_OFN

      List<ObjectViewFilterColumn> findByOVI_OFN(long objectViewId, String objectFieldName, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<ObjectViewFilterColumn> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the object view filter columns where objectViewId = ? and objectFieldName = ?.

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

      Parameters:
      objectViewId - the object view ID
      objectFieldName - the object field name
      start - the lower bound of the range of object view filter columns
      end - the upper bound of the range of object view filter 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 view filter columns
    • findByOVI_OFN_First

      ObjectViewFilterColumn findByOVI_OFN_First(long objectViewId, String objectFieldName, com.liferay.portal.kernel.util.OrderByComparator<ObjectViewFilterColumn> orderByComparator) throws NoSuchObjectViewFilterColumnException
      Returns the first object view filter column in the ordered set where objectViewId = ? and objectFieldName = ?.
      Parameters:
      objectViewId - the object view ID
      objectFieldName - the object field name
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching object view filter column
      Throws:
      NoSuchObjectViewFilterColumnException - if a matching object view filter column could not be found
    • fetchByOVI_OFN_First

      ObjectViewFilterColumn fetchByOVI_OFN_First(long objectViewId, String objectFieldName, com.liferay.portal.kernel.util.OrderByComparator<ObjectViewFilterColumn> orderByComparator)
      Returns the first object view filter column in the ordered set where objectViewId = ? and objectFieldName = ?.
      Parameters:
      objectViewId - the object view ID
      objectFieldName - the object field name
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching object view filter column, or null if a matching object view filter column could not be found
    • findByOVI_OFN_Last

      ObjectViewFilterColumn findByOVI_OFN_Last(long objectViewId, String objectFieldName, com.liferay.portal.kernel.util.OrderByComparator<ObjectViewFilterColumn> orderByComparator) throws NoSuchObjectViewFilterColumnException
      Returns the last object view filter column in the ordered set where objectViewId = ? and objectFieldName = ?.
      Parameters:
      objectViewId - the object view ID
      objectFieldName - the object field name
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching object view filter column
      Throws:
      NoSuchObjectViewFilterColumnException - if a matching object view filter column could not be found
    • fetchByOVI_OFN_Last

      ObjectViewFilterColumn fetchByOVI_OFN_Last(long objectViewId, String objectFieldName, com.liferay.portal.kernel.util.OrderByComparator<ObjectViewFilterColumn> orderByComparator)
      Returns the last object view filter column in the ordered set where objectViewId = ? and objectFieldName = ?.
      Parameters:
      objectViewId - the object view ID
      objectFieldName - the object field name
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching object view filter column, or null if a matching object view filter column could not be found
    • findByOVI_OFN_PrevAndNext

      ObjectViewFilterColumn[] findByOVI_OFN_PrevAndNext(long objectViewFilterColumnId, long objectViewId, String objectFieldName, com.liferay.portal.kernel.util.OrderByComparator<ObjectViewFilterColumn> orderByComparator) throws NoSuchObjectViewFilterColumnException
      Returns the object view filter columns before and after the current object view filter column in the ordered set where objectViewId = ? and objectFieldName = ?.
      Parameters:
      objectViewFilterColumnId - the primary key of the current object view filter column
      objectViewId - the object view ID
      objectFieldName - the object field name
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next object view filter column
      Throws:
      NoSuchObjectViewFilterColumnException - if a object view filter column with the primary key could not be found
    • removeByOVI_OFN

      void removeByOVI_OFN(long objectViewId, String objectFieldName)
      Removes all the object view filter columns where objectViewId = ? and objectFieldName = ? from the database.
      Parameters:
      objectViewId - the object view ID
      objectFieldName - the object field name
    • countByOVI_OFN

      int countByOVI_OFN(long objectViewId, String objectFieldName)
      Returns the number of object view filter columns where objectViewId = ? and objectFieldName = ?.
      Parameters:
      objectViewId - the object view ID
      objectFieldName - the object field name
      Returns:
      the number of matching object view filter columns
    • cacheResult

      void cacheResult(ObjectViewFilterColumn objectViewFilterColumn)
      Caches the object view filter column in the entity cache if it is enabled.
      Parameters:
      objectViewFilterColumn - the object view filter column
    • cacheResult

      void cacheResult(List<ObjectViewFilterColumn> objectViewFilterColumns)
      Caches the object view filter columns in the entity cache if it is enabled.
      Parameters:
      objectViewFilterColumns - the object view filter columns
    • create

      ObjectViewFilterColumn create(long objectViewFilterColumnId)
      Creates a new object view filter column with the primary key. Does not add the object view filter column to the database.
      Parameters:
      objectViewFilterColumnId - the primary key for the new object view filter column
      Returns:
      the new object view filter column
    • remove

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

      ObjectViewFilterColumn updateImpl(ObjectViewFilterColumn objectViewFilterColumn)
    • findByPrimaryKey

      ObjectViewFilterColumn findByPrimaryKey(long objectViewFilterColumnId) throws NoSuchObjectViewFilterColumnException
      Returns the object view filter column with the primary key or throws a NoSuchObjectViewFilterColumnException if it could not be found.
      Parameters:
      objectViewFilterColumnId - the primary key of the object view filter column
      Returns:
      the object view filter column
      Throws:
      NoSuchObjectViewFilterColumnException - if a object view filter column with the primary key could not be found
    • fetchByPrimaryKey

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

      Returns all the object view filter columns.
      Returns:
      the object view filter columns
    • findAll

      List<ObjectViewFilterColumn> findAll(int start, int end)
      Returns a range of all the object view filter 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 ObjectViewFilterColumnModelImpl.

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

      List<ObjectViewFilterColumn> findAll(int start, int end, com.liferay.portal.kernel.util.OrderByComparator<ObjectViewFilterColumn> orderByComparator)
      Returns an ordered range of all the object view filter 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 ObjectViewFilterColumnModelImpl.

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

      List<ObjectViewFilterColumn> findAll(int start, int end, com.liferay.portal.kernel.util.OrderByComparator<ObjectViewFilterColumn> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the object view filter 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 ObjectViewFilterColumnModelImpl.

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

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

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