@ProviderType public interface LayoutBranchPersistence extends BasePersistence<LayoutBranch>
Caching information and settings can be found in portal.properties
LayoutBranchPersistenceImpl
,
LayoutBranchUtil
Modifier and Type | Method and Description |
---|---|
void |
cacheResult(LayoutBranch layoutBranch)
Caches the layout branch in the entity cache if it is enabled.
|
void |
cacheResult(List<LayoutBranch> layoutBranchs)
Caches the layout branchs in the entity cache if it is enabled.
|
int |
countAll()
Returns the number of layout branchs.
|
int |
countByL_P_M(long layoutSetBranchId,
long plid,
boolean master)
Returns the number of layout branchs where layoutSetBranchId = ? and plid = ? and master = ?.
|
int |
countByL_P_N(long layoutSetBranchId,
long plid,
String name)
Returns the number of layout branchs where layoutSetBranchId = ? and plid = ? and name = ?.
|
int |
countByL_P(long layoutSetBranchId,
long plid)
Returns the number of layout branchs where layoutSetBranchId = ? and plid = ?.
|
int |
countByLayoutSetBranchId(long layoutSetBranchId)
Returns the number of layout branchs where layoutSetBranchId = ?.
|
LayoutBranch |
create(long layoutBranchId)
Creates a new layout branch with the primary key.
|
LayoutBranch |
fetchByL_P_First(long layoutSetBranchId,
long plid,
OrderByComparator<LayoutBranch> orderByComparator)
Returns the first layout branch in the ordered set where layoutSetBranchId = ? and plid = ?.
|
LayoutBranch |
fetchByL_P_Last(long layoutSetBranchId,
long plid,
OrderByComparator<LayoutBranch> orderByComparator)
Returns the last layout branch in the ordered set where layoutSetBranchId = ? and plid = ?.
|
LayoutBranch |
fetchByL_P_M_First(long layoutSetBranchId,
long plid,
boolean master,
OrderByComparator<LayoutBranch> orderByComparator)
Returns the first layout branch in the ordered set where layoutSetBranchId = ? and plid = ? and master = ?.
|
LayoutBranch |
fetchByL_P_M_Last(long layoutSetBranchId,
long plid,
boolean master,
OrderByComparator<LayoutBranch> orderByComparator)
Returns the last layout branch in the ordered set where layoutSetBranchId = ? and plid = ? and master = ?.
|
LayoutBranch |
fetchByL_P_N(long layoutSetBranchId,
long plid,
String name)
Returns the layout branch where layoutSetBranchId = ? and plid = ? and name = ? or returns
null if it could not be found. |
LayoutBranch |
fetchByL_P_N(long layoutSetBranchId,
long plid,
String name,
boolean retrieveFromCache)
Returns the layout branch where layoutSetBranchId = ? and plid = ? and name = ? or returns
null if it could not be found, optionally using the finder cache. |
LayoutBranch |
fetchByLayoutSetBranchId_First(long layoutSetBranchId,
OrderByComparator<LayoutBranch> orderByComparator)
Returns the first layout branch in the ordered set where layoutSetBranchId = ?.
|
LayoutBranch |
fetchByLayoutSetBranchId_Last(long layoutSetBranchId,
OrderByComparator<LayoutBranch> orderByComparator)
Returns the last layout branch in the ordered set where layoutSetBranchId = ?.
|
LayoutBranch |
fetchByPrimaryKey(long layoutBranchId)
Returns the layout branch with the primary key or returns
null if it could not be found. |
Map<Serializable,LayoutBranch> |
fetchByPrimaryKeys(Set<Serializable> primaryKeys) |
List<LayoutBranch> |
findAll()
Returns all the layout branchs.
|
List<LayoutBranch> |
findAll(int start,
int end)
Returns a range of all the layout branchs.
|
List<LayoutBranch> |
findAll(int start,
int end,
OrderByComparator<LayoutBranch> orderByComparator)
Returns an ordered range of all the layout branchs.
|
List<LayoutBranch> |
findAll(int start,
int end,
OrderByComparator<LayoutBranch> orderByComparator,
boolean retrieveFromCache)
Returns an ordered range of all the layout branchs.
|
LayoutBranch |
findByL_P_First(long layoutSetBranchId,
long plid,
OrderByComparator<LayoutBranch> orderByComparator)
Returns the first layout branch in the ordered set where layoutSetBranchId = ? and plid = ?.
|
LayoutBranch |
findByL_P_Last(long layoutSetBranchId,
long plid,
OrderByComparator<LayoutBranch> orderByComparator)
Returns the last layout branch in the ordered set where layoutSetBranchId = ? and plid = ?.
|
LayoutBranch |
findByL_P_M_First(long layoutSetBranchId,
long plid,
boolean master,
OrderByComparator<LayoutBranch> orderByComparator)
Returns the first layout branch in the ordered set where layoutSetBranchId = ? and plid = ? and master = ?.
|
LayoutBranch |
findByL_P_M_Last(long layoutSetBranchId,
long plid,
boolean master,
OrderByComparator<LayoutBranch> orderByComparator)
Returns the last layout branch in the ordered set where layoutSetBranchId = ? and plid = ? and master = ?.
|
LayoutBranch[] |
findByL_P_M_PrevAndNext(long layoutBranchId,
long layoutSetBranchId,
long plid,
boolean master,
OrderByComparator<LayoutBranch> orderByComparator)
Returns the layout branchs before and after the current layout branch in the ordered set where layoutSetBranchId = ? and plid = ? and master = ?.
|
List<LayoutBranch> |
findByL_P_M(long layoutSetBranchId,
long plid,
boolean master)
Returns all the layout branchs where layoutSetBranchId = ? and plid = ? and master = ?.
|
List<LayoutBranch> |
findByL_P_M(long layoutSetBranchId,
long plid,
boolean master,
int start,
int end)
Returns a range of all the layout branchs where layoutSetBranchId = ? and plid = ? and master = ?.
|
List<LayoutBranch> |
findByL_P_M(long layoutSetBranchId,
long plid,
boolean master,
int start,
int end,
OrderByComparator<LayoutBranch> orderByComparator)
Returns an ordered range of all the layout branchs where layoutSetBranchId = ? and plid = ? and master = ?.
|
List<LayoutBranch> |
findByL_P_M(long layoutSetBranchId,
long plid,
boolean master,
int start,
int end,
OrderByComparator<LayoutBranch> orderByComparator,
boolean retrieveFromCache)
Returns an ordered range of all the layout branchs where layoutSetBranchId = ? and plid = ? and master = ?.
|
LayoutBranch |
findByL_P_N(long layoutSetBranchId,
long plid,
String name)
Returns the layout branch where layoutSetBranchId = ? and plid = ? and name = ? or throws a
NoSuchLayoutBranchException if it could not be found. |
LayoutBranch[] |
findByL_P_PrevAndNext(long layoutBranchId,
long layoutSetBranchId,
long plid,
OrderByComparator<LayoutBranch> orderByComparator)
Returns the layout branchs before and after the current layout branch in the ordered set where layoutSetBranchId = ? and plid = ?.
|
List<LayoutBranch> |
findByL_P(long layoutSetBranchId,
long plid)
Returns all the layout branchs where layoutSetBranchId = ? and plid = ?.
|
List<LayoutBranch> |
findByL_P(long layoutSetBranchId,
long plid,
int start,
int end)
Returns a range of all the layout branchs where layoutSetBranchId = ? and plid = ?.
|
List<LayoutBranch> |
findByL_P(long layoutSetBranchId,
long plid,
int start,
int end,
OrderByComparator<LayoutBranch> orderByComparator)
Returns an ordered range of all the layout branchs where layoutSetBranchId = ? and plid = ?.
|
List<LayoutBranch> |
findByL_P(long layoutSetBranchId,
long plid,
int start,
int end,
OrderByComparator<LayoutBranch> orderByComparator,
boolean retrieveFromCache)
Returns an ordered range of all the layout branchs where layoutSetBranchId = ? and plid = ?.
|
LayoutBranch |
findByLayoutSetBranchId_First(long layoutSetBranchId,
OrderByComparator<LayoutBranch> orderByComparator)
Returns the first layout branch in the ordered set where layoutSetBranchId = ?.
|
LayoutBranch |
findByLayoutSetBranchId_Last(long layoutSetBranchId,
OrderByComparator<LayoutBranch> orderByComparator)
Returns the last layout branch in the ordered set where layoutSetBranchId = ?.
|
LayoutBranch[] |
findByLayoutSetBranchId_PrevAndNext(long layoutBranchId,
long layoutSetBranchId,
OrderByComparator<LayoutBranch> orderByComparator)
Returns the layout branchs before and after the current layout branch in the ordered set where layoutSetBranchId = ?.
|
List<LayoutBranch> |
findByLayoutSetBranchId(long layoutSetBranchId)
Returns all the layout branchs where layoutSetBranchId = ?.
|
List<LayoutBranch> |
findByLayoutSetBranchId(long layoutSetBranchId,
int start,
int end)
Returns a range of all the layout branchs where layoutSetBranchId = ?.
|
List<LayoutBranch> |
findByLayoutSetBranchId(long layoutSetBranchId,
int start,
int end,
OrderByComparator<LayoutBranch> orderByComparator)
Returns an ordered range of all the layout branchs where layoutSetBranchId = ?.
|
List<LayoutBranch> |
findByLayoutSetBranchId(long layoutSetBranchId,
int start,
int end,
OrderByComparator<LayoutBranch> orderByComparator,
boolean retrieveFromCache)
Returns an ordered range of all the layout branchs where layoutSetBranchId = ?.
|
LayoutBranch |
findByPrimaryKey(long layoutBranchId)
Returns the layout branch with the primary key or throws a
NoSuchLayoutBranchException if it could not be found. |
LayoutBranch |
remove(long layoutBranchId)
Removes the layout branch with the primary key from the database.
|
void |
removeAll()
Removes all the layout branchs from the database.
|
void |
removeByL_P_M(long layoutSetBranchId,
long plid,
boolean master)
Removes all the layout branchs where layoutSetBranchId = ? and plid = ? and master = ? from the database.
|
LayoutBranch |
removeByL_P_N(long layoutSetBranchId,
long plid,
String name)
Removes the layout branch where layoutSetBranchId = ? and plid = ? and name = ? from the database.
|
void |
removeByL_P(long layoutSetBranchId,
long plid)
Removes all the layout branchs where layoutSetBranchId = ? and plid = ? from the database.
|
void |
removeByLayoutSetBranchId(long layoutSetBranchId)
Removes all the layout branchs where layoutSetBranchId = ? from the database.
|
LayoutBranch |
updateImpl(LayoutBranch layoutBranch) |
clearCache, clearCache, clearCache, closeSession, countWithDynamicQuery, countWithDynamicQuery, fetchByPrimaryKey, findByPrimaryKey, findWithDynamicQuery, findWithDynamicQuery, findWithDynamicQuery, flush, getBadColumnNames, getCurrentSession, getDataSource, getListeners, getModelClass, openSession, processException, registerListener, remove, remove, setDataSource, unregisterListener, update, update
List<LayoutBranch> findByLayoutSetBranchId(long layoutSetBranchId)
layoutSetBranchId
- the layout set branch IDList<LayoutBranch> findByLayoutSetBranchId(long layoutSetBranchId, int start, int end)
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 LayoutBranchModelImpl
. 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.
layoutSetBranchId
- the layout set branch IDstart
- the lower bound of the range of layout branchsend
- the upper bound of the range of layout branchs (not inclusive)List<LayoutBranch> findByLayoutSetBranchId(long layoutSetBranchId, int start, int end, OrderByComparator<LayoutBranch> orderByComparator)
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 LayoutBranchModelImpl
. 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.
layoutSetBranchId
- the layout set branch IDstart
- the lower bound of the range of layout branchsend
- the upper bound of the range of layout branchs (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)List<LayoutBranch> findByLayoutSetBranchId(long layoutSetBranchId, int start, int end, OrderByComparator<LayoutBranch> orderByComparator, boolean retrieveFromCache)
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 LayoutBranchModelImpl
. 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.
layoutSetBranchId
- the layout set branch IDstart
- the lower bound of the range of layout branchsend
- the upper bound of the range of layout branchs (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)retrieveFromCache
- whether to retrieve from the finder cacheLayoutBranch findByLayoutSetBranchId_First(long layoutSetBranchId, OrderByComparator<LayoutBranch> orderByComparator) throws NoSuchLayoutBranchException
layoutSetBranchId
- the layout set branch IDorderByComparator
- the comparator to order the set by (optionally null
)NoSuchLayoutBranchException
- if a matching layout branch could not be foundLayoutBranch fetchByLayoutSetBranchId_First(long layoutSetBranchId, OrderByComparator<LayoutBranch> orderByComparator)
layoutSetBranchId
- the layout set branch IDorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching layout branch could not be foundLayoutBranch findByLayoutSetBranchId_Last(long layoutSetBranchId, OrderByComparator<LayoutBranch> orderByComparator) throws NoSuchLayoutBranchException
layoutSetBranchId
- the layout set branch IDorderByComparator
- the comparator to order the set by (optionally null
)NoSuchLayoutBranchException
- if a matching layout branch could not be foundLayoutBranch fetchByLayoutSetBranchId_Last(long layoutSetBranchId, OrderByComparator<LayoutBranch> orderByComparator)
layoutSetBranchId
- the layout set branch IDorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching layout branch could not be foundLayoutBranch[] findByLayoutSetBranchId_PrevAndNext(long layoutBranchId, long layoutSetBranchId, OrderByComparator<LayoutBranch> orderByComparator) throws NoSuchLayoutBranchException
layoutBranchId
- the primary key of the current layout branchlayoutSetBranchId
- the layout set branch IDorderByComparator
- the comparator to order the set by (optionally null
)NoSuchLayoutBranchException
- if a layout branch with the primary key could not be foundvoid removeByLayoutSetBranchId(long layoutSetBranchId)
layoutSetBranchId
- the layout set branch IDint countByLayoutSetBranchId(long layoutSetBranchId)
layoutSetBranchId
- the layout set branch IDList<LayoutBranch> findByL_P(long layoutSetBranchId, long plid)
layoutSetBranchId
- the layout set branch IDplid
- the plidList<LayoutBranch> findByL_P(long layoutSetBranchId, long plid, int start, int end)
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 LayoutBranchModelImpl
. 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.
layoutSetBranchId
- the layout set branch IDplid
- the plidstart
- the lower bound of the range of layout branchsend
- the upper bound of the range of layout branchs (not inclusive)List<LayoutBranch> findByL_P(long layoutSetBranchId, long plid, int start, int end, OrderByComparator<LayoutBranch> orderByComparator)
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 LayoutBranchModelImpl
. 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.
layoutSetBranchId
- the layout set branch IDplid
- the plidstart
- the lower bound of the range of layout branchsend
- the upper bound of the range of layout branchs (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)List<LayoutBranch> findByL_P(long layoutSetBranchId, long plid, int start, int end, OrderByComparator<LayoutBranch> orderByComparator, boolean retrieveFromCache)
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 LayoutBranchModelImpl
. 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.
layoutSetBranchId
- the layout set branch IDplid
- the plidstart
- the lower bound of the range of layout branchsend
- the upper bound of the range of layout branchs (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)retrieveFromCache
- whether to retrieve from the finder cacheLayoutBranch findByL_P_First(long layoutSetBranchId, long plid, OrderByComparator<LayoutBranch> orderByComparator) throws NoSuchLayoutBranchException
layoutSetBranchId
- the layout set branch IDplid
- the plidorderByComparator
- the comparator to order the set by (optionally null
)NoSuchLayoutBranchException
- if a matching layout branch could not be foundLayoutBranch fetchByL_P_First(long layoutSetBranchId, long plid, OrderByComparator<LayoutBranch> orderByComparator)
layoutSetBranchId
- the layout set branch IDplid
- the plidorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching layout branch could not be foundLayoutBranch findByL_P_Last(long layoutSetBranchId, long plid, OrderByComparator<LayoutBranch> orderByComparator) throws NoSuchLayoutBranchException
layoutSetBranchId
- the layout set branch IDplid
- the plidorderByComparator
- the comparator to order the set by (optionally null
)NoSuchLayoutBranchException
- if a matching layout branch could not be foundLayoutBranch fetchByL_P_Last(long layoutSetBranchId, long plid, OrderByComparator<LayoutBranch> orderByComparator)
layoutSetBranchId
- the layout set branch IDplid
- the plidorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching layout branch could not be foundLayoutBranch[] findByL_P_PrevAndNext(long layoutBranchId, long layoutSetBranchId, long plid, OrderByComparator<LayoutBranch> orderByComparator) throws NoSuchLayoutBranchException
layoutBranchId
- the primary key of the current layout branchlayoutSetBranchId
- the layout set branch IDplid
- the plidorderByComparator
- the comparator to order the set by (optionally null
)NoSuchLayoutBranchException
- if a layout branch with the primary key could not be foundvoid removeByL_P(long layoutSetBranchId, long plid)
layoutSetBranchId
- the layout set branch IDplid
- the plidint countByL_P(long layoutSetBranchId, long plid)
layoutSetBranchId
- the layout set branch IDplid
- the plidLayoutBranch findByL_P_N(long layoutSetBranchId, long plid, String name) throws NoSuchLayoutBranchException
NoSuchLayoutBranchException
if it could not be found.layoutSetBranchId
- the layout set branch IDplid
- the plidname
- the nameNoSuchLayoutBranchException
- if a matching layout branch could not be foundLayoutBranch fetchByL_P_N(long layoutSetBranchId, long plid, String name)
null
if it could not be found. Uses the finder cache.layoutSetBranchId
- the layout set branch IDplid
- the plidname
- the namenull
if a matching layout branch could not be foundLayoutBranch fetchByL_P_N(long layoutSetBranchId, long plid, String name, boolean retrieveFromCache)
null
if it could not be found, optionally using the finder cache.layoutSetBranchId
- the layout set branch IDplid
- the plidname
- the nameretrieveFromCache
- whether to retrieve from the finder cachenull
if a matching layout branch could not be foundLayoutBranch removeByL_P_N(long layoutSetBranchId, long plid, String name) throws NoSuchLayoutBranchException
layoutSetBranchId
- the layout set branch IDplid
- the plidname
- the nameNoSuchLayoutBranchException
int countByL_P_N(long layoutSetBranchId, long plid, String name)
layoutSetBranchId
- the layout set branch IDplid
- the plidname
- the nameList<LayoutBranch> findByL_P_M(long layoutSetBranchId, long plid, boolean master)
layoutSetBranchId
- the layout set branch IDplid
- the plidmaster
- the masterList<LayoutBranch> findByL_P_M(long layoutSetBranchId, long plid, boolean master, int start, int end)
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 LayoutBranchModelImpl
. 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.
layoutSetBranchId
- the layout set branch IDplid
- the plidmaster
- the masterstart
- the lower bound of the range of layout branchsend
- the upper bound of the range of layout branchs (not inclusive)List<LayoutBranch> findByL_P_M(long layoutSetBranchId, long plid, boolean master, int start, int end, OrderByComparator<LayoutBranch> orderByComparator)
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 LayoutBranchModelImpl
. 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.
layoutSetBranchId
- the layout set branch IDplid
- the plidmaster
- the masterstart
- the lower bound of the range of layout branchsend
- the upper bound of the range of layout branchs (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)List<LayoutBranch> findByL_P_M(long layoutSetBranchId, long plid, boolean master, int start, int end, OrderByComparator<LayoutBranch> orderByComparator, boolean retrieveFromCache)
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 LayoutBranchModelImpl
. 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.
layoutSetBranchId
- the layout set branch IDplid
- the plidmaster
- the masterstart
- the lower bound of the range of layout branchsend
- the upper bound of the range of layout branchs (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)retrieveFromCache
- whether to retrieve from the finder cacheLayoutBranch findByL_P_M_First(long layoutSetBranchId, long plid, boolean master, OrderByComparator<LayoutBranch> orderByComparator) throws NoSuchLayoutBranchException
layoutSetBranchId
- the layout set branch IDplid
- the plidmaster
- the masterorderByComparator
- the comparator to order the set by (optionally null
)NoSuchLayoutBranchException
- if a matching layout branch could not be foundLayoutBranch fetchByL_P_M_First(long layoutSetBranchId, long plid, boolean master, OrderByComparator<LayoutBranch> orderByComparator)
layoutSetBranchId
- the layout set branch IDplid
- the plidmaster
- the masterorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching layout branch could not be foundLayoutBranch findByL_P_M_Last(long layoutSetBranchId, long plid, boolean master, OrderByComparator<LayoutBranch> orderByComparator) throws NoSuchLayoutBranchException
layoutSetBranchId
- the layout set branch IDplid
- the plidmaster
- the masterorderByComparator
- the comparator to order the set by (optionally null
)NoSuchLayoutBranchException
- if a matching layout branch could not be foundLayoutBranch fetchByL_P_M_Last(long layoutSetBranchId, long plid, boolean master, OrderByComparator<LayoutBranch> orderByComparator)
layoutSetBranchId
- the layout set branch IDplid
- the plidmaster
- the masterorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching layout branch could not be foundLayoutBranch[] findByL_P_M_PrevAndNext(long layoutBranchId, long layoutSetBranchId, long plid, boolean master, OrderByComparator<LayoutBranch> orderByComparator) throws NoSuchLayoutBranchException
layoutBranchId
- the primary key of the current layout branchlayoutSetBranchId
- the layout set branch IDplid
- the plidmaster
- the masterorderByComparator
- the comparator to order the set by (optionally null
)NoSuchLayoutBranchException
- if a layout branch with the primary key could not be foundvoid removeByL_P_M(long layoutSetBranchId, long plid, boolean master)
layoutSetBranchId
- the layout set branch IDplid
- the plidmaster
- the masterint countByL_P_M(long layoutSetBranchId, long plid, boolean master)
layoutSetBranchId
- the layout set branch IDplid
- the plidmaster
- the mastervoid cacheResult(LayoutBranch layoutBranch)
layoutBranch
- the layout branchvoid cacheResult(List<LayoutBranch> layoutBranchs)
layoutBranchs
- the layout branchsLayoutBranch create(long layoutBranchId)
layoutBranchId
- the primary key for the new layout branchLayoutBranch remove(long layoutBranchId) throws NoSuchLayoutBranchException
layoutBranchId
- the primary key of the layout branchNoSuchLayoutBranchException
- if a layout branch with the primary key could not be foundLayoutBranch updateImpl(LayoutBranch layoutBranch)
LayoutBranch findByPrimaryKey(long layoutBranchId) throws NoSuchLayoutBranchException
NoSuchLayoutBranchException
if it could not be found.layoutBranchId
- the primary key of the layout branchNoSuchLayoutBranchException
- if a layout branch with the primary key could not be foundLayoutBranch fetchByPrimaryKey(long layoutBranchId)
null
if it could not be found.layoutBranchId
- the primary key of the layout branchnull
if a layout branch with the primary key could not be foundMap<Serializable,LayoutBranch> fetchByPrimaryKeys(Set<Serializable> primaryKeys)
fetchByPrimaryKeys
in interface BasePersistence<LayoutBranch>
List<LayoutBranch> findAll()
List<LayoutBranch> findAll(int start, int end)
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 LayoutBranchModelImpl
. 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 branchsend
- the upper bound of the range of layout branchs (not inclusive)List<LayoutBranch> findAll(int start, int end, OrderByComparator<LayoutBranch> orderByComparator)
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 LayoutBranchModelImpl
. 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 branchsend
- the upper bound of the range of layout branchs (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)List<LayoutBranch> findAll(int start, int end, OrderByComparator<LayoutBranch> orderByComparator, boolean retrieveFromCache)
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 LayoutBranchModelImpl
. 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 branchsend
- the upper bound of the range of layout branchs (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)retrieveFromCache
- whether to retrieve from the finder cachevoid removeAll()
int countAll()