@ProviderType public interface LayoutSetBranchPersistence extends BasePersistence<LayoutSetBranch>
Caching information and settings can be found in portal.properties
LayoutSetBranchPersistenceImpl,
LayoutSetBranchUtil| Modifier and Type | Method and Description |
|---|---|
void |
cacheResult(LayoutSetBranch layoutSetBranch)
Caches the layout set branch in the entity cache if it is enabled.
|
void |
cacheResult(java.util.List<LayoutSetBranch> layoutSetBranchs)
Caches the layout set branchs in the entity cache if it is enabled.
|
int |
countAll()
Returns the number of layout set branchs.
|
int |
countByG_P_M(long groupId,
boolean privateLayout,
boolean master)
Returns the number of layout set branchs where groupId = ? and privateLayout = ? and master = ?.
|
int |
countByG_P_N(long groupId,
boolean privateLayout,
java.lang.String name)
Returns the number of layout set branchs where groupId = ? and privateLayout = ? and name = ?.
|
int |
countByG_P(long groupId,
boolean privateLayout)
Returns the number of layout set branchs where groupId = ? and privateLayout = ?.
|
int |
countByGroupId(long groupId)
Returns the number of layout set branchs where groupId = ?.
|
LayoutSetBranch |
create(long layoutSetBranchId)
Creates a new layout set branch with the primary key.
|
LayoutSetBranch |
fetchByG_P_First(long groupId,
boolean privateLayout,
OrderByComparator orderByComparator)
Returns the first layout set branch in the ordered set where groupId = ? and privateLayout = ?.
|
LayoutSetBranch |
fetchByG_P_Last(long groupId,
boolean privateLayout,
OrderByComparator orderByComparator)
Returns the last layout set branch in the ordered set where groupId = ? and privateLayout = ?.
|
LayoutSetBranch |
fetchByG_P_M_First(long groupId,
boolean privateLayout,
boolean master,
OrderByComparator orderByComparator)
Returns the first layout set branch in the ordered set where groupId = ? and privateLayout = ? and master = ?.
|
LayoutSetBranch |
fetchByG_P_M_Last(long groupId,
boolean privateLayout,
boolean master,
OrderByComparator orderByComparator)
Returns the last layout set branch in the ordered set where groupId = ? and privateLayout = ? and master = ?.
|
LayoutSetBranch |
fetchByG_P_N(long groupId,
boolean privateLayout,
java.lang.String name)
Returns the layout set branch where groupId = ? and privateLayout = ? and name = ? or returns
null if it could not be found. |
LayoutSetBranch |
fetchByG_P_N(long groupId,
boolean privateLayout,
java.lang.String name,
boolean retrieveFromCache)
Returns the layout set branch where groupId = ? and privateLayout = ? and name = ? or returns
null if it could not be found, optionally using the finder cache. |
LayoutSetBranch |
fetchByGroupId_First(long groupId,
OrderByComparator orderByComparator)
Returns the first layout set branch in the ordered set where groupId = ?.
|
LayoutSetBranch |
fetchByGroupId_Last(long groupId,
OrderByComparator orderByComparator)
Returns the last layout set branch in the ordered set where groupId = ?.
|
LayoutSetBranch |
fetchByPrimaryKey(long layoutSetBranchId)
Returns the layout set branch with the primary key or returns
null if it could not be found. |
int |
filterCountByG_P_M(long groupId,
boolean privateLayout,
boolean master)
Returns the number of layout set branchs that the user has permission to view where groupId = ? and privateLayout = ? and master = ?.
|
int |
filterCountByG_P(long groupId,
boolean privateLayout)
Returns the number of layout set branchs that the user has permission to view where groupId = ? and privateLayout = ?.
|
int |
filterCountByGroupId(long groupId)
Returns the number of layout set branchs that the user has permission to view where groupId = ?.
|
LayoutSetBranch[] |
filterFindByG_P_M_PrevAndNext(long layoutSetBranchId,
long groupId,
boolean privateLayout,
boolean master,
OrderByComparator orderByComparator)
Returns the layout set branchs before and after the current layout set branch in the ordered set of layout set branchs that the user has permission to view where groupId = ? and privateLayout = ? and master = ?.
|
java.util.List<LayoutSetBranch> |
filterFindByG_P_M(long groupId,
boolean privateLayout,
boolean master)
Returns all the layout set branchs that the user has permission to view where groupId = ? and privateLayout = ? and master = ?.
|
java.util.List<LayoutSetBranch> |
filterFindByG_P_M(long groupId,
boolean privateLayout,
boolean master,
int start,
int end)
Returns a range of all the layout set branchs that the user has permission to view where groupId = ? and privateLayout = ? and master = ?.
|
java.util.List<LayoutSetBranch> |
filterFindByG_P_M(long groupId,
boolean privateLayout,
boolean master,
int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the layout set branchs that the user has permissions to view where groupId = ? and privateLayout = ? and master = ?.
|
LayoutSetBranch[] |
filterFindByG_P_PrevAndNext(long layoutSetBranchId,
long groupId,
boolean privateLayout,
OrderByComparator orderByComparator)
Returns the layout set branchs before and after the current layout set branch in the ordered set of layout set branchs that the user has permission to view where groupId = ? and privateLayout = ?.
|
java.util.List<LayoutSetBranch> |
filterFindByG_P(long groupId,
boolean privateLayout)
Returns all the layout set branchs that the user has permission to view where groupId = ? and privateLayout = ?.
|
java.util.List<LayoutSetBranch> |
filterFindByG_P(long groupId,
boolean privateLayout,
int start,
int end)
Returns a range of all the layout set branchs that the user has permission to view where groupId = ? and privateLayout = ?.
|
java.util.List<LayoutSetBranch> |
filterFindByG_P(long groupId,
boolean privateLayout,
int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the layout set branchs that the user has permissions to view where groupId = ? and privateLayout = ?.
|
LayoutSetBranch[] |
filterFindByGroupId_PrevAndNext(long layoutSetBranchId,
long groupId,
OrderByComparator orderByComparator)
Returns the layout set branchs before and after the current layout set branch in the ordered set of layout set branchs that the user has permission to view where groupId = ?.
|
java.util.List<LayoutSetBranch> |
filterFindByGroupId(long groupId)
Returns all the layout set branchs that the user has permission to view where groupId = ?.
|
java.util.List<LayoutSetBranch> |
filterFindByGroupId(long groupId,
int start,
int end)
Returns a range of all the layout set branchs that the user has permission to view where groupId = ?.
|
java.util.List<LayoutSetBranch> |
filterFindByGroupId(long groupId,
int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the layout set branchs that the user has permissions to view where groupId = ?.
|
java.util.List<LayoutSetBranch> |
findAll()
Returns all the layout set branchs.
|
java.util.List<LayoutSetBranch> |
findAll(int start,
int end)
Returns a range of all the layout set branchs.
|
java.util.List<LayoutSetBranch> |
findAll(int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the layout set branchs.
|
LayoutSetBranch |
findByG_P_First(long groupId,
boolean privateLayout,
OrderByComparator orderByComparator)
Returns the first layout set branch in the ordered set where groupId = ? and privateLayout = ?.
|
LayoutSetBranch |
findByG_P_Last(long groupId,
boolean privateLayout,
OrderByComparator orderByComparator)
Returns the last layout set branch in the ordered set where groupId = ? and privateLayout = ?.
|
LayoutSetBranch |
findByG_P_M_First(long groupId,
boolean privateLayout,
boolean master,
OrderByComparator orderByComparator)
Returns the first layout set branch in the ordered set where groupId = ? and privateLayout = ? and master = ?.
|
LayoutSetBranch |
findByG_P_M_Last(long groupId,
boolean privateLayout,
boolean master,
OrderByComparator orderByComparator)
Returns the last layout set branch in the ordered set where groupId = ? and privateLayout = ? and master = ?.
|
LayoutSetBranch[] |
findByG_P_M_PrevAndNext(long layoutSetBranchId,
long groupId,
boolean privateLayout,
boolean master,
OrderByComparator orderByComparator)
Returns the layout set branchs before and after the current layout set branch in the ordered set where groupId = ? and privateLayout = ? and master = ?.
|
java.util.List<LayoutSetBranch> |
findByG_P_M(long groupId,
boolean privateLayout,
boolean master)
Returns all the layout set branchs where groupId = ? and privateLayout = ? and master = ?.
|
java.util.List<LayoutSetBranch> |
findByG_P_M(long groupId,
boolean privateLayout,
boolean master,
int start,
int end)
Returns a range of all the layout set branchs where groupId = ? and privateLayout = ? and master = ?.
|
java.util.List<LayoutSetBranch> |
findByG_P_M(long groupId,
boolean privateLayout,
boolean master,
int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the layout set branchs where groupId = ? and privateLayout = ? and master = ?.
|
LayoutSetBranch |
findByG_P_N(long groupId,
boolean privateLayout,
java.lang.String name)
Returns the layout set branch where groupId = ? and privateLayout = ? and name = ? or throws a
NoSuchLayoutSetBranchException if it could not be found. |
LayoutSetBranch[] |
findByG_P_PrevAndNext(long layoutSetBranchId,
long groupId,
boolean privateLayout,
OrderByComparator orderByComparator)
Returns the layout set branchs before and after the current layout set branch in the ordered set where groupId = ? and privateLayout = ?.
|
java.util.List<LayoutSetBranch> |
findByG_P(long groupId,
boolean privateLayout)
Returns all the layout set branchs where groupId = ? and privateLayout = ?.
|
java.util.List<LayoutSetBranch> |
findByG_P(long groupId,
boolean privateLayout,
int start,
int end)
Returns a range of all the layout set branchs where groupId = ? and privateLayout = ?.
|
java.util.List<LayoutSetBranch> |
findByG_P(long groupId,
boolean privateLayout,
int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the layout set branchs where groupId = ? and privateLayout = ?.
|
LayoutSetBranch |
findByGroupId_First(long groupId,
OrderByComparator orderByComparator)
Returns the first layout set branch in the ordered set where groupId = ?.
|
LayoutSetBranch |
findByGroupId_Last(long groupId,
OrderByComparator orderByComparator)
Returns the last layout set branch in the ordered set where groupId = ?.
|
LayoutSetBranch[] |
findByGroupId_PrevAndNext(long layoutSetBranchId,
long groupId,
OrderByComparator orderByComparator)
Returns the layout set branchs before and after the current layout set branch in the ordered set where groupId = ?.
|
java.util.List<LayoutSetBranch> |
findByGroupId(long groupId)
Returns all the layout set branchs where groupId = ?.
|
java.util.List<LayoutSetBranch> |
findByGroupId(long groupId,
int start,
int end)
Returns a range of all the layout set branchs where groupId = ?.
|
java.util.List<LayoutSetBranch> |
findByGroupId(long groupId,
int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the layout set branchs where groupId = ?.
|
LayoutSetBranch |
findByPrimaryKey(long layoutSetBranchId)
Returns the layout set branch with the primary key or throws a
NoSuchLayoutSetBranchException if it could not be found. |
LayoutSetBranch |
remove(long layoutSetBranchId)
Removes the layout set branch with the primary key from the database.
|
void |
removeAll()
Removes all the layout set branchs from the database.
|
void |
removeByG_P_M(long groupId,
boolean privateLayout,
boolean master)
Removes all the layout set branchs where groupId = ? and privateLayout = ? and master = ? from the database.
|
LayoutSetBranch |
removeByG_P_N(long groupId,
boolean privateLayout,
java.lang.String name)
Removes the layout set branch where groupId = ? and privateLayout = ? and name = ? from the database.
|
void |
removeByG_P(long groupId,
boolean privateLayout)
Removes all the layout set branchs where groupId = ? and privateLayout = ? from the database.
|
void |
removeByGroupId(long groupId)
Removes all the layout set branchs where groupId = ? from the database.
|
LayoutSetBranch |
updateImpl(LayoutSetBranch layoutSetBranch) |
clearCache, clearCache, clearCache, closeSession, countWithDynamicQuery, countWithDynamicQuery, fetchByPrimaryKey, findByPrimaryKey, findWithDynamicQuery, findWithDynamicQuery, findWithDynamicQuery, flush, getCurrentSession, getDataSource, getListeners, getModelClass, openSession, processException, registerListener, remove, remove, setDataSource, unregisterListener, update, update, update, updatejava.util.List<LayoutSetBranch> findByGroupId(long groupId) throws SystemException
groupId - the group IDSystemException - if a system exception occurredjava.util.List<LayoutSetBranch> findByGroupId(long groupId, int start, int end) throws SystemException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil.ALL_POS), then the query will include the default ORDER BY logic from LayoutSetBranchModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
groupId - the group IDstart - the lower bound of the range of layout set branchsend - the upper bound of the range of layout set branchs (not inclusive)SystemException - if a system exception occurredjava.util.List<LayoutSetBranch> findByGroupId(long groupId, int start, int end, OrderByComparator orderByComparator) throws SystemException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil.ALL_POS), then the query will include the default ORDER BY logic from LayoutSetBranchModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
groupId - the group IDstart - the lower bound of the range of layout set branchsend - the upper bound of the range of layout set branchs (not inclusive)orderByComparator - the comparator to order the results by (optionally null)SystemException - if a system exception occurredLayoutSetBranch findByGroupId_First(long groupId, OrderByComparator orderByComparator) throws NoSuchLayoutSetBranchException, SystemException
groupId - the group IDorderByComparator - the comparator to order the set by (optionally null)NoSuchLayoutSetBranchException - if a matching layout set branch could not be foundSystemException - if a system exception occurredLayoutSetBranch fetchByGroupId_First(long groupId, OrderByComparator orderByComparator) throws SystemException
groupId - the group IDorderByComparator - the comparator to order the set by (optionally null)null if a matching layout set branch could not be foundSystemException - if a system exception occurredLayoutSetBranch findByGroupId_Last(long groupId, OrderByComparator orderByComparator) throws NoSuchLayoutSetBranchException, SystemException
groupId - the group IDorderByComparator - the comparator to order the set by (optionally null)NoSuchLayoutSetBranchException - if a matching layout set branch could not be foundSystemException - if a system exception occurredLayoutSetBranch fetchByGroupId_Last(long groupId, OrderByComparator orderByComparator) throws SystemException
groupId - the group IDorderByComparator - the comparator to order the set by (optionally null)null if a matching layout set branch could not be foundSystemException - if a system exception occurredLayoutSetBranch[] findByGroupId_PrevAndNext(long layoutSetBranchId, long groupId, OrderByComparator orderByComparator) throws NoSuchLayoutSetBranchException, SystemException
layoutSetBranchId - the primary key of the current layout set branchgroupId - the group IDorderByComparator - the comparator to order the set by (optionally null)NoSuchLayoutSetBranchException - if a layout set branch with the primary key could not be foundSystemException - if a system exception occurredjava.util.List<LayoutSetBranch> filterFindByGroupId(long groupId) throws SystemException
groupId - the group IDSystemException - if a system exception occurredjava.util.List<LayoutSetBranch> filterFindByGroupId(long groupId, int start, int end) throws SystemException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil.ALL_POS), then the query will include the default ORDER BY logic from LayoutSetBranchModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
groupId - the group IDstart - the lower bound of the range of layout set branchsend - the upper bound of the range of layout set branchs (not inclusive)SystemException - if a system exception occurredjava.util.List<LayoutSetBranch> filterFindByGroupId(long groupId, int start, int end, OrderByComparator orderByComparator) throws SystemException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil.ALL_POS), then the query will include the default ORDER BY logic from LayoutSetBranchModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
groupId - the group IDstart - the lower bound of the range of layout set branchsend - the upper bound of the range of layout set branchs (not inclusive)orderByComparator - the comparator to order the results by (optionally null)SystemException - if a system exception occurredLayoutSetBranch[] filterFindByGroupId_PrevAndNext(long layoutSetBranchId, long groupId, OrderByComparator orderByComparator) throws NoSuchLayoutSetBranchException, SystemException
layoutSetBranchId - the primary key of the current layout set branchgroupId - the group IDorderByComparator - the comparator to order the set by (optionally null)NoSuchLayoutSetBranchException - if a layout set branch with the primary key could not be foundSystemException - if a system exception occurredvoid removeByGroupId(long groupId)
throws SystemException
groupId - the group IDSystemException - if a system exception occurredint countByGroupId(long groupId)
throws SystemException
groupId - the group IDSystemException - if a system exception occurredint filterCountByGroupId(long groupId)
throws SystemException
groupId - the group IDSystemException - if a system exception occurredjava.util.List<LayoutSetBranch> findByG_P(long groupId, boolean privateLayout) throws SystemException
groupId - the group IDprivateLayout - the private layoutSystemException - if a system exception occurredjava.util.List<LayoutSetBranch> findByG_P(long groupId, boolean privateLayout, int start, int end) throws SystemException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil.ALL_POS), then the query will include the default ORDER BY logic from LayoutSetBranchModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
groupId - the group IDprivateLayout - the private layoutstart - the lower bound of the range of layout set branchsend - the upper bound of the range of layout set branchs (not inclusive)SystemException - if a system exception occurredjava.util.List<LayoutSetBranch> findByG_P(long groupId, boolean privateLayout, int start, int end, OrderByComparator orderByComparator) throws SystemException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil.ALL_POS), then the query will include the default ORDER BY logic from LayoutSetBranchModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
groupId - the group IDprivateLayout - the private layoutstart - the lower bound of the range of layout set branchsend - the upper bound of the range of layout set branchs (not inclusive)orderByComparator - the comparator to order the results by (optionally null)SystemException - if a system exception occurredLayoutSetBranch findByG_P_First(long groupId, boolean privateLayout, OrderByComparator orderByComparator) throws NoSuchLayoutSetBranchException, SystemException
groupId - the group IDprivateLayout - the private layoutorderByComparator - the comparator to order the set by (optionally null)NoSuchLayoutSetBranchException - if a matching layout set branch could not be foundSystemException - if a system exception occurredLayoutSetBranch fetchByG_P_First(long groupId, boolean privateLayout, OrderByComparator orderByComparator) throws SystemException
groupId - the group IDprivateLayout - the private layoutorderByComparator - the comparator to order the set by (optionally null)null if a matching layout set branch could not be foundSystemException - if a system exception occurredLayoutSetBranch findByG_P_Last(long groupId, boolean privateLayout, OrderByComparator orderByComparator) throws NoSuchLayoutSetBranchException, SystemException
groupId - the group IDprivateLayout - the private layoutorderByComparator - the comparator to order the set by (optionally null)NoSuchLayoutSetBranchException - if a matching layout set branch could not be foundSystemException - if a system exception occurredLayoutSetBranch fetchByG_P_Last(long groupId, boolean privateLayout, OrderByComparator orderByComparator) throws SystemException
groupId - the group IDprivateLayout - the private layoutorderByComparator - the comparator to order the set by (optionally null)null if a matching layout set branch could not be foundSystemException - if a system exception occurredLayoutSetBranch[] findByG_P_PrevAndNext(long layoutSetBranchId, long groupId, boolean privateLayout, OrderByComparator orderByComparator) throws NoSuchLayoutSetBranchException, SystemException
layoutSetBranchId - the primary key of the current layout set branchgroupId - the group IDprivateLayout - the private layoutorderByComparator - the comparator to order the set by (optionally null)NoSuchLayoutSetBranchException - if a layout set branch with the primary key could not be foundSystemException - if a system exception occurredjava.util.List<LayoutSetBranch> filterFindByG_P(long groupId, boolean privateLayout) throws SystemException
groupId - the group IDprivateLayout - the private layoutSystemException - if a system exception occurredjava.util.List<LayoutSetBranch> filterFindByG_P(long groupId, boolean privateLayout, int start, int end) throws SystemException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil.ALL_POS), then the query will include the default ORDER BY logic from LayoutSetBranchModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
groupId - the group IDprivateLayout - the private layoutstart - the lower bound of the range of layout set branchsend - the upper bound of the range of layout set branchs (not inclusive)SystemException - if a system exception occurredjava.util.List<LayoutSetBranch> filterFindByG_P(long groupId, boolean privateLayout, int start, int end, OrderByComparator orderByComparator) throws SystemException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil.ALL_POS), then the query will include the default ORDER BY logic from LayoutSetBranchModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
groupId - the group IDprivateLayout - the private layoutstart - the lower bound of the range of layout set branchsend - the upper bound of the range of layout set branchs (not inclusive)orderByComparator - the comparator to order the results by (optionally null)SystemException - if a system exception occurredLayoutSetBranch[] filterFindByG_P_PrevAndNext(long layoutSetBranchId, long groupId, boolean privateLayout, OrderByComparator orderByComparator) throws NoSuchLayoutSetBranchException, SystemException
layoutSetBranchId - the primary key of the current layout set branchgroupId - the group IDprivateLayout - the private layoutorderByComparator - the comparator to order the set by (optionally null)NoSuchLayoutSetBranchException - if a layout set branch with the primary key could not be foundSystemException - if a system exception occurredvoid removeByG_P(long groupId,
boolean privateLayout)
throws SystemException
groupId - the group IDprivateLayout - the private layoutSystemException - if a system exception occurredint countByG_P(long groupId,
boolean privateLayout)
throws SystemException
groupId - the group IDprivateLayout - the private layoutSystemException - if a system exception occurredint filterCountByG_P(long groupId,
boolean privateLayout)
throws SystemException
groupId - the group IDprivateLayout - the private layoutSystemException - if a system exception occurredLayoutSetBranch findByG_P_N(long groupId, boolean privateLayout, java.lang.String name) throws NoSuchLayoutSetBranchException, SystemException
NoSuchLayoutSetBranchException if it could not be found.groupId - the group IDprivateLayout - the private layoutname - the nameNoSuchLayoutSetBranchException - if a matching layout set branch could not be foundSystemException - if a system exception occurredLayoutSetBranch fetchByG_P_N(long groupId, boolean privateLayout, java.lang.String name) throws SystemException
null if it could not be found. Uses the finder cache.groupId - the group IDprivateLayout - the private layoutname - the namenull if a matching layout set branch could not be foundSystemException - if a system exception occurredLayoutSetBranch fetchByG_P_N(long groupId, boolean privateLayout, java.lang.String name, boolean retrieveFromCache) throws SystemException
null if it could not be found, optionally using the finder cache.groupId - the group IDprivateLayout - the private layoutname - the nameretrieveFromCache - whether to use the finder cachenull if a matching layout set branch could not be foundSystemException - if a system exception occurredLayoutSetBranch removeByG_P_N(long groupId, boolean privateLayout, java.lang.String name) throws NoSuchLayoutSetBranchException, SystemException
groupId - the group IDprivateLayout - the private layoutname - the nameSystemException - if a system exception occurredNoSuchLayoutSetBranchExceptionint countByG_P_N(long groupId,
boolean privateLayout,
java.lang.String name)
throws SystemException
groupId - the group IDprivateLayout - the private layoutname - the nameSystemException - if a system exception occurredjava.util.List<LayoutSetBranch> findByG_P_M(long groupId, boolean privateLayout, boolean master) throws SystemException
groupId - the group IDprivateLayout - the private layoutmaster - the masterSystemException - if a system exception occurredjava.util.List<LayoutSetBranch> findByG_P_M(long groupId, boolean privateLayout, boolean master, int start, int end) throws SystemException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil.ALL_POS), then the query will include the default ORDER BY logic from LayoutSetBranchModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
groupId - the group IDprivateLayout - the private layoutmaster - the masterstart - the lower bound of the range of layout set branchsend - the upper bound of the range of layout set branchs (not inclusive)SystemException - if a system exception occurredjava.util.List<LayoutSetBranch> findByG_P_M(long groupId, boolean privateLayout, boolean master, int start, int end, OrderByComparator orderByComparator) throws SystemException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil.ALL_POS), then the query will include the default ORDER BY logic from LayoutSetBranchModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
groupId - the group IDprivateLayout - the private layoutmaster - the masterstart - the lower bound of the range of layout set branchsend - the upper bound of the range of layout set branchs (not inclusive)orderByComparator - the comparator to order the results by (optionally null)SystemException - if a system exception occurredLayoutSetBranch findByG_P_M_First(long groupId, boolean privateLayout, boolean master, OrderByComparator orderByComparator) throws NoSuchLayoutSetBranchException, SystemException
groupId - the group IDprivateLayout - the private layoutmaster - the masterorderByComparator - the comparator to order the set by (optionally null)NoSuchLayoutSetBranchException - if a matching layout set branch could not be foundSystemException - if a system exception occurredLayoutSetBranch fetchByG_P_M_First(long groupId, boolean privateLayout, boolean master, OrderByComparator orderByComparator) throws SystemException
groupId - the group IDprivateLayout - the private layoutmaster - the masterorderByComparator - the comparator to order the set by (optionally null)null if a matching layout set branch could not be foundSystemException - if a system exception occurredLayoutSetBranch findByG_P_M_Last(long groupId, boolean privateLayout, boolean master, OrderByComparator orderByComparator) throws NoSuchLayoutSetBranchException, SystemException
groupId - the group IDprivateLayout - the private layoutmaster - the masterorderByComparator - the comparator to order the set by (optionally null)NoSuchLayoutSetBranchException - if a matching layout set branch could not be foundSystemException - if a system exception occurredLayoutSetBranch fetchByG_P_M_Last(long groupId, boolean privateLayout, boolean master, OrderByComparator orderByComparator) throws SystemException
groupId - the group IDprivateLayout - the private layoutmaster - the masterorderByComparator - the comparator to order the set by (optionally null)null if a matching layout set branch could not be foundSystemException - if a system exception occurredLayoutSetBranch[] findByG_P_M_PrevAndNext(long layoutSetBranchId, long groupId, boolean privateLayout, boolean master, OrderByComparator orderByComparator) throws NoSuchLayoutSetBranchException, SystemException
layoutSetBranchId - the primary key of the current layout set branchgroupId - the group IDprivateLayout - the private layoutmaster - the masterorderByComparator - the comparator to order the set by (optionally null)NoSuchLayoutSetBranchException - if a layout set branch with the primary key could not be foundSystemException - if a system exception occurredjava.util.List<LayoutSetBranch> filterFindByG_P_M(long groupId, boolean privateLayout, boolean master) throws SystemException
groupId - the group IDprivateLayout - the private layoutmaster - the masterSystemException - if a system exception occurredjava.util.List<LayoutSetBranch> filterFindByG_P_M(long groupId, boolean privateLayout, boolean master, int start, int end) throws SystemException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil.ALL_POS), then the query will include the default ORDER BY logic from LayoutSetBranchModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
groupId - the group IDprivateLayout - the private layoutmaster - the masterstart - the lower bound of the range of layout set branchsend - the upper bound of the range of layout set branchs (not inclusive)SystemException - if a system exception occurredjava.util.List<LayoutSetBranch> filterFindByG_P_M(long groupId, boolean privateLayout, boolean master, int start, int end, OrderByComparator orderByComparator) throws SystemException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil.ALL_POS), then the query will include the default ORDER BY logic from LayoutSetBranchModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
groupId - the group IDprivateLayout - the private layoutmaster - the masterstart - the lower bound of the range of layout set branchsend - the upper bound of the range of layout set branchs (not inclusive)orderByComparator - the comparator to order the results by (optionally null)SystemException - if a system exception occurredLayoutSetBranch[] filterFindByG_P_M_PrevAndNext(long layoutSetBranchId, long groupId, boolean privateLayout, boolean master, OrderByComparator orderByComparator) throws NoSuchLayoutSetBranchException, SystemException
layoutSetBranchId - the primary key of the current layout set branchgroupId - the group IDprivateLayout - the private layoutmaster - the masterorderByComparator - the comparator to order the set by (optionally null)NoSuchLayoutSetBranchException - if a layout set branch with the primary key could not be foundSystemException - if a system exception occurredvoid removeByG_P_M(long groupId,
boolean privateLayout,
boolean master)
throws SystemException
groupId - the group IDprivateLayout - the private layoutmaster - the masterSystemException - if a system exception occurredint countByG_P_M(long groupId,
boolean privateLayout,
boolean master)
throws SystemException
groupId - the group IDprivateLayout - the private layoutmaster - the masterSystemException - if a system exception occurredint filterCountByG_P_M(long groupId,
boolean privateLayout,
boolean master)
throws SystemException
groupId - the group IDprivateLayout - the private layoutmaster - the masterSystemException - if a system exception occurredvoid cacheResult(LayoutSetBranch layoutSetBranch)
layoutSetBranch - the layout set branchvoid cacheResult(java.util.List<LayoutSetBranch> layoutSetBranchs)
layoutSetBranchs - the layout set branchsLayoutSetBranch create(long layoutSetBranchId)
layoutSetBranchId - the primary key for the new layout set branchLayoutSetBranch remove(long layoutSetBranchId) throws NoSuchLayoutSetBranchException, SystemException
layoutSetBranchId - the primary key of the layout set branchNoSuchLayoutSetBranchException - if a layout set branch with the primary key could not be foundSystemException - if a system exception occurredLayoutSetBranch updateImpl(LayoutSetBranch layoutSetBranch) throws SystemException
SystemExceptionLayoutSetBranch findByPrimaryKey(long layoutSetBranchId) throws NoSuchLayoutSetBranchException, SystemException
NoSuchLayoutSetBranchException if it could not be found.layoutSetBranchId - the primary key of the layout set branchNoSuchLayoutSetBranchException - if a layout set branch with the primary key could not be foundSystemException - if a system exception occurredLayoutSetBranch fetchByPrimaryKey(long layoutSetBranchId) throws SystemException
null if it could not be found.layoutSetBranchId - the primary key of the layout set branchnull if a layout set branch with the primary key could not be foundSystemException - if a system exception occurredjava.util.List<LayoutSetBranch> findAll() throws SystemException
SystemException - if a system exception occurredjava.util.List<LayoutSetBranch> findAll(int start, int end) throws SystemException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil.ALL_POS), then the query will include the default ORDER BY logic from LayoutSetBranchModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
start - the lower bound of the range of layout set branchsend - the upper bound of the range of layout set branchs (not inclusive)SystemException - if a system exception occurredjava.util.List<LayoutSetBranch> findAll(int start, int end, OrderByComparator orderByComparator) throws SystemException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil.ALL_POS), then the query will include the default ORDER BY logic from LayoutSetBranchModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
start - the lower bound of the range of layout set branchsend - the upper bound of the range of layout set branchs (not inclusive)orderByComparator - the comparator to order the results by (optionally null)SystemException - if a system exception occurredvoid removeAll()
throws SystemException
SystemException - if a system exception occurredint countAll()
throws SystemException
SystemException - if a system exception occurred