Liferay 7.0-ce-b4

com.liferay.portlet.documentlibrary.service.persistence
Class DLFileVersionUtil

java.lang.Object
  extended by com.liferay.portlet.documentlibrary.service.persistence.DLFileVersionUtil

@ProviderType
public class DLFileVersionUtil
extends Object

The persistence utility for the document library file version service. This utility wraps DLFileVersionPersistenceImpl 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:
DLFileVersionPersistence, DLFileVersionPersistenceImpl
ServiceBuilder generated this class. Modifications in this class will be overwritten the next time it is generated.

Constructor Summary
DLFileVersionUtil()
           
 
Method Summary
static void cacheResult(DLFileVersion dlFileVersion)
          Caches the document library file version in the entity cache if it is enabled.
static void cacheResult(List<DLFileVersion> dlFileVersions)
          Caches the document library file versions in the entity cache if it is enabled.
static void clearCache()
           
static void clearCache(DLFileVersion dlFileVersion)
           
static int countAll()
          Returns the number of document library file versions.
static int countByC_NotS(long companyId, int status)
          Returns the number of document library file versions where companyId = ? and status ≠ ?.
static int countByCompanyId(long companyId)
          Returns the number of document library file versions where companyId = ?.
static int countByF_S(long fileEntryId, int status)
          Returns the number of document library file versions where fileEntryId = ? and status = ?.
static int countByF_V(long fileEntryId, String version)
          Returns the number of document library file versions where fileEntryId = ? and version = ?.
static int countByFileEntryId(long fileEntryId)
          Returns the number of document library file versions where fileEntryId = ?.
static int countByG_F_S(long groupId, long folderId, int status)
          Returns the number of document library file versions where groupId = ? and folderId = ? and status = ?.
static int countByG_F_T_V(long groupId, long folderId, String title, String version)
          Returns the number of document library file versions where groupId = ? and folderId = ? and title = ? and version = ?.
static int countByMimeType(String mimeType)
          Returns the number of document library file versions where mimeType = ?.
static int countByUuid_C(String uuid, long companyId)
          Returns the number of document library file versions where uuid = ? and companyId = ?.
static int countByUUID_G(String uuid, long groupId)
          Returns the number of document library file versions where uuid = ? and groupId = ?.
static int countByUuid(String uuid)
          Returns the number of document library file versions where uuid = ?.
static long countWithDynamicQuery(DynamicQuery dynamicQuery)
           
static DLFileVersion create(long fileVersionId)
          Creates a new document library file version with the primary key.
static DLFileVersion fetchByC_NotS_First(long companyId, int status, OrderByComparator<DLFileVersion> orderByComparator)
          Returns the first document library file version in the ordered set where companyId = ? and status ≠ ?.
static DLFileVersion fetchByC_NotS_Last(long companyId, int status, OrderByComparator<DLFileVersion> orderByComparator)
          Returns the last document library file version in the ordered set where companyId = ? and status ≠ ?.
static DLFileVersion fetchByCompanyId_First(long companyId, OrderByComparator<DLFileVersion> orderByComparator)
          Returns the first document library file version in the ordered set where companyId = ?.
static DLFileVersion fetchByCompanyId_Last(long companyId, OrderByComparator<DLFileVersion> orderByComparator)
          Returns the last document library file version in the ordered set where companyId = ?.
static DLFileVersion fetchByF_S_First(long fileEntryId, int status, OrderByComparator<DLFileVersion> orderByComparator)
          Returns the first document library file version in the ordered set where fileEntryId = ? and status = ?.
static DLFileVersion fetchByF_S_Last(long fileEntryId, int status, OrderByComparator<DLFileVersion> orderByComparator)
          Returns the last document library file version in the ordered set where fileEntryId = ? and status = ?.
static DLFileVersion fetchByF_V(long fileEntryId, String version)
          Returns the document library file version where fileEntryId = ? and version = ? or returns null if it could not be found.
static DLFileVersion fetchByF_V(long fileEntryId, String version, boolean retrieveFromCache)
          Returns the document library file version where fileEntryId = ? and version = ? or returns null if it could not be found, optionally using the finder cache.
static DLFileVersion fetchByFileEntryId_First(long fileEntryId, OrderByComparator<DLFileVersion> orderByComparator)
          Returns the first document library file version in the ordered set where fileEntryId = ?.
static DLFileVersion fetchByFileEntryId_Last(long fileEntryId, OrderByComparator<DLFileVersion> orderByComparator)
          Returns the last document library file version in the ordered set where fileEntryId = ?.
static DLFileVersion fetchByG_F_S_First(long groupId, long folderId, int status, OrderByComparator<DLFileVersion> orderByComparator)
          Returns the first document library file version in the ordered set where groupId = ? and folderId = ? and status = ?.
static DLFileVersion fetchByG_F_S_Last(long groupId, long folderId, int status, OrderByComparator<DLFileVersion> orderByComparator)
          Returns the last document library file version in the ordered set where groupId = ? and folderId = ? and status = ?.
static DLFileVersion fetchByG_F_T_V_First(long groupId, long folderId, String title, String version, OrderByComparator<DLFileVersion> orderByComparator)
          Returns the first document library file version in the ordered set where groupId = ? and folderId = ? and title = ? and version = ?.
static DLFileVersion fetchByG_F_T_V_Last(long groupId, long folderId, String title, String version, OrderByComparator<DLFileVersion> orderByComparator)
          Returns the last document library file version in the ordered set where groupId = ? and folderId = ? and title = ? and version = ?.
static DLFileVersion fetchByMimeType_First(String mimeType, OrderByComparator<DLFileVersion> orderByComparator)
          Returns the first document library file version in the ordered set where mimeType = ?.
static DLFileVersion fetchByMimeType_Last(String mimeType, OrderByComparator<DLFileVersion> orderByComparator)
          Returns the last document library file version in the ordered set where mimeType = ?.
static DLFileVersion fetchByPrimaryKey(long fileVersionId)
          Returns the document library file version with the primary key or returns null if it could not be found.
static Map<Serializable,DLFileVersion> fetchByPrimaryKeys(Set<Serializable> primaryKeys)
           
static DLFileVersion fetchByUuid_C_First(String uuid, long companyId, OrderByComparator<DLFileVersion> orderByComparator)
          Returns the first document library file version in the ordered set where uuid = ? and companyId = ?.
static DLFileVersion fetchByUuid_C_Last(String uuid, long companyId, OrderByComparator<DLFileVersion> orderByComparator)
          Returns the last document library file version in the ordered set where uuid = ? and companyId = ?.
static DLFileVersion fetchByUuid_First(String uuid, OrderByComparator<DLFileVersion> orderByComparator)
          Returns the first document library file version in the ordered set where uuid = ?.
static DLFileVersion fetchByUUID_G(String uuid, long groupId)
          Returns the document library file version where uuid = ? and groupId = ? or returns null if it could not be found.
static DLFileVersion fetchByUUID_G(String uuid, long groupId, boolean retrieveFromCache)
          Returns the document library file version where uuid = ? and groupId = ? or returns null if it could not be found, optionally using the finder cache.
static DLFileVersion fetchByUuid_Last(String uuid, OrderByComparator<DLFileVersion> orderByComparator)
          Returns the last document library file version in the ordered set where uuid = ?.
static List<DLFileVersion> findAll()
          Returns all the document library file versions.
static List<DLFileVersion> findAll(int start, int end)
          Returns a range of all the document library file versions.
static List<DLFileVersion> findAll(int start, int end, OrderByComparator<DLFileVersion> orderByComparator)
          Returns an ordered range of all the document library file versions.
static List<DLFileVersion> findAll(int start, int end, OrderByComparator<DLFileVersion> orderByComparator, boolean retrieveFromCache)
          Returns an ordered range of all the document library file versions.
static DLFileVersion findByC_NotS_First(long companyId, int status, OrderByComparator<DLFileVersion> orderByComparator)
          Returns the first document library file version in the ordered set where companyId = ? and status ≠ ?.
static DLFileVersion findByC_NotS_Last(long companyId, int status, OrderByComparator<DLFileVersion> orderByComparator)
          Returns the last document library file version in the ordered set where companyId = ? and status ≠ ?.
static DLFileVersion[] findByC_NotS_PrevAndNext(long fileVersionId, long companyId, int status, OrderByComparator<DLFileVersion> orderByComparator)
          Returns the document library file versions before and after the current document library file version in the ordered set where companyId = ? and status ≠ ?.
static List<DLFileVersion> findByC_NotS(long companyId, int status)
          Returns all the document library file versions where companyId = ? and status ≠ ?.
static List<DLFileVersion> findByC_NotS(long companyId, int status, int start, int end)
          Returns a range of all the document library file versions where companyId = ? and status ≠ ?.
static List<DLFileVersion> findByC_NotS(long companyId, int status, int start, int end, OrderByComparator<DLFileVersion> orderByComparator)
          Returns an ordered range of all the document library file versions where companyId = ? and status ≠ ?.
static List<DLFileVersion> findByC_NotS(long companyId, int status, int start, int end, OrderByComparator<DLFileVersion> orderByComparator, boolean retrieveFromCache)
          Returns an ordered range of all the document library file versions where companyId = ? and status ≠ ?.
static DLFileVersion findByCompanyId_First(long companyId, OrderByComparator<DLFileVersion> orderByComparator)
          Returns the first document library file version in the ordered set where companyId = ?.
static DLFileVersion findByCompanyId_Last(long companyId, OrderByComparator<DLFileVersion> orderByComparator)
          Returns the last document library file version in the ordered set where companyId = ?.
static DLFileVersion[] findByCompanyId_PrevAndNext(long fileVersionId, long companyId, OrderByComparator<DLFileVersion> orderByComparator)
          Returns the document library file versions before and after the current document library file version in the ordered set where companyId = ?.
static List<DLFileVersion> findByCompanyId(long companyId)
          Returns all the document library file versions where companyId = ?.
static List<DLFileVersion> findByCompanyId(long companyId, int start, int end)
          Returns a range of all the document library file versions where companyId = ?.
static List<DLFileVersion> findByCompanyId(long companyId, int start, int end, OrderByComparator<DLFileVersion> orderByComparator)
          Returns an ordered range of all the document library file versions where companyId = ?.
static List<DLFileVersion> findByCompanyId(long companyId, int start, int end, OrderByComparator<DLFileVersion> orderByComparator, boolean retrieveFromCache)
          Returns an ordered range of all the document library file versions where companyId = ?.
static DLFileVersion findByF_S_First(long fileEntryId, int status, OrderByComparator<DLFileVersion> orderByComparator)
          Returns the first document library file version in the ordered set where fileEntryId = ? and status = ?.
static DLFileVersion findByF_S_Last(long fileEntryId, int status, OrderByComparator<DLFileVersion> orderByComparator)
          Returns the last document library file version in the ordered set where fileEntryId = ? and status = ?.
static DLFileVersion[] findByF_S_PrevAndNext(long fileVersionId, long fileEntryId, int status, OrderByComparator<DLFileVersion> orderByComparator)
          Returns the document library file versions before and after the current document library file version in the ordered set where fileEntryId = ? and status = ?.
static List<DLFileVersion> findByF_S(long fileEntryId, int status)
          Returns all the document library file versions where fileEntryId = ? and status = ?.
static List<DLFileVersion> findByF_S(long fileEntryId, int status, int start, int end)
          Returns a range of all the document library file versions where fileEntryId = ? and status = ?.
static List<DLFileVersion> findByF_S(long fileEntryId, int status, int start, int end, OrderByComparator<DLFileVersion> orderByComparator)
          Returns an ordered range of all the document library file versions where fileEntryId = ? and status = ?.
static List<DLFileVersion> findByF_S(long fileEntryId, int status, int start, int end, OrderByComparator<DLFileVersion> orderByComparator, boolean retrieveFromCache)
          Returns an ordered range of all the document library file versions where fileEntryId = ? and status = ?.
static DLFileVersion findByF_V(long fileEntryId, String version)
          Returns the document library file version where fileEntryId = ? and version = ? or throws a NoSuchFileVersionException if it could not be found.
static DLFileVersion findByFileEntryId_First(long fileEntryId, OrderByComparator<DLFileVersion> orderByComparator)
          Returns the first document library file version in the ordered set where fileEntryId = ?.
static DLFileVersion findByFileEntryId_Last(long fileEntryId, OrderByComparator<DLFileVersion> orderByComparator)
          Returns the last document library file version in the ordered set where fileEntryId = ?.
static DLFileVersion[] findByFileEntryId_PrevAndNext(long fileVersionId, long fileEntryId, OrderByComparator<DLFileVersion> orderByComparator)
          Returns the document library file versions before and after the current document library file version in the ordered set where fileEntryId = ?.
static List<DLFileVersion> findByFileEntryId(long fileEntryId)
          Returns all the document library file versions where fileEntryId = ?.
static List<DLFileVersion> findByFileEntryId(long fileEntryId, int start, int end)
          Returns a range of all the document library file versions where fileEntryId = ?.
static List<DLFileVersion> findByFileEntryId(long fileEntryId, int start, int end, OrderByComparator<DLFileVersion> orderByComparator)
          Returns an ordered range of all the document library file versions where fileEntryId = ?.
static List<DLFileVersion> findByFileEntryId(long fileEntryId, int start, int end, OrderByComparator<DLFileVersion> orderByComparator, boolean retrieveFromCache)
          Returns an ordered range of all the document library file versions where fileEntryId = ?.
static DLFileVersion findByG_F_S_First(long groupId, long folderId, int status, OrderByComparator<DLFileVersion> orderByComparator)
          Returns the first document library file version in the ordered set where groupId = ? and folderId = ? and status = ?.
static DLFileVersion findByG_F_S_Last(long groupId, long folderId, int status, OrderByComparator<DLFileVersion> orderByComparator)
          Returns the last document library file version in the ordered set where groupId = ? and folderId = ? and status = ?.
static DLFileVersion[] findByG_F_S_PrevAndNext(long fileVersionId, long groupId, long folderId, int status, OrderByComparator<DLFileVersion> orderByComparator)
          Returns the document library file versions before and after the current document library file version in the ordered set where groupId = ? and folderId = ? and status = ?.
static List<DLFileVersion> findByG_F_S(long groupId, long folderId, int status)
          Returns all the document library file versions where groupId = ? and folderId = ? and status = ?.
static List<DLFileVersion> findByG_F_S(long groupId, long folderId, int status, int start, int end)
          Returns a range of all the document library file versions where groupId = ? and folderId = ? and status = ?.
static List<DLFileVersion> findByG_F_S(long groupId, long folderId, int status, int start, int end, OrderByComparator<DLFileVersion> orderByComparator)
          Returns an ordered range of all the document library file versions where groupId = ? and folderId = ? and status = ?.
static List<DLFileVersion> findByG_F_S(long groupId, long folderId, int status, int start, int end, OrderByComparator<DLFileVersion> orderByComparator, boolean retrieveFromCache)
          Returns an ordered range of all the document library file versions where groupId = ? and folderId = ? and status = ?.
static DLFileVersion findByG_F_T_V_First(long groupId, long folderId, String title, String version, OrderByComparator<DLFileVersion> orderByComparator)
          Returns the first document library file version in the ordered set where groupId = ? and folderId = ? and title = ? and version = ?.
static DLFileVersion findByG_F_T_V_Last(long groupId, long folderId, String title, String version, OrderByComparator<DLFileVersion> orderByComparator)
          Returns the last document library file version in the ordered set where groupId = ? and folderId = ? and title = ? and version = ?.
static DLFileVersion[] findByG_F_T_V_PrevAndNext(long fileVersionId, long groupId, long folderId, String title, String version, OrderByComparator<DLFileVersion> orderByComparator)
          Returns the document library file versions before and after the current document library file version in the ordered set where groupId = ? and folderId = ? and title = ? and version = ?.
static List<DLFileVersion> findByG_F_T_V(long groupId, long folderId, String title, String version)
          Returns all the document library file versions where groupId = ? and folderId = ? and title = ? and version = ?.
static List<DLFileVersion> findByG_F_T_V(long groupId, long folderId, String title, String version, int start, int end)
          Returns a range of all the document library file versions where groupId = ? and folderId = ? and title = ? and version = ?.
static List<DLFileVersion> findByG_F_T_V(long groupId, long folderId, String title, String version, int start, int end, OrderByComparator<DLFileVersion> orderByComparator)
          Returns an ordered range of all the document library file versions where groupId = ? and folderId = ? and title = ? and version = ?.
static List<DLFileVersion> findByG_F_T_V(long groupId, long folderId, String title, String version, int start, int end, OrderByComparator<DLFileVersion> orderByComparator, boolean retrieveFromCache)
          Returns an ordered range of all the document library file versions where groupId = ? and folderId = ? and title = ? and version = ?.
static DLFileVersion findByMimeType_First(String mimeType, OrderByComparator<DLFileVersion> orderByComparator)
          Returns the first document library file version in the ordered set where mimeType = ?.
static DLFileVersion findByMimeType_Last(String mimeType, OrderByComparator<DLFileVersion> orderByComparator)
          Returns the last document library file version in the ordered set where mimeType = ?.
static DLFileVersion[] findByMimeType_PrevAndNext(long fileVersionId, String mimeType, OrderByComparator<DLFileVersion> orderByComparator)
          Returns the document library file versions before and after the current document library file version in the ordered set where mimeType = ?.
static List<DLFileVersion> findByMimeType(String mimeType)
          Returns all the document library file versions where mimeType = ?.
static List<DLFileVersion> findByMimeType(String mimeType, int start, int end)
          Returns a range of all the document library file versions where mimeType = ?.
static List<DLFileVersion> findByMimeType(String mimeType, int start, int end, OrderByComparator<DLFileVersion> orderByComparator)
          Returns an ordered range of all the document library file versions where mimeType = ?.
static List<DLFileVersion> findByMimeType(String mimeType, int start, int end, OrderByComparator<DLFileVersion> orderByComparator, boolean retrieveFromCache)
          Returns an ordered range of all the document library file versions where mimeType = ?.
static DLFileVersion findByPrimaryKey(long fileVersionId)
          Returns the document library file version with the primary key or throws a NoSuchFileVersionException if it could not be found.
static DLFileVersion findByUuid_C_First(String uuid, long companyId, OrderByComparator<DLFileVersion> orderByComparator)
          Returns the first document library file version in the ordered set where uuid = ? and companyId = ?.
static DLFileVersion findByUuid_C_Last(String uuid, long companyId, OrderByComparator<DLFileVersion> orderByComparator)
          Returns the last document library file version in the ordered set where uuid = ? and companyId = ?.
static DLFileVersion[] findByUuid_C_PrevAndNext(long fileVersionId, String uuid, long companyId, OrderByComparator<DLFileVersion> orderByComparator)
          Returns the document library file versions before and after the current document library file version in the ordered set where uuid = ? and companyId = ?.
static List<DLFileVersion> findByUuid_C(String uuid, long companyId)
          Returns all the document library file versions where uuid = ? and companyId = ?.
static List<DLFileVersion> findByUuid_C(String uuid, long companyId, int start, int end)
          Returns a range of all the document library file versions where uuid = ? and companyId = ?.
static List<DLFileVersion> findByUuid_C(String uuid, long companyId, int start, int end, OrderByComparator<DLFileVersion> orderByComparator)
          Returns an ordered range of all the document library file versions where uuid = ? and companyId = ?.
static List<DLFileVersion> findByUuid_C(String uuid, long companyId, int start, int end, OrderByComparator<DLFileVersion> orderByComparator, boolean retrieveFromCache)
          Returns an ordered range of all the document library file versions where uuid = ? and companyId = ?.
static DLFileVersion findByUuid_First(String uuid, OrderByComparator<DLFileVersion> orderByComparator)
          Returns the first document library file version in the ordered set where uuid = ?.
static DLFileVersion findByUUID_G(String uuid, long groupId)
          Returns the document library file version where uuid = ? and groupId = ? or throws a NoSuchFileVersionException if it could not be found.
static DLFileVersion findByUuid_Last(String uuid, OrderByComparator<DLFileVersion> orderByComparator)
          Returns the last document library file version in the ordered set where uuid = ?.
static DLFileVersion[] findByUuid_PrevAndNext(long fileVersionId, String uuid, OrderByComparator<DLFileVersion> orderByComparator)
          Returns the document library file versions before and after the current document library file version in the ordered set where uuid = ?.
static List<DLFileVersion> findByUuid(String uuid)
          Returns all the document library file versions where uuid = ?.
static List<DLFileVersion> findByUuid(String uuid, int start, int end)
          Returns a range of all the document library file versions where uuid = ?.
static List<DLFileVersion> findByUuid(String uuid, int start, int end, OrderByComparator<DLFileVersion> orderByComparator)
          Returns an ordered range of all the document library file versions where uuid = ?.
static List<DLFileVersion> findByUuid(String uuid, int start, int end, OrderByComparator<DLFileVersion> orderByComparator, boolean retrieveFromCache)
          Returns an ordered range of all the document library file versions where uuid = ?.
static List<DLFileVersion> findWithDynamicQuery(DynamicQuery dynamicQuery)
           
static List<DLFileVersion> findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end)
           
static List<DLFileVersion> findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end, OrderByComparator<DLFileVersion> orderByComparator)
           
static Set<String> getBadColumnNames()
           
static DLFileVersionPersistence getPersistence()
           
static DLFileVersion remove(long fileVersionId)
          Removes the document library file version with the primary key from the database.
static void removeAll()
          Removes all the document library file versions from the database.
static void removeByC_NotS(long companyId, int status)
          Removes all the document library file versions where companyId = ? and status ≠ ? from the database.
static void removeByCompanyId(long companyId)
          Removes all the document library file versions where companyId = ? from the database.
static void removeByF_S(long fileEntryId, int status)
          Removes all the document library file versions where fileEntryId = ? and status = ? from the database.
static DLFileVersion removeByF_V(long fileEntryId, String version)
          Removes the document library file version where fileEntryId = ? and version = ? from the database.
static void removeByFileEntryId(long fileEntryId)
          Removes all the document library file versions where fileEntryId = ? from the database.
static void removeByG_F_S(long groupId, long folderId, int status)
          Removes all the document library file versions where groupId = ? and folderId = ? and status = ? from the database.
static void removeByG_F_T_V(long groupId, long folderId, String title, String version)
          Removes all the document library file versions where groupId = ? and folderId = ? and title = ? and version = ? from the database.
static void removeByMimeType(String mimeType)
          Removes all the document library file versions where mimeType = ? from the database.
static void removeByUuid_C(String uuid, long companyId)
          Removes all the document library file versions where uuid = ? and companyId = ? from the database.
static DLFileVersion removeByUUID_G(String uuid, long groupId)
          Removes the document library file version where uuid = ? and groupId = ? from the database.
static void removeByUuid(String uuid)
          Removes all the document library file versions where uuid = ? from the database.
static DLFileVersion update(DLFileVersion dlFileVersion)
           
static DLFileVersion update(DLFileVersion dlFileVersion, ServiceContext serviceContext)
           
static DLFileVersion updateImpl(DLFileVersion dlFileVersion)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

DLFileVersionUtil

public DLFileVersionUtil()
Method Detail

clearCache

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

clearCache

public static void clearCache(DLFileVersion dlFileVersion)
See Also:
BasePersistence.clearCache(com.liferay.portal.model.BaseModel)

countWithDynamicQuery

public static long countWithDynamicQuery(DynamicQuery dynamicQuery)
See Also:
BasePersistence.countWithDynamicQuery(DynamicQuery)

findWithDynamicQuery

public static List<DLFileVersion> findWithDynamicQuery(DynamicQuery dynamicQuery)
See Also:
BasePersistence.findWithDynamicQuery(DynamicQuery)

findWithDynamicQuery

public static List<DLFileVersion> findWithDynamicQuery(DynamicQuery dynamicQuery,
                                                       int start,
                                                       int end)
See Also:
BasePersistence.findWithDynamicQuery(DynamicQuery, int, int)

findWithDynamicQuery

public static List<DLFileVersion> findWithDynamicQuery(DynamicQuery dynamicQuery,
                                                       int start,
                                                       int end,
                                                       OrderByComparator<DLFileVersion> orderByComparator)
See Also:
BasePersistence.findWithDynamicQuery(DynamicQuery, int, int, OrderByComparator)

update

public static DLFileVersion update(DLFileVersion dlFileVersion)
See Also:
BasePersistence.update(com.liferay.portal.model.BaseModel)

update

public static DLFileVersion update(DLFileVersion dlFileVersion,
                                   ServiceContext serviceContext)
See Also:
BasePersistence.update(com.liferay.portal.model.BaseModel, ServiceContext)

findByUuid

public static List<DLFileVersion> findByUuid(String uuid)
Returns all the document library file versions where uuid = ?.

Parameters:
uuid - the uuid
Returns:
the matching document library file versions

findByUuid

public static List<DLFileVersion> findByUuid(String uuid,
                                             int start,
                                             int end)
Returns a range of all the document library file versions 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 and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from DLFileVersionModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.

Parameters:
uuid - the uuid
start - the lower bound of the range of document library file versions
end - the upper bound of the range of document library file versions (not inclusive)
Returns:
the range of matching document library file versions

findByUuid

public static List<DLFileVersion> findByUuid(String uuid,
                                             int start,
                                             int end,
                                             OrderByComparator<DLFileVersion> orderByComparator)
Returns an ordered range of all the document library file versions 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 and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from DLFileVersionModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.

Parameters:
uuid - the uuid
start - the lower bound of the range of document library file versions
end - the upper bound of the range of document library file versions (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
Returns:
the ordered range of matching document library file versions

findByUuid

public static List<DLFileVersion> findByUuid(String uuid,
                                             int start,
                                             int end,
                                             OrderByComparator<DLFileVersion> orderByComparator,
                                             boolean retrieveFromCache)
Returns an ordered range of all the document library file versions 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 and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from DLFileVersionModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.

Parameters:
uuid - the uuid
start - the lower bound of the range of document library file versions
end - the upper bound of the range of document library file versions (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
retrieveFromCache - whether to retrieve from the finder cache
Returns:
the ordered range of matching document library file versions

findByUuid_First

public static DLFileVersion findByUuid_First(String uuid,
                                             OrderByComparator<DLFileVersion> orderByComparator)
                                      throws NoSuchFileVersionException
Returns the first document library file version in the ordered set where uuid = ?.

Parameters:
uuid - the uuid
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the first matching document library file version
Throws:
NoSuchFileVersionException - if a matching document library file version could not be found

fetchByUuid_First

public static DLFileVersion fetchByUuid_First(String uuid,
                                              OrderByComparator<DLFileVersion> orderByComparator)
Returns the first document library file version in the ordered set where uuid = ?.

Parameters:
uuid - the uuid
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the first matching document library file version, or null if a matching document library file version could not be found

findByUuid_Last

public static DLFileVersion findByUuid_Last(String uuid,
                                            OrderByComparator<DLFileVersion> orderByComparator)
                                     throws NoSuchFileVersionException
Returns the last document library file version in the ordered set where uuid = ?.

Parameters:
uuid - the uuid
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the last matching document library file version
Throws:
NoSuchFileVersionException - if a matching document library file version could not be found

fetchByUuid_Last

public static DLFileVersion fetchByUuid_Last(String uuid,
                                             OrderByComparator<DLFileVersion> orderByComparator)
Returns the last document library file version in the ordered set where uuid = ?.

Parameters:
uuid - the uuid
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the last matching document library file version, or null if a matching document library file version could not be found

findByUuid_PrevAndNext

public static DLFileVersion[] findByUuid_PrevAndNext(long fileVersionId,
                                                     String uuid,
                                                     OrderByComparator<DLFileVersion> orderByComparator)
                                              throws NoSuchFileVersionException
Returns the document library file versions before and after the current document library file version in the ordered set where uuid = ?.

Parameters:
fileVersionId - the primary key of the current document library file version
uuid - the uuid
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the previous, current, and next document library file version
Throws:
NoSuchFileVersionException - if a document library file version with the primary key could not be found

removeByUuid

public static void removeByUuid(String uuid)
Removes all the document library file versions where uuid = ? from the database.

Parameters:
uuid - the uuid

countByUuid

public static int countByUuid(String uuid)
Returns the number of document library file versions where uuid = ?.

Parameters:
uuid - the uuid
Returns:
the number of matching document library file versions

findByUUID_G

public static DLFileVersion findByUUID_G(String uuid,
                                         long groupId)
                                  throws NoSuchFileVersionException
Returns the document library file version where uuid = ? and groupId = ? or throws a NoSuchFileVersionException if it could not be found.

Parameters:
uuid - the uuid
groupId - the group ID
Returns:
the matching document library file version
Throws:
NoSuchFileVersionException - if a matching document library file version could not be found

fetchByUUID_G

public static DLFileVersion fetchByUUID_G(String uuid,
                                          long groupId)
Returns the document library file version where uuid = ? and groupId = ? or returns null if it could not be found. Uses the finder cache.

Parameters:
uuid - the uuid
groupId - the group ID
Returns:
the matching document library file version, or null if a matching document library file version could not be found

fetchByUUID_G

public static DLFileVersion fetchByUUID_G(String uuid,
                                          long groupId,
                                          boolean retrieveFromCache)
Returns the document library file version where uuid = ? and groupId = ? or returns null if it could not be found, optionally using the finder cache.

Parameters:
uuid - the uuid
groupId - the group ID
retrieveFromCache - whether to retrieve from the finder cache
Returns:
the matching document library file version, or null if a matching document library file version could not be found

removeByUUID_G

public static DLFileVersion removeByUUID_G(String uuid,
                                           long groupId)
                                    throws NoSuchFileVersionException
Removes the document library file version where uuid = ? and groupId = ? from the database.

Parameters:
uuid - the uuid
groupId - the group ID
Returns:
the document library file version that was removed
Throws:
NoSuchFileVersionException

countByUUID_G

public static int countByUUID_G(String uuid,
                                long groupId)
Returns the number of document library file versions where uuid = ? and groupId = ?.

Parameters:
uuid - the uuid
groupId - the group ID
Returns:
the number of matching document library file versions

findByUuid_C

public static List<DLFileVersion> findByUuid_C(String uuid,
                                               long companyId)
Returns all the document library file versions where uuid = ? and companyId = ?.

Parameters:
uuid - the uuid
companyId - the company ID
Returns:
the matching document library file versions

findByUuid_C

public static List<DLFileVersion> findByUuid_C(String uuid,
                                               long companyId,
                                               int start,
                                               int end)
Returns a range of all the document library file versions 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 and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from DLFileVersionModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.

Parameters:
uuid - the uuid
companyId - the company ID
start - the lower bound of the range of document library file versions
end - the upper bound of the range of document library file versions (not inclusive)
Returns:
the range of matching document library file versions

findByUuid_C

public static List<DLFileVersion> findByUuid_C(String uuid,
                                               long companyId,
                                               int start,
                                               int end,
                                               OrderByComparator<DLFileVersion> orderByComparator)
Returns an ordered range of all the document library file versions 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 and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from DLFileVersionModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.

Parameters:
uuid - the uuid
companyId - the company ID
start - the lower bound of the range of document library file versions
end - the upper bound of the range of document library file versions (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
Returns:
the ordered range of matching document library file versions

findByUuid_C

public static List<DLFileVersion> findByUuid_C(String uuid,
                                               long companyId,
                                               int start,
                                               int end,
                                               OrderByComparator<DLFileVersion> orderByComparator,
                                               boolean retrieveFromCache)
Returns an ordered range of all the document library file versions 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 and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from DLFileVersionModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.

Parameters:
uuid - the uuid
companyId - the company ID
start - the lower bound of the range of document library file versions
end - the upper bound of the range of document library file versions (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
retrieveFromCache - whether to retrieve from the finder cache
Returns:
the ordered range of matching document library file versions

findByUuid_C_First

public static DLFileVersion findByUuid_C_First(String uuid,
                                               long companyId,
                                               OrderByComparator<DLFileVersion> orderByComparator)
                                        throws NoSuchFileVersionException
Returns the first document library file version 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 document library file version
Throws:
NoSuchFileVersionException - if a matching document library file version could not be found

fetchByUuid_C_First

public static DLFileVersion fetchByUuid_C_First(String uuid,
                                                long companyId,
                                                OrderByComparator<DLFileVersion> orderByComparator)
Returns the first document library file version 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 document library file version, or null if a matching document library file version could not be found

findByUuid_C_Last

public static DLFileVersion findByUuid_C_Last(String uuid,
                                              long companyId,
                                              OrderByComparator<DLFileVersion> orderByComparator)
                                       throws NoSuchFileVersionException
Returns the last document library file version 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 document library file version
Throws:
NoSuchFileVersionException - if a matching document library file version could not be found

fetchByUuid_C_Last

public static DLFileVersion fetchByUuid_C_Last(String uuid,
                                               long companyId,
                                               OrderByComparator<DLFileVersion> orderByComparator)
Returns the last document library file version 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 document library file version, or null if a matching document library file version could not be found

findByUuid_C_PrevAndNext

public static DLFileVersion[] findByUuid_C_PrevAndNext(long fileVersionId,
                                                       String uuid,
                                                       long companyId,
                                                       OrderByComparator<DLFileVersion> orderByComparator)
                                                throws NoSuchFileVersionException
Returns the document library file versions before and after the current document library file version in the ordered set where uuid = ? and companyId = ?.

Parameters:
fileVersionId - the primary key of the current document library file version
uuid - the uuid
companyId - the company ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the previous, current, and next document library file version
Throws:
NoSuchFileVersionException - if a document library file version with the primary key could not be found

removeByUuid_C

public static void removeByUuid_C(String uuid,
                                  long companyId)
Removes all the document library file versions 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 document library file versions where uuid = ? and companyId = ?.

Parameters:
uuid - the uuid
companyId - the company ID
Returns:
the number of matching document library file versions

findByCompanyId

public static List<DLFileVersion> findByCompanyId(long companyId)
Returns all the document library file versions where companyId = ?.

Parameters:
companyId - the company ID
Returns:
the matching document library file versions

findByCompanyId

public static List<DLFileVersion> findByCompanyId(long companyId,
                                                  int start,
                                                  int end)
Returns a range of all the document library file versions where 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 and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from DLFileVersionModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.

Parameters:
companyId - the company ID
start - the lower bound of the range of document library file versions
end - the upper bound of the range of document library file versions (not inclusive)
Returns:
the range of matching document library file versions

findByCompanyId

public static List<DLFileVersion> findByCompanyId(long companyId,
                                                  int start,
                                                  int end,
                                                  OrderByComparator<DLFileVersion> orderByComparator)
Returns an ordered range of all the document library file versions where 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 and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from DLFileVersionModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.

Parameters:
companyId - the company ID
start - the lower bound of the range of document library file versions
end - the upper bound of the range of document library file versions (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
Returns:
the ordered range of matching document library file versions

findByCompanyId

public static List<DLFileVersion> findByCompanyId(long companyId,
                                                  int start,
                                                  int end,
                                                  OrderByComparator<DLFileVersion> orderByComparator,
                                                  boolean retrieveFromCache)
Returns an ordered range of all the document library file versions where 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 and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from DLFileVersionModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.

Parameters:
companyId - the company ID
start - the lower bound of the range of document library file versions
end - the upper bound of the range of document library file versions (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
retrieveFromCache - whether to retrieve from the finder cache
Returns:
the ordered range of matching document library file versions

findByCompanyId_First

public static DLFileVersion findByCompanyId_First(long companyId,
                                                  OrderByComparator<DLFileVersion> orderByComparator)
                                           throws NoSuchFileVersionException
Returns the first document library file version in the ordered set where companyId = ?.

Parameters:
companyId - the company ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the first matching document library file version
Throws:
NoSuchFileVersionException - if a matching document library file version could not be found

fetchByCompanyId_First

public static DLFileVersion fetchByCompanyId_First(long companyId,
                                                   OrderByComparator<DLFileVersion> orderByComparator)
Returns the first document library file version in the ordered set where companyId = ?.

Parameters:
companyId - the company ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the first matching document library file version, or null if a matching document library file version could not be found

findByCompanyId_Last

public static DLFileVersion findByCompanyId_Last(long companyId,
                                                 OrderByComparator<DLFileVersion> orderByComparator)
                                          throws NoSuchFileVersionException
Returns the last document library file version in the ordered set where companyId = ?.

Parameters:
companyId - the company ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the last matching document library file version
Throws:
NoSuchFileVersionException - if a matching document library file version could not be found

fetchByCompanyId_Last

public static DLFileVersion fetchByCompanyId_Last(long companyId,
                                                  OrderByComparator<DLFileVersion> orderByComparator)
Returns the last document library file version in the ordered set where companyId = ?.

Parameters:
companyId - the company ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the last matching document library file version, or null if a matching document library file version could not be found

findByCompanyId_PrevAndNext

public static DLFileVersion[] findByCompanyId_PrevAndNext(long fileVersionId,
                                                          long companyId,
                                                          OrderByComparator<DLFileVersion> orderByComparator)
                                                   throws NoSuchFileVersionException
Returns the document library file versions before and after the current document library file version in the ordered set where companyId = ?.

Parameters:
fileVersionId - the primary key of the current document library file version
companyId - the company ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the previous, current, and next document library file version
Throws:
NoSuchFileVersionException - if a document library file version with the primary key could not be found

removeByCompanyId

public static void removeByCompanyId(long companyId)
Removes all the document library file versions where companyId = ? from the database.

Parameters:
companyId - the company ID

countByCompanyId

public static int countByCompanyId(long companyId)
Returns the number of document library file versions where companyId = ?.

Parameters:
companyId - the company ID
Returns:
the number of matching document library file versions

findByFileEntryId

public static List<DLFileVersion> findByFileEntryId(long fileEntryId)
Returns all the document library file versions where fileEntryId = ?.

Parameters:
fileEntryId - the file entry ID
Returns:
the matching document library file versions

findByFileEntryId

public static List<DLFileVersion> findByFileEntryId(long fileEntryId,
                                                    int start,
                                                    int end)
Returns a range of all the document library file versions where fileEntryId = ?.

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 and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from DLFileVersionModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.

Parameters:
fileEntryId - the file entry ID
start - the lower bound of the range of document library file versions
end - the upper bound of the range of document library file versions (not inclusive)
Returns:
the range of matching document library file versions

findByFileEntryId

public static List<DLFileVersion> findByFileEntryId(long fileEntryId,
                                                    int start,
                                                    int end,
                                                    OrderByComparator<DLFileVersion> orderByComparator)
Returns an ordered range of all the document library file versions where fileEntryId = ?.

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 and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from DLFileVersionModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.

Parameters:
fileEntryId - the file entry ID
start - the lower bound of the range of document library file versions
end - the upper bound of the range of document library file versions (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
Returns:
the ordered range of matching document library file versions

findByFileEntryId

public static List<DLFileVersion> findByFileEntryId(long fileEntryId,
                                                    int start,
                                                    int end,
                                                    OrderByComparator<DLFileVersion> orderByComparator,
                                                    boolean retrieveFromCache)
Returns an ordered range of all the document library file versions where fileEntryId = ?.

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 and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from DLFileVersionModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.

Parameters:
fileEntryId - the file entry ID
start - the lower bound of the range of document library file versions
end - the upper bound of the range of document library file versions (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
retrieveFromCache - whether to retrieve from the finder cache
Returns:
the ordered range of matching document library file versions

findByFileEntryId_First

public static DLFileVersion findByFileEntryId_First(long fileEntryId,
                                                    OrderByComparator<DLFileVersion> orderByComparator)
                                             throws NoSuchFileVersionException
Returns the first document library file version in the ordered set where fileEntryId = ?.

Parameters:
fileEntryId - the file entry ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the first matching document library file version
Throws:
NoSuchFileVersionException - if a matching document library file version could not be found

fetchByFileEntryId_First

public static DLFileVersion fetchByFileEntryId_First(long fileEntryId,
                                                     OrderByComparator<DLFileVersion> orderByComparator)
Returns the first document library file version in the ordered set where fileEntryId = ?.

Parameters:
fileEntryId - the file entry ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the first matching document library file version, or null if a matching document library file version could not be found

findByFileEntryId_Last

public static DLFileVersion findByFileEntryId_Last(long fileEntryId,
                                                   OrderByComparator<DLFileVersion> orderByComparator)
                                            throws NoSuchFileVersionException
Returns the last document library file version in the ordered set where fileEntryId = ?.

Parameters:
fileEntryId - the file entry ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the last matching document library file version
Throws:
NoSuchFileVersionException - if a matching document library file version could not be found

fetchByFileEntryId_Last

public static DLFileVersion fetchByFileEntryId_Last(long fileEntryId,
                                                    OrderByComparator<DLFileVersion> orderByComparator)
Returns the last document library file version in the ordered set where fileEntryId = ?.

Parameters:
fileEntryId - the file entry ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the last matching document library file version, or null if a matching document library file version could not be found

findByFileEntryId_PrevAndNext

public static DLFileVersion[] findByFileEntryId_PrevAndNext(long fileVersionId,
                                                            long fileEntryId,
                                                            OrderByComparator<DLFileVersion> orderByComparator)
                                                     throws NoSuchFileVersionException
Returns the document library file versions before and after the current document library file version in the ordered set where fileEntryId = ?.

Parameters:
fileVersionId - the primary key of the current document library file version
fileEntryId - the file entry ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the previous, current, and next document library file version
Throws:
NoSuchFileVersionException - if a document library file version with the primary key could not be found

removeByFileEntryId

public static void removeByFileEntryId(long fileEntryId)
Removes all the document library file versions where fileEntryId = ? from the database.

Parameters:
fileEntryId - the file entry ID

countByFileEntryId

public static int countByFileEntryId(long fileEntryId)
Returns the number of document library file versions where fileEntryId = ?.

Parameters:
fileEntryId - the file entry ID
Returns:
the number of matching document library file versions

findByMimeType

public static List<DLFileVersion> findByMimeType(String mimeType)
Returns all the document library file versions where mimeType = ?.

Parameters:
mimeType - the mime type
Returns:
the matching document library file versions

findByMimeType

public static List<DLFileVersion> findByMimeType(String mimeType,
                                                 int start,
                                                 int end)
Returns a range of all the document library file versions where mimeType = ?.

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 and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from DLFileVersionModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.

Parameters:
mimeType - the mime type
start - the lower bound of the range of document library file versions
end - the upper bound of the range of document library file versions (not inclusive)
Returns:
the range of matching document library file versions

findByMimeType

public static List<DLFileVersion> findByMimeType(String mimeType,
                                                 int start,
                                                 int end,
                                                 OrderByComparator<DLFileVersion> orderByComparator)
Returns an ordered range of all the document library file versions where mimeType = ?.

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 and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from DLFileVersionModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.

Parameters:
mimeType - the mime type
start - the lower bound of the range of document library file versions
end - the upper bound of the range of document library file versions (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
Returns:
the ordered range of matching document library file versions

findByMimeType

public static List<DLFileVersion> findByMimeType(String mimeType,
                                                 int start,
                                                 int end,
                                                 OrderByComparator<DLFileVersion> orderByComparator,
                                                 boolean retrieveFromCache)
Returns an ordered range of all the document library file versions where mimeType = ?.

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 and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from DLFileVersionModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.

Parameters:
mimeType - the mime type
start - the lower bound of the range of document library file versions
end - the upper bound of the range of document library file versions (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
retrieveFromCache - whether to retrieve from the finder cache
Returns:
the ordered range of matching document library file versions

findByMimeType_First

public static DLFileVersion findByMimeType_First(String mimeType,
                                                 OrderByComparator<DLFileVersion> orderByComparator)
                                          throws NoSuchFileVersionException
Returns the first document library file version in the ordered set where mimeType = ?.

Parameters:
mimeType - the mime type
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the first matching document library file version
Throws:
NoSuchFileVersionException - if a matching document library file version could not be found

fetchByMimeType_First

public static DLFileVersion fetchByMimeType_First(String mimeType,
                                                  OrderByComparator<DLFileVersion> orderByComparator)
Returns the first document library file version in the ordered set where mimeType = ?.

Parameters:
mimeType - the mime type
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the first matching document library file version, or null if a matching document library file version could not be found

findByMimeType_Last

public static DLFileVersion findByMimeType_Last(String mimeType,
                                                OrderByComparator<DLFileVersion> orderByComparator)
                                         throws NoSuchFileVersionException
Returns the last document library file version in the ordered set where mimeType = ?.

Parameters:
mimeType - the mime type
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the last matching document library file version
Throws:
NoSuchFileVersionException - if a matching document library file version could not be found

fetchByMimeType_Last

public static DLFileVersion fetchByMimeType_Last(String mimeType,
                                                 OrderByComparator<DLFileVersion> orderByComparator)
Returns the last document library file version in the ordered set where mimeType = ?.

Parameters:
mimeType - the mime type
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the last matching document library file version, or null if a matching document library file version could not be found

findByMimeType_PrevAndNext

public static DLFileVersion[] findByMimeType_PrevAndNext(long fileVersionId,
                                                         String mimeType,
                                                         OrderByComparator<DLFileVersion> orderByComparator)
                                                  throws NoSuchFileVersionException
Returns the document library file versions before and after the current document library file version in the ordered set where mimeType = ?.

Parameters:
fileVersionId - the primary key of the current document library file version
mimeType - the mime type
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the previous, current, and next document library file version
Throws:
NoSuchFileVersionException - if a document library file version with the primary key could not be found

removeByMimeType

public static void removeByMimeType(String mimeType)
Removes all the document library file versions where mimeType = ? from the database.

Parameters:
mimeType - the mime type

countByMimeType

public static int countByMimeType(String mimeType)
Returns the number of document library file versions where mimeType = ?.

Parameters:
mimeType - the mime type
Returns:
the number of matching document library file versions

findByC_NotS

public static List<DLFileVersion> findByC_NotS(long companyId,
                                               int status)
Returns all the document library file versions where companyId = ? and status ≠ ?.

Parameters:
companyId - the company ID
status - the status
Returns:
the matching document library file versions

findByC_NotS

public static List<DLFileVersion> findByC_NotS(long companyId,
                                               int status,
                                               int start,
                                               int end)
Returns a range of all the document library file versions where companyId = ? and status ≠ ?.

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 and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from DLFileVersionModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.

Parameters:
companyId - the company ID
status - the status
start - the lower bound of the range of document library file versions
end - the upper bound of the range of document library file versions (not inclusive)
Returns:
the range of matching document library file versions

findByC_NotS

public static List<DLFileVersion> findByC_NotS(long companyId,
                                               int status,
                                               int start,
                                               int end,
                                               OrderByComparator<DLFileVersion> orderByComparator)
Returns an ordered range of all the document library file versions where companyId = ? and status ≠ ?.

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 and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from DLFileVersionModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.

Parameters:
companyId - the company ID
status - the status
start - the lower bound of the range of document library file versions
end - the upper bound of the range of document library file versions (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
Returns:
the ordered range of matching document library file versions

findByC_NotS

public static List<DLFileVersion> findByC_NotS(long companyId,
                                               int status,
                                               int start,
                                               int end,
                                               OrderByComparator<DLFileVersion> orderByComparator,
                                               boolean retrieveFromCache)
Returns an ordered range of all the document library file versions where companyId = ? and status ≠ ?.

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 and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from DLFileVersionModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.

Parameters:
companyId - the company ID
status - the status
start - the lower bound of the range of document library file versions
end - the upper bound of the range of document library file versions (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
retrieveFromCache - whether to retrieve from the finder cache
Returns:
the ordered range of matching document library file versions

findByC_NotS_First

public static DLFileVersion findByC_NotS_First(long companyId,
                                               int status,
                                               OrderByComparator<DLFileVersion> orderByComparator)
                                        throws NoSuchFileVersionException
Returns the first document library file version in the ordered set where companyId = ? and status ≠ ?.

Parameters:
companyId - the company ID
status - the status
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the first matching document library file version
Throws:
NoSuchFileVersionException - if a matching document library file version could not be found

fetchByC_NotS_First

public static DLFileVersion fetchByC_NotS_First(long companyId,
                                                int status,
                                                OrderByComparator<DLFileVersion> orderByComparator)
Returns the first document library file version in the ordered set where companyId = ? and status ≠ ?.

Parameters:
companyId - the company ID
status - the status
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the first matching document library file version, or null if a matching document library file version could not be found

findByC_NotS_Last

public static DLFileVersion findByC_NotS_Last(long companyId,
                                              int status,
                                              OrderByComparator<DLFileVersion> orderByComparator)
                                       throws NoSuchFileVersionException
Returns the last document library file version in the ordered set where companyId = ? and status ≠ ?.

Parameters:
companyId - the company ID
status - the status
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the last matching document library file version
Throws:
NoSuchFileVersionException - if a matching document library file version could not be found

fetchByC_NotS_Last

public static DLFileVersion fetchByC_NotS_Last(long companyId,
                                               int status,
                                               OrderByComparator<DLFileVersion> orderByComparator)
Returns the last document library file version in the ordered set where companyId = ? and status ≠ ?.

Parameters:
companyId - the company ID
status - the status
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the last matching document library file version, or null if a matching document library file version could not be found

findByC_NotS_PrevAndNext

public static DLFileVersion[] findByC_NotS_PrevAndNext(long fileVersionId,
                                                       long companyId,
                                                       int status,
                                                       OrderByComparator<DLFileVersion> orderByComparator)
                                                throws NoSuchFileVersionException
Returns the document library file versions before and after the current document library file version in the ordered set where companyId = ? and status ≠ ?.

Parameters:
fileVersionId - the primary key of the current document library file version
companyId - the company ID
status - the status
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the previous, current, and next document library file version
Throws:
NoSuchFileVersionException - if a document library file version with the primary key could not be found

removeByC_NotS

public static void removeByC_NotS(long companyId,
                                  int status)
Removes all the document library file versions where companyId = ? and status ≠ ? from the database.

Parameters:
companyId - the company ID
status - the status

countByC_NotS

public static int countByC_NotS(long companyId,
                                int status)
Returns the number of document library file versions where companyId = ? and status ≠ ?.

Parameters:
companyId - the company ID
status - the status
Returns:
the number of matching document library file versions

findByF_V

public static DLFileVersion findByF_V(long fileEntryId,
                                      String version)
                               throws NoSuchFileVersionException
Returns the document library file version where fileEntryId = ? and version = ? or throws a NoSuchFileVersionException if it could not be found.

Parameters:
fileEntryId - the file entry ID
version - the version
Returns:
the matching document library file version
Throws:
NoSuchFileVersionException - if a matching document library file version could not be found

fetchByF_V

public static DLFileVersion fetchByF_V(long fileEntryId,
                                       String version)
Returns the document library file version where fileEntryId = ? and version = ? or returns null if it could not be found. Uses the finder cache.

Parameters:
fileEntryId - the file entry ID
version - the version
Returns:
the matching document library file version, or null if a matching document library file version could not be found

fetchByF_V

public static DLFileVersion fetchByF_V(long fileEntryId,
                                       String version,
                                       boolean retrieveFromCache)
Returns the document library file version where fileEntryId = ? and version = ? or returns null if it could not be found, optionally using the finder cache.

Parameters:
fileEntryId - the file entry ID
version - the version
retrieveFromCache - whether to retrieve from the finder cache
Returns:
the matching document library file version, or null if a matching document library file version could not be found

removeByF_V

public static DLFileVersion removeByF_V(long fileEntryId,
                                        String version)
                                 throws NoSuchFileVersionException
Removes the document library file version where fileEntryId = ? and version = ? from the database.

Parameters:
fileEntryId - the file entry ID
version - the version
Returns:
the document library file version that was removed
Throws:
NoSuchFileVersionException

countByF_V

public static int countByF_V(long fileEntryId,
                             String version)
Returns the number of document library file versions where fileEntryId = ? and version = ?.

Parameters:
fileEntryId - the file entry ID
version - the version
Returns:
the number of matching document library file versions

findByF_S

public static List<DLFileVersion> findByF_S(long fileEntryId,
                                            int status)
Returns all the document library file versions where fileEntryId = ? and status = ?.

Parameters:
fileEntryId - the file entry ID
status - the status
Returns:
the matching document library file versions

findByF_S

public static List<DLFileVersion> findByF_S(long fileEntryId,
                                            int status,
                                            int start,
                                            int end)
Returns a range of all the document library file versions where fileEntryId = ? and status = ?.

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 and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from DLFileVersionModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.

Parameters:
fileEntryId - the file entry ID
status - the status
start - the lower bound of the range of document library file versions
end - the upper bound of the range of document library file versions (not inclusive)
Returns:
the range of matching document library file versions

findByF_S

public static List<DLFileVersion> findByF_S(long fileEntryId,
                                            int status,
                                            int start,
                                            int end,
                                            OrderByComparator<DLFileVersion> orderByComparator)
Returns an ordered range of all the document library file versions where fileEntryId = ? and status = ?.

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 and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from DLFileVersionModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.

Parameters:
fileEntryId - the file entry ID
status - the status
start - the lower bound of the range of document library file versions
end - the upper bound of the range of document library file versions (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
Returns:
the ordered range of matching document library file versions

findByF_S

public static List<DLFileVersion> findByF_S(long fileEntryId,
                                            int status,
                                            int start,
                                            int end,
                                            OrderByComparator<DLFileVersion> orderByComparator,
                                            boolean retrieveFromCache)
Returns an ordered range of all the document library file versions where fileEntryId = ? and status = ?.

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 and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from DLFileVersionModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.

Parameters:
fileEntryId - the file entry ID
status - the status
start - the lower bound of the range of document library file versions
end - the upper bound of the range of document library file versions (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
retrieveFromCache - whether to retrieve from the finder cache
Returns:
the ordered range of matching document library file versions

findByF_S_First

public static DLFileVersion findByF_S_First(long fileEntryId,
                                            int status,
                                            OrderByComparator<DLFileVersion> orderByComparator)
                                     throws NoSuchFileVersionException
Returns the first document library file version in the ordered set where fileEntryId = ? and status = ?.

Parameters:
fileEntryId - the file entry ID
status - the status
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the first matching document library file version
Throws:
NoSuchFileVersionException - if a matching document library file version could not be found

fetchByF_S_First

public static DLFileVersion fetchByF_S_First(long fileEntryId,
                                             int status,
                                             OrderByComparator<DLFileVersion> orderByComparator)
Returns the first document library file version in the ordered set where fileEntryId = ? and status = ?.

Parameters:
fileEntryId - the file entry ID
status - the status
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the first matching document library file version, or null if a matching document library file version could not be found

findByF_S_Last

public static DLFileVersion findByF_S_Last(long fileEntryId,
                                           int status,
                                           OrderByComparator<DLFileVersion> orderByComparator)
                                    throws NoSuchFileVersionException
Returns the last document library file version in the ordered set where fileEntryId = ? and status = ?.

Parameters:
fileEntryId - the file entry ID
status - the status
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the last matching document library file version
Throws:
NoSuchFileVersionException - if a matching document library file version could not be found

fetchByF_S_Last

public static DLFileVersion fetchByF_S_Last(long fileEntryId,
                                            int status,
                                            OrderByComparator<DLFileVersion> orderByComparator)
Returns the last document library file version in the ordered set where fileEntryId = ? and status = ?.

Parameters:
fileEntryId - the file entry ID
status - the status
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the last matching document library file version, or null if a matching document library file version could not be found

findByF_S_PrevAndNext

public static DLFileVersion[] findByF_S_PrevAndNext(long fileVersionId,
                                                    long fileEntryId,
                                                    int status,
                                                    OrderByComparator<DLFileVersion> orderByComparator)
                                             throws NoSuchFileVersionException
Returns the document library file versions before and after the current document library file version in the ordered set where fileEntryId = ? and status = ?.

Parameters:
fileVersionId - the primary key of the current document library file version
fileEntryId - the file entry ID
status - the status
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the previous, current, and next document library file version
Throws:
NoSuchFileVersionException - if a document library file version with the primary key could not be found

removeByF_S

public static void removeByF_S(long fileEntryId,
                               int status)
Removes all the document library file versions where fileEntryId = ? and status = ? from the database.

Parameters:
fileEntryId - the file entry ID
status - the status

countByF_S

public static int countByF_S(long fileEntryId,
                             int status)
Returns the number of document library file versions where fileEntryId = ? and status = ?.

Parameters:
fileEntryId - the file entry ID
status - the status
Returns:
the number of matching document library file versions

findByG_F_S

public static List<DLFileVersion> findByG_F_S(long groupId,
                                              long folderId,
                                              int status)
Returns all the document library file versions where groupId = ? and folderId = ? and status = ?.

Parameters:
groupId - the group ID
folderId - the folder ID
status - the status
Returns:
the matching document library file versions

findByG_F_S

public static List<DLFileVersion> findByG_F_S(long groupId,
                                              long folderId,
                                              int status,
                                              int start,
                                              int end)
Returns a range of all the document library file versions where groupId = ? and folderId = ? and status = ?.

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 and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from DLFileVersionModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.

Parameters:
groupId - the group ID
folderId - the folder ID
status - the status
start - the lower bound of the range of document library file versions
end - the upper bound of the range of document library file versions (not inclusive)
Returns:
the range of matching document library file versions

findByG_F_S

public static List<DLFileVersion> findByG_F_S(long groupId,
                                              long folderId,
                                              int status,
                                              int start,
                                              int end,
                                              OrderByComparator<DLFileVersion> orderByComparator)
Returns an ordered range of all the document library file versions where groupId = ? and folderId = ? and status = ?.

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 and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from DLFileVersionModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.

Parameters:
groupId - the group ID
folderId - the folder ID
status - the status
start - the lower bound of the range of document library file versions
end - the upper bound of the range of document library file versions (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
Returns:
the ordered range of matching document library file versions

findByG_F_S

public static List<DLFileVersion> findByG_F_S(long groupId,
                                              long folderId,
                                              int status,
                                              int start,
                                              int end,
                                              OrderByComparator<DLFileVersion> orderByComparator,
                                              boolean retrieveFromCache)
Returns an ordered range of all the document library file versions where groupId = ? and folderId = ? and status = ?.

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 and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from DLFileVersionModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.

Parameters:
groupId - the group ID
folderId - the folder ID
status - the status
start - the lower bound of the range of document library file versions
end - the upper bound of the range of document library file versions (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
retrieveFromCache - whether to retrieve from the finder cache
Returns:
the ordered range of matching document library file versions

findByG_F_S_First

public static DLFileVersion findByG_F_S_First(long groupId,
                                              long folderId,
                                              int status,
                                              OrderByComparator<DLFileVersion> orderByComparator)
                                       throws NoSuchFileVersionException
Returns the first document library file version in the ordered set where groupId = ? and folderId = ? and status = ?.

Parameters:
groupId - the group ID
folderId - the folder ID
status - the status
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the first matching document library file version
Throws:
NoSuchFileVersionException - if a matching document library file version could not be found

fetchByG_F_S_First

public static DLFileVersion fetchByG_F_S_First(long groupId,
                                               long folderId,
                                               int status,
                                               OrderByComparator<DLFileVersion> orderByComparator)
Returns the first document library file version in the ordered set where groupId = ? and folderId = ? and status = ?.

Parameters:
groupId - the group ID
folderId - the folder ID
status - the status
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the first matching document library file version, or null if a matching document library file version could not be found

findByG_F_S_Last

public static DLFileVersion findByG_F_S_Last(long groupId,
                                             long folderId,
                                             int status,
                                             OrderByComparator<DLFileVersion> orderByComparator)
                                      throws NoSuchFileVersionException
Returns the last document library file version in the ordered set where groupId = ? and folderId = ? and status = ?.

Parameters:
groupId - the group ID
folderId - the folder ID
status - the status
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the last matching document library file version
Throws:
NoSuchFileVersionException - if a matching document library file version could not be found

fetchByG_F_S_Last

public static DLFileVersion fetchByG_F_S_Last(long groupId,
                                              long folderId,
                                              int status,
                                              OrderByComparator<DLFileVersion> orderByComparator)
Returns the last document library file version in the ordered set where groupId = ? and folderId = ? and status = ?.

Parameters:
groupId - the group ID
folderId - the folder ID
status - the status
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the last matching document library file version, or null if a matching document library file version could not be found

findByG_F_S_PrevAndNext

public static DLFileVersion[] findByG_F_S_PrevAndNext(long fileVersionId,
                                                      long groupId,
                                                      long folderId,
                                                      int status,
                                                      OrderByComparator<DLFileVersion> orderByComparator)
                                               throws NoSuchFileVersionException
Returns the document library file versions before and after the current document library file version in the ordered set where groupId = ? and folderId = ? and status = ?.

Parameters:
fileVersionId - the primary key of the current document library file version
groupId - the group ID
folderId - the folder ID
status - the status
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the previous, current, and next document library file version
Throws:
NoSuchFileVersionException - if a document library file version with the primary key could not be found

removeByG_F_S

public static void removeByG_F_S(long groupId,
                                 long folderId,
                                 int status)
Removes all the document library file versions where groupId = ? and folderId = ? and status = ? from the database.

Parameters:
groupId - the group ID
folderId - the folder ID
status - the status

countByG_F_S

public static int countByG_F_S(long groupId,
                               long folderId,
                               int status)
Returns the number of document library file versions where groupId = ? and folderId = ? and status = ?.

Parameters:
groupId - the group ID
folderId - the folder ID
status - the status
Returns:
the number of matching document library file versions

findByG_F_T_V

public static List<DLFileVersion> findByG_F_T_V(long groupId,
                                                long folderId,
                                                String title,
                                                String version)
Returns all the document library file versions where groupId = ? and folderId = ? and title = ? and version = ?.

Parameters:
groupId - the group ID
folderId - the folder ID
title - the title
version - the version
Returns:
the matching document library file versions

findByG_F_T_V

public static List<DLFileVersion> findByG_F_T_V(long groupId,
                                                long folderId,
                                                String title,
                                                String version,
                                                int start,
                                                int end)
Returns a range of all the document library file versions where groupId = ? and folderId = ? and title = ? and version = ?.

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 and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from DLFileVersionModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.

Parameters:
groupId - the group ID
folderId - the folder ID
title - the title
version - the version
start - the lower bound of the range of document library file versions
end - the upper bound of the range of document library file versions (not inclusive)
Returns:
the range of matching document library file versions

findByG_F_T_V

public static List<DLFileVersion> findByG_F_T_V(long groupId,
                                                long folderId,
                                                String title,
                                                String version,
                                                int start,
                                                int end,
                                                OrderByComparator<DLFileVersion> orderByComparator)
Returns an ordered range of all the document library file versions where groupId = ? and folderId = ? and title = ? and version = ?.

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 and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from DLFileVersionModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.

Parameters:
groupId - the group ID
folderId - the folder ID
title - the title
version - the version
start - the lower bound of the range of document library file versions
end - the upper bound of the range of document library file versions (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
Returns:
the ordered range of matching document library file versions

findByG_F_T_V

public static List<DLFileVersion> findByG_F_T_V(long groupId,
                                                long folderId,
                                                String title,
                                                String version,
                                                int start,
                                                int end,
                                                OrderByComparator<DLFileVersion> orderByComparator,
                                                boolean retrieveFromCache)
Returns an ordered range of all the document library file versions where groupId = ? and folderId = ? and title = ? and version = ?.

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 and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from DLFileVersionModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.

Parameters:
groupId - the group ID
folderId - the folder ID
title - the title
version - the version
start - the lower bound of the range of document library file versions
end - the upper bound of the range of document library file versions (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
retrieveFromCache - whether to retrieve from the finder cache
Returns:
the ordered range of matching document library file versions

findByG_F_T_V_First

public static DLFileVersion findByG_F_T_V_First(long groupId,
                                                long folderId,
                                                String title,
                                                String version,
                                                OrderByComparator<DLFileVersion> orderByComparator)
                                         throws NoSuchFileVersionException
Returns the first document library file version in the ordered set where groupId = ? and folderId = ? and title = ? and version = ?.

Parameters:
groupId - the group ID
folderId - the folder ID
title - the title
version - the version
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the first matching document library file version
Throws:
NoSuchFileVersionException - if a matching document library file version could not be found

fetchByG_F_T_V_First

public static DLFileVersion fetchByG_F_T_V_First(long groupId,
                                                 long folderId,
                                                 String title,
                                                 String version,
                                                 OrderByComparator<DLFileVersion> orderByComparator)
Returns the first document library file version in the ordered set where groupId = ? and folderId = ? and title = ? and version = ?.

Parameters:
groupId - the group ID
folderId - the folder ID
title - the title
version - the version
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the first matching document library file version, or null if a matching document library file version could not be found

findByG_F_T_V_Last

public static DLFileVersion findByG_F_T_V_Last(long groupId,
                                               long folderId,
                                               String title,
                                               String version,
                                               OrderByComparator<DLFileVersion> orderByComparator)
                                        throws NoSuchFileVersionException
Returns the last document library file version in the ordered set where groupId = ? and folderId = ? and title = ? and version = ?.

Parameters:
groupId - the group ID
folderId - the folder ID
title - the title
version - the version
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the last matching document library file version
Throws:
NoSuchFileVersionException - if a matching document library file version could not be found

fetchByG_F_T_V_Last

public static DLFileVersion fetchByG_F_T_V_Last(long groupId,
                                                long folderId,
                                                String title,
                                                String version,
                                                OrderByComparator<DLFileVersion> orderByComparator)
Returns the last document library file version in the ordered set where groupId = ? and folderId = ? and title = ? and version = ?.

Parameters:
groupId - the group ID
folderId - the folder ID
title - the title
version - the version
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the last matching document library file version, or null if a matching document library file version could not be found

findByG_F_T_V_PrevAndNext

public static DLFileVersion[] findByG_F_T_V_PrevAndNext(long fileVersionId,
                                                        long groupId,
                                                        long folderId,
                                                        String title,
                                                        String version,
                                                        OrderByComparator<DLFileVersion> orderByComparator)
                                                 throws NoSuchFileVersionException
Returns the document library file versions before and after the current document library file version in the ordered set where groupId = ? and folderId = ? and title = ? and version = ?.

Parameters:
fileVersionId - the primary key of the current document library file version
groupId - the group ID
folderId - the folder ID
title - the title
version - the version
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the previous, current, and next document library file version
Throws:
NoSuchFileVersionException - if a document library file version with the primary key could not be found

removeByG_F_T_V

public static void removeByG_F_T_V(long groupId,
                                   long folderId,
                                   String title,
                                   String version)
Removes all the document library file versions where groupId = ? and folderId = ? and title = ? and version = ? from the database.

Parameters:
groupId - the group ID
folderId - the folder ID
title - the title
version - the version

countByG_F_T_V

public static int countByG_F_T_V(long groupId,
                                 long folderId,
                                 String title,
                                 String version)
Returns the number of document library file versions where groupId = ? and folderId = ? and title = ? and version = ?.

Parameters:
groupId - the group ID
folderId - the folder ID
title - the title
version - the version
Returns:
the number of matching document library file versions

cacheResult

public static void cacheResult(DLFileVersion dlFileVersion)
Caches the document library file version in the entity cache if it is enabled.

Parameters:
dlFileVersion - the document library file version

cacheResult

public static void cacheResult(List<DLFileVersion> dlFileVersions)
Caches the document library file versions in the entity cache if it is enabled.

Parameters:
dlFileVersions - the document library file versions

create

public static DLFileVersion create(long fileVersionId)
Creates a new document library file version with the primary key. Does not add the document library file version to the database.

Parameters:
fileVersionId - the primary key for the new document library file version
Returns:
the new document library file version

remove

public static DLFileVersion remove(long fileVersionId)
                            throws NoSuchFileVersionException
Removes the document library file version with the primary key from the database. Also notifies the appropriate model listeners.

Parameters:
fileVersionId - the primary key of the document library file version
Returns:
the document library file version that was removed
Throws:
NoSuchFileVersionException - if a document library file version with the primary key could not be found

updateImpl

public static DLFileVersion updateImpl(DLFileVersion dlFileVersion)

findByPrimaryKey

public static DLFileVersion findByPrimaryKey(long fileVersionId)
                                      throws NoSuchFileVersionException
Returns the document library file version with the primary key or throws a NoSuchFileVersionException if it could not be found.

Parameters:
fileVersionId - the primary key of the document library file version
Returns:
the document library file version
Throws:
NoSuchFileVersionException - if a document library file version with the primary key could not be found

fetchByPrimaryKey

public static DLFileVersion fetchByPrimaryKey(long fileVersionId)
Returns the document library file version with the primary key or returns null if it could not be found.

Parameters:
fileVersionId - the primary key of the document library file version
Returns:
the document library file version, or null if a document library file version with the primary key could not be found

fetchByPrimaryKeys

public static Map<Serializable,DLFileVersion> fetchByPrimaryKeys(Set<Serializable> primaryKeys)

findAll

public static List<DLFileVersion> findAll()
Returns all the document library file versions.

Returns:
the document library file versions

findAll

public static List<DLFileVersion> findAll(int start,
                                          int end)
Returns a range of all the document library file versions.

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 and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from DLFileVersionModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.

Parameters:
start - the lower bound of the range of document library file versions
end - the upper bound of the range of document library file versions (not inclusive)
Returns:
the range of document library file versions

findAll

public static List<DLFileVersion> findAll(int start,
                                          int end,
                                          OrderByComparator<DLFileVersion> orderByComparator)
Returns an ordered range of all the document library file versions.

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 and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from DLFileVersionModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.

Parameters:
start - the lower bound of the range of document library file versions
end - the upper bound of the range of document library file versions (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
Returns:
the ordered range of document library file versions

findAll

public static List<DLFileVersion> findAll(int start,
                                          int end,
                                          OrderByComparator<DLFileVersion> orderByComparator,
                                          boolean retrieveFromCache)
Returns an ordered range of all the document library file versions.

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 and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from DLFileVersionModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.

Parameters:
start - the lower bound of the range of document library file versions
end - the upper bound of the range of document library file versions (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
retrieveFromCache - whether to retrieve from the finder cache
Returns:
the ordered range of document library file versions

removeAll

public static void removeAll()
Removes all the document library file versions from the database.


countAll

public static int countAll()
Returns the number of document library file versions.

Returns:
the number of document library file versions

getBadColumnNames

public static Set<String> getBadColumnNames()

getPersistence

public static DLFileVersionPersistence getPersistence()

Liferay 7.0-ce-b4