@ProviderType
public class ClusterGroupUtil
extends Object
ClusterGroupPersistenceImpl
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
ClusterGroupPersistence
,
ClusterGroupPersistenceImpl
Constructor and Description |
---|
ClusterGroupUtil() |
Modifier and Type | Method and Description |
---|---|
static void |
cacheResult(ClusterGroup clusterGroup)
Caches the cluster group in the entity cache if it is enabled.
|
static void |
cacheResult(List<ClusterGroup> clusterGroups)
Caches the cluster groups in the entity cache if it is enabled.
|
static void |
clearCache() |
static void |
clearCache(ClusterGroup clusterGroup) |
static int |
countAll()
Returns the number of cluster groups.
|
static long |
countWithDynamicQuery(DynamicQuery dynamicQuery) |
static ClusterGroup |
create(long clusterGroupId)
Creates a new cluster group with the primary key.
|
static ClusterGroup |
fetchByPrimaryKey(long clusterGroupId)
Returns the cluster group with the primary key or returns
null if it could not be found. |
static Map<Serializable,ClusterGroup> |
fetchByPrimaryKeys(Set<Serializable> primaryKeys) |
static List<ClusterGroup> |
findAll()
Returns all the cluster groups.
|
static List<ClusterGroup> |
findAll(int start,
int end)
Returns a range of all the cluster groups.
|
static List<ClusterGroup> |
findAll(int start,
int end,
OrderByComparator<ClusterGroup> orderByComparator)
Returns an ordered range of all the cluster groups.
|
static List<ClusterGroup> |
findAll(int start,
int end,
OrderByComparator<ClusterGroup> orderByComparator,
boolean retrieveFromCache)
Returns an ordered range of all the cluster groups.
|
static ClusterGroup |
findByPrimaryKey(long clusterGroupId)
Returns the cluster group with the primary key or throws a
NoSuchClusterGroupException if it could not be found. |
static List<ClusterGroup> |
findWithDynamicQuery(DynamicQuery dynamicQuery) |
static List<ClusterGroup> |
findWithDynamicQuery(DynamicQuery dynamicQuery,
int start,
int end) |
static List<ClusterGroup> |
findWithDynamicQuery(DynamicQuery dynamicQuery,
int start,
int end,
OrderByComparator<ClusterGroup> orderByComparator) |
static ClusterGroupPersistence |
getPersistence() |
static ClusterGroup |
remove(long clusterGroupId)
Removes the cluster group with the primary key from the database.
|
static void |
removeAll()
Removes all the cluster groups from the database.
|
static ClusterGroup |
update(ClusterGroup clusterGroup) |
static ClusterGroup |
update(ClusterGroup clusterGroup,
ServiceContext serviceContext) |
static ClusterGroup |
updateImpl(ClusterGroup clusterGroup) |
public static void clearCache()
BasePersistence.clearCache()
public static void clearCache(ClusterGroup clusterGroup)
public static long countWithDynamicQuery(DynamicQuery dynamicQuery)
public static List<ClusterGroup> findWithDynamicQuery(DynamicQuery dynamicQuery)
public static List<ClusterGroup> findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end)
public static List<ClusterGroup> findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end, OrderByComparator<ClusterGroup> orderByComparator)
public static ClusterGroup update(ClusterGroup clusterGroup)
public static ClusterGroup update(ClusterGroup clusterGroup, ServiceContext serviceContext)
public static void cacheResult(ClusterGroup clusterGroup)
clusterGroup
- the cluster grouppublic static void cacheResult(List<ClusterGroup> clusterGroups)
clusterGroups
- the cluster groupspublic static ClusterGroup create(long clusterGroupId)
clusterGroupId
- the primary key for the new cluster grouppublic static ClusterGroup remove(long clusterGroupId) throws NoSuchClusterGroupException
clusterGroupId
- the primary key of the cluster groupNoSuchClusterGroupException
- if a cluster group with the primary key could not be foundpublic static ClusterGroup updateImpl(ClusterGroup clusterGroup)
public static ClusterGroup findByPrimaryKey(long clusterGroupId) throws NoSuchClusterGroupException
NoSuchClusterGroupException
if it could not be found.clusterGroupId
- the primary key of the cluster groupNoSuchClusterGroupException
- if a cluster group with the primary key could not be foundpublic static ClusterGroup fetchByPrimaryKey(long clusterGroupId)
null
if it could not be found.clusterGroupId
- the primary key of the cluster groupnull
if a cluster group with the primary key could not be foundpublic static Map<Serializable,ClusterGroup> fetchByPrimaryKeys(Set<Serializable> primaryKeys)
public static List<ClusterGroup> findAll()
public static List<ClusterGroup> 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 ClusterGroupModelImpl
. 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 cluster groupsend
- the upper bound of the range of cluster groups (not inclusive)public static List<ClusterGroup> findAll(int start, int end, OrderByComparator<ClusterGroup> 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 ClusterGroupModelImpl
. 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 cluster groupsend
- the upper bound of the range of cluster groups (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)public static List<ClusterGroup> findAll(int start, int end, OrderByComparator<ClusterGroup> 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 ClusterGroupModelImpl
. 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 cluster groupsend
- the upper bound of the range of cluster groups (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)retrieveFromCache
- whether to retrieve from the finder cachepublic static void removeAll()
public static int countAll()
public static ClusterGroupPersistence getPersistence()