Interface DDMStructurePersistence

All Superinterfaces:
com.liferay.portal.kernel.service.persistence.BasePersistence<DDMStructure>, com.liferay.portal.kernel.service.persistence.change.tracking.CTPersistence<DDMStructure>

@ProviderType public interface DDMStructurePersistence extends com.liferay.portal.kernel.service.persistence.BasePersistence<DDMStructure>, com.liferay.portal.kernel.service.persistence.change.tracking.CTPersistence<DDMStructure>
The persistence interface for the ddm structure service.

Caching information and settings can be found in portal.properties

See Also:
Generated:
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    cacheResult(DDMStructure ddmStructure)
    Caches the ddm structure in the entity cache if it is enabled.
    void
    cacheResult(List<DDMStructure> ddmStructures)
    Caches the ddm structures in the entity cache if it is enabled.
    int
    Returns the number of ddm structures.
    int
    countByC_C(long companyId, long classNameId)
    Returns the number of ddm structures where companyId = ? and classNameId = ?.
    int
    countByERC_G_C(String externalReferenceCode, long groupId, long classNameId)
    Returns the number of ddm structures where externalReferenceCode = ? and groupId = ? and classNameId = ?.
    int
    countByG_C(long[] groupIds, long classNameId)
    Returns the number of ddm structures where groupId = any ? and classNameId = ?.
    int
    countByG_C(long groupId, long classNameId)
    Returns the number of ddm structures where groupId = ? and classNameId = ?.
    int
    countByG_C_N_D(long[] groupIds, long classNameId, String name, String description)
    Returns the number of ddm structures where groupId = any ? and classNameId = ? and name = ? and description = ?.
    int
    countByG_C_N_D(long groupId, long classNameId, String name, String description)
    Returns the number of ddm structures where groupId = ? and classNameId = ? and name = ? and description = ?.
    int
    countByG_C_S(long groupId, long classNameId, String structureKey)
    Returns the number of ddm structures where groupId = ? and classNameId = ? and structureKey = ?.
    int
    countByG_N_D(long groupId, String name, String description)
    Returns the number of ddm structures where groupId = ? and name = ? and description = ?.
    int
    countByG_P(long groupId, long parentStructureId)
    Returns the number of ddm structures where groupId = ? and parentStructureId = ?.
    int
    countByGroupId(long groupId)
    Returns the number of ddm structures where groupId = ?.
    int
    countByGroupId(long[] groupIds)
    Returns the number of ddm structures where groupId = any ?.
    int
    countByParentStructureId(long parentStructureId)
    Returns the number of ddm structures where parentStructureId = ?.
    int
    Returns the number of ddm structures where structureKey = ?.
    int
    Returns the number of ddm structures where uuid = ?.
    int
    countByUuid_C(String uuid, long companyId)
    Returns the number of ddm structures where uuid = ? and companyId = ?.
    int
    countByUUID_G(String uuid, long groupId)
    Returns the number of ddm structures where uuid = ? and groupId = ?.
    create(long structureId)
    Creates a new ddm structure with the primary key.
    fetchByC_C_First(long companyId, long classNameId, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
    Returns the first ddm structure in the ordered set where companyId = ? and classNameId = ?.
    fetchByC_C_Last(long companyId, long classNameId, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
    Returns the last ddm structure in the ordered set where companyId = ? and classNameId = ?.
    fetchByERC_G_C(String externalReferenceCode, long groupId, long classNameId)
    Returns the ddm structure where externalReferenceCode = ? and groupId = ? and classNameId = ? or returns null if it could not be found.
    fetchByERC_G_C(String externalReferenceCode, long groupId, long classNameId, boolean useFinderCache)
    Returns the ddm structure where externalReferenceCode = ? and groupId = ? and classNameId = ? or returns null if it could not be found, optionally using the finder cache.
    fetchByG_C_First(long groupId, long classNameId, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
    Returns the first ddm structure in the ordered set where groupId = ? and classNameId = ?.
    fetchByG_C_Last(long groupId, long classNameId, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
    Returns the last ddm structure in the ordered set where groupId = ? and classNameId = ?.
    fetchByG_C_N_D_First(long groupId, long classNameId, String name, String description, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
    Returns the first ddm structure in the ordered set where groupId = ? and classNameId = ? and name = ? and description = ?.
    fetchByG_C_N_D_Last(long groupId, long classNameId, String name, String description, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
    Returns the last ddm structure in the ordered set where groupId = ? and classNameId = ? and name = ? and description = ?.
    fetchByG_C_S(long groupId, long classNameId, String structureKey)
    Returns the ddm structure where groupId = ? and classNameId = ? and structureKey = ? or returns null if it could not be found.
    fetchByG_C_S(long groupId, long classNameId, String structureKey, boolean useFinderCache)
    Returns the ddm structure where groupId = ? and classNameId = ? and structureKey = ? or returns null if it could not be found, optionally using the finder cache.
    fetchByG_N_D_First(long groupId, String name, String description, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
    Returns the first ddm structure in the ordered set where groupId = ? and name = ? and description = ?.
    fetchByG_N_D_Last(long groupId, String name, String description, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
    Returns the last ddm structure in the ordered set where groupId = ? and name = ? and description = ?.
    fetchByG_P_First(long groupId, long parentStructureId, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
    Returns the first ddm structure in the ordered set where groupId = ? and parentStructureId = ?.
    fetchByG_P_Last(long groupId, long parentStructureId, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
    Returns the last ddm structure in the ordered set where groupId = ? and parentStructureId = ?.
    fetchByGroupId_First(long groupId, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
    Returns the first ddm structure in the ordered set where groupId = ?.
    fetchByGroupId_Last(long groupId, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
    Returns the last ddm structure in the ordered set where groupId = ?.
    fetchByParentStructureId_First(long parentStructureId, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
    Returns the first ddm structure in the ordered set where parentStructureId = ?.
    fetchByParentStructureId_Last(long parentStructureId, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
    Returns the last ddm structure in the ordered set where parentStructureId = ?.
    fetchByPrimaryKey(long structureId)
    Returns the ddm structure with the primary key or returns null if it could not be found.
    fetchByStructureKey_First(String structureKey, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
    Returns the first ddm structure in the ordered set where structureKey = ?.
    fetchByStructureKey_Last(String structureKey, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
    Returns the last ddm structure in the ordered set where structureKey = ?.
    fetchByUuid_C_First(String uuid, long companyId, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
    Returns the first ddm structure in the ordered set where uuid = ? and companyId = ?.
    fetchByUuid_C_Last(String uuid, long companyId, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
    Returns the last ddm structure in the ordered set where uuid = ? and companyId = ?.
    fetchByUuid_First(String uuid, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
    Returns the first ddm structure in the ordered set where uuid = ?.
    fetchByUUID_G(String uuid, long groupId)
    Returns the ddm structure where uuid = ? and groupId = ? or returns null if it could not be found.
    fetchByUUID_G(String uuid, long groupId, boolean useFinderCache)
    Returns the ddm structure where uuid = ? and groupId = ? or returns null if it could not be found, optionally using the finder cache.
    fetchByUuid_Last(String uuid, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
    Returns the last ddm structure in the ordered set where uuid = ?.
    int
    filterCountByG_C(long[] groupIds, long classNameId)
    Returns the number of ddm structures that the user has permission to view where groupId = any ? and classNameId = ?.
    int
    filterCountByG_C(long groupId, long classNameId)
    Returns the number of ddm structures that the user has permission to view where groupId = ? and classNameId = ?.
    int
    filterCountByG_C_N_D(long[] groupIds, long classNameId, String name, String description)
    Returns the number of ddm structures that the user has permission to view where groupId = any ? and classNameId = ? and name = ? and description = ?.
    int
    filterCountByG_C_N_D(long groupId, long classNameId, String name, String description)
    Returns the number of ddm structures that the user has permission to view where groupId = ? and classNameId = ? and name = ? and description = ?.
    int
    filterCountByG_N_D(long groupId, String name, String description)
    Returns the number of ddm structures that the user has permission to view where groupId = ? and name = ? and description = ?.
    int
    filterCountByG_P(long groupId, long parentStructureId)
    Returns the number of ddm structures that the user has permission to view where groupId = ? and parentStructureId = ?.
    int
    filterCountByGroupId(long groupId)
    Returns the number of ddm structures that the user has permission to view where groupId = ?.
    int
    filterCountByGroupId(long[] groupIds)
    Returns the number of ddm structures that the user has permission to view where groupId = any ?.
    filterFindByG_C(long[] groupIds, long classNameId)
    Returns all the ddm structures that the user has permission to view where groupId = any ? and classNameId = ?.
    filterFindByG_C(long[] groupIds, long classNameId, int start, int end)
    Returns a range of all the ddm structures that the user has permission to view where groupId = any ? and classNameId = ?.
    filterFindByG_C(long[] groupIds, long classNameId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
    Returns an ordered range of all the ddm structures that the user has permission to view where groupId = any ? and classNameId = ?.
    filterFindByG_C(long groupId, long classNameId)
    Returns all the ddm structures that the user has permission to view where groupId = ? and classNameId = ?.
    filterFindByG_C(long groupId, long classNameId, int start, int end)
    Returns a range of all the ddm structures that the user has permission to view where groupId = ? and classNameId = ?.
    filterFindByG_C(long groupId, long classNameId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
    Returns an ordered range of all the ddm structures that the user has permissions to view where groupId = ? and classNameId = ?.
    filterFindByG_C_N_D(long[] groupIds, long classNameId, String name, String description)
    Returns all the ddm structures that the user has permission to view where groupId = any ? and classNameId = ? and name = ? and description = ?.
    filterFindByG_C_N_D(long[] groupIds, long classNameId, String name, String description, int start, int end)
    Returns a range of all the ddm structures that the user has permission to view where groupId = any ? and classNameId = ? and name = ? and description = ?.
    filterFindByG_C_N_D(long[] groupIds, long classNameId, String name, String description, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
    Returns an ordered range of all the ddm structures that the user has permission to view where groupId = any ? and classNameId = ? and name = ? and description = ?.
    filterFindByG_C_N_D(long groupId, long classNameId, String name, String description)
    Returns all the ddm structures that the user has permission to view where groupId = ? and classNameId = ? and name = ? and description = ?.
    filterFindByG_C_N_D(long groupId, long classNameId, String name, String description, int start, int end)
    Returns a range of all the ddm structures that the user has permission to view where groupId = ? and classNameId = ? and name = ? and description = ?.
    filterFindByG_C_N_D(long groupId, long classNameId, String name, String description, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
    Returns an ordered range of all the ddm structures that the user has permissions to view where groupId = ? and classNameId = ? and name = ? and description = ?.
    filterFindByG_C_N_D_PrevAndNext(long structureId, long groupId, long classNameId, String name, String description, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
    Returns the ddm structures before and after the current ddm structure in the ordered set of ddm structures that the user has permission to view where groupId = ? and classNameId = ? and name = ? and description = ?.
    filterFindByG_C_PrevAndNext(long structureId, long groupId, long classNameId, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
    Returns the ddm structures before and after the current ddm structure in the ordered set of ddm structures that the user has permission to view where groupId = ? and classNameId = ?.
    filterFindByG_N_D(long groupId, String name, String description)
    Returns all the ddm structures that the user has permission to view where groupId = ? and name = ? and description = ?.
    filterFindByG_N_D(long groupId, String name, String description, int start, int end)
    Returns a range of all the ddm structures that the user has permission to view where groupId = ? and name = ? and description = ?.
    filterFindByG_N_D(long groupId, String name, String description, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
    Returns an ordered range of all the ddm structures that the user has permissions to view where groupId = ? and name = ? and description = ?.
    filterFindByG_N_D_PrevAndNext(long structureId, long groupId, String name, String description, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
    Returns the ddm structures before and after the current ddm structure in the ordered set of ddm structures that the user has permission to view where groupId = ? and name = ? and description = ?.
    filterFindByG_P(long groupId, long parentStructureId)
    Returns all the ddm structures that the user has permission to view where groupId = ? and parentStructureId = ?.
    filterFindByG_P(long groupId, long parentStructureId, int start, int end)
    Returns a range of all the ddm structures that the user has permission to view where groupId = ? and parentStructureId = ?.
    filterFindByG_P(long groupId, long parentStructureId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
    Returns an ordered range of all the ddm structures that the user has permissions to view where groupId = ? and parentStructureId = ?.
    filterFindByG_P_PrevAndNext(long structureId, long groupId, long parentStructureId, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
    Returns the ddm structures before and after the current ddm structure in the ordered set of ddm structures that the user has permission to view where groupId = ? and parentStructureId = ?.
    filterFindByGroupId(long groupId)
    Returns all the ddm structures that the user has permission to view where groupId = ?.
    filterFindByGroupId(long[] groupIds)
    Returns all the ddm structures that the user has permission to view where groupId = any ?.
    filterFindByGroupId(long[] groupIds, int start, int end)
    Returns a range of all the ddm structures that the user has permission to view where groupId = any ?.
    filterFindByGroupId(long[] groupIds, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
    Returns an ordered range of all the ddm structures that the user has permission to view where groupId = any ?.
    filterFindByGroupId(long groupId, int start, int end)
    Returns a range of all the ddm structures that the user has permission to view where groupId = ?.
    filterFindByGroupId(long groupId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
    Returns an ordered range of all the ddm structures that the user has permissions to view where groupId = ?.
    filterFindByGroupId_PrevAndNext(long structureId, long groupId, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
    Returns the ddm structures before and after the current ddm structure in the ordered set of ddm structures that the user has permission to view where groupId = ?.
    Returns all the ddm structures.
    findAll(int start, int end)
    Returns a range of all the ddm structures.
    findAll(int start, int end, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
    Returns an ordered range of all the ddm structures.
    findAll(int start, int end, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the ddm structures.
    findByC_C(long companyId, long classNameId)
    Returns all the ddm structures where companyId = ? and classNameId = ?.
    findByC_C(long companyId, long classNameId, int start, int end)
    Returns a range of all the ddm structures where companyId = ? and classNameId = ?.
    findByC_C(long companyId, long classNameId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
    Returns an ordered range of all the ddm structures where companyId = ? and classNameId = ?.
    findByC_C(long companyId, long classNameId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the ddm structures where companyId = ? and classNameId = ?.
    findByC_C_First(long companyId, long classNameId, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
    Returns the first ddm structure in the ordered set where companyId = ? and classNameId = ?.
    findByC_C_Last(long companyId, long classNameId, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
    Returns the last ddm structure in the ordered set where companyId = ? and classNameId = ?.
    findByC_C_PrevAndNext(long structureId, long companyId, long classNameId, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
    Returns the ddm structures before and after the current ddm structure in the ordered set where companyId = ? and classNameId = ?.
    findByERC_G_C(String externalReferenceCode, long groupId, long classNameId)
    Returns the ddm structure where externalReferenceCode = ? and groupId = ? and classNameId = ? or throws a NoSuchStructureException if it could not be found.
    findByG_C(long[] groupIds, long classNameId)
    Returns all the ddm structures where groupId = any ? and classNameId = ?.
    findByG_C(long[] groupIds, long classNameId, int start, int end)
    Returns a range of all the ddm structures where groupId = any ? and classNameId = ?.
    findByG_C(long[] groupIds, long classNameId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
    Returns an ordered range of all the ddm structures where groupId = any ? and classNameId = ?.
    findByG_C(long[] groupIds, long classNameId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the ddm structures where groupId = ? and classNameId = ?, optionally using the finder cache.
    findByG_C(long groupId, long classNameId)
    Returns all the ddm structures where groupId = ? and classNameId = ?.
    findByG_C(long groupId, long classNameId, int start, int end)
    Returns a range of all the ddm structures where groupId = ? and classNameId = ?.
    findByG_C(long groupId, long classNameId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
    Returns an ordered range of all the ddm structures where groupId = ? and classNameId = ?.
    findByG_C(long groupId, long classNameId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the ddm structures where groupId = ? and classNameId = ?.
    findByG_C_First(long groupId, long classNameId, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
    Returns the first ddm structure in the ordered set where groupId = ? and classNameId = ?.
    findByG_C_Last(long groupId, long classNameId, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
    Returns the last ddm structure in the ordered set where groupId = ? and classNameId = ?.
    findByG_C_N_D(long[] groupIds, long classNameId, String name, String description)
    Returns all the ddm structures where groupId = any ? and classNameId = ? and name = ? and description = ?.
    findByG_C_N_D(long[] groupIds, long classNameId, String name, String description, int start, int end)
    Returns a range of all the ddm structures where groupId = any ? and classNameId = ? and name = ? and description = ?.
    findByG_C_N_D(long[] groupIds, long classNameId, String name, String description, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
    Returns an ordered range of all the ddm structures where groupId = any ? and classNameId = ? and name = ? and description = ?.
    findByG_C_N_D(long[] groupIds, long classNameId, String name, String description, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the ddm structures where groupId = ? and classNameId = ? and name = ? and description = ?, optionally using the finder cache.
    findByG_C_N_D(long groupId, long classNameId, String name, String description)
    Returns all the ddm structures where groupId = ? and classNameId = ? and name = ? and description = ?.
    findByG_C_N_D(long groupId, long classNameId, String name, String description, int start, int end)
    Returns a range of all the ddm structures where groupId = ? and classNameId = ? and name = ? and description = ?.
    findByG_C_N_D(long groupId, long classNameId, String name, String description, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
    Returns an ordered range of all the ddm structures where groupId = ? and classNameId = ? and name = ? and description = ?.
    findByG_C_N_D(long groupId, long classNameId, String name, String description, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the ddm structures where groupId = ? and classNameId = ? and name = ? and description = ?.
    findByG_C_N_D_First(long groupId, long classNameId, String name, String description, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
    Returns the first ddm structure in the ordered set where groupId = ? and classNameId = ? and name = ? and description = ?.
    findByG_C_N_D_Last(long groupId, long classNameId, String name, String description, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
    Returns the last ddm structure in the ordered set where groupId = ? and classNameId = ? and name = ? and description = ?.
    findByG_C_N_D_PrevAndNext(long structureId, long groupId, long classNameId, String name, String description, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
    Returns the ddm structures before and after the current ddm structure in the ordered set where groupId = ? and classNameId = ? and name = ? and description = ?.
    findByG_C_PrevAndNext(long structureId, long groupId, long classNameId, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
    Returns the ddm structures before and after the current ddm structure in the ordered set where groupId = ? and classNameId = ?.
    findByG_C_S(long groupId, long classNameId, String structureKey)
    Returns the ddm structure where groupId = ? and classNameId = ? and structureKey = ? or throws a NoSuchStructureException if it could not be found.
    findByG_N_D(long groupId, String name, String description)
    Returns all the ddm structures where groupId = ? and name = ? and description = ?.
    findByG_N_D(long groupId, String name, String description, int start, int end)
    Returns a range of all the ddm structures where groupId = ? and name = ? and description = ?.
    findByG_N_D(long groupId, String name, String description, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
    Returns an ordered range of all the ddm structures where groupId = ? and name = ? and description = ?.
    findByG_N_D(long groupId, String name, String description, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the ddm structures where groupId = ? and name = ? and description = ?.
    findByG_N_D_First(long groupId, String name, String description, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
    Returns the first ddm structure in the ordered set where groupId = ? and name = ? and description = ?.
    findByG_N_D_Last(long groupId, String name, String description, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
    Returns the last ddm structure in the ordered set where groupId = ? and name = ? and description = ?.
    findByG_N_D_PrevAndNext(long structureId, long groupId, String name, String description, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
    Returns the ddm structures before and after the current ddm structure in the ordered set where groupId = ? and name = ? and description = ?.
    findByG_P(long groupId, long parentStructureId)
    Returns all the ddm structures where groupId = ? and parentStructureId = ?.
    findByG_P(long groupId, long parentStructureId, int start, int end)
    Returns a range of all the ddm structures where groupId = ? and parentStructureId = ?.
    findByG_P(long groupId, long parentStructureId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
    Returns an ordered range of all the ddm structures where groupId = ? and parentStructureId = ?.
    findByG_P(long groupId, long parentStructureId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the ddm structures where groupId = ? and parentStructureId = ?.
    findByG_P_First(long groupId, long parentStructureId, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
    Returns the first ddm structure in the ordered set where groupId = ? and parentStructureId = ?.
    findByG_P_Last(long groupId, long parentStructureId, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
    Returns the last ddm structure in the ordered set where groupId = ? and parentStructureId = ?.
    findByG_P_PrevAndNext(long structureId, long groupId, long parentStructureId, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
    Returns the ddm structures before and after the current ddm structure in the ordered set where groupId = ? and parentStructureId = ?.
    findByGroupId(long groupId)
    Returns all the ddm structures where groupId = ?.
    findByGroupId(long[] groupIds)
    Returns all the ddm structures where groupId = any ?.
    findByGroupId(long[] groupIds, int start, int end)
    Returns a range of all the ddm structures where groupId = any ?.
    findByGroupId(long[] groupIds, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
    Returns an ordered range of all the ddm structures where groupId = any ?.
    findByGroupId(long[] groupIds, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the ddm structures where groupId = ?, optionally using the finder cache.
    findByGroupId(long groupId, int start, int end)
    Returns a range of all the ddm structures where groupId = ?.
    findByGroupId(long groupId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
    Returns an ordered range of all the ddm structures where groupId = ?.
    findByGroupId(long groupId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the ddm structures where groupId = ?.
    findByGroupId_First(long groupId, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
    Returns the first ddm structure in the ordered set where groupId = ?.
    findByGroupId_Last(long groupId, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
    Returns the last ddm structure in the ordered set where groupId = ?.
    findByGroupId_PrevAndNext(long structureId, long groupId, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
    Returns the ddm structures before and after the current ddm structure in the ordered set where groupId = ?.
    findByParentStructureId(long parentStructureId)
    Returns all the ddm structures where parentStructureId = ?.
    findByParentStructureId(long parentStructureId, int start, int end)
    Returns a range of all the ddm structures where parentStructureId = ?.
    findByParentStructureId(long parentStructureId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
    Returns an ordered range of all the ddm structures where parentStructureId = ?.
    findByParentStructureId(long parentStructureId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the ddm structures where parentStructureId = ?.
    findByParentStructureId_First(long parentStructureId, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
    Returns the first ddm structure in the ordered set where parentStructureId = ?.
    findByParentStructureId_Last(long parentStructureId, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
    Returns the last ddm structure in the ordered set where parentStructureId = ?.
    findByParentStructureId_PrevAndNext(long structureId, long parentStructureId, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
    Returns the ddm structures before and after the current ddm structure in the ordered set where parentStructureId = ?.
    findByPrimaryKey(long structureId)
    Returns the ddm structure with the primary key or throws a NoSuchStructureException if it could not be found.
    findByStructureKey(String structureKey)
    Returns all the ddm structures where structureKey = ?.
    findByStructureKey(String structureKey, int start, int end)
    Returns a range of all the ddm structures where structureKey = ?.
    findByStructureKey(String structureKey, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
    Returns an ordered range of all the ddm structures where structureKey = ?.
    findByStructureKey(String structureKey, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the ddm structures where structureKey = ?.
    findByStructureKey_First(String structureKey, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
    Returns the first ddm structure in the ordered set where structureKey = ?.
    findByStructureKey_Last(String structureKey, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
    Returns the last ddm structure in the ordered set where structureKey = ?.
    findByStructureKey_PrevAndNext(long structureId, String structureKey, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
    Returns the ddm structures before and after the current ddm structure in the ordered set where structureKey = ?.
    Returns all the ddm structures where uuid = ?.
    findByUuid(String uuid, int start, int end)
    Returns a range of all the ddm structures where uuid = ?.
    findByUuid(String uuid, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
    Returns an ordered range of all the ddm structures where uuid = ?.
    findByUuid(String uuid, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the ddm structures where uuid = ?.
    findByUuid_C(String uuid, long companyId)
    Returns all the ddm structures where uuid = ? and companyId = ?.
    findByUuid_C(String uuid, long companyId, int start, int end)
    Returns a range of all the ddm structures where uuid = ? and companyId = ?.
    findByUuid_C(String uuid, long companyId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
    Returns an ordered range of all the ddm structures where uuid = ? and companyId = ?.
    findByUuid_C(String uuid, long companyId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the ddm structures where uuid = ? and companyId = ?.
    findByUuid_C_First(String uuid, long companyId, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
    Returns the first ddm structure in the ordered set where uuid = ? and companyId = ?.
    findByUuid_C_Last(String uuid, long companyId, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
    Returns the last ddm structure in the ordered set where uuid = ? and companyId = ?.
    findByUuid_C_PrevAndNext(long structureId, String uuid, long companyId, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
    Returns the ddm structures before and after the current ddm structure in the ordered set where uuid = ? and companyId = ?.
    findByUuid_First(String uuid, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
    Returns the first ddm structure in the ordered set where uuid = ?.
    findByUUID_G(String uuid, long groupId)
    Returns the ddm structure where uuid = ? and groupId = ? or throws a NoSuchStructureException if it could not be found.
    findByUuid_Last(String uuid, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
    Returns the last ddm structure in the ordered set where uuid = ?.
    findByUuid_PrevAndNext(long structureId, String uuid, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
    Returns the ddm structures before and after the current ddm structure in the ordered set where uuid = ?.
    remove(long structureId)
    Removes the ddm structure with the primary key from the database.
    void
    Removes all the ddm structures from the database.
    void
    removeByC_C(long companyId, long classNameId)
    Removes all the ddm structures where companyId = ? and classNameId = ? from the database.
    removeByERC_G_C(String externalReferenceCode, long groupId, long classNameId)
    Removes the ddm structure where externalReferenceCode = ? and groupId = ? and classNameId = ? from the database.
    void
    removeByG_C(long groupId, long classNameId)
    Removes all the ddm structures where groupId = ? and classNameId = ? from the database.
    void
    removeByG_C_N_D(long groupId, long classNameId, String name, String description)
    Removes all the ddm structures where groupId = ? and classNameId = ? and name = ? and description = ? from the database.
    removeByG_C_S(long groupId, long classNameId, String structureKey)
    Removes the ddm structure where groupId = ? and classNameId = ? and structureKey = ? from the database.
    void
    removeByG_N_D(long groupId, String name, String description)
    Removes all the ddm structures where groupId = ? and name = ? and description = ? from the database.
    void
    removeByG_P(long groupId, long parentStructureId)
    Removes all the ddm structures where groupId = ? and parentStructureId = ? from the database.
    void
    removeByGroupId(long groupId)
    Removes all the ddm structures where groupId = ? from the database.
    void
    removeByParentStructureId(long parentStructureId)
    Removes all the ddm structures where parentStructureId = ? from the database.
    void
    Removes all the ddm structures where structureKey = ? from the database.
    void
    Removes all the ddm structures where uuid = ? from the database.
    void
    removeByUuid_C(String uuid, long companyId)
    Removes all the ddm structures where uuid = ? and companyId = ? from the database.
    removeByUUID_G(String uuid, long groupId)
    Removes the ddm structure where uuid = ? and groupId = ? from the database.
    updateImpl(DDMStructure ddmStructure)
     

    Methods inherited from interface com.liferay.portal.kernel.service.persistence.BasePersistence

    clearCache, clearCache, clearCache, clearCache, closeSession, countWithDynamicQuery, countWithDynamicQuery, dslQuery, dslQueryCount, fetchByPrimaryKey, fetchByPrimaryKeys, findByPrimaryKey, findWithDynamicQuery, findWithDynamicQuery, findWithDynamicQuery, flush, getBadColumnNames, getCurrentSession, getDataSource, getDB, getDialect, getListeners, getModelClass, openSession, processException, registerListener, remove, remove, removeByFunction, setDataSource, unregisterListener, update, update

    Methods inherited from interface com.liferay.portal.kernel.service.persistence.change.tracking.CTPersistence

    getCTColumnNames, getMappingTableNames, getTableColumnsMap, getTableName, getUniqueIndexColumnNames
  • Method Details

    • findByUuid

      List<DDMStructure> findByUuid(String uuid)
      Returns all the ddm structures where uuid = ?.
      Parameters:
      uuid - the uuid
      Returns:
      the matching ddm structures
    • findByUuid

      List<DDMStructure> findByUuid(String uuid, int start, int end)
      Returns a range of all the ddm structures where uuid = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DDMStructureModelImpl.

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

      List<DDMStructure> findByUuid(String uuid, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
      Returns an ordered range of all the ddm structures where uuid = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DDMStructureModelImpl.

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

      List<DDMStructure> findByUuid(String uuid, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the ddm structures where uuid = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DDMStructureModelImpl.

      Parameters:
      uuid - the uuid
      start - the lower bound of the range of ddm structures
      end - the upper bound of the range of ddm structures (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching ddm structures
    • findByUuid_First

      DDMStructure findByUuid_First(String uuid, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator) throws NoSuchStructureException
      Returns the first ddm structure in the ordered set where uuid = ?.
      Parameters:
      uuid - the uuid
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching ddm structure
      Throws:
      NoSuchStructureException - if a matching ddm structure could not be found
    • fetchByUuid_First

      DDMStructure fetchByUuid_First(String uuid, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
      Returns the first ddm structure in the ordered set where uuid = ?.
      Parameters:
      uuid - the uuid
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching ddm structure, or null if a matching ddm structure could not be found
    • findByUuid_Last

      DDMStructure findByUuid_Last(String uuid, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator) throws NoSuchStructureException
      Returns the last ddm structure in the ordered set where uuid = ?.
      Parameters:
      uuid - the uuid
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching ddm structure
      Throws:
      NoSuchStructureException - if a matching ddm structure could not be found
    • fetchByUuid_Last

      DDMStructure fetchByUuid_Last(String uuid, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
      Returns the last ddm structure in the ordered set where uuid = ?.
      Parameters:
      uuid - the uuid
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching ddm structure, or null if a matching ddm structure could not be found
    • findByUuid_PrevAndNext

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

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

      int countByUuid(String uuid)
      Returns the number of ddm structures where uuid = ?.
      Parameters:
      uuid - the uuid
      Returns:
      the number of matching ddm structures
    • findByUUID_G

      DDMStructure findByUUID_G(String uuid, long groupId) throws NoSuchStructureException
      Returns the ddm structure where uuid = ? and groupId = ? or throws a NoSuchStructureException if it could not be found.
      Parameters:
      uuid - the uuid
      groupId - the group ID
      Returns:
      the matching ddm structure
      Throws:
      NoSuchStructureException - if a matching ddm structure could not be found
    • fetchByUUID_G

      DDMStructure fetchByUUID_G(String uuid, long groupId)
      Returns the ddm structure 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 ddm structure, or null if a matching ddm structure could not be found
    • fetchByUUID_G

      DDMStructure fetchByUUID_G(String uuid, long groupId, boolean useFinderCache)
      Returns the ddm structure 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
      useFinderCache - whether to use the finder cache
      Returns:
      the matching ddm structure, or null if a matching ddm structure could not be found
    • removeByUUID_G

      DDMStructure removeByUUID_G(String uuid, long groupId) throws NoSuchStructureException
      Removes the ddm structure where uuid = ? and groupId = ? from the database.
      Parameters:
      uuid - the uuid
      groupId - the group ID
      Returns:
      the ddm structure that was removed
      Throws:
      NoSuchStructureException
    • countByUUID_G

      int countByUUID_G(String uuid, long groupId)
      Returns the number of ddm structures where uuid = ? and groupId = ?.
      Parameters:
      uuid - the uuid
      groupId - the group ID
      Returns:
      the number of matching ddm structures
    • findByUuid_C

      List<DDMStructure> findByUuid_C(String uuid, long companyId)
      Returns all the ddm structures where uuid = ? and companyId = ?.
      Parameters:
      uuid - the uuid
      companyId - the company ID
      Returns:
      the matching ddm structures
    • findByUuid_C

      List<DDMStructure> findByUuid_C(String uuid, long companyId, int start, int end)
      Returns a range of all the ddm structures where uuid = ? and companyId = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DDMStructureModelImpl.

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

      List<DDMStructure> findByUuid_C(String uuid, long companyId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
      Returns an ordered range of all the ddm structures where uuid = ? and companyId = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DDMStructureModelImpl.

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

      List<DDMStructure> findByUuid_C(String uuid, long companyId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the ddm structures where uuid = ? and companyId = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DDMStructureModelImpl.

      Parameters:
      uuid - the uuid
      companyId - the company ID
      start - the lower bound of the range of ddm structures
      end - the upper bound of the range of ddm structures (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching ddm structures
    • findByUuid_C_First

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

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

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

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

      DDMStructure[] findByUuid_C_PrevAndNext(long structureId, String uuid, long companyId, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator) throws NoSuchStructureException
      Returns the ddm structures before and after the current ddm structure in the ordered set where uuid = ? and companyId = ?.
      Parameters:
      structureId - the primary key of the current ddm structure
      uuid - the uuid
      companyId - the company ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next ddm structure
      Throws:
      NoSuchStructureException - if a ddm structure with the primary key could not be found
    • removeByUuid_C

      void removeByUuid_C(String uuid, long companyId)
      Removes all the ddm structures where uuid = ? and companyId = ? from the database.
      Parameters:
      uuid - the uuid
      companyId - the company ID
    • countByUuid_C

      int countByUuid_C(String uuid, long companyId)
      Returns the number of ddm structures where uuid = ? and companyId = ?.
      Parameters:
      uuid - the uuid
      companyId - the company ID
      Returns:
      the number of matching ddm structures
    • findByGroupId

      List<DDMStructure> findByGroupId(long groupId)
      Returns all the ddm structures where groupId = ?.
      Parameters:
      groupId - the group ID
      Returns:
      the matching ddm structures
    • findByGroupId

      List<DDMStructure> findByGroupId(long groupId, int start, int end)
      Returns a range of all the ddm structures 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. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DDMStructureModelImpl.

      Parameters:
      groupId - the group ID
      start - the lower bound of the range of ddm structures
      end - the upper bound of the range of ddm structures (not inclusive)
      Returns:
      the range of matching ddm structures
    • findByGroupId

      List<DDMStructure> findByGroupId(long groupId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
      Returns an ordered range of all the ddm structures 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. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DDMStructureModelImpl.

      Parameters:
      groupId - the group ID
      start - the lower bound of the range of ddm structures
      end - the upper bound of the range of ddm structures (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching ddm structures
    • findByGroupId

      List<DDMStructure> findByGroupId(long groupId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the ddm structures 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. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DDMStructureModelImpl.

      Parameters:
      groupId - the group ID
      start - the lower bound of the range of ddm structures
      end - the upper bound of the range of ddm structures (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching ddm structures
    • findByGroupId_First

      DDMStructure findByGroupId_First(long groupId, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator) throws NoSuchStructureException
      Returns the first ddm structure 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 ddm structure
      Throws:
      NoSuchStructureException - if a matching ddm structure could not be found
    • fetchByGroupId_First

      DDMStructure fetchByGroupId_First(long groupId, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
      Returns the first ddm structure 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 ddm structure, or null if a matching ddm structure could not be found
    • findByGroupId_Last

      DDMStructure findByGroupId_Last(long groupId, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator) throws NoSuchStructureException
      Returns the last ddm structure 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 ddm structure
      Throws:
      NoSuchStructureException - if a matching ddm structure could not be found
    • fetchByGroupId_Last

      DDMStructure fetchByGroupId_Last(long groupId, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
      Returns the last ddm structure 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 ddm structure, or null if a matching ddm structure could not be found
    • findByGroupId_PrevAndNext

      DDMStructure[] findByGroupId_PrevAndNext(long structureId, long groupId, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator) throws NoSuchStructureException
      Returns the ddm structures before and after the current ddm structure in the ordered set where groupId = ?.
      Parameters:
      structureId - the primary key of the current ddm structure
      groupId - the group ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next ddm structure
      Throws:
      NoSuchStructureException - if a ddm structure with the primary key could not be found
    • filterFindByGroupId

      List<DDMStructure> filterFindByGroupId(long groupId)
      Returns all the ddm structures that the user has permission to view where groupId = ?.
      Parameters:
      groupId - the group ID
      Returns:
      the matching ddm structures that the user has permission to view
    • filterFindByGroupId

      List<DDMStructure> filterFindByGroupId(long groupId, int start, int end)
      Returns a range of all the ddm structures 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. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DDMStructureModelImpl.

      Parameters:
      groupId - the group ID
      start - the lower bound of the range of ddm structures
      end - the upper bound of the range of ddm structures (not inclusive)
      Returns:
      the range of matching ddm structures that the user has permission to view
    • filterFindByGroupId

      List<DDMStructure> filterFindByGroupId(long groupId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
      Returns an ordered range of all the ddm structures 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. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DDMStructureModelImpl.

      Parameters:
      groupId - the group ID
      start - the lower bound of the range of ddm structures
      end - the upper bound of the range of ddm structures (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching ddm structures that the user has permission to view
    • filterFindByGroupId_PrevAndNext

      DDMStructure[] filterFindByGroupId_PrevAndNext(long structureId, long groupId, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator) throws NoSuchStructureException
      Returns the ddm structures before and after the current ddm structure in the ordered set of ddm structures that the user has permission to view where groupId = ?.
      Parameters:
      structureId - the primary key of the current ddm structure
      groupId - the group ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next ddm structure
      Throws:
      NoSuchStructureException - if a ddm structure with the primary key could not be found
    • filterFindByGroupId

      List<DDMStructure> filterFindByGroupId(long[] groupIds)
      Returns all the ddm structures that the user has permission to view where groupId = any ?.
      Parameters:
      groupIds - the group IDs
      Returns:
      the matching ddm structures that the user has permission to view
    • filterFindByGroupId

      List<DDMStructure> filterFindByGroupId(long[] groupIds, int start, int end)
      Returns a range of all the ddm structures 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. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DDMStructureModelImpl.

      Parameters:
      groupIds - the group IDs
      start - the lower bound of the range of ddm structures
      end - the upper bound of the range of ddm structures (not inclusive)
      Returns:
      the range of matching ddm structures that the user has permission to view
    • filterFindByGroupId

      List<DDMStructure> filterFindByGroupId(long[] groupIds, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
      Returns an ordered range of all the ddm structures 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. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DDMStructureModelImpl.

      Parameters:
      groupIds - the group IDs
      start - the lower bound of the range of ddm structures
      end - the upper bound of the range of ddm structures (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching ddm structures that the user has permission to view
    • findByGroupId

      List<DDMStructure> findByGroupId(long[] groupIds)
      Returns all the ddm structures 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. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DDMStructureModelImpl.

      Parameters:
      groupIds - the group IDs
      Returns:
      the matching ddm structures
    • findByGroupId

      List<DDMStructure> findByGroupId(long[] groupIds, int start, int end)
      Returns a range of all the ddm structures 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. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DDMStructureModelImpl.

      Parameters:
      groupIds - the group IDs
      start - the lower bound of the range of ddm structures
      end - the upper bound of the range of ddm structures (not inclusive)
      Returns:
      the range of matching ddm structures
    • findByGroupId

      List<DDMStructure> findByGroupId(long[] groupIds, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
      Returns an ordered range of all the ddm structures 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. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DDMStructureModelImpl.

      Parameters:
      groupIds - the group IDs
      start - the lower bound of the range of ddm structures
      end - the upper bound of the range of ddm structures (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching ddm structures
    • findByGroupId

      List<DDMStructure> findByGroupId(long[] groupIds, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the ddm structures where groupId = ?, optionally using the finder cache.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DDMStructureModelImpl.

      Parameters:
      groupIds - the group IDs
      start - the lower bound of the range of ddm structures
      end - the upper bound of the range of ddm structures (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching ddm structures
    • removeByGroupId

      void removeByGroupId(long groupId)
      Removes all the ddm structures where groupId = ? from the database.
      Parameters:
      groupId - the group ID
    • countByGroupId

      int countByGroupId(long groupId)
      Returns the number of ddm structures where groupId = ?.
      Parameters:
      groupId - the group ID
      Returns:
      the number of matching ddm structures
    • countByGroupId

      int countByGroupId(long[] groupIds)
      Returns the number of ddm structures where groupId = any ?.
      Parameters:
      groupIds - the group IDs
      Returns:
      the number of matching ddm structures
    • filterCountByGroupId

      int filterCountByGroupId(long groupId)
      Returns the number of ddm structures that the user has permission to view where groupId = ?.
      Parameters:
      groupId - the group ID
      Returns:
      the number of matching ddm structures that the user has permission to view
    • filterCountByGroupId

      int filterCountByGroupId(long[] groupIds)
      Returns the number of ddm structures that the user has permission to view where groupId = any ?.
      Parameters:
      groupIds - the group IDs
      Returns:
      the number of matching ddm structures that the user has permission to view
    • findByParentStructureId

      List<DDMStructure> findByParentStructureId(long parentStructureId)
      Returns all the ddm structures where parentStructureId = ?.
      Parameters:
      parentStructureId - the parent structure ID
      Returns:
      the matching ddm structures
    • findByParentStructureId

      List<DDMStructure> findByParentStructureId(long parentStructureId, int start, int end)
      Returns a range of all the ddm structures where parentStructureId = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DDMStructureModelImpl.

      Parameters:
      parentStructureId - the parent structure ID
      start - the lower bound of the range of ddm structures
      end - the upper bound of the range of ddm structures (not inclusive)
      Returns:
      the range of matching ddm structures
    • findByParentStructureId

      List<DDMStructure> findByParentStructureId(long parentStructureId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
      Returns an ordered range of all the ddm structures where parentStructureId = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DDMStructureModelImpl.

      Parameters:
      parentStructureId - the parent structure ID
      start - the lower bound of the range of ddm structures
      end - the upper bound of the range of ddm structures (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching ddm structures
    • findByParentStructureId

      List<DDMStructure> findByParentStructureId(long parentStructureId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the ddm structures where parentStructureId = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DDMStructureModelImpl.

      Parameters:
      parentStructureId - the parent structure ID
      start - the lower bound of the range of ddm structures
      end - the upper bound of the range of ddm structures (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching ddm structures
    • findByParentStructureId_First

      DDMStructure findByParentStructureId_First(long parentStructureId, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator) throws NoSuchStructureException
      Returns the first ddm structure in the ordered set where parentStructureId = ?.
      Parameters:
      parentStructureId - the parent structure ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching ddm structure
      Throws:
      NoSuchStructureException - if a matching ddm structure could not be found
    • fetchByParentStructureId_First

      DDMStructure fetchByParentStructureId_First(long parentStructureId, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
      Returns the first ddm structure in the ordered set where parentStructureId = ?.
      Parameters:
      parentStructureId - the parent structure ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching ddm structure, or null if a matching ddm structure could not be found
    • findByParentStructureId_Last

      DDMStructure findByParentStructureId_Last(long parentStructureId, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator) throws NoSuchStructureException
      Returns the last ddm structure in the ordered set where parentStructureId = ?.
      Parameters:
      parentStructureId - the parent structure ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching ddm structure
      Throws:
      NoSuchStructureException - if a matching ddm structure could not be found
    • fetchByParentStructureId_Last

      DDMStructure fetchByParentStructureId_Last(long parentStructureId, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
      Returns the last ddm structure in the ordered set where parentStructureId = ?.
      Parameters:
      parentStructureId - the parent structure ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching ddm structure, or null if a matching ddm structure could not be found
    • findByParentStructureId_PrevAndNext

      DDMStructure[] findByParentStructureId_PrevAndNext(long structureId, long parentStructureId, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator) throws NoSuchStructureException
      Returns the ddm structures before and after the current ddm structure in the ordered set where parentStructureId = ?.
      Parameters:
      structureId - the primary key of the current ddm structure
      parentStructureId - the parent structure ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next ddm structure
      Throws:
      NoSuchStructureException - if a ddm structure with the primary key could not be found
    • removeByParentStructureId

      void removeByParentStructureId(long parentStructureId)
      Removes all the ddm structures where parentStructureId = ? from the database.
      Parameters:
      parentStructureId - the parent structure ID
    • countByParentStructureId

      int countByParentStructureId(long parentStructureId)
      Returns the number of ddm structures where parentStructureId = ?.
      Parameters:
      parentStructureId - the parent structure ID
      Returns:
      the number of matching ddm structures
    • findByStructureKey

      List<DDMStructure> findByStructureKey(String structureKey)
      Returns all the ddm structures where structureKey = ?.
      Parameters:
      structureKey - the structure key
      Returns:
      the matching ddm structures
    • findByStructureKey

      List<DDMStructure> findByStructureKey(String structureKey, int start, int end)
      Returns a range of all the ddm structures where structureKey = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DDMStructureModelImpl.

      Parameters:
      structureKey - the structure key
      start - the lower bound of the range of ddm structures
      end - the upper bound of the range of ddm structures (not inclusive)
      Returns:
      the range of matching ddm structures
    • findByStructureKey

      List<DDMStructure> findByStructureKey(String structureKey, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
      Returns an ordered range of all the ddm structures where structureKey = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DDMStructureModelImpl.

      Parameters:
      structureKey - the structure key
      start - the lower bound of the range of ddm structures
      end - the upper bound of the range of ddm structures (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching ddm structures
    • findByStructureKey

      List<DDMStructure> findByStructureKey(String structureKey, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the ddm structures where structureKey = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DDMStructureModelImpl.

      Parameters:
      structureKey - the structure key
      start - the lower bound of the range of ddm structures
      end - the upper bound of the range of ddm structures (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching ddm structures
    • findByStructureKey_First

      DDMStructure findByStructureKey_First(String structureKey, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator) throws NoSuchStructureException
      Returns the first ddm structure in the ordered set where structureKey = ?.
      Parameters:
      structureKey - the structure key
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching ddm structure
      Throws:
      NoSuchStructureException - if a matching ddm structure could not be found
    • fetchByStructureKey_First

      DDMStructure fetchByStructureKey_First(String structureKey, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
      Returns the first ddm structure in the ordered set where structureKey = ?.
      Parameters:
      structureKey - the structure key
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching ddm structure, or null if a matching ddm structure could not be found
    • findByStructureKey_Last

      DDMStructure findByStructureKey_Last(String structureKey, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator) throws NoSuchStructureException
      Returns the last ddm structure in the ordered set where structureKey = ?.
      Parameters:
      structureKey - the structure key
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching ddm structure
      Throws:
      NoSuchStructureException - if a matching ddm structure could not be found
    • fetchByStructureKey_Last

      DDMStructure fetchByStructureKey_Last(String structureKey, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
      Returns the last ddm structure in the ordered set where structureKey = ?.
      Parameters:
      structureKey - the structure key
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching ddm structure, or null if a matching ddm structure could not be found
    • findByStructureKey_PrevAndNext

      DDMStructure[] findByStructureKey_PrevAndNext(long structureId, String structureKey, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator) throws NoSuchStructureException
      Returns the ddm structures before and after the current ddm structure in the ordered set where structureKey = ?.
      Parameters:
      structureId - the primary key of the current ddm structure
      structureKey - the structure key
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next ddm structure
      Throws:
      NoSuchStructureException - if a ddm structure with the primary key could not be found
    • removeByStructureKey

      void removeByStructureKey(String structureKey)
      Removes all the ddm structures where structureKey = ? from the database.
      Parameters:
      structureKey - the structure key
    • countByStructureKey

      int countByStructureKey(String structureKey)
      Returns the number of ddm structures where structureKey = ?.
      Parameters:
      structureKey - the structure key
      Returns:
      the number of matching ddm structures
    • findByG_P

      List<DDMStructure> findByG_P(long groupId, long parentStructureId)
      Returns all the ddm structures where groupId = ? and parentStructureId = ?.
      Parameters:
      groupId - the group ID
      parentStructureId - the parent structure ID
      Returns:
      the matching ddm structures
    • findByG_P

      List<DDMStructure> findByG_P(long groupId, long parentStructureId, int start, int end)
      Returns a range of all the ddm structures where groupId = ? and parentStructureId = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DDMStructureModelImpl.

      Parameters:
      groupId - the group ID
      parentStructureId - the parent structure ID
      start - the lower bound of the range of ddm structures
      end - the upper bound of the range of ddm structures (not inclusive)
      Returns:
      the range of matching ddm structures
    • findByG_P

      List<DDMStructure> findByG_P(long groupId, long parentStructureId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
      Returns an ordered range of all the ddm structures where groupId = ? and parentStructureId = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DDMStructureModelImpl.

      Parameters:
      groupId - the group ID
      parentStructureId - the parent structure ID
      start - the lower bound of the range of ddm structures
      end - the upper bound of the range of ddm structures (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching ddm structures
    • findByG_P

      List<DDMStructure> findByG_P(long groupId, long parentStructureId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the ddm structures where groupId = ? and parentStructureId = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DDMStructureModelImpl.

      Parameters:
      groupId - the group ID
      parentStructureId - the parent structure ID
      start - the lower bound of the range of ddm structures
      end - the upper bound of the range of ddm structures (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching ddm structures
    • findByG_P_First

      DDMStructure findByG_P_First(long groupId, long parentStructureId, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator) throws NoSuchStructureException
      Returns the first ddm structure in the ordered set where groupId = ? and parentStructureId = ?.
      Parameters:
      groupId - the group ID
      parentStructureId - the parent structure ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching ddm structure
      Throws:
      NoSuchStructureException - if a matching ddm structure could not be found
    • fetchByG_P_First

      DDMStructure fetchByG_P_First(long groupId, long parentStructureId, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
      Returns the first ddm structure in the ordered set where groupId = ? and parentStructureId = ?.
      Parameters:
      groupId - the group ID
      parentStructureId - the parent structure ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching ddm structure, or null if a matching ddm structure could not be found
    • findByG_P_Last

      DDMStructure findByG_P_Last(long groupId, long parentStructureId, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator) throws NoSuchStructureException
      Returns the last ddm structure in the ordered set where groupId = ? and parentStructureId = ?.
      Parameters:
      groupId - the group ID
      parentStructureId - the parent structure ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching ddm structure
      Throws:
      NoSuchStructureException - if a matching ddm structure could not be found
    • fetchByG_P_Last

      DDMStructure fetchByG_P_Last(long groupId, long parentStructureId, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
      Returns the last ddm structure in the ordered set where groupId = ? and parentStructureId = ?.
      Parameters:
      groupId - the group ID
      parentStructureId - the parent structure ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching ddm structure, or null if a matching ddm structure could not be found
    • findByG_P_PrevAndNext

      DDMStructure[] findByG_P_PrevAndNext(long structureId, long groupId, long parentStructureId, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator) throws NoSuchStructureException
      Returns the ddm structures before and after the current ddm structure in the ordered set where groupId = ? and parentStructureId = ?.
      Parameters:
      structureId - the primary key of the current ddm structure
      groupId - the group ID
      parentStructureId - the parent structure ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next ddm structure
      Throws:
      NoSuchStructureException - if a ddm structure with the primary key could not be found
    • filterFindByG_P

      List<DDMStructure> filterFindByG_P(long groupId, long parentStructureId)
      Returns all the ddm structures that the user has permission to view where groupId = ? and parentStructureId = ?.
      Parameters:
      groupId - the group ID
      parentStructureId - the parent structure ID
      Returns:
      the matching ddm structures that the user has permission to view
    • filterFindByG_P

      List<DDMStructure> filterFindByG_P(long groupId, long parentStructureId, int start, int end)
      Returns a range of all the ddm structures that the user has permission to view where groupId = ? and parentStructureId = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DDMStructureModelImpl.

      Parameters:
      groupId - the group ID
      parentStructureId - the parent structure ID
      start - the lower bound of the range of ddm structures
      end - the upper bound of the range of ddm structures (not inclusive)
      Returns:
      the range of matching ddm structures that the user has permission to view
    • filterFindByG_P

      List<DDMStructure> filterFindByG_P(long groupId, long parentStructureId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
      Returns an ordered range of all the ddm structures that the user has permissions to view where groupId = ? and parentStructureId = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DDMStructureModelImpl.

      Parameters:
      groupId - the group ID
      parentStructureId - the parent structure ID
      start - the lower bound of the range of ddm structures
      end - the upper bound of the range of ddm structures (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching ddm structures that the user has permission to view
    • filterFindByG_P_PrevAndNext

      DDMStructure[] filterFindByG_P_PrevAndNext(long structureId, long groupId, long parentStructureId, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator) throws NoSuchStructureException
      Returns the ddm structures before and after the current ddm structure in the ordered set of ddm structures that the user has permission to view where groupId = ? and parentStructureId = ?.
      Parameters:
      structureId - the primary key of the current ddm structure
      groupId - the group ID
      parentStructureId - the parent structure ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next ddm structure
      Throws:
      NoSuchStructureException - if a ddm structure with the primary key could not be found
    • removeByG_P

      void removeByG_P(long groupId, long parentStructureId)
      Removes all the ddm structures where groupId = ? and parentStructureId = ? from the database.
      Parameters:
      groupId - the group ID
      parentStructureId - the parent structure ID
    • countByG_P

      int countByG_P(long groupId, long parentStructureId)
      Returns the number of ddm structures where groupId = ? and parentStructureId = ?.
      Parameters:
      groupId - the group ID
      parentStructureId - the parent structure ID
      Returns:
      the number of matching ddm structures
    • filterCountByG_P

      int filterCountByG_P(long groupId, long parentStructureId)
      Returns the number of ddm structures that the user has permission to view where groupId = ? and parentStructureId = ?.
      Parameters:
      groupId - the group ID
      parentStructureId - the parent structure ID
      Returns:
      the number of matching ddm structures that the user has permission to view
    • findByG_C

      List<DDMStructure> findByG_C(long groupId, long classNameId)
      Returns all the ddm structures where groupId = ? and classNameId = ?.
      Parameters:
      groupId - the group ID
      classNameId - the class name ID
      Returns:
      the matching ddm structures
    • findByG_C

      List<DDMStructure> findByG_C(long groupId, long classNameId, int start, int end)
      Returns a range of all the ddm structures where groupId = ? and classNameId = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DDMStructureModelImpl.

      Parameters:
      groupId - the group ID
      classNameId - the class name ID
      start - the lower bound of the range of ddm structures
      end - the upper bound of the range of ddm structures (not inclusive)
      Returns:
      the range of matching ddm structures
    • findByG_C

      List<DDMStructure> findByG_C(long groupId, long classNameId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
      Returns an ordered range of all the ddm structures where groupId = ? and classNameId = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DDMStructureModelImpl.

      Parameters:
      groupId - the group ID
      classNameId - the class name ID
      start - the lower bound of the range of ddm structures
      end - the upper bound of the range of ddm structures (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching ddm structures
    • findByG_C

      List<DDMStructure> findByG_C(long groupId, long classNameId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the ddm structures where groupId = ? and classNameId = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DDMStructureModelImpl.

      Parameters:
      groupId - the group ID
      classNameId - the class name ID
      start - the lower bound of the range of ddm structures
      end - the upper bound of the range of ddm structures (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching ddm structures
    • findByG_C_First

      DDMStructure findByG_C_First(long groupId, long classNameId, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator) throws NoSuchStructureException
      Returns the first ddm structure in the ordered set where groupId = ? and classNameId = ?.
      Parameters:
      groupId - the group ID
      classNameId - the class name ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching ddm structure
      Throws:
      NoSuchStructureException - if a matching ddm structure could not be found
    • fetchByG_C_First

      DDMStructure fetchByG_C_First(long groupId, long classNameId, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
      Returns the first ddm structure in the ordered set where groupId = ? and classNameId = ?.
      Parameters:
      groupId - the group ID
      classNameId - the class name ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching ddm structure, or null if a matching ddm structure could not be found
    • findByG_C_Last

      DDMStructure findByG_C_Last(long groupId, long classNameId, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator) throws NoSuchStructureException
      Returns the last ddm structure in the ordered set where groupId = ? and classNameId = ?.
      Parameters:
      groupId - the group ID
      classNameId - the class name ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching ddm structure
      Throws:
      NoSuchStructureException - if a matching ddm structure could not be found
    • fetchByG_C_Last

      DDMStructure fetchByG_C_Last(long groupId, long classNameId, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
      Returns the last ddm structure in the ordered set where groupId = ? and classNameId = ?.
      Parameters:
      groupId - the group ID
      classNameId - the class name ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching ddm structure, or null if a matching ddm structure could not be found
    • findByG_C_PrevAndNext

      DDMStructure[] findByG_C_PrevAndNext(long structureId, long groupId, long classNameId, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator) throws NoSuchStructureException
      Returns the ddm structures before and after the current ddm structure in the ordered set where groupId = ? and classNameId = ?.
      Parameters:
      structureId - the primary key of the current ddm structure
      groupId - the group ID
      classNameId - the class name ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next ddm structure
      Throws:
      NoSuchStructureException - if a ddm structure with the primary key could not be found
    • filterFindByG_C

      List<DDMStructure> filterFindByG_C(long groupId, long classNameId)
      Returns all the ddm structures that the user has permission to view where groupId = ? and classNameId = ?.
      Parameters:
      groupId - the group ID
      classNameId - the class name ID
      Returns:
      the matching ddm structures that the user has permission to view
    • filterFindByG_C

      List<DDMStructure> filterFindByG_C(long groupId, long classNameId, int start, int end)
      Returns a range of all the ddm structures that the user has permission to view where groupId = ? and classNameId = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DDMStructureModelImpl.

      Parameters:
      groupId - the group ID
      classNameId - the class name ID
      start - the lower bound of the range of ddm structures
      end - the upper bound of the range of ddm structures (not inclusive)
      Returns:
      the range of matching ddm structures that the user has permission to view
    • filterFindByG_C

      List<DDMStructure> filterFindByG_C(long groupId, long classNameId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
      Returns an ordered range of all the ddm structures that the user has permissions to view where groupId = ? and classNameId = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DDMStructureModelImpl.

      Parameters:
      groupId - the group ID
      classNameId - the class name ID
      start - the lower bound of the range of ddm structures
      end - the upper bound of the range of ddm structures (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching ddm structures that the user has permission to view
    • filterFindByG_C_PrevAndNext

      DDMStructure[] filterFindByG_C_PrevAndNext(long structureId, long groupId, long classNameId, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator) throws NoSuchStructureException
      Returns the ddm structures before and after the current ddm structure in the ordered set of ddm structures that the user has permission to view where groupId = ? and classNameId = ?.
      Parameters:
      structureId - the primary key of the current ddm structure
      groupId - the group ID
      classNameId - the class name ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next ddm structure
      Throws:
      NoSuchStructureException - if a ddm structure with the primary key could not be found
    • filterFindByG_C

      List<DDMStructure> filterFindByG_C(long[] groupIds, long classNameId)
      Returns all the ddm structures that the user has permission to view where groupId = any ? and classNameId = ?.
      Parameters:
      groupIds - the group IDs
      classNameId - the class name ID
      Returns:
      the matching ddm structures that the user has permission to view
    • filterFindByG_C

      List<DDMStructure> filterFindByG_C(long[] groupIds, long classNameId, int start, int end)
      Returns a range of all the ddm structures that the user has permission to view where groupId = any ? and classNameId = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DDMStructureModelImpl.

      Parameters:
      groupIds - the group IDs
      classNameId - the class name ID
      start - the lower bound of the range of ddm structures
      end - the upper bound of the range of ddm structures (not inclusive)
      Returns:
      the range of matching ddm structures that the user has permission to view
    • filterFindByG_C

      List<DDMStructure> filterFindByG_C(long[] groupIds, long classNameId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
      Returns an ordered range of all the ddm structures that the user has permission to view where groupId = any ? and classNameId = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DDMStructureModelImpl.

      Parameters:
      groupIds - the group IDs
      classNameId - the class name ID
      start - the lower bound of the range of ddm structures
      end - the upper bound of the range of ddm structures (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching ddm structures that the user has permission to view
    • findByG_C

      List<DDMStructure> findByG_C(long[] groupIds, long classNameId)
      Returns all the ddm structures where groupId = any ? and classNameId = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DDMStructureModelImpl.

      Parameters:
      groupIds - the group IDs
      classNameId - the class name ID
      Returns:
      the matching ddm structures
    • findByG_C

      List<DDMStructure> findByG_C(long[] groupIds, long classNameId, int start, int end)
      Returns a range of all the ddm structures where groupId = any ? and classNameId = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DDMStructureModelImpl.

      Parameters:
      groupIds - the group IDs
      classNameId - the class name ID
      start - the lower bound of the range of ddm structures
      end - the upper bound of the range of ddm structures (not inclusive)
      Returns:
      the range of matching ddm structures
    • findByG_C

      List<DDMStructure> findByG_C(long[] groupIds, long classNameId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
      Returns an ordered range of all the ddm structures where groupId = any ? and classNameId = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DDMStructureModelImpl.

      Parameters:
      groupIds - the group IDs
      classNameId - the class name ID
      start - the lower bound of the range of ddm structures
      end - the upper bound of the range of ddm structures (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching ddm structures
    • findByG_C

      List<DDMStructure> findByG_C(long[] groupIds, long classNameId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the ddm structures where groupId = ? and classNameId = ?, optionally using the finder cache.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DDMStructureModelImpl.

      Parameters:
      groupIds - the group IDs
      classNameId - the class name ID
      start - the lower bound of the range of ddm structures
      end - the upper bound of the range of ddm structures (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching ddm structures
    • removeByG_C

      void removeByG_C(long groupId, long classNameId)
      Removes all the ddm structures where groupId = ? and classNameId = ? from the database.
      Parameters:
      groupId - the group ID
      classNameId - the class name ID
    • countByG_C

      int countByG_C(long groupId, long classNameId)
      Returns the number of ddm structures where groupId = ? and classNameId = ?.
      Parameters:
      groupId - the group ID
      classNameId - the class name ID
      Returns:
      the number of matching ddm structures
    • countByG_C

      int countByG_C(long[] groupIds, long classNameId)
      Returns the number of ddm structures where groupId = any ? and classNameId = ?.
      Parameters:
      groupIds - the group IDs
      classNameId - the class name ID
      Returns:
      the number of matching ddm structures
    • filterCountByG_C

      int filterCountByG_C(long groupId, long classNameId)
      Returns the number of ddm structures that the user has permission to view where groupId = ? and classNameId = ?.
      Parameters:
      groupId - the group ID
      classNameId - the class name ID
      Returns:
      the number of matching ddm structures that the user has permission to view
    • filterCountByG_C

      int filterCountByG_C(long[] groupIds, long classNameId)
      Returns the number of ddm structures that the user has permission to view where groupId = any ? and classNameId = ?.
      Parameters:
      groupIds - the group IDs
      classNameId - the class name ID
      Returns:
      the number of matching ddm structures that the user has permission to view
    • findByC_C

      List<DDMStructure> findByC_C(long companyId, long classNameId)
      Returns all the ddm structures where companyId = ? and classNameId = ?.
      Parameters:
      companyId - the company ID
      classNameId - the class name ID
      Returns:
      the matching ddm structures
    • findByC_C

      List<DDMStructure> findByC_C(long companyId, long classNameId, int start, int end)
      Returns a range of all the ddm structures where companyId = ? and classNameId = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DDMStructureModelImpl.

      Parameters:
      companyId - the company ID
      classNameId - the class name ID
      start - the lower bound of the range of ddm structures
      end - the upper bound of the range of ddm structures (not inclusive)
      Returns:
      the range of matching ddm structures
    • findByC_C

      List<DDMStructure> findByC_C(long companyId, long classNameId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
      Returns an ordered range of all the ddm structures where companyId = ? and classNameId = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DDMStructureModelImpl.

      Parameters:
      companyId - the company ID
      classNameId - the class name ID
      start - the lower bound of the range of ddm structures
      end - the upper bound of the range of ddm structures (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching ddm structures
    • findByC_C

      List<DDMStructure> findByC_C(long companyId, long classNameId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the ddm structures where companyId = ? and classNameId = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DDMStructureModelImpl.

      Parameters:
      companyId - the company ID
      classNameId - the class name ID
      start - the lower bound of the range of ddm structures
      end - the upper bound of the range of ddm structures (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching ddm structures
    • findByC_C_First

      DDMStructure findByC_C_First(long companyId, long classNameId, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator) throws NoSuchStructureException
      Returns the first ddm structure in the ordered set where companyId = ? and classNameId = ?.
      Parameters:
      companyId - the company ID
      classNameId - the class name ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching ddm structure
      Throws:
      NoSuchStructureException - if a matching ddm structure could not be found
    • fetchByC_C_First

      DDMStructure fetchByC_C_First(long companyId, long classNameId, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
      Returns the first ddm structure in the ordered set where companyId = ? and classNameId = ?.
      Parameters:
      companyId - the company ID
      classNameId - the class name ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching ddm structure, or null if a matching ddm structure could not be found
    • findByC_C_Last

      DDMStructure findByC_C_Last(long companyId, long classNameId, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator) throws NoSuchStructureException
      Returns the last ddm structure in the ordered set where companyId = ? and classNameId = ?.
      Parameters:
      companyId - the company ID
      classNameId - the class name ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching ddm structure
      Throws:
      NoSuchStructureException - if a matching ddm structure could not be found
    • fetchByC_C_Last

      DDMStructure fetchByC_C_Last(long companyId, long classNameId, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
      Returns the last ddm structure in the ordered set where companyId = ? and classNameId = ?.
      Parameters:
      companyId - the company ID
      classNameId - the class name ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching ddm structure, or null if a matching ddm structure could not be found
    • findByC_C_PrevAndNext

      DDMStructure[] findByC_C_PrevAndNext(long structureId, long companyId, long classNameId, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator) throws NoSuchStructureException
      Returns the ddm structures before and after the current ddm structure in the ordered set where companyId = ? and classNameId = ?.
      Parameters:
      structureId - the primary key of the current ddm structure
      companyId - the company ID
      classNameId - the class name ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next ddm structure
      Throws:
      NoSuchStructureException - if a ddm structure with the primary key could not be found
    • removeByC_C

      void removeByC_C(long companyId, long classNameId)
      Removes all the ddm structures where companyId = ? and classNameId = ? from the database.
      Parameters:
      companyId - the company ID
      classNameId - the class name ID
    • countByC_C

      int countByC_C(long companyId, long classNameId)
      Returns the number of ddm structures where companyId = ? and classNameId = ?.
      Parameters:
      companyId - the company ID
      classNameId - the class name ID
      Returns:
      the number of matching ddm structures
    • findByERC_G_C

      DDMStructure findByERC_G_C(String externalReferenceCode, long groupId, long classNameId) throws NoSuchStructureException
      Returns the ddm structure where externalReferenceCode = ? and groupId = ? and classNameId = ? or throws a NoSuchStructureException if it could not be found.
      Parameters:
      externalReferenceCode - the external reference code
      groupId - the group ID
      classNameId - the class name ID
      Returns:
      the matching ddm structure
      Throws:
      NoSuchStructureException - if a matching ddm structure could not be found
    • fetchByERC_G_C

      DDMStructure fetchByERC_G_C(String externalReferenceCode, long groupId, long classNameId)
      Returns the ddm structure where externalReferenceCode = ? and groupId = ? and classNameId = ? or returns null if it could not be found. Uses the finder cache.
      Parameters:
      externalReferenceCode - the external reference code
      groupId - the group ID
      classNameId - the class name ID
      Returns:
      the matching ddm structure, or null if a matching ddm structure could not be found
    • fetchByERC_G_C

      DDMStructure fetchByERC_G_C(String externalReferenceCode, long groupId, long classNameId, boolean useFinderCache)
      Returns the ddm structure where externalReferenceCode = ? and groupId = ? and classNameId = ? or returns null if it could not be found, optionally using the finder cache.
      Parameters:
      externalReferenceCode - the external reference code
      groupId - the group ID
      classNameId - the class name ID
      useFinderCache - whether to use the finder cache
      Returns:
      the matching ddm structure, or null if a matching ddm structure could not be found
    • removeByERC_G_C

      DDMStructure removeByERC_G_C(String externalReferenceCode, long groupId, long classNameId) throws NoSuchStructureException
      Removes the ddm structure where externalReferenceCode = ? and groupId = ? and classNameId = ? from the database.
      Parameters:
      externalReferenceCode - the external reference code
      groupId - the group ID
      classNameId - the class name ID
      Returns:
      the ddm structure that was removed
      Throws:
      NoSuchStructureException
    • countByERC_G_C

      int countByERC_G_C(String externalReferenceCode, long groupId, long classNameId)
      Returns the number of ddm structures where externalReferenceCode = ? and groupId = ? and classNameId = ?.
      Parameters:
      externalReferenceCode - the external reference code
      groupId - the group ID
      classNameId - the class name ID
      Returns:
      the number of matching ddm structures
    • findByG_C_S

      DDMStructure findByG_C_S(long groupId, long classNameId, String structureKey) throws NoSuchStructureException
      Returns the ddm structure where groupId = ? and classNameId = ? and structureKey = ? or throws a NoSuchStructureException if it could not be found.
      Parameters:
      groupId - the group ID
      classNameId - the class name ID
      structureKey - the structure key
      Returns:
      the matching ddm structure
      Throws:
      NoSuchStructureException - if a matching ddm structure could not be found
    • fetchByG_C_S

      DDMStructure fetchByG_C_S(long groupId, long classNameId, String structureKey)
      Returns the ddm structure where groupId = ? and classNameId = ? and structureKey = ? or returns null if it could not be found. Uses the finder cache.
      Parameters:
      groupId - the group ID
      classNameId - the class name ID
      structureKey - the structure key
      Returns:
      the matching ddm structure, or null if a matching ddm structure could not be found
    • fetchByG_C_S

      DDMStructure fetchByG_C_S(long groupId, long classNameId, String structureKey, boolean useFinderCache)
      Returns the ddm structure where groupId = ? and classNameId = ? and structureKey = ? or returns null if it could not be found, optionally using the finder cache.
      Parameters:
      groupId - the group ID
      classNameId - the class name ID
      structureKey - the structure key
      useFinderCache - whether to use the finder cache
      Returns:
      the matching ddm structure, or null if a matching ddm structure could not be found
    • removeByG_C_S

      DDMStructure removeByG_C_S(long groupId, long classNameId, String structureKey) throws NoSuchStructureException
      Removes the ddm structure where groupId = ? and classNameId = ? and structureKey = ? from the database.
      Parameters:
      groupId - the group ID
      classNameId - the class name ID
      structureKey - the structure key
      Returns:
      the ddm structure that was removed
      Throws:
      NoSuchStructureException
    • countByG_C_S

      int countByG_C_S(long groupId, long classNameId, String structureKey)
      Returns the number of ddm structures where groupId = ? and classNameId = ? and structureKey = ?.
      Parameters:
      groupId - the group ID
      classNameId - the class name ID
      structureKey - the structure key
      Returns:
      the number of matching ddm structures
    • findByG_N_D

      List<DDMStructure> findByG_N_D(long groupId, String name, String description)
      Returns all the ddm structures where groupId = ? and name = ? and description = ?.
      Parameters:
      groupId - the group ID
      name - the name
      description - the description
      Returns:
      the matching ddm structures
    • findByG_N_D

      List<DDMStructure> findByG_N_D(long groupId, String name, String description, int start, int end)
      Returns a range of all the ddm structures where groupId = ? and name = ? and description = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DDMStructureModelImpl.

      Parameters:
      groupId - the group ID
      name - the name
      description - the description
      start - the lower bound of the range of ddm structures
      end - the upper bound of the range of ddm structures (not inclusive)
      Returns:
      the range of matching ddm structures
    • findByG_N_D

      List<DDMStructure> findByG_N_D(long groupId, String name, String description, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
      Returns an ordered range of all the ddm structures where groupId = ? and name = ? and description = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DDMStructureModelImpl.

      Parameters:
      groupId - the group ID
      name - the name
      description - the description
      start - the lower bound of the range of ddm structures
      end - the upper bound of the range of ddm structures (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching ddm structures
    • findByG_N_D

      List<DDMStructure> findByG_N_D(long groupId, String name, String description, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the ddm structures where groupId = ? and name = ? and description = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DDMStructureModelImpl.

      Parameters:
      groupId - the group ID
      name - the name
      description - the description
      start - the lower bound of the range of ddm structures
      end - the upper bound of the range of ddm structures (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching ddm structures
    • findByG_N_D_First

      DDMStructure findByG_N_D_First(long groupId, String name, String description, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator) throws NoSuchStructureException
      Returns the first ddm structure in the ordered set where groupId = ? and name = ? and description = ?.
      Parameters:
      groupId - the group ID
      name - the name
      description - the description
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching ddm structure
      Throws:
      NoSuchStructureException - if a matching ddm structure could not be found
    • fetchByG_N_D_First

      DDMStructure fetchByG_N_D_First(long groupId, String name, String description, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
      Returns the first ddm structure in the ordered set where groupId = ? and name = ? and description = ?.
      Parameters:
      groupId - the group ID
      name - the name
      description - the description
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching ddm structure, or null if a matching ddm structure could not be found
    • findByG_N_D_Last

      DDMStructure findByG_N_D_Last(long groupId, String name, String description, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator) throws NoSuchStructureException
      Returns the last ddm structure in the ordered set where groupId = ? and name = ? and description = ?.
      Parameters:
      groupId - the group ID
      name - the name
      description - the description
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching ddm structure
      Throws:
      NoSuchStructureException - if a matching ddm structure could not be found
    • fetchByG_N_D_Last

      DDMStructure fetchByG_N_D_Last(long groupId, String name, String description, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
      Returns the last ddm structure in the ordered set where groupId = ? and name = ? and description = ?.
      Parameters:
      groupId - the group ID
      name - the name
      description - the description
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching ddm structure, or null if a matching ddm structure could not be found
    • findByG_N_D_PrevAndNext

      DDMStructure[] findByG_N_D_PrevAndNext(long structureId, long groupId, String name, String description, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator) throws NoSuchStructureException
      Returns the ddm structures before and after the current ddm structure in the ordered set where groupId = ? and name = ? and description = ?.
      Parameters:
      structureId - the primary key of the current ddm structure
      groupId - the group ID
      name - the name
      description - the description
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next ddm structure
      Throws:
      NoSuchStructureException - if a ddm structure with the primary key could not be found
    • filterFindByG_N_D

      List<DDMStructure> filterFindByG_N_D(long groupId, String name, String description)
      Returns all the ddm structures that the user has permission to view where groupId = ? and name = ? and description = ?.
      Parameters:
      groupId - the group ID
      name - the name
      description - the description
      Returns:
      the matching ddm structures that the user has permission to view
    • filterFindByG_N_D

      List<DDMStructure> filterFindByG_N_D(long groupId, String name, String description, int start, int end)
      Returns a range of all the ddm structures that the user has permission to view where groupId = ? and name = ? and description = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DDMStructureModelImpl.

      Parameters:
      groupId - the group ID
      name - the name
      description - the description
      start - the lower bound of the range of ddm structures
      end - the upper bound of the range of ddm structures (not inclusive)
      Returns:
      the range of matching ddm structures that the user has permission to view
    • filterFindByG_N_D

      List<DDMStructure> filterFindByG_N_D(long groupId, String name, String description, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
      Returns an ordered range of all the ddm structures that the user has permissions to view where groupId = ? and name = ? and description = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DDMStructureModelImpl.

      Parameters:
      groupId - the group ID
      name - the name
      description - the description
      start - the lower bound of the range of ddm structures
      end - the upper bound of the range of ddm structures (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching ddm structures that the user has permission to view
    • filterFindByG_N_D_PrevAndNext

      DDMStructure[] filterFindByG_N_D_PrevAndNext(long structureId, long groupId, String name, String description, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator) throws NoSuchStructureException
      Returns the ddm structures before and after the current ddm structure in the ordered set of ddm structures that the user has permission to view where groupId = ? and name = ? and description = ?.
      Parameters:
      structureId - the primary key of the current ddm structure
      groupId - the group ID
      name - the name
      description - the description
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next ddm structure
      Throws:
      NoSuchStructureException - if a ddm structure with the primary key could not be found
    • removeByG_N_D

      void removeByG_N_D(long groupId, String name, String description)
      Removes all the ddm structures where groupId = ? and name = ? and description = ? from the database.
      Parameters:
      groupId - the group ID
      name - the name
      description - the description
    • countByG_N_D

      int countByG_N_D(long groupId, String name, String description)
      Returns the number of ddm structures where groupId = ? and name = ? and description = ?.
      Parameters:
      groupId - the group ID
      name - the name
      description - the description
      Returns:
      the number of matching ddm structures
    • filterCountByG_N_D

      int filterCountByG_N_D(long groupId, String name, String description)
      Returns the number of ddm structures that the user has permission to view where groupId = ? and name = ? and description = ?.
      Parameters:
      groupId - the group ID
      name - the name
      description - the description
      Returns:
      the number of matching ddm structures that the user has permission to view
    • findByG_C_N_D

      List<DDMStructure> findByG_C_N_D(long groupId, long classNameId, String name, String description)
      Returns all the ddm structures where groupId = ? and classNameId = ? and name = ? and description = ?.
      Parameters:
      groupId - the group ID
      classNameId - the class name ID
      name - the name
      description - the description
      Returns:
      the matching ddm structures
    • findByG_C_N_D

      List<DDMStructure> findByG_C_N_D(long groupId, long classNameId, String name, String description, int start, int end)
      Returns a range of all the ddm structures where groupId = ? and classNameId = ? and name = ? and description = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DDMStructureModelImpl.

      Parameters:
      groupId - the group ID
      classNameId - the class name ID
      name - the name
      description - the description
      start - the lower bound of the range of ddm structures
      end - the upper bound of the range of ddm structures (not inclusive)
      Returns:
      the range of matching ddm structures
    • findByG_C_N_D

      List<DDMStructure> findByG_C_N_D(long groupId, long classNameId, String name, String description, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
      Returns an ordered range of all the ddm structures where groupId = ? and classNameId = ? and name = ? and description = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DDMStructureModelImpl.

      Parameters:
      groupId - the group ID
      classNameId - the class name ID
      name - the name
      description - the description
      start - the lower bound of the range of ddm structures
      end - the upper bound of the range of ddm structures (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching ddm structures
    • findByG_C_N_D

      List<DDMStructure> findByG_C_N_D(long groupId, long classNameId, String name, String description, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the ddm structures where groupId = ? and classNameId = ? and name = ? and description = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DDMStructureModelImpl.

      Parameters:
      groupId - the group ID
      classNameId - the class name ID
      name - the name
      description - the description
      start - the lower bound of the range of ddm structures
      end - the upper bound of the range of ddm structures (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching ddm structures
    • findByG_C_N_D_First

      DDMStructure findByG_C_N_D_First(long groupId, long classNameId, String name, String description, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator) throws NoSuchStructureException
      Returns the first ddm structure in the ordered set where groupId = ? and classNameId = ? and name = ? and description = ?.
      Parameters:
      groupId - the group ID
      classNameId - the class name ID
      name - the name
      description - the description
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching ddm structure
      Throws:
      NoSuchStructureException - if a matching ddm structure could not be found
    • fetchByG_C_N_D_First

      DDMStructure fetchByG_C_N_D_First(long groupId, long classNameId, String name, String description, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
      Returns the first ddm structure in the ordered set where groupId = ? and classNameId = ? and name = ? and description = ?.
      Parameters:
      groupId - the group ID
      classNameId - the class name ID
      name - the name
      description - the description
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching ddm structure, or null if a matching ddm structure could not be found
    • findByG_C_N_D_Last

      DDMStructure findByG_C_N_D_Last(long groupId, long classNameId, String name, String description, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator) throws NoSuchStructureException
      Returns the last ddm structure in the ordered set where groupId = ? and classNameId = ? and name = ? and description = ?.
      Parameters:
      groupId - the group ID
      classNameId - the class name ID
      name - the name
      description - the description
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching ddm structure
      Throws:
      NoSuchStructureException - if a matching ddm structure could not be found
    • fetchByG_C_N_D_Last

      DDMStructure fetchByG_C_N_D_Last(long groupId, long classNameId, String name, String description, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
      Returns the last ddm structure in the ordered set where groupId = ? and classNameId = ? and name = ? and description = ?.
      Parameters:
      groupId - the group ID
      classNameId - the class name ID
      name - the name
      description - the description
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching ddm structure, or null if a matching ddm structure could not be found
    • findByG_C_N_D_PrevAndNext

      DDMStructure[] findByG_C_N_D_PrevAndNext(long structureId, long groupId, long classNameId, String name, String description, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator) throws NoSuchStructureException
      Returns the ddm structures before and after the current ddm structure in the ordered set where groupId = ? and classNameId = ? and name = ? and description = ?.
      Parameters:
      structureId - the primary key of the current ddm structure
      groupId - the group ID
      classNameId - the class name ID
      name - the name
      description - the description
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next ddm structure
      Throws:
      NoSuchStructureException - if a ddm structure with the primary key could not be found
    • filterFindByG_C_N_D

      List<DDMStructure> filterFindByG_C_N_D(long groupId, long classNameId, String name, String description)
      Returns all the ddm structures that the user has permission to view where groupId = ? and classNameId = ? and name = ? and description = ?.
      Parameters:
      groupId - the group ID
      classNameId - the class name ID
      name - the name
      description - the description
      Returns:
      the matching ddm structures that the user has permission to view
    • filterFindByG_C_N_D

      List<DDMStructure> filterFindByG_C_N_D(long groupId, long classNameId, String name, String description, int start, int end)
      Returns a range of all the ddm structures that the user has permission to view where groupId = ? and classNameId = ? and name = ? and description = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DDMStructureModelImpl.

      Parameters:
      groupId - the group ID
      classNameId - the class name ID
      name - the name
      description - the description
      start - the lower bound of the range of ddm structures
      end - the upper bound of the range of ddm structures (not inclusive)
      Returns:
      the range of matching ddm structures that the user has permission to view
    • filterFindByG_C_N_D

      List<DDMStructure> filterFindByG_C_N_D(long groupId, long classNameId, String name, String description, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
      Returns an ordered range of all the ddm structures that the user has permissions to view where groupId = ? and classNameId = ? and name = ? and description = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DDMStructureModelImpl.

      Parameters:
      groupId - the group ID
      classNameId - the class name ID
      name - the name
      description - the description
      start - the lower bound of the range of ddm structures
      end - the upper bound of the range of ddm structures (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching ddm structures that the user has permission to view
    • filterFindByG_C_N_D_PrevAndNext

      DDMStructure[] filterFindByG_C_N_D_PrevAndNext(long structureId, long groupId, long classNameId, String name, String description, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator) throws NoSuchStructureException
      Returns the ddm structures before and after the current ddm structure in the ordered set of ddm structures that the user has permission to view where groupId = ? and classNameId = ? and name = ? and description = ?.
      Parameters:
      structureId - the primary key of the current ddm structure
      groupId - the group ID
      classNameId - the class name ID
      name - the name
      description - the description
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next ddm structure
      Throws:
      NoSuchStructureException - if a ddm structure with the primary key could not be found
    • filterFindByG_C_N_D

      List<DDMStructure> filterFindByG_C_N_D(long[] groupIds, long classNameId, String name, String description)
      Returns all the ddm structures that the user has permission to view where groupId = any ? and classNameId = ? and name = ? and description = ?.
      Parameters:
      groupIds - the group IDs
      classNameId - the class name ID
      name - the name
      description - the description
      Returns:
      the matching ddm structures that the user has permission to view
    • filterFindByG_C_N_D

      List<DDMStructure> filterFindByG_C_N_D(long[] groupIds, long classNameId, String name, String description, int start, int end)
      Returns a range of all the ddm structures that the user has permission to view where groupId = any ? and classNameId = ? and name = ? and description = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DDMStructureModelImpl.

      Parameters:
      groupIds - the group IDs
      classNameId - the class name ID
      name - the name
      description - the description
      start - the lower bound of the range of ddm structures
      end - the upper bound of the range of ddm structures (not inclusive)
      Returns:
      the range of matching ddm structures that the user has permission to view
    • filterFindByG_C_N_D

      List<DDMStructure> filterFindByG_C_N_D(long[] groupIds, long classNameId, String name, String description, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
      Returns an ordered range of all the ddm structures that the user has permission to view where groupId = any ? and classNameId = ? and name = ? and description = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DDMStructureModelImpl.

      Parameters:
      groupIds - the group IDs
      classNameId - the class name ID
      name - the name
      description - the description
      start - the lower bound of the range of ddm structures
      end - the upper bound of the range of ddm structures (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching ddm structures that the user has permission to view
    • findByG_C_N_D

      List<DDMStructure> findByG_C_N_D(long[] groupIds, long classNameId, String name, String description)
      Returns all the ddm structures where groupId = any ? and classNameId = ? and name = ? and description = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DDMStructureModelImpl.

      Parameters:
      groupIds - the group IDs
      classNameId - the class name ID
      name - the name
      description - the description
      Returns:
      the matching ddm structures
    • findByG_C_N_D

      List<DDMStructure> findByG_C_N_D(long[] groupIds, long classNameId, String name, String description, int start, int end)
      Returns a range of all the ddm structures where groupId = any ? and classNameId = ? and name = ? and description = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DDMStructureModelImpl.

      Parameters:
      groupIds - the group IDs
      classNameId - the class name ID
      name - the name
      description - the description
      start - the lower bound of the range of ddm structures
      end - the upper bound of the range of ddm structures (not inclusive)
      Returns:
      the range of matching ddm structures
    • findByG_C_N_D

      List<DDMStructure> findByG_C_N_D(long[] groupIds, long classNameId, String name, String description, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
      Returns an ordered range of all the ddm structures where groupId = any ? and classNameId = ? and name = ? and description = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DDMStructureModelImpl.

      Parameters:
      groupIds - the group IDs
      classNameId - the class name ID
      name - the name
      description - the description
      start - the lower bound of the range of ddm structures
      end - the upper bound of the range of ddm structures (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching ddm structures
    • findByG_C_N_D

      List<DDMStructure> findByG_C_N_D(long[] groupIds, long classNameId, String name, String description, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the ddm structures where groupId = ? and classNameId = ? and name = ? and description = ?, optionally using the finder cache.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DDMStructureModelImpl.

      Parameters:
      groupIds - the group IDs
      classNameId - the class name ID
      name - the name
      description - the description
      start - the lower bound of the range of ddm structures
      end - the upper bound of the range of ddm structures (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching ddm structures
    • removeByG_C_N_D

      void removeByG_C_N_D(long groupId, long classNameId, String name, String description)
      Removes all the ddm structures where groupId = ? and classNameId = ? and name = ? and description = ? from the database.
      Parameters:
      groupId - the group ID
      classNameId - the class name ID
      name - the name
      description - the description
    • countByG_C_N_D

      int countByG_C_N_D(long groupId, long classNameId, String name, String description)
      Returns the number of ddm structures where groupId = ? and classNameId = ? and name = ? and description = ?.
      Parameters:
      groupId - the group ID
      classNameId - the class name ID
      name - the name
      description - the description
      Returns:
      the number of matching ddm structures
    • countByG_C_N_D

      int countByG_C_N_D(long[] groupIds, long classNameId, String name, String description)
      Returns the number of ddm structures where groupId = any ? and classNameId = ? and name = ? and description = ?.
      Parameters:
      groupIds - the group IDs
      classNameId - the class name ID
      name - the name
      description - the description
      Returns:
      the number of matching ddm structures
    • filterCountByG_C_N_D

      int filterCountByG_C_N_D(long groupId, long classNameId, String name, String description)
      Returns the number of ddm structures that the user has permission to view where groupId = ? and classNameId = ? and name = ? and description = ?.
      Parameters:
      groupId - the group ID
      classNameId - the class name ID
      name - the name
      description - the description
      Returns:
      the number of matching ddm structures that the user has permission to view
    • filterCountByG_C_N_D

      int filterCountByG_C_N_D(long[] groupIds, long classNameId, String name, String description)
      Returns the number of ddm structures that the user has permission to view where groupId = any ? and classNameId = ? and name = ? and description = ?.
      Parameters:
      groupIds - the group IDs
      classNameId - the class name ID
      name - the name
      description - the description
      Returns:
      the number of matching ddm structures that the user has permission to view
    • cacheResult

      void cacheResult(DDMStructure ddmStructure)
      Caches the ddm structure in the entity cache if it is enabled.
      Parameters:
      ddmStructure - the ddm structure
    • cacheResult

      void cacheResult(List<DDMStructure> ddmStructures)
      Caches the ddm structures in the entity cache if it is enabled.
      Parameters:
      ddmStructures - the ddm structures
    • create

      DDMStructure create(long structureId)
      Creates a new ddm structure with the primary key. Does not add the ddm structure to the database.
      Parameters:
      structureId - the primary key for the new ddm structure
      Returns:
      the new ddm structure
    • remove

      DDMStructure remove(long structureId) throws NoSuchStructureException
      Removes the ddm structure with the primary key from the database. Also notifies the appropriate model listeners.
      Parameters:
      structureId - the primary key of the ddm structure
      Returns:
      the ddm structure that was removed
      Throws:
      NoSuchStructureException - if a ddm structure with the primary key could not be found
    • updateImpl

      DDMStructure updateImpl(DDMStructure ddmStructure)
    • findByPrimaryKey

      DDMStructure findByPrimaryKey(long structureId) throws NoSuchStructureException
      Returns the ddm structure with the primary key or throws a NoSuchStructureException if it could not be found.
      Parameters:
      structureId - the primary key of the ddm structure
      Returns:
      the ddm structure
      Throws:
      NoSuchStructureException - if a ddm structure with the primary key could not be found
    • fetchByPrimaryKey

      DDMStructure fetchByPrimaryKey(long structureId)
      Returns the ddm structure with the primary key or returns null if it could not be found.
      Parameters:
      structureId - the primary key of the ddm structure
      Returns:
      the ddm structure, or null if a ddm structure with the primary key could not be found
    • findAll

      List<DDMStructure> findAll()
      Returns all the ddm structures.
      Returns:
      the ddm structures
    • findAll

      List<DDMStructure> findAll(int start, int end)
      Returns a range of all the ddm structures.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DDMStructureModelImpl.

      Parameters:
      start - the lower bound of the range of ddm structures
      end - the upper bound of the range of ddm structures (not inclusive)
      Returns:
      the range of ddm structures
    • findAll

      List<DDMStructure> findAll(int start, int end, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator)
      Returns an ordered range of all the ddm structures.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DDMStructureModelImpl.

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

      List<DDMStructure> findAll(int start, int end, com.liferay.portal.kernel.util.OrderByComparator<DDMStructure> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the ddm structures.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DDMStructureModelImpl.

      Parameters:
      start - the lower bound of the range of ddm structures
      end - the upper bound of the range of ddm structures (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of ddm structures
    • removeAll

      void removeAll()
      Removes all the ddm structures from the database.
    • countAll

      int countAll()
      Returns the number of ddm structures.
      Returns:
      the number of ddm structures