public class LayoutSetBranchUtil
extends java.lang.Object
com.liferay.portal.service.persistence.impl.LayoutSetBranchPersistenceImpl
and provides direct access to the database for CRUD operations. This utility should only be used by the service layer, as it must operate within a transaction. Never access this utility in a JSP, controller, model, or other front-end class.
Caching information and settings can be found in portal.properties
LayoutSetBranchPersistence
Constructor and Description |
---|
LayoutSetBranchUtil() |
Modifier and Type | Method and Description |
---|---|
static void |
cacheResult(LayoutSetBranch layoutSetBranch)
Caches the layout set branch in the entity cache if it is enabled.
|
static void |
cacheResult(java.util.List<LayoutSetBranch> layoutSetBranchs)
Caches the layout set branches in the entity cache if it is enabled.
|
static void |
clearCache() |
static void |
clearCache(LayoutSetBranch layoutSetBranch) |
static int |
countAll()
Returns the number of layout set branches.
|
static int |
countByG_P_M(long groupId,
boolean privateLayout,
boolean master)
Returns the number of layout set branches where groupId = ? and privateLayout = ? and master = ?.
|
static int |
countByG_P_N(long groupId,
boolean privateLayout,
java.lang.String name)
Returns the number of layout set branches where groupId = ? and privateLayout = ? and name = ?.
|
static int |
countByG_P(long groupId,
boolean privateLayout)
Returns the number of layout set branches where groupId = ? and privateLayout = ?.
|
static int |
countByGroupId(long groupId)
Returns the number of layout set branches where groupId = ?.
|
static long |
countWithDynamicQuery(DynamicQuery dynamicQuery) |
static LayoutSetBranch |
create(long layoutSetBranchId)
Creates a new layout set branch with the primary key.
|
static LayoutSetBranch |
fetchByG_P_First(long groupId,
boolean privateLayout,
OrderByComparator<LayoutSetBranch> orderByComparator)
Returns the first layout set branch in the ordered set where groupId = ? and privateLayout = ?.
|
static LayoutSetBranch |
fetchByG_P_Last(long groupId,
boolean privateLayout,
OrderByComparator<LayoutSetBranch> orderByComparator)
Returns the last layout set branch in the ordered set where groupId = ? and privateLayout = ?.
|
static LayoutSetBranch |
fetchByG_P_M_First(long groupId,
boolean privateLayout,
boolean master,
OrderByComparator<LayoutSetBranch> orderByComparator)
Returns the first layout set branch in the ordered set where groupId = ? and privateLayout = ? and master = ?.
|
static LayoutSetBranch |
fetchByG_P_M_Last(long groupId,
boolean privateLayout,
boolean master,
OrderByComparator<LayoutSetBranch> orderByComparator)
Returns the last layout set branch in the ordered set where groupId = ? and privateLayout = ? and master = ?.
|
static 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. |
static LayoutSetBranch |
fetchByG_P_N(long groupId,
boolean privateLayout,
java.lang.String name,
boolean useFinderCache)
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. |
static LayoutSetBranch |
fetchByGroupId_First(long groupId,
OrderByComparator<LayoutSetBranch> orderByComparator)
Returns the first layout set branch in the ordered set where groupId = ?.
|
static LayoutSetBranch |
fetchByGroupId_Last(long groupId,
OrderByComparator<LayoutSetBranch> orderByComparator)
Returns the last layout set branch in the ordered set where groupId = ?.
|
static LayoutSetBranch |
fetchByPrimaryKey(long layoutSetBranchId)
Returns the layout set branch with the primary key or returns
null if it could not be found. |
static java.util.Map<java.io.Serializable,LayoutSetBranch> |
fetchByPrimaryKeys(java.util.Set<java.io.Serializable> primaryKeys) |
static int |
filterCountByG_P_M(long groupId,
boolean privateLayout,
boolean master)
Returns the number of layout set branches that the user has permission to view where groupId = ? and privateLayout = ? and master = ?.
|
static int |
filterCountByG_P(long groupId,
boolean privateLayout)
Returns the number of layout set branches that the user has permission to view where groupId = ? and privateLayout = ?.
|
static int |
filterCountByGroupId(long groupId)
Returns the number of layout set branches that the user has permission to view where groupId = ?.
|
static LayoutSetBranch[] |
filterFindByG_P_M_PrevAndNext(long layoutSetBranchId,
long groupId,
boolean privateLayout,
boolean master,
OrderByComparator<LayoutSetBranch> orderByComparator)
Returns the layout set branches before and after the current layout set branch in the ordered set of layout set branches that the user has permission to view where groupId = ? and privateLayout = ? and master = ?.
|
static java.util.List<LayoutSetBranch> |
filterFindByG_P_M(long groupId,
boolean privateLayout,
boolean master)
Returns all the layout set branches that the user has permission to view where groupId = ? and privateLayout = ? and master = ?.
|
static 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 branches that the user has permission to view where groupId = ? and privateLayout = ? and master = ?.
|
static java.util.List<LayoutSetBranch> |
filterFindByG_P_M(long groupId,
boolean privateLayout,
boolean master,
int start,
int end,
OrderByComparator<LayoutSetBranch> orderByComparator)
Returns an ordered range of all the layout set branches that the user has permissions to view where groupId = ? and privateLayout = ? and master = ?.
|
static LayoutSetBranch[] |
filterFindByG_P_PrevAndNext(long layoutSetBranchId,
long groupId,
boolean privateLayout,
OrderByComparator<LayoutSetBranch> orderByComparator)
Returns the layout set branches before and after the current layout set branch in the ordered set of layout set branches that the user has permission to view where groupId = ? and privateLayout = ?.
|
static java.util.List<LayoutSetBranch> |
filterFindByG_P(long groupId,
boolean privateLayout)
Returns all the layout set branches that the user has permission to view where groupId = ? and privateLayout = ?.
|
static java.util.List<LayoutSetBranch> |
filterFindByG_P(long groupId,
boolean privateLayout,
int start,
int end)
Returns a range of all the layout set branches that the user has permission to view where groupId = ? and privateLayout = ?.
|
static java.util.List<LayoutSetBranch> |
filterFindByG_P(long groupId,
boolean privateLayout,
int start,
int end,
OrderByComparator<LayoutSetBranch> orderByComparator)
Returns an ordered range of all the layout set branches that the user has permissions to view where groupId = ? and privateLayout = ?.
|
static LayoutSetBranch[] |
filterFindByGroupId_PrevAndNext(long layoutSetBranchId,
long groupId,
OrderByComparator<LayoutSetBranch> orderByComparator)
Returns the layout set branches before and after the current layout set branch in the ordered set of layout set branches that the user has permission to view where groupId = ?.
|
static java.util.List<LayoutSetBranch> |
filterFindByGroupId(long groupId)
Returns all the layout set branches that the user has permission to view where groupId = ?.
|
static java.util.List<LayoutSetBranch> |
filterFindByGroupId(long groupId,
int start,
int end)
Returns a range of all the layout set branches that the user has permission to view where groupId = ?.
|
static java.util.List<LayoutSetBranch> |
filterFindByGroupId(long groupId,
int start,
int end,
OrderByComparator<LayoutSetBranch> orderByComparator)
Returns an ordered range of all the layout set branches that the user has permissions to view where groupId = ?.
|
static java.util.List<LayoutSetBranch> |
findAll()
Returns all the layout set branches.
|
static java.util.List<LayoutSetBranch> |
findAll(int start,
int end)
Returns a range of all the layout set branches.
|
static java.util.List<LayoutSetBranch> |
findAll(int start,
int end,
OrderByComparator<LayoutSetBranch> orderByComparator)
Returns an ordered range of all the layout set branches.
|
static java.util.List<LayoutSetBranch> |
findAll(int start,
int end,
OrderByComparator<LayoutSetBranch> orderByComparator,
boolean useFinderCache)
Returns an ordered range of all the layout set branches.
|
static LayoutSetBranch |
findByG_P_First(long groupId,
boolean privateLayout,
OrderByComparator<LayoutSetBranch> orderByComparator)
Returns the first layout set branch in the ordered set where groupId = ? and privateLayout = ?.
|
static LayoutSetBranch |
findByG_P_Last(long groupId,
boolean privateLayout,
OrderByComparator<LayoutSetBranch> orderByComparator)
Returns the last layout set branch in the ordered set where groupId = ? and privateLayout = ?.
|
static LayoutSetBranch |
findByG_P_M_First(long groupId,
boolean privateLayout,
boolean master,
OrderByComparator<LayoutSetBranch> orderByComparator)
Returns the first layout set branch in the ordered set where groupId = ? and privateLayout = ? and master = ?.
|
static LayoutSetBranch |
findByG_P_M_Last(long groupId,
boolean privateLayout,
boolean master,
OrderByComparator<LayoutSetBranch> orderByComparator)
Returns the last layout set branch in the ordered set where groupId = ? and privateLayout = ? and master = ?.
|
static LayoutSetBranch[] |
findByG_P_M_PrevAndNext(long layoutSetBranchId,
long groupId,
boolean privateLayout,
boolean master,
OrderByComparator<LayoutSetBranch> orderByComparator)
Returns the layout set branches before and after the current layout set branch in the ordered set where groupId = ? and privateLayout = ? and master = ?.
|
static java.util.List<LayoutSetBranch> |
findByG_P_M(long groupId,
boolean privateLayout,
boolean master)
Returns all the layout set branches where groupId = ? and privateLayout = ? and master = ?.
|
static 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 branches where groupId = ? and privateLayout = ? and master = ?.
|
static java.util.List<LayoutSetBranch> |
findByG_P_M(long groupId,
boolean privateLayout,
boolean master,
int start,
int end,
OrderByComparator<LayoutSetBranch> orderByComparator)
Returns an ordered range of all the layout set branches where groupId = ? and privateLayout = ? and master = ?.
|
static java.util.List<LayoutSetBranch> |
findByG_P_M(long groupId,
boolean privateLayout,
boolean master,
int start,
int end,
OrderByComparator<LayoutSetBranch> orderByComparator,
boolean useFinderCache)
Returns an ordered range of all the layout set branches where groupId = ? and privateLayout = ? and master = ?.
|
static 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. |
static LayoutSetBranch[] |
findByG_P_PrevAndNext(long layoutSetBranchId,
long groupId,
boolean privateLayout,
OrderByComparator<LayoutSetBranch> orderByComparator)
Returns the layout set branches before and after the current layout set branch in the ordered set where groupId = ? and privateLayout = ?.
|
static java.util.List<LayoutSetBranch> |
findByG_P(long groupId,
boolean privateLayout)
Returns all the layout set branches where groupId = ? and privateLayout = ?.
|
static java.util.List<LayoutSetBranch> |
findByG_P(long groupId,
boolean privateLayout,
int start,
int end)
Returns a range of all the layout set branches where groupId = ? and privateLayout = ?.
|
static java.util.List<LayoutSetBranch> |
findByG_P(long groupId,
boolean privateLayout,
int start,
int end,
OrderByComparator<LayoutSetBranch> orderByComparator)
Returns an ordered range of all the layout set branches where groupId = ? and privateLayout = ?.
|
static java.util.List<LayoutSetBranch> |
findByG_P(long groupId,
boolean privateLayout,
int start,
int end,
OrderByComparator<LayoutSetBranch> orderByComparator,
boolean useFinderCache)
Returns an ordered range of all the layout set branches where groupId = ? and privateLayout = ?.
|
static LayoutSetBranch |
findByGroupId_First(long groupId,
OrderByComparator<LayoutSetBranch> orderByComparator)
Returns the first layout set branch in the ordered set where groupId = ?.
|
static LayoutSetBranch |
findByGroupId_Last(long groupId,
OrderByComparator<LayoutSetBranch> orderByComparator)
Returns the last layout set branch in the ordered set where groupId = ?.
|
static LayoutSetBranch[] |
findByGroupId_PrevAndNext(long layoutSetBranchId,
long groupId,
OrderByComparator<LayoutSetBranch> orderByComparator)
Returns the layout set branches before and after the current layout set branch in the ordered set where groupId = ?.
|
static java.util.List<LayoutSetBranch> |
findByGroupId(long groupId)
Returns all the layout set branches where groupId = ?.
|
static java.util.List<LayoutSetBranch> |
findByGroupId(long groupId,
int start,
int end)
Returns a range of all the layout set branches where groupId = ?.
|
static java.util.List<LayoutSetBranch> |
findByGroupId(long groupId,
int start,
int end,
OrderByComparator<LayoutSetBranch> orderByComparator)
Returns an ordered range of all the layout set branches where groupId = ?.
|
static java.util.List<LayoutSetBranch> |
findByGroupId(long groupId,
int start,
int end,
OrderByComparator<LayoutSetBranch> orderByComparator,
boolean useFinderCache)
Returns an ordered range of all the layout set branches where groupId = ?.
|
static LayoutSetBranch |
findByPrimaryKey(long layoutSetBranchId)
Returns the layout set branch with the primary key or throws a
NoSuchLayoutSetBranchException if it could not be found. |
static java.util.List<LayoutSetBranch> |
findWithDynamicQuery(DynamicQuery dynamicQuery) |
static java.util.List<LayoutSetBranch> |
findWithDynamicQuery(DynamicQuery dynamicQuery,
int start,
int end) |
static java.util.List<LayoutSetBranch> |
findWithDynamicQuery(DynamicQuery dynamicQuery,
int start,
int end,
OrderByComparator<LayoutSetBranch> orderByComparator) |
static LayoutSetBranchPersistence |
getPersistence() |
static LayoutSetBranch |
remove(long layoutSetBranchId)
Removes the layout set branch with the primary key from the database.
|
static void |
removeAll()
Removes all the layout set branches from the database.
|
static void |
removeByG_P_M(long groupId,
boolean privateLayout,
boolean master)
Removes all the layout set branches where groupId = ? and privateLayout = ? and master = ? from the database.
|
static 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.
|
static void |
removeByG_P(long groupId,
boolean privateLayout)
Removes all the layout set branches where groupId = ? and privateLayout = ? from the database.
|
static void |
removeByGroupId(long groupId)
Removes all the layout set branches where groupId = ? from the database.
|
static void |
setPersistence(LayoutSetBranchPersistence persistence) |
static LayoutSetBranch |
update(LayoutSetBranch layoutSetBranch) |
static LayoutSetBranch |
update(LayoutSetBranch layoutSetBranch,
ServiceContext serviceContext) |
static LayoutSetBranch |
updateImpl(LayoutSetBranch layoutSetBranch) |
public static void clearCache()
BasePersistence.clearCache()
public static void clearCache(LayoutSetBranch layoutSetBranch)
public static long countWithDynamicQuery(DynamicQuery dynamicQuery)
public static java.util.Map<java.io.Serializable,LayoutSetBranch> fetchByPrimaryKeys(java.util.Set<java.io.Serializable> primaryKeys)
BasePersistence.fetchByPrimaryKeys(Set)
public static java.util.List<LayoutSetBranch> findWithDynamicQuery(DynamicQuery dynamicQuery)
public static java.util.List<LayoutSetBranch> findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end)
public static java.util.List<LayoutSetBranch> findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end, OrderByComparator<LayoutSetBranch> orderByComparator)
public static LayoutSetBranch update(LayoutSetBranch layoutSetBranch)
public static LayoutSetBranch update(LayoutSetBranch layoutSetBranch, ServiceContext serviceContext)
public static java.util.List<LayoutSetBranch> findByGroupId(long groupId)
groupId
- the group IDpublic static java.util.List<LayoutSetBranch> findByGroupId(long groupId, 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, then the query will include the default ORDER BY logic from LayoutSetBranchModelImpl
.
groupId
- the group IDstart
- the lower bound of the range of layout set branchesend
- the upper bound of the range of layout set branches (not inclusive)public static java.util.List<LayoutSetBranch> findByGroupId(long groupId, int start, int end, OrderByComparator<LayoutSetBranch> 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, then the query will include the default ORDER BY logic from LayoutSetBranchModelImpl
.
groupId
- the group IDstart
- the lower bound of the range of layout set branchesend
- the upper bound of the range of layout set branches (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)public static java.util.List<LayoutSetBranch> findByGroupId(long groupId, int start, int end, OrderByComparator<LayoutSetBranch> orderByComparator, boolean useFinderCache)
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 LayoutSetBranchModelImpl
.
groupId
- the group IDstart
- the lower bound of the range of layout set branchesend
- the upper bound of the range of layout set branches (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)useFinderCache
- whether to use the finder cachepublic static LayoutSetBranch findByGroupId_First(long groupId, OrderByComparator<LayoutSetBranch> orderByComparator) throws NoSuchLayoutSetBranchException
groupId
- the group IDorderByComparator
- the comparator to order the set by (optionally null
)NoSuchLayoutSetBranchException
- if a matching layout set branch could not be foundpublic static LayoutSetBranch fetchByGroupId_First(long groupId, OrderByComparator<LayoutSetBranch> orderByComparator)
groupId
- the group IDorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching layout set branch could not be foundpublic static LayoutSetBranch findByGroupId_Last(long groupId, OrderByComparator<LayoutSetBranch> orderByComparator) throws NoSuchLayoutSetBranchException
groupId
- the group IDorderByComparator
- the comparator to order the set by (optionally null
)NoSuchLayoutSetBranchException
- if a matching layout set branch could not be foundpublic static LayoutSetBranch fetchByGroupId_Last(long groupId, OrderByComparator<LayoutSetBranch> orderByComparator)
groupId
- the group IDorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching layout set branch could not be foundpublic static LayoutSetBranch[] findByGroupId_PrevAndNext(long layoutSetBranchId, long groupId, OrderByComparator<LayoutSetBranch> orderByComparator) throws NoSuchLayoutSetBranchException
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 foundpublic static java.util.List<LayoutSetBranch> filterFindByGroupId(long groupId)
groupId
- the group IDpublic static java.util.List<LayoutSetBranch> filterFindByGroupId(long groupId, 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, then the query will include the default ORDER BY logic from LayoutSetBranchModelImpl
.
groupId
- the group IDstart
- the lower bound of the range of layout set branchesend
- the upper bound of the range of layout set branches (not inclusive)public static java.util.List<LayoutSetBranch> filterFindByGroupId(long groupId, int start, int end, OrderByComparator<LayoutSetBranch> 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, then the query will include the default ORDER BY logic from LayoutSetBranchModelImpl
.
groupId
- the group IDstart
- the lower bound of the range of layout set branchesend
- the upper bound of the range of layout set branches (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)public static LayoutSetBranch[] filterFindByGroupId_PrevAndNext(long layoutSetBranchId, long groupId, OrderByComparator<LayoutSetBranch> orderByComparator) throws NoSuchLayoutSetBranchException
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 foundpublic static void removeByGroupId(long groupId)
groupId
- the group IDpublic static int countByGroupId(long groupId)
groupId
- the group IDpublic static int filterCountByGroupId(long groupId)
groupId
- the group IDpublic static java.util.List<LayoutSetBranch> findByG_P(long groupId, boolean privateLayout)
groupId
- the group IDprivateLayout
- the private layoutpublic static java.util.List<LayoutSetBranch> findByG_P(long groupId, boolean privateLayout, 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, then the query will include the default ORDER BY logic from LayoutSetBranchModelImpl
.
groupId
- the group IDprivateLayout
- the private layoutstart
- the lower bound of the range of layout set branchesend
- the upper bound of the range of layout set branches (not inclusive)public static java.util.List<LayoutSetBranch> findByG_P(long groupId, boolean privateLayout, int start, int end, OrderByComparator<LayoutSetBranch> 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, then the query will include the default ORDER BY logic from LayoutSetBranchModelImpl
.
groupId
- the group IDprivateLayout
- the private layoutstart
- the lower bound of the range of layout set branchesend
- the upper bound of the range of layout set branches (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)public static java.util.List<LayoutSetBranch> findByG_P(long groupId, boolean privateLayout, int start, int end, OrderByComparator<LayoutSetBranch> orderByComparator, boolean useFinderCache)
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 LayoutSetBranchModelImpl
.
groupId
- the group IDprivateLayout
- the private layoutstart
- the lower bound of the range of layout set branchesend
- the upper bound of the range of layout set branches (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)useFinderCache
- whether to use the finder cachepublic static LayoutSetBranch findByG_P_First(long groupId, boolean privateLayout, OrderByComparator<LayoutSetBranch> orderByComparator) throws NoSuchLayoutSetBranchException
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 foundpublic static LayoutSetBranch fetchByG_P_First(long groupId, boolean privateLayout, OrderByComparator<LayoutSetBranch> orderByComparator)
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 foundpublic static LayoutSetBranch findByG_P_Last(long groupId, boolean privateLayout, OrderByComparator<LayoutSetBranch> orderByComparator) throws NoSuchLayoutSetBranchException
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 foundpublic static LayoutSetBranch fetchByG_P_Last(long groupId, boolean privateLayout, OrderByComparator<LayoutSetBranch> orderByComparator)
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 foundpublic static LayoutSetBranch[] findByG_P_PrevAndNext(long layoutSetBranchId, long groupId, boolean privateLayout, OrderByComparator<LayoutSetBranch> orderByComparator) throws NoSuchLayoutSetBranchException
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 foundpublic static java.util.List<LayoutSetBranch> filterFindByG_P(long groupId, boolean privateLayout)
groupId
- the group IDprivateLayout
- the private layoutpublic static java.util.List<LayoutSetBranch> filterFindByG_P(long groupId, boolean privateLayout, 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, then the query will include the default ORDER BY logic from LayoutSetBranchModelImpl
.
groupId
- the group IDprivateLayout
- the private layoutstart
- the lower bound of the range of layout set branchesend
- the upper bound of the range of layout set branches (not inclusive)public static java.util.List<LayoutSetBranch> filterFindByG_P(long groupId, boolean privateLayout, int start, int end, OrderByComparator<LayoutSetBranch> 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, then the query will include the default ORDER BY logic from LayoutSetBranchModelImpl
.
groupId
- the group IDprivateLayout
- the private layoutstart
- the lower bound of the range of layout set branchesend
- the upper bound of the range of layout set branches (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)public static LayoutSetBranch[] filterFindByG_P_PrevAndNext(long layoutSetBranchId, long groupId, boolean privateLayout, OrderByComparator<LayoutSetBranch> orderByComparator) throws NoSuchLayoutSetBranchException
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 foundpublic static void removeByG_P(long groupId, boolean privateLayout)
groupId
- the group IDprivateLayout
- the private layoutpublic static int countByG_P(long groupId, boolean privateLayout)
groupId
- the group IDprivateLayout
- the private layoutpublic static int filterCountByG_P(long groupId, boolean privateLayout)
groupId
- the group IDprivateLayout
- the private layoutpublic static LayoutSetBranch findByG_P_N(long groupId, boolean privateLayout, java.lang.String name) throws NoSuchLayoutSetBranchException
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 foundpublic static LayoutSetBranch fetchByG_P_N(long groupId, boolean privateLayout, java.lang.String name)
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 foundpublic static LayoutSetBranch fetchByG_P_N(long groupId, boolean privateLayout, java.lang.String name, boolean useFinderCache)
null
if it could not be found, optionally using the finder cache.groupId
- the group IDprivateLayout
- the private layoutname
- the nameuseFinderCache
- whether to use the finder cachenull
if a matching layout set branch could not be foundpublic static LayoutSetBranch removeByG_P_N(long groupId, boolean privateLayout, java.lang.String name) throws NoSuchLayoutSetBranchException
groupId
- the group IDprivateLayout
- the private layoutname
- the nameNoSuchLayoutSetBranchException
public static int countByG_P_N(long groupId, boolean privateLayout, java.lang.String name)
groupId
- the group IDprivateLayout
- the private layoutname
- the namepublic static java.util.List<LayoutSetBranch> findByG_P_M(long groupId, boolean privateLayout, boolean master)
groupId
- the group IDprivateLayout
- the private layoutmaster
- the masterpublic static java.util.List<LayoutSetBranch> findByG_P_M(long groupId, boolean privateLayout, 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, then the query will include the default ORDER BY logic from LayoutSetBranchModelImpl
.
groupId
- the group IDprivateLayout
- the private layoutmaster
- the masterstart
- the lower bound of the range of layout set branchesend
- the upper bound of the range of layout set branches (not inclusive)public static java.util.List<LayoutSetBranch> findByG_P_M(long groupId, boolean privateLayout, boolean master, int start, int end, OrderByComparator<LayoutSetBranch> 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, then the query will include the default ORDER BY logic from LayoutSetBranchModelImpl
.
groupId
- the group IDprivateLayout
- the private layoutmaster
- the masterstart
- the lower bound of the range of layout set branchesend
- the upper bound of the range of layout set branches (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)public static java.util.List<LayoutSetBranch> findByG_P_M(long groupId, boolean privateLayout, boolean master, int start, int end, OrderByComparator<LayoutSetBranch> orderByComparator, boolean useFinderCache)
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 LayoutSetBranchModelImpl
.
groupId
- the group IDprivateLayout
- the private layoutmaster
- the masterstart
- the lower bound of the range of layout set branchesend
- the upper bound of the range of layout set branches (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)useFinderCache
- whether to use the finder cachepublic static LayoutSetBranch findByG_P_M_First(long groupId, boolean privateLayout, boolean master, OrderByComparator<LayoutSetBranch> orderByComparator) throws NoSuchLayoutSetBranchException
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 foundpublic static LayoutSetBranch fetchByG_P_M_First(long groupId, boolean privateLayout, boolean master, OrderByComparator<LayoutSetBranch> orderByComparator)
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 foundpublic static LayoutSetBranch findByG_P_M_Last(long groupId, boolean privateLayout, boolean master, OrderByComparator<LayoutSetBranch> orderByComparator) throws NoSuchLayoutSetBranchException
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 foundpublic static LayoutSetBranch fetchByG_P_M_Last(long groupId, boolean privateLayout, boolean master, OrderByComparator<LayoutSetBranch> orderByComparator)
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 foundpublic static LayoutSetBranch[] findByG_P_M_PrevAndNext(long layoutSetBranchId, long groupId, boolean privateLayout, boolean master, OrderByComparator<LayoutSetBranch> orderByComparator) throws NoSuchLayoutSetBranchException
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 foundpublic static java.util.List<LayoutSetBranch> filterFindByG_P_M(long groupId, boolean privateLayout, boolean master)
groupId
- the group IDprivateLayout
- the private layoutmaster
- the masterpublic static java.util.List<LayoutSetBranch> filterFindByG_P_M(long groupId, boolean privateLayout, 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, then the query will include the default ORDER BY logic from LayoutSetBranchModelImpl
.
groupId
- the group IDprivateLayout
- the private layoutmaster
- the masterstart
- the lower bound of the range of layout set branchesend
- the upper bound of the range of layout set branches (not inclusive)public static java.util.List<LayoutSetBranch> filterFindByG_P_M(long groupId, boolean privateLayout, boolean master, int start, int end, OrderByComparator<LayoutSetBranch> 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, then the query will include the default ORDER BY logic from LayoutSetBranchModelImpl
.
groupId
- the group IDprivateLayout
- the private layoutmaster
- the masterstart
- the lower bound of the range of layout set branchesend
- the upper bound of the range of layout set branches (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)public static LayoutSetBranch[] filterFindByG_P_M_PrevAndNext(long layoutSetBranchId, long groupId, boolean privateLayout, boolean master, OrderByComparator<LayoutSetBranch> orderByComparator) throws NoSuchLayoutSetBranchException
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 foundpublic static void removeByG_P_M(long groupId, boolean privateLayout, boolean master)
groupId
- the group IDprivateLayout
- the private layoutmaster
- the masterpublic static int countByG_P_M(long groupId, boolean privateLayout, boolean master)
groupId
- the group IDprivateLayout
- the private layoutmaster
- the masterpublic static int filterCountByG_P_M(long groupId, boolean privateLayout, boolean master)
groupId
- the group IDprivateLayout
- the private layoutmaster
- the masterpublic static void cacheResult(LayoutSetBranch layoutSetBranch)
layoutSetBranch
- the layout set branchpublic static void cacheResult(java.util.List<LayoutSetBranch> layoutSetBranchs)
layoutSetBranchs
- the layout set branchespublic static LayoutSetBranch create(long layoutSetBranchId)
layoutSetBranchId
- the primary key for the new layout set branchpublic static LayoutSetBranch remove(long layoutSetBranchId) throws NoSuchLayoutSetBranchException
layoutSetBranchId
- the primary key of the layout set branchNoSuchLayoutSetBranchException
- if a layout set branch with the primary key could not be foundpublic static LayoutSetBranch updateImpl(LayoutSetBranch layoutSetBranch)
public static LayoutSetBranch findByPrimaryKey(long layoutSetBranchId) throws NoSuchLayoutSetBranchException
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 foundpublic static LayoutSetBranch fetchByPrimaryKey(long layoutSetBranchId)
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 foundpublic static java.util.List<LayoutSetBranch> findAll()
public static java.util.List<LayoutSetBranch> 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, then the query will include the default ORDER BY logic from LayoutSetBranchModelImpl
.
start
- the lower bound of the range of layout set branchesend
- the upper bound of the range of layout set branches (not inclusive)public static java.util.List<LayoutSetBranch> findAll(int start, int end, OrderByComparator<LayoutSetBranch> 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, then the query will include the default ORDER BY logic from LayoutSetBranchModelImpl
.
start
- the lower bound of the range of layout set branchesend
- the upper bound of the range of layout set branches (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)public static java.util.List<LayoutSetBranch> findAll(int start, int end, OrderByComparator<LayoutSetBranch> orderByComparator, boolean useFinderCache)
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 LayoutSetBranchModelImpl
.
start
- the lower bound of the range of layout set branchesend
- the upper bound of the range of layout set branches (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)useFinderCache
- whether to use the finder cachepublic static void removeAll()
public static int countAll()
public static LayoutSetBranchPersistence getPersistence()
public static void setPersistence(LayoutSetBranchPersistence persistence)