Liferay 6.1.2-ce-ga3

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

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

public class DLFileEntryTypeUtil
extends Object

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

Constructor Summary
DLFileEntryTypeUtil()
           
 
Method Summary
static void addDDMStructure(long pk, DDMStructure ddmStructure)
          Adds an association between the document library file entry type and the d d m structure.
static void addDDMStructure(long pk, long ddmStructurePK)
          Adds an association between the document library file entry type and the d d m structure.
static void addDDMStructures(long pk, List<DDMStructure> ddmStructures)
          Adds an association between the document library file entry type and the d d m structures.
static void addDDMStructures(long pk, long[] ddmStructurePKs)
          Adds an association between the document library file entry type and the d d m structures.
static void addDLFolder(long pk, DLFolder dlFolder)
          Adds an association between the document library file entry type and the document library folder.
static void addDLFolder(long pk, long dlFolderPK)
          Adds an association between the document library file entry type and the document library folder.
static void addDLFolders(long pk, List<DLFolder> dlFolders)
          Adds an association between the document library file entry type and the document library folders.
static void addDLFolders(long pk, long[] dlFolderPKs)
          Adds an association between the document library file entry type and the document library folders.
static void cacheResult(DLFileEntryType dlFileEntryType)
          Caches the document library file entry type in the entity cache if it is enabled.
static void cacheResult(List<DLFileEntryType> dlFileEntryTypes)
          Caches the document library file entry types in the entity cache if it is enabled.
static void clearCache()
           
static void clearCache(DLFileEntryType dlFileEntryType)
           
static void clearDDMStructures(long pk)
          Clears all associations between the document library file entry type and its d d m structures.
static void clearDLFolders(long pk)
          Clears all associations between the document library file entry type and its document library folders.
static boolean containsDDMStructure(long pk, long ddmStructurePK)
          Returns true if the d d m structure is associated with the document library file entry type.
static boolean containsDDMStructures(long pk)
          Returns true if the document library file entry type has any d d m structures associated with it.
static boolean containsDLFolder(long pk, long dlFolderPK)
          Returns true if the document library folder is associated with the document library file entry type.
static boolean containsDLFolders(long pk)
          Returns true if the document library file entry type has any document library folders associated with it.
static int countAll()
          Returns the number of document library file entry types.
static int countByG_N(long groupId, String name)
          Returns the number of document library file entry types where groupId = ? and name = ?.
static int countByGroupId(long groupId)
          Returns the number of document library file entry types where groupId = ?.
static int countByGroupId(long[] groupIds)
          Returns the number of document library file entry types where groupId = any ?.
static int countByUUID_G(String uuid, long groupId)
          Returns the number of document library file entry types where uuid = ? and groupId = ?.
static int countByUuid(String uuid)
          Returns the number of document library file entry types where uuid = ?.
 long countWithDynamicQuery(DynamicQuery dynamicQuery)
           
static DLFileEntryType create(long fileEntryTypeId)
          Creates a new document library file entry type with the primary key.
static DLFileEntryType fetchByG_N(long groupId, String name)
          Returns the document library file entry type where groupId = ? and name = ? or returns null if it could not be found.
static DLFileEntryType fetchByG_N(long groupId, String name, boolean retrieveFromCache)
          Returns the document library file entry type where groupId = ? and name = ? or returns null if it could not be found, optionally using the finder cache.
static DLFileEntryType fetchByGroupId_First(long groupId, OrderByComparator orderByComparator)
          Returns the first document library file entry type in the ordered set where groupId = ?.
static DLFileEntryType fetchByGroupId_Last(long groupId, OrderByComparator orderByComparator)
          Returns the last document library file entry type in the ordered set where groupId = ?.
static DLFileEntryType fetchByPrimaryKey(long fileEntryTypeId)
          Returns the document library file entry type with the primary key or returns null if it could not be found.
static DLFileEntryType fetchByUuid_First(String uuid, OrderByComparator orderByComparator)
          Returns the first document library file entry type in the ordered set where uuid = ?.
static DLFileEntryType fetchByUUID_G(String uuid, long groupId)
          Returns the document library file entry type where uuid = ? and groupId = ? or returns null if it could not be found.
static DLFileEntryType fetchByUUID_G(String uuid, long groupId, boolean retrieveFromCache)
          Returns the document library file entry type where uuid = ? and groupId = ? or returns null if it could not be found, optionally using the finder cache.
static DLFileEntryType fetchByUuid_Last(String uuid, OrderByComparator orderByComparator)
          Returns the last document library file entry type in the ordered set where uuid = ?.
static int filterCountByGroupId(long groupId)
          Returns the number of document library file entry types that the user has permission to view where groupId = ?.
static int filterCountByGroupId(long[] groupIds)
          Returns the number of document library file entry types that the user has permission to view where groupId = any ?.
static DLFileEntryType[] filterFindByGroupId_PrevAndNext(long fileEntryTypeId, long groupId, OrderByComparator orderByComparator)
          Returns the document library file entry types before and after the current document library file entry type in the ordered set of document library file entry types that the user has permission to view where groupId = ?.
static List<DLFileEntryType> filterFindByGroupId(long groupId)
          Returns all the document library file entry types that the user has permission to view where groupId = ?.
static List<DLFileEntryType> filterFindByGroupId(long[] groupIds)
          Returns all the document library file entry types that the user has permission to view where groupId = any ?.
static List<DLFileEntryType> filterFindByGroupId(long[] groupIds, int start, int end)
          Returns a range of all the document library file entry types that the user has permission to view where groupId = any ?.
static List<DLFileEntryType> filterFindByGroupId(long[] groupIds, int start, int end, OrderByComparator orderByComparator)
          Returns an ordered range of all the document library file entry types that the user has permission to view where groupId = any ?.
static List<DLFileEntryType> filterFindByGroupId(long groupId, int start, int end)
          Returns a range of all the document library file entry types that the user has permission to view where groupId = ?.
static List<DLFileEntryType> filterFindByGroupId(long groupId, int start, int end, OrderByComparator orderByComparator)
          Returns an ordered range of all the document library file entry types that the user has permissions to view where groupId = ?.
static List<DLFileEntryType> findAll()
          Returns all the document library file entry types.
static List<DLFileEntryType> findAll(int start, int end)
          Returns a range of all the document library file entry types.
static List<DLFileEntryType> findAll(int start, int end, OrderByComparator orderByComparator)
          Returns an ordered range of all the document library file entry types.
static DLFileEntryType findByG_N(long groupId, String name)
          Returns the document library file entry type where groupId = ? and name = ? or throws a NoSuchFileEntryTypeException if it could not be found.
static DLFileEntryType findByGroupId_First(long groupId, OrderByComparator orderByComparator)
          Returns the first document library file entry type in the ordered set where groupId = ?.
static DLFileEntryType findByGroupId_Last(long groupId, OrderByComparator orderByComparator)
          Returns the last document library file entry type in the ordered set where groupId = ?.
static DLFileEntryType[] findByGroupId_PrevAndNext(long fileEntryTypeId, long groupId, OrderByComparator orderByComparator)
          Returns the document library file entry types before and after the current document library file entry type in the ordered set where groupId = ?.
static List<DLFileEntryType> findByGroupId(long groupId)
          Returns all the document library file entry types where groupId = ?.
static List<DLFileEntryType> findByGroupId(long[] groupIds)
          Returns all the document library file entry types where groupId = any ?.
static List<DLFileEntryType> findByGroupId(long[] groupIds, int start, int end)
          Returns a range of all the document library file entry types where groupId = any ?.
static List<DLFileEntryType> findByGroupId(long[] groupIds, int start, int end, OrderByComparator orderByComparator)
          Returns an ordered range of all the document library file entry types where groupId = any ?.
static List<DLFileEntryType> findByGroupId(long groupId, int start, int end)
          Returns a range of all the document library file entry types where groupId = ?.
static List<DLFileEntryType> findByGroupId(long groupId, int start, int end, OrderByComparator orderByComparator)
          Returns an ordered range of all the document library file entry types where groupId = ?.
static DLFileEntryType findByPrimaryKey(long fileEntryTypeId)
          Returns the document library file entry type with the primary key or throws a NoSuchFileEntryTypeException if it could not be found.
static DLFileEntryType findByUuid_First(String uuid, OrderByComparator orderByComparator)
          Returns the first document library file entry type in the ordered set where uuid = ?.
static DLFileEntryType findByUUID_G(String uuid, long groupId)
          Returns the document library file entry type where uuid = ? and groupId = ? or throws a NoSuchFileEntryTypeException if it could not be found.
static DLFileEntryType findByUuid_Last(String uuid, OrderByComparator orderByComparator)
          Returns the last document library file entry type in the ordered set where uuid = ?.
static DLFileEntryType[] findByUuid_PrevAndNext(long fileEntryTypeId, String uuid, OrderByComparator orderByComparator)
          Returns the document library file entry types before and after the current document library file entry type in the ordered set where uuid = ?.
static List<DLFileEntryType> findByUuid(String uuid)
          Returns all the document library file entry types where uuid = ?.
static List<DLFileEntryType> findByUuid(String uuid, int start, int end)
          Returns a range of all the document library file entry types where uuid = ?.
static List<DLFileEntryType> findByUuid(String uuid, int start, int end, OrderByComparator orderByComparator)
          Returns an ordered range of all the document library file entry types where uuid = ?.
static List<DLFileEntryType> findWithDynamicQuery(DynamicQuery dynamicQuery)
           
static List<DLFileEntryType> findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end)
           
static List<DLFileEntryType> findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end, OrderByComparator orderByComparator)
           
static List<DDMStructure> getDDMStructures(long pk)
          Returns all the d d m structures associated with the document library file entry type.
static List<DDMStructure> getDDMStructures(long pk, int start, int end)
          Returns a range of all the d d m structures associated with the document library file entry type.
static List<DDMStructure> getDDMStructures(long pk, int start, int end, OrderByComparator orderByComparator)
          Returns an ordered range of all the d d m structures associated with the document library file entry type.
static int getDDMStructuresSize(long pk)
          Returns the number of d d m structures associated with the document library file entry type.
static List<DLFolder> getDLFolders(long pk)
          Returns all the document library folders associated with the document library file entry type.
static List<DLFolder> getDLFolders(long pk, int start, int end)
          Returns a range of all the document library folders associated with the document library file entry type.
static List<DLFolder> getDLFolders(long pk, int start, int end, OrderByComparator orderByComparator)
          Returns an ordered range of all the document library folders associated with the document library file entry type.
static int getDLFoldersSize(long pk)
          Returns the number of document library folders associated with the document library file entry type.
static DLFileEntryTypePersistence getPersistence()
           
static DLFileEntryType remove(long fileEntryTypeId)
          Removes the document library file entry type with the primary key from the database.
static void removeAll()
          Removes all the document library file entry types from the database.
static DLFileEntryType removeByG_N(long groupId, String name)
          Removes the document library file entry type where groupId = ? and name = ? from the database.
static void removeByGroupId(long groupId)
          Removes all the document library file entry types where groupId = ? from the database.
static DLFileEntryType removeByUUID_G(String uuid, long groupId)
          Removes the document library file entry type where uuid = ? and groupId = ? from the database.
static void removeByUuid(String uuid)
          Removes all the document library file entry types where uuid = ? from the database.
static void removeDDMStructure(long pk, DDMStructure ddmStructure)
          Removes the association between the document library file entry type and the d d m structure.
static void removeDDMStructure(long pk, long ddmStructurePK)
          Removes the association between the document library file entry type and the d d m structure.
static void removeDDMStructures(long pk, List<DDMStructure> ddmStructures)
          Removes the association between the document library file entry type and the d d m structures.
static void removeDDMStructures(long pk, long[] ddmStructurePKs)
          Removes the association between the document library file entry type and the d d m structures.
static void removeDLFolder(long pk, DLFolder dlFolder)
          Removes the association between the document library file entry type and the document library folder.
static void removeDLFolder(long pk, long dlFolderPK)
          Removes the association between the document library file entry type and the document library folder.
static void removeDLFolders(long pk, List<DLFolder> dlFolders)
          Removes the association between the document library file entry type and the document library folders.
static void removeDLFolders(long pk, long[] dlFolderPKs)
          Removes the association between the document library file entry type and the document library folders.
static void setDDMStructures(long pk, List<DDMStructure> ddmStructures)
          Sets the d d m structures associated with the document library file entry type, removing and adding associations as necessary.
static void setDDMStructures(long pk, long[] ddmStructurePKs)
          Sets the d d m structures associated with the document library file entry type, removing and adding associations as necessary.
static void setDLFolders(long pk, List<DLFolder> dlFolders)
          Sets the document library folders associated with the document library file entry type, removing and adding associations as necessary.
static void setDLFolders(long pk, long[] dlFolderPKs)
          Sets the document library folders associated with the document library file entry type, removing and adding associations as necessary.
 void setPersistence(DLFileEntryTypePersistence persistence)
          Deprecated.  
static DLFileEntryType update(DLFileEntryType dlFileEntryType, boolean merge)
           
static DLFileEntryType update(DLFileEntryType dlFileEntryType, boolean merge, ServiceContext serviceContext)
           
static DLFileEntryType updateImpl(DLFileEntryType dlFileEntryType, boolean merge)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

DLFileEntryTypeUtil

public DLFileEntryTypeUtil()
Method Detail

clearCache

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

clearCache

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

countWithDynamicQuery

public long countWithDynamicQuery(DynamicQuery dynamicQuery)
                           throws SystemException
Throws:
SystemException
See Also:
BasePersistence.countWithDynamicQuery(DynamicQuery)

findWithDynamicQuery

public static List<DLFileEntryType> findWithDynamicQuery(DynamicQuery dynamicQuery)
                                                  throws SystemException
Throws:
SystemException
See Also:
BasePersistence.findWithDynamicQuery(DynamicQuery)

findWithDynamicQuery

public static List<DLFileEntryType> findWithDynamicQuery(DynamicQuery dynamicQuery,
                                                         int start,
                                                         int end)
                                                  throws SystemException
Throws:
SystemException
See Also:
BasePersistence.findWithDynamicQuery(DynamicQuery, int, int)

findWithDynamicQuery

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

update

public static DLFileEntryType update(DLFileEntryType dlFileEntryType,
                                     boolean merge)
                              throws SystemException
Throws:
SystemException
See Also:
BasePersistence.update(com.liferay.portal.model.BaseModel, boolean)

update

public static DLFileEntryType update(DLFileEntryType dlFileEntryType,
                                     boolean merge,
                                     ServiceContext serviceContext)
                              throws SystemException
Throws:
SystemException
See Also:
BasePersistence.update(com.liferay.portal.model.BaseModel, boolean, ServiceContext)

cacheResult

public static void cacheResult(DLFileEntryType dlFileEntryType)
Caches the document library file entry type in the entity cache if it is enabled.

Parameters:
dlFileEntryType - the document library file entry type

cacheResult

public static void cacheResult(List<DLFileEntryType> dlFileEntryTypes)
Caches the document library file entry types in the entity cache if it is enabled.

Parameters:
dlFileEntryTypes - the document library file entry types

create

public static DLFileEntryType create(long fileEntryTypeId)
Creates a new document library file entry type with the primary key. Does not add the document library file entry type to the database.

Parameters:
fileEntryTypeId - the primary key for the new document library file entry type
Returns:
the new document library file entry type

remove

public static DLFileEntryType remove(long fileEntryTypeId)
                              throws SystemException,
                                     NoSuchFileEntryTypeException
Removes the document library file entry type with the primary key from the database. Also notifies the appropriate model listeners.

Parameters:
fileEntryTypeId - the primary key of the document library file entry type
Returns:
the document library file entry type that was removed
Throws:
NoSuchFileEntryTypeException - if a document library file entry type with the primary key could not be found
SystemException - if a system exception occurred

updateImpl

public static DLFileEntryType updateImpl(DLFileEntryType dlFileEntryType,
                                         boolean merge)
                                  throws SystemException
Throws:
SystemException

findByPrimaryKey

public static DLFileEntryType findByPrimaryKey(long fileEntryTypeId)
                                        throws SystemException,
                                               NoSuchFileEntryTypeException
Returns the document library file entry type with the primary key or throws a NoSuchFileEntryTypeException if it could not be found.

Parameters:
fileEntryTypeId - the primary key of the document library file entry type
Returns:
the document library file entry type
Throws:
NoSuchFileEntryTypeException - if a document library file entry type with the primary key could not be found
SystemException - if a system exception occurred

fetchByPrimaryKey

public static DLFileEntryType fetchByPrimaryKey(long fileEntryTypeId)
                                         throws SystemException
Returns the document library file entry type with the primary key or returns null if it could not be found.

Parameters:
fileEntryTypeId - the primary key of the document library file entry type
Returns:
the document library file entry type, or null if a document library file entry type with the primary key could not be found
Throws:
SystemException - if a system exception occurred

findByUuid

public static List<DLFileEntryType> findByUuid(String uuid)
                                        throws SystemException
Returns all the document library file entry types where uuid = ?.

Parameters:
uuid - the uuid
Returns:
the matching document library file entry types
Throws:
SystemException - if a system exception occurred

findByUuid

public static List<DLFileEntryType> findByUuid(String uuid,
                                               int start,
                                               int end)
                                        throws SystemException
Returns a range of all the document library file entry types 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.

Parameters:
uuid - the uuid
start - the lower bound of the range of document library file entry types
end - the upper bound of the range of document library file entry types (not inclusive)
Returns:
the range of matching document library file entry types
Throws:
SystemException - if a system exception occurred

findByUuid

public static List<DLFileEntryType> findByUuid(String uuid,
                                               int start,
                                               int end,
                                               OrderByComparator orderByComparator)
                                        throws SystemException
Returns an ordered range of all the document library file entry types 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.

Parameters:
uuid - the uuid
start - the lower bound of the range of document library file entry types
end - the upper bound of the range of document library file entry types (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
Returns:
the ordered range of matching document library file entry types
Throws:
SystemException - if a system exception occurred

findByUuid_First

public static DLFileEntryType findByUuid_First(String uuid,
                                               OrderByComparator orderByComparator)
                                        throws SystemException,
                                               NoSuchFileEntryTypeException
Returns the first document library file entry type 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 entry type
Throws:
NoSuchFileEntryTypeException - if a matching document library file entry type could not be found
SystemException - if a system exception occurred

fetchByUuid_First

public static DLFileEntryType fetchByUuid_First(String uuid,
                                                OrderByComparator orderByComparator)
                                         throws SystemException
Returns the first document library file entry type 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 entry type, or null if a matching document library file entry type could not be found
Throws:
SystemException - if a system exception occurred

findByUuid_Last

public static DLFileEntryType findByUuid_Last(String uuid,
                                              OrderByComparator orderByComparator)
                                       throws SystemException,
                                              NoSuchFileEntryTypeException
Returns the last document library file entry type 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 entry type
Throws:
NoSuchFileEntryTypeException - if a matching document library file entry type could not be found
SystemException - if a system exception occurred

fetchByUuid_Last

public static DLFileEntryType fetchByUuid_Last(String uuid,
                                               OrderByComparator orderByComparator)
                                        throws SystemException
Returns the last document library file entry type 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 entry type, or null if a matching document library file entry type could not be found
Throws:
SystemException - if a system exception occurred

findByUuid_PrevAndNext

public static DLFileEntryType[] findByUuid_PrevAndNext(long fileEntryTypeId,
                                                       String uuid,
                                                       OrderByComparator orderByComparator)
                                                throws SystemException,
                                                       NoSuchFileEntryTypeException
Returns the document library file entry types before and after the current document library file entry type in the ordered set where uuid = ?.

Parameters:
fileEntryTypeId - the primary key of the current document library file entry type
uuid - the uuid
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the previous, current, and next document library file entry type
Throws:
NoSuchFileEntryTypeException - if a document library file entry type with the primary key could not be found
SystemException - if a system exception occurred

findByUUID_G

public static DLFileEntryType findByUUID_G(String uuid,
                                           long groupId)
                                    throws SystemException,
                                           NoSuchFileEntryTypeException
Returns the document library file entry type where uuid = ? and groupId = ? or throws a NoSuchFileEntryTypeException if it could not be found.

Parameters:
uuid - the uuid
groupId - the group ID
Returns:
the matching document library file entry type
Throws:
NoSuchFileEntryTypeException - if a matching document library file entry type could not be found
SystemException - if a system exception occurred

fetchByUUID_G

public static DLFileEntryType fetchByUUID_G(String uuid,
                                            long groupId)
                                     throws SystemException
Returns the document library file entry type 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 entry type, or null if a matching document library file entry type could not be found
Throws:
SystemException - if a system exception occurred

fetchByUUID_G

public static DLFileEntryType fetchByUUID_G(String uuid,
                                            long groupId,
                                            boolean retrieveFromCache)
                                     throws SystemException
Returns the document library file entry type 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 use the finder cache
Returns:
the matching document library file entry type, or null if a matching document library file entry type could not be found
Throws:
SystemException - if a system exception occurred

findByGroupId

public static List<DLFileEntryType> findByGroupId(long groupId)
                                           throws SystemException
Returns all the document library file entry types where groupId = ?.

Parameters:
groupId - the group ID
Returns:
the matching document library file entry types
Throws:
SystemException - if a system exception occurred

findByGroupId

public static List<DLFileEntryType> findByGroupId(long groupId,
                                                  int start,
                                                  int end)
                                           throws SystemException
Returns a range of all the document library file entry types where groupId = ?.

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.

Parameters:
groupId - the group ID
start - the lower bound of the range of document library file entry types
end - the upper bound of the range of document library file entry types (not inclusive)
Returns:
the range of matching document library file entry types
Throws:
SystemException - if a system exception occurred

findByGroupId

public static List<DLFileEntryType> findByGroupId(long groupId,
                                                  int start,
                                                  int end,
                                                  OrderByComparator orderByComparator)
                                           throws SystemException
Returns an ordered range of all the document library file entry types where groupId = ?.

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.

Parameters:
groupId - the group ID
start - the lower bound of the range of document library file entry types
end - the upper bound of the range of document library file entry types (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
Returns:
the ordered range of matching document library file entry types
Throws:
SystemException - if a system exception occurred

findByGroupId_First

public static DLFileEntryType findByGroupId_First(long groupId,
                                                  OrderByComparator orderByComparator)
                                           throws SystemException,
                                                  NoSuchFileEntryTypeException
Returns the first document library file entry type in the ordered set where groupId = ?.

Parameters:
groupId - the group ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the first matching document library file entry type
Throws:
NoSuchFileEntryTypeException - if a matching document library file entry type could not be found
SystemException - if a system exception occurred

fetchByGroupId_First

public static DLFileEntryType fetchByGroupId_First(long groupId,
                                                   OrderByComparator orderByComparator)
                                            throws SystemException
Returns the first document library file entry type in the ordered set where groupId = ?.

Parameters:
groupId - the group ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the first matching document library file entry type, or null if a matching document library file entry type could not be found
Throws:
SystemException - if a system exception occurred

findByGroupId_Last

public static DLFileEntryType findByGroupId_Last(long groupId,
                                                 OrderByComparator orderByComparator)
                                          throws SystemException,
                                                 NoSuchFileEntryTypeException
Returns the last document library file entry type in the ordered set where groupId = ?.

Parameters:
groupId - the group ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the last matching document library file entry type
Throws:
NoSuchFileEntryTypeException - if a matching document library file entry type could not be found
SystemException - if a system exception occurred

fetchByGroupId_Last

public static DLFileEntryType fetchByGroupId_Last(long groupId,
                                                  OrderByComparator orderByComparator)
                                           throws SystemException
Returns the last document library file entry type in the ordered set where groupId = ?.

Parameters:
groupId - the group ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the last matching document library file entry type, or null if a matching document library file entry type could not be found
Throws:
SystemException - if a system exception occurred

findByGroupId_PrevAndNext

public static DLFileEntryType[] findByGroupId_PrevAndNext(long fileEntryTypeId,
                                                          long groupId,
                                                          OrderByComparator orderByComparator)
                                                   throws SystemException,
                                                          NoSuchFileEntryTypeException
Returns the document library file entry types before and after the current document library file entry type in the ordered set where groupId = ?.

Parameters:
fileEntryTypeId - the primary key of the current document library file entry type
groupId - the group ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the previous, current, and next document library file entry type
Throws:
NoSuchFileEntryTypeException - if a document library file entry type with the primary key could not be found
SystemException - if a system exception occurred

findByGroupId

public static List<DLFileEntryType> findByGroupId(long[] groupIds)
                                           throws SystemException
Returns all the document library file entry types where groupId = any ?.

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.

Parameters:
groupIds - the group IDs
Returns:
the matching document library file entry types
Throws:
SystemException - if a system exception occurred

findByGroupId

public static List<DLFileEntryType> findByGroupId(long[] groupIds,
                                                  int start,
                                                  int end)
                                           throws SystemException
Returns a range of all the document library file entry types where groupId = any ?.

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.

Parameters:
groupIds - the group IDs
start - the lower bound of the range of document library file entry types
end - the upper bound of the range of document library file entry types (not inclusive)
Returns:
the range of matching document library file entry types
Throws:
SystemException - if a system exception occurred

findByGroupId

public static List<DLFileEntryType> findByGroupId(long[] groupIds,
                                                  int start,
                                                  int end,
                                                  OrderByComparator orderByComparator)
                                           throws SystemException
Returns an ordered range of all the document library file entry types where groupId = any ?.

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.

Parameters:
groupIds - the group IDs
start - the lower bound of the range of document library file entry types
end - the upper bound of the range of document library file entry types (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
Returns:
the ordered range of matching document library file entry types
Throws:
SystemException - if a system exception occurred

filterFindByGroupId

public static List<DLFileEntryType> filterFindByGroupId(long groupId)
                                                 throws SystemException
Returns all the document library file entry types that the user has permission to view where groupId = ?.

Parameters:
groupId - the group ID
Returns:
the matching document library file entry types that the user has permission to view
Throws:
SystemException - if a system exception occurred

filterFindByGroupId

public static List<DLFileEntryType> filterFindByGroupId(long groupId,
                                                        int start,
                                                        int end)
                                                 throws SystemException
Returns a range of all the document library file entry types that the user has permission to view where groupId = ?.

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.

Parameters:
groupId - the group ID
start - the lower bound of the range of document library file entry types
end - the upper bound of the range of document library file entry types (not inclusive)
Returns:
the range of matching document library file entry types that the user has permission to view
Throws:
SystemException - if a system exception occurred

filterFindByGroupId

public static List<DLFileEntryType> filterFindByGroupId(long groupId,
                                                        int start,
                                                        int end,
                                                        OrderByComparator orderByComparator)
                                                 throws SystemException
Returns an ordered range of all the document library file entry types that the user has permissions to view where groupId = ?.

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.

Parameters:
groupId - the group ID
start - the lower bound of the range of document library file entry types
end - the upper bound of the range of document library file entry types (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
Returns:
the ordered range of matching document library file entry types that the user has permission to view
Throws:
SystemException - if a system exception occurred

filterFindByGroupId_PrevAndNext

public static DLFileEntryType[] filterFindByGroupId_PrevAndNext(long fileEntryTypeId,
                                                                long groupId,
                                                                OrderByComparator orderByComparator)
                                                         throws SystemException,
                                                                NoSuchFileEntryTypeException
Returns the document library file entry types before and after the current document library file entry type in the ordered set of document library file entry types that the user has permission to view where groupId = ?.

Parameters:
fileEntryTypeId - the primary key of the current document library file entry type
groupId - the group ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the previous, current, and next document library file entry type
Throws:
NoSuchFileEntryTypeException - if a document library file entry type with the primary key could not be found
SystemException - if a system exception occurred

filterFindByGroupId

public static List<DLFileEntryType> filterFindByGroupId(long[] groupIds)
                                                 throws SystemException
Returns all the document library file entry types that the user has permission to view where groupId = any ?.

Parameters:
groupIds - the group IDs
Returns:
the matching document library file entry types that the user has permission to view
Throws:
SystemException - if a system exception occurred

filterFindByGroupId

public static List<DLFileEntryType> filterFindByGroupId(long[] groupIds,
                                                        int start,
                                                        int end)
                                                 throws SystemException
Returns a range of all the document library file entry types that the user has permission to view where groupId = any ?.

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.

Parameters:
groupIds - the group IDs
start - the lower bound of the range of document library file entry types
end - the upper bound of the range of document library file entry types (not inclusive)
Returns:
the range of matching document library file entry types that the user has permission to view
Throws:
SystemException - if a system exception occurred

filterFindByGroupId

public static List<DLFileEntryType> filterFindByGroupId(long[] groupIds,
                                                        int start,
                                                        int end,
                                                        OrderByComparator orderByComparator)
                                                 throws SystemException
Returns an ordered range of all the document library file entry types that the user has permission to view where groupId = any ?.

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.

Parameters:
groupIds - the group IDs
start - the lower bound of the range of document library file entry types
end - the upper bound of the range of document library file entry types (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
Returns:
the ordered range of matching document library file entry types that the user has permission to view
Throws:
SystemException - if a system exception occurred

findByG_N

public static DLFileEntryType findByG_N(long groupId,
                                        String name)
                                 throws SystemException,
                                        NoSuchFileEntryTypeException
Returns the document library file entry type where groupId = ? and name = ? or throws a NoSuchFileEntryTypeException if it could not be found.

Parameters:
groupId - the group ID
name - the name
Returns:
the matching document library file entry type
Throws:
NoSuchFileEntryTypeException - if a matching document library file entry type could not be found
SystemException - if a system exception occurred

fetchByG_N

public static DLFileEntryType fetchByG_N(long groupId,
                                         String name)
                                  throws SystemException
Returns the document library file entry type where groupId = ? and name = ? or returns null if it could not be found. Uses the finder cache.

Parameters:
groupId - the group ID
name - the name
Returns:
the matching document library file entry type, or null if a matching document library file entry type could not be found
Throws:
SystemException - if a system exception occurred

fetchByG_N

public static DLFileEntryType fetchByG_N(long groupId,
                                         String name,
                                         boolean retrieveFromCache)
                                  throws SystemException
Returns the document library file entry type where groupId = ? and name = ? or returns null if it could not be found, optionally using the finder cache.

Parameters:
groupId - the group ID
name - the name
retrieveFromCache - whether to use the finder cache
Returns:
the matching document library file entry type, or null if a matching document library file entry type could not be found
Throws:
SystemException - if a system exception occurred

findAll

public static List<DLFileEntryType> findAll()
                                     throws SystemException
Returns all the document library file entry types.

Returns:
the document library file entry types
Throws:
SystemException - if a system exception occurred

findAll

public static List<DLFileEntryType> findAll(int start,
                                            int end)
                                     throws SystemException
Returns a range of all the document library file entry types.

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.

Parameters:
start - the lower bound of the range of document library file entry types
end - the upper bound of the range of document library file entry types (not inclusive)
Returns:
the range of document library file entry types
Throws:
SystemException - if a system exception occurred

findAll

public static List<DLFileEntryType> findAll(int start,
                                            int end,
                                            OrderByComparator orderByComparator)
                                     throws SystemException
Returns an ordered range of all the document library file entry types.

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.

Parameters:
start - the lower bound of the range of document library file entry types
end - the upper bound of the range of document library file entry types (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
Returns:
the ordered range of document library file entry types
Throws:
SystemException - if a system exception occurred

removeByUuid

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

Parameters:
uuid - the uuid
Throws:
SystemException - if a system exception occurred

removeByUUID_G

public static DLFileEntryType removeByUUID_G(String uuid,
                                             long groupId)
                                      throws SystemException,
                                             NoSuchFileEntryTypeException
Removes the document library file entry type where uuid = ? and groupId = ? from the database.

Parameters:
uuid - the uuid
groupId - the group ID
Returns:
the document library file entry type that was removed
Throws:
SystemException - if a system exception occurred
NoSuchFileEntryTypeException

removeByGroupId

public static void removeByGroupId(long groupId)
                            throws SystemException
Removes all the document library file entry types where groupId = ? from the database.

Parameters:
groupId - the group ID
Throws:
SystemException - if a system exception occurred

removeByG_N

public static DLFileEntryType removeByG_N(long groupId,
                                          String name)
                                   throws SystemException,
                                          NoSuchFileEntryTypeException
Removes the document library file entry type where groupId = ? and name = ? from the database.

Parameters:
groupId - the group ID
name - the name
Returns:
the document library file entry type that was removed
Throws:
SystemException - if a system exception occurred
NoSuchFileEntryTypeException

removeAll

public static void removeAll()
                      throws SystemException
Removes all the document library file entry types from the database.

Throws:
SystemException - if a system exception occurred

countByUuid

public static int countByUuid(String uuid)
                       throws SystemException
Returns the number of document library file entry types where uuid = ?.

Parameters:
uuid - the uuid
Returns:
the number of matching document library file entry types
Throws:
SystemException - if a system exception occurred

countByUUID_G

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

Parameters:
uuid - the uuid
groupId - the group ID
Returns:
the number of matching document library file entry types
Throws:
SystemException - if a system exception occurred

countByGroupId

public static int countByGroupId(long groupId)
                          throws SystemException
Returns the number of document library file entry types where groupId = ?.

Parameters:
groupId - the group ID
Returns:
the number of matching document library file entry types
Throws:
SystemException - if a system exception occurred

countByGroupId

public static int countByGroupId(long[] groupIds)
                          throws SystemException
Returns the number of document library file entry types where groupId = any ?.

Parameters:
groupIds - the group IDs
Returns:
the number of matching document library file entry types
Throws:
SystemException - if a system exception occurred

filterCountByGroupId

public static int filterCountByGroupId(long groupId)
                                throws SystemException
Returns the number of document library file entry types that the user has permission to view where groupId = ?.

Parameters:
groupId - the group ID
Returns:
the number of matching document library file entry types that the user has permission to view
Throws:
SystemException - if a system exception occurred

filterCountByGroupId

public static int filterCountByGroupId(long[] groupIds)
                                throws SystemException
Returns the number of document library file entry types that the user has permission to view where groupId = any ?.

Parameters:
groupIds - the group IDs
Returns:
the number of matching document library file entry types that the user has permission to view
Throws:
SystemException - if a system exception occurred

countByG_N

public static int countByG_N(long groupId,
                             String name)
                      throws SystemException
Returns the number of document library file entry types where groupId = ? and name = ?.

Parameters:
groupId - the group ID
name - the name
Returns:
the number of matching document library file entry types
Throws:
SystemException - if a system exception occurred

countAll

public static int countAll()
                    throws SystemException
Returns the number of document library file entry types.

Returns:
the number of document library file entry types
Throws:
SystemException - if a system exception occurred

getDLFolders

public static List<DLFolder> getDLFolders(long pk)
                                   throws SystemException
Returns all the document library folders associated with the document library file entry type.

Parameters:
pk - the primary key of the document library file entry type
Returns:
the document library folders associated with the document library file entry type
Throws:
SystemException - if a system exception occurred

getDLFolders

public static List<DLFolder> getDLFolders(long pk,
                                          int start,
                                          int end)
                                   throws SystemException
Returns a range of all the document library folders associated with the document library file entry type.

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.

Parameters:
pk - the primary key of the document library file entry type
start - the lower bound of the range of document library file entry types
end - the upper bound of the range of document library file entry types (not inclusive)
Returns:
the range of document library folders associated with the document library file entry type
Throws:
SystemException - if a system exception occurred

getDLFolders

public static List<DLFolder> getDLFolders(long pk,
                                          int start,
                                          int end,
                                          OrderByComparator orderByComparator)
                                   throws SystemException
Returns an ordered range of all the document library folders associated with the document library file entry type.

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.

Parameters:
pk - the primary key of the document library file entry type
start - the lower bound of the range of document library file entry types
end - the upper bound of the range of document library file entry types (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
Returns:
the ordered range of document library folders associated with the document library file entry type
Throws:
SystemException - if a system exception occurred

getDLFoldersSize

public static int getDLFoldersSize(long pk)
                            throws SystemException
Returns the number of document library folders associated with the document library file entry type.

Parameters:
pk - the primary key of the document library file entry type
Returns:
the number of document library folders associated with the document library file entry type
Throws:
SystemException - if a system exception occurred

containsDLFolder

public static boolean containsDLFolder(long pk,
                                       long dlFolderPK)
                                throws SystemException
Returns true if the document library folder is associated with the document library file entry type.

Parameters:
pk - the primary key of the document library file entry type
dlFolderPK - the primary key of the document library folder
Returns:
true if the document library folder is associated with the document library file entry type; false otherwise
Throws:
SystemException - if a system exception occurred

containsDLFolders

public static boolean containsDLFolders(long pk)
                                 throws SystemException
Returns true if the document library file entry type has any document library folders associated with it.

Parameters:
pk - the primary key of the document library file entry type to check for associations with document library folders
Returns:
true if the document library file entry type has any document library folders associated with it; false otherwise
Throws:
SystemException - if a system exception occurred

addDLFolder

public static void addDLFolder(long pk,
                               long dlFolderPK)
                        throws SystemException
Adds an association between the document library file entry type and the document library folder. Also notifies the appropriate model listeners and clears the mapping table finder cache.

Parameters:
pk - the primary key of the document library file entry type
dlFolderPK - the primary key of the document library folder
Throws:
SystemException - if a system exception occurred

addDLFolder

public static void addDLFolder(long pk,
                               DLFolder dlFolder)
                        throws SystemException
Adds an association between the document library file entry type and the document library folder. Also notifies the appropriate model listeners and clears the mapping table finder cache.

Parameters:
pk - the primary key of the document library file entry type
dlFolder - the document library folder
Throws:
SystemException - if a system exception occurred

addDLFolders

public static void addDLFolders(long pk,
                                long[] dlFolderPKs)
                         throws SystemException
Adds an association between the document library file entry type and the document library folders. Also notifies the appropriate model listeners and clears the mapping table finder cache.

Parameters:
pk - the primary key of the document library file entry type
dlFolderPKs - the primary keys of the document library folders
Throws:
SystemException - if a system exception occurred

addDLFolders

public static void addDLFolders(long pk,
                                List<DLFolder> dlFolders)
                         throws SystemException
Adds an association between the document library file entry type and the document library folders. Also notifies the appropriate model listeners and clears the mapping table finder cache.

Parameters:
pk - the primary key of the document library file entry type
dlFolders - the document library folders
Throws:
SystemException - if a system exception occurred

clearDLFolders

public static void clearDLFolders(long pk)
                           throws SystemException
Clears all associations between the document library file entry type and its document library folders. Also notifies the appropriate model listeners and clears the mapping table finder cache.

Parameters:
pk - the primary key of the document library file entry type to clear the associated document library folders from
Throws:
SystemException - if a system exception occurred

removeDLFolder

public static void removeDLFolder(long pk,
                                  long dlFolderPK)
                           throws SystemException
Removes the association between the document library file entry type and the document library folder. Also notifies the appropriate model listeners and clears the mapping table finder cache.

Parameters:
pk - the primary key of the document library file entry type
dlFolderPK - the primary key of the document library folder
Throws:
SystemException - if a system exception occurred

removeDLFolder

public static void removeDLFolder(long pk,
                                  DLFolder dlFolder)
                           throws SystemException
Removes the association between the document library file entry type and the document library folder. Also notifies the appropriate model listeners and clears the mapping table finder cache.

Parameters:
pk - the primary key of the document library file entry type
dlFolder - the document library folder
Throws:
SystemException - if a system exception occurred

removeDLFolders

public static void removeDLFolders(long pk,
                                   long[] dlFolderPKs)
                            throws SystemException
Removes the association between the document library file entry type and the document library folders. Also notifies the appropriate model listeners and clears the mapping table finder cache.

Parameters:
pk - the primary key of the document library file entry type
dlFolderPKs - the primary keys of the document library folders
Throws:
SystemException - if a system exception occurred

removeDLFolders

public static void removeDLFolders(long pk,
                                   List<DLFolder> dlFolders)
                            throws SystemException
Removes the association between the document library file entry type and the document library folders. Also notifies the appropriate model listeners and clears the mapping table finder cache.

Parameters:
pk - the primary key of the document library file entry type
dlFolders - the document library folders
Throws:
SystemException - if a system exception occurred

setDLFolders

public static void setDLFolders(long pk,
                                long[] dlFolderPKs)
                         throws SystemException
Sets the document library folders associated with the document library file entry type, removing and adding associations as necessary. Also notifies the appropriate model listeners and clears the mapping table finder cache.

Parameters:
pk - the primary key of the document library file entry type
dlFolderPKs - the primary keys of the document library folders to be associated with the document library file entry type
Throws:
SystemException - if a system exception occurred

setDLFolders

public static void setDLFolders(long pk,
                                List<DLFolder> dlFolders)
                         throws SystemException
Sets the document library folders associated with the document library file entry type, removing and adding associations as necessary. Also notifies the appropriate model listeners and clears the mapping table finder cache.

Parameters:
pk - the primary key of the document library file entry type
dlFolders - the document library folders to be associated with the document library file entry type
Throws:
SystemException - if a system exception occurred

getDDMStructures

public static List<DDMStructure> getDDMStructures(long pk)
                                           throws SystemException
Returns all the d d m structures associated with the document library file entry type.

Parameters:
pk - the primary key of the document library file entry type
Returns:
the d d m structures associated with the document library file entry type
Throws:
SystemException - if a system exception occurred

getDDMStructures

public static List<DDMStructure> getDDMStructures(long pk,
                                                  int start,
                                                  int end)
                                           throws SystemException
Returns a range of all the d d m structures associated with the document library file entry type.

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.

Parameters:
pk - the primary key of the document library file entry type
start - the lower bound of the range of document library file entry types
end - the upper bound of the range of document library file entry types (not inclusive)
Returns:
the range of d d m structures associated with the document library file entry type
Throws:
SystemException - if a system exception occurred

getDDMStructures

public static List<DDMStructure> getDDMStructures(long pk,
                                                  int start,
                                                  int end,
                                                  OrderByComparator orderByComparator)
                                           throws SystemException
Returns an ordered range of all the d d m structures associated with the document library file entry type.

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.

Parameters:
pk - the primary key of the document library file entry type
start - the lower bound of the range of document library file entry types
end - the upper bound of the range of document library file entry types (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
Returns:
the ordered range of d d m structures associated with the document library file entry type
Throws:
SystemException - if a system exception occurred

getDDMStructuresSize

public static int getDDMStructuresSize(long pk)
                                throws SystemException
Returns the number of d d m structures associated with the document library file entry type.

Parameters:
pk - the primary key of the document library file entry type
Returns:
the number of d d m structures associated with the document library file entry type
Throws:
SystemException - if a system exception occurred

containsDDMStructure

public static boolean containsDDMStructure(long pk,
                                           long ddmStructurePK)
                                    throws SystemException
Returns true if the d d m structure is associated with the document library file entry type.

Parameters:
pk - the primary key of the document library file entry type
ddmStructurePK - the primary key of the d d m structure
Returns:
true if the d d m structure is associated with the document library file entry type; false otherwise
Throws:
SystemException - if a system exception occurred

containsDDMStructures

public static boolean containsDDMStructures(long pk)
                                     throws SystemException
Returns true if the document library file entry type has any d d m structures associated with it.

Parameters:
pk - the primary key of the document library file entry type to check for associations with d d m structures
Returns:
true if the document library file entry type has any d d m structures associated with it; false otherwise
Throws:
SystemException - if a system exception occurred

addDDMStructure

public static void addDDMStructure(long pk,
                                   long ddmStructurePK)
                            throws SystemException
Adds an association between the document library file entry type and the d d m structure. Also notifies the appropriate model listeners and clears the mapping table finder cache.

Parameters:
pk - the primary key of the document library file entry type
ddmStructurePK - the primary key of the d d m structure
Throws:
SystemException - if a system exception occurred

addDDMStructure

public static void addDDMStructure(long pk,
                                   DDMStructure ddmStructure)
                            throws SystemException
Adds an association between the document library file entry type and the d d m structure. Also notifies the appropriate model listeners and clears the mapping table finder cache.

Parameters:
pk - the primary key of the document library file entry type
ddmStructure - the d d m structure
Throws:
SystemException - if a system exception occurred

addDDMStructures

public static void addDDMStructures(long pk,
                                    long[] ddmStructurePKs)
                             throws SystemException
Adds an association between the document library file entry type and the d d m structures. Also notifies the appropriate model listeners and clears the mapping table finder cache.

Parameters:
pk - the primary key of the document library file entry type
ddmStructurePKs - the primary keys of the d d m structures
Throws:
SystemException - if a system exception occurred

addDDMStructures

public static void addDDMStructures(long pk,
                                    List<DDMStructure> ddmStructures)
                             throws SystemException
Adds an association between the document library file entry type and the d d m structures. Also notifies the appropriate model listeners and clears the mapping table finder cache.

Parameters:
pk - the primary key of the document library file entry type
ddmStructures - the d d m structures
Throws:
SystemException - if a system exception occurred

clearDDMStructures

public static void clearDDMStructures(long pk)
                               throws SystemException
Clears all associations between the document library file entry type and its d d m structures. Also notifies the appropriate model listeners and clears the mapping table finder cache.

Parameters:
pk - the primary key of the document library file entry type to clear the associated d d m structures from
Throws:
SystemException - if a system exception occurred

removeDDMStructure

public static void removeDDMStructure(long pk,
                                      long ddmStructurePK)
                               throws SystemException
Removes the association between the document library file entry type and the d d m structure. Also notifies the appropriate model listeners and clears the mapping table finder cache.

Parameters:
pk - the primary key of the document library file entry type
ddmStructurePK - the primary key of the d d m structure
Throws:
SystemException - if a system exception occurred

removeDDMStructure

public static void removeDDMStructure(long pk,
                                      DDMStructure ddmStructure)
                               throws SystemException
Removes the association between the document library file entry type and the d d m structure. Also notifies the appropriate model listeners and clears the mapping table finder cache.

Parameters:
pk - the primary key of the document library file entry type
ddmStructure - the d d m structure
Throws:
SystemException - if a system exception occurred

removeDDMStructures

public static void removeDDMStructures(long pk,
                                       long[] ddmStructurePKs)
                                throws SystemException
Removes the association between the document library file entry type and the d d m structures. Also notifies the appropriate model listeners and clears the mapping table finder cache.

Parameters:
pk - the primary key of the document library file entry type
ddmStructurePKs - the primary keys of the d d m structures
Throws:
SystemException - if a system exception occurred

removeDDMStructures

public static void removeDDMStructures(long pk,
                                       List<DDMStructure> ddmStructures)
                                throws SystemException
Removes the association between the document library file entry type and the d d m structures. Also notifies the appropriate model listeners and clears the mapping table finder cache.

Parameters:
pk - the primary key of the document library file entry type
ddmStructures - the d d m structures
Throws:
SystemException - if a system exception occurred

setDDMStructures

public static void setDDMStructures(long pk,
                                    long[] ddmStructurePKs)
                             throws SystemException
Sets the d d m structures associated with the document library file entry type, removing and adding associations as necessary. Also notifies the appropriate model listeners and clears the mapping table finder cache.

Parameters:
pk - the primary key of the document library file entry type
ddmStructurePKs - the primary keys of the d d m structures to be associated with the document library file entry type
Throws:
SystemException - if a system exception occurred

setDDMStructures

public static void setDDMStructures(long pk,
                                    List<DDMStructure> ddmStructures)
                             throws SystemException
Sets the d d m structures associated with the document library file entry type, removing and adding associations as necessary. Also notifies the appropriate model listeners and clears the mapping table finder cache.

Parameters:
pk - the primary key of the document library file entry type
ddmStructures - the d d m structures to be associated with the document library file entry type
Throws:
SystemException - if a system exception occurred

getPersistence

public static DLFileEntryTypePersistence getPersistence()

setPersistence

public void setPersistence(DLFileEntryTypePersistence persistence)
Deprecated. 


Liferay 6.1.2-ce-ga3