|
Liferay 6.2.0-ce-rc6 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectcom.liferay.portlet.ratings.service.persistence.RatingsStatsUtil
public class RatingsStatsUtil
The persistence utility for the ratings stats service. This utility wraps RatingsStatsPersistenceImpl 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
RatingsStatsPersistence,
RatingsStatsPersistenceImpl| Constructor Summary | |
|---|---|
RatingsStatsUtil()
|
|
| Method Summary | |
|---|---|
static void |
cacheResult(List<RatingsStats> ratingsStatses)
Caches the ratings statses in the entity cache if it is enabled. |
static void |
cacheResult(RatingsStats ratingsStats)
Caches the ratings stats in the entity cache if it is enabled. |
static void |
clearCache()
|
static void |
clearCache(RatingsStats ratingsStats)
|
static int |
countAll()
Returns the number of ratings statses. |
static int |
countByC_C(long classNameId,
long classPK)
Returns the number of ratings statses where classNameId = ? and classPK = ?. |
static long |
countWithDynamicQuery(DynamicQuery dynamicQuery)
|
static RatingsStats |
create(long statsId)
Creates a new ratings stats with the primary key. |
static RatingsStats |
fetchByC_C(long classNameId,
long classPK)
Returns the ratings stats where classNameId = ? and classPK = ? or returns null if it could not be found. |
static RatingsStats |
fetchByC_C(long classNameId,
long classPK,
boolean retrieveFromCache)
Returns the ratings stats where classNameId = ? and classPK = ? or returns null if it could not be found, optionally using the finder cache. |
static RatingsStats |
fetchByPrimaryKey(long statsId)
Returns the ratings stats with the primary key or returns null if it could not be found. |
static List<RatingsStats> |
findAll()
Returns all the ratings statses. |
static List<RatingsStats> |
findAll(int start,
int end)
Returns a range of all the ratings statses. |
static List<RatingsStats> |
findAll(int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the ratings statses. |
static RatingsStats |
findByC_C(long classNameId,
long classPK)
Returns the ratings stats where classNameId = ? and classPK = ? or throws a NoSuchStatsException if it could not be found. |
static RatingsStats |
findByPrimaryKey(long statsId)
Returns the ratings stats with the primary key or throws a NoSuchStatsException if it could not be found. |
static List<RatingsStats> |
findWithDynamicQuery(DynamicQuery dynamicQuery)
|
static List<RatingsStats> |
findWithDynamicQuery(DynamicQuery dynamicQuery,
int start,
int end)
|
static List<RatingsStats> |
findWithDynamicQuery(DynamicQuery dynamicQuery,
int start,
int end,
OrderByComparator orderByComparator)
|
static RatingsStatsPersistence |
getPersistence()
|
static RatingsStats |
remove(long statsId)
Removes the ratings stats with the primary key from the database. |
static void |
removeAll()
Removes all the ratings statses from the database. |
static RatingsStats |
removeByC_C(long classNameId,
long classPK)
Removes the ratings stats where classNameId = ? and classPK = ? from the database. |
void |
setPersistence(RatingsStatsPersistence persistence)
Deprecated. As of 6.2.0 |
static RatingsStats |
update(RatingsStats ratingsStats)
|
static RatingsStats |
update(RatingsStats ratingsStats,
ServiceContext serviceContext)
|
static RatingsStats |
updateImpl(RatingsStats ratingsStats)
|
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public RatingsStatsUtil()
| Method Detail |
|---|
public static void clearCache()
BasePersistence.clearCache()public static void clearCache(RatingsStats ratingsStats)
BasePersistence.clearCache(com.liferay.portal.model.BaseModel)
public static long countWithDynamicQuery(DynamicQuery dynamicQuery)
throws SystemException
SystemExceptionBasePersistence.countWithDynamicQuery(DynamicQuery)
public static List<RatingsStats> findWithDynamicQuery(DynamicQuery dynamicQuery)
throws SystemException
SystemExceptionBasePersistence.findWithDynamicQuery(DynamicQuery)
public static List<RatingsStats> findWithDynamicQuery(DynamicQuery dynamicQuery,
int start,
int end)
throws SystemException
SystemExceptionBasePersistence.findWithDynamicQuery(DynamicQuery, int, int)
public static List<RatingsStats> findWithDynamicQuery(DynamicQuery dynamicQuery,
int start,
int end,
OrderByComparator orderByComparator)
throws SystemException
SystemExceptionBasePersistence.findWithDynamicQuery(DynamicQuery, int, int, OrderByComparator)
public static RatingsStats update(RatingsStats ratingsStats)
throws SystemException
SystemExceptionBasePersistence.update(com.liferay.portal.model.BaseModel)
public static RatingsStats update(RatingsStats ratingsStats,
ServiceContext serviceContext)
throws SystemException
SystemExceptionBasePersistence.update(com.liferay.portal.model.BaseModel, ServiceContext)
public static RatingsStats findByC_C(long classNameId,
long classPK)
throws SystemException,
NoSuchStatsException
NoSuchStatsException if it could not be found.
classNameId - the class name IDclassPK - the class p k
NoSuchStatsException - if a matching ratings stats could not be found
SystemException - if a system exception occurred
public static RatingsStats fetchByC_C(long classNameId,
long classPK)
throws SystemException
null if it could not be found. Uses the finder cache.
classNameId - the class name IDclassPK - the class p k
null if a matching ratings stats could not be found
SystemException - if a system exception occurred
public static RatingsStats fetchByC_C(long classNameId,
long classPK,
boolean retrieveFromCache)
throws SystemException
null if it could not be found, optionally using the finder cache.
classNameId - the class name IDclassPK - the class p kretrieveFromCache - whether to use the finder cache
null if a matching ratings stats could not be found
SystemException - if a system exception occurred
public static RatingsStats removeByC_C(long classNameId,
long classPK)
throws SystemException,
NoSuchStatsException
classNameId - the class name IDclassPK - the class p k
SystemException - if a system exception occurred
NoSuchStatsException
public static int countByC_C(long classNameId,
long classPK)
throws SystemException
classNameId - the class name IDclassPK - the class p k
SystemException - if a system exception occurredpublic static void cacheResult(RatingsStats ratingsStats)
ratingsStats - the ratings statspublic static void cacheResult(List<RatingsStats> ratingsStatses)
ratingsStatses - the ratings statsespublic static RatingsStats create(long statsId)
statsId - the primary key for the new ratings stats
public static RatingsStats remove(long statsId)
throws SystemException,
NoSuchStatsException
statsId - the primary key of the ratings stats
NoSuchStatsException - if a ratings stats with the primary key could not be found
SystemException - if a system exception occurred
public static RatingsStats updateImpl(RatingsStats ratingsStats)
throws SystemException
SystemException
public static RatingsStats findByPrimaryKey(long statsId)
throws SystemException,
NoSuchStatsException
NoSuchStatsException if it could not be found.
statsId - the primary key of the ratings stats
NoSuchStatsException - if a ratings stats with the primary key could not be found
SystemException - if a system exception occurred
public static RatingsStats fetchByPrimaryKey(long statsId)
throws SystemException
null if it could not be found.
statsId - the primary key of the ratings stats
null if a ratings stats with the primary key could not be found
SystemException - if a system exception occurred
public static List<RatingsStats> findAll()
throws SystemException
SystemException - if a system exception occurred
public static List<RatingsStats> 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 RatingsStatsModelImpl. 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 ratings statsesend - the upper bound of the range of ratings statses (not inclusive)
SystemException - if a system exception occurred
public static List<RatingsStats> 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 RatingsStatsModelImpl. 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 ratings statsesend - the upper bound of the range of ratings statses (not inclusive)orderByComparator - the comparator to order the results by (optionally null)
SystemException - if a system exception occurred
public static void removeAll()
throws SystemException
SystemException - if a system exception occurred
public static int countAll()
throws SystemException
SystemException - if a system exception occurredpublic static RatingsStatsPersistence getPersistence()
public void setPersistence(RatingsStatsPersistence persistence)
|
Liferay 6.2.0-ce-rc6 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||