Liferay 6.1.2-ce-ga3

com.liferay.portlet.ratings.service.persistence
Class RatingsStatsUtil

java.lang.Object
  extended by com.liferay.portlet.ratings.service.persistence.RatingsStatsUtil

public class RatingsStatsUtil
extends Object

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

See Also:
RatingsStatsPersistence, RatingsStatsPersistenceImpl
ServiceBuilder generated this class. Modifications in this class will be overwritten the next time it is generated.

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 = ?.
 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.  
static RatingsStats update(RatingsStats ratingsStats, boolean merge)
           
static RatingsStats update(RatingsStats ratingsStats, boolean merge, ServiceContext serviceContext)
           
static RatingsStats updateImpl(RatingsStats ratingsStats, boolean merge)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

RatingsStatsUtil

public RatingsStatsUtil()
Method Detail

clearCache

public static void clearCache()
See Also:
BasePersistence.clearCache()

clearCache

public static void clearCache(RatingsStats ratingsStats)
See Also:
BasePersistence.clearCache(com.liferay.portal.model.BaseModel)

countWithDynamicQuery

public long countWithDynamicQuery(DynamicQuery dynamicQuery)
                           throws SystemException
Throws:
SystemException
See Also:
BasePersistence.countWithDynamicQuery(DynamicQuery)

findWithDynamicQuery

public static List<RatingsStats> findWithDynamicQuery(DynamicQuery dynamicQuery)
                                               throws SystemException
Throws:
SystemException
See Also:
BasePersistence.findWithDynamicQuery(DynamicQuery)

findWithDynamicQuery

public static List<RatingsStats> findWithDynamicQuery(DynamicQuery dynamicQuery,
                                                      int start,
                                                      int end)
                                               throws SystemException
Throws:
SystemException
See Also:
BasePersistence.findWithDynamicQuery(DynamicQuery, int, int)

findWithDynamicQuery

public static List<RatingsStats> findWithDynamicQuery(DynamicQuery dynamicQuery,
                                                      int start,
                                                      int end,
                                                      OrderByComparator orderByComparator)
                                               throws SystemException
Throws:
SystemException
See Also:
BasePersistence.findWithDynamicQuery(DynamicQuery, int, int, OrderByComparator)

update

public static RatingsStats update(RatingsStats ratingsStats,
                                  boolean merge)
                           throws SystemException
Throws:
SystemException
See Also:
BasePersistence.update(com.liferay.portal.model.BaseModel, boolean)

update

public static RatingsStats update(RatingsStats ratingsStats,
                                  boolean merge,
                                  ServiceContext serviceContext)
                           throws SystemException
Throws:
SystemException
See Also:
BasePersistence.update(com.liferay.portal.model.BaseModel, boolean, ServiceContext)

cacheResult

public static void cacheResult(RatingsStats ratingsStats)
Caches the ratings stats in the entity cache if it is enabled.

Parameters:
ratingsStats - the ratings stats

cacheResult

public static void cacheResult(List<RatingsStats> ratingsStatses)
Caches the ratings statses in the entity cache if it is enabled.

Parameters:
ratingsStatses - the ratings statses

create

public static RatingsStats create(long statsId)
Creates a new ratings stats with the primary key. Does not add the ratings stats to the database.

Parameters:
statsId - the primary key for the new ratings stats
Returns:
the new ratings stats

remove

public static RatingsStats remove(long statsId)
                           throws SystemException,
                                  NoSuchStatsException
Removes the ratings stats with the primary key from the database. Also notifies the appropriate model listeners.

Parameters:
statsId - the primary key of the ratings stats
Returns:
the ratings stats that was removed
Throws:
NoSuchStatsException - if a ratings stats with the primary key could not be found
SystemException - if a system exception occurred

updateImpl

public static RatingsStats updateImpl(RatingsStats ratingsStats,
                                      boolean merge)
                               throws SystemException
Throws:
SystemException

findByPrimaryKey

public static RatingsStats findByPrimaryKey(long statsId)
                                     throws SystemException,
                                            NoSuchStatsException
Returns the ratings stats with the primary key or throws a NoSuchStatsException if it could not be found.

Parameters:
statsId - the primary key of the ratings stats
Returns:
the ratings stats
Throws:
NoSuchStatsException - if a ratings stats with the primary key could not be found
SystemException - if a system exception occurred

fetchByPrimaryKey

public static RatingsStats fetchByPrimaryKey(long statsId)
                                      throws SystemException
Returns the ratings stats with the primary key or returns null if it could not be found.

Parameters:
statsId - the primary key of the ratings stats
Returns:
the ratings stats, or null if a ratings stats with the primary key could not be found
Throws:
SystemException - if a system exception occurred

findByC_C

public static RatingsStats findByC_C(long classNameId,
                                     long classPK)
                              throws SystemException,
                                     NoSuchStatsException
Returns the ratings stats where classNameId = ? and classPK = ? or throws a NoSuchStatsException if it could not be found.

Parameters:
classNameId - the class name ID
classPK - the class p k
Returns:
the matching ratings stats
Throws:
NoSuchStatsException - if a matching ratings stats could not be found
SystemException - if a system exception occurred

fetchByC_C

public static RatingsStats fetchByC_C(long classNameId,
                                      long classPK)
                               throws SystemException
Returns the ratings stats where classNameId = ? and classPK = ? or returns null if it could not be found. Uses the finder cache.

Parameters:
classNameId - the class name ID
classPK - the class p k
Returns:
the matching ratings stats, or null if a matching ratings stats could not be found
Throws:
SystemException - if a system exception occurred

fetchByC_C

public static RatingsStats fetchByC_C(long classNameId,
                                      long classPK,
                                      boolean retrieveFromCache)
                               throws SystemException
Returns the ratings stats where classNameId = ? and classPK = ? or returns null if it could not be found, optionally using the finder cache.

Parameters:
classNameId - the class name ID
classPK - the class p k
retrieveFromCache - whether to use the finder cache
Returns:
the matching ratings stats, or null if a matching ratings stats could not be found
Throws:
SystemException - if a system exception occurred

findAll

public static List<RatingsStats> findAll()
                                  throws SystemException
Returns all the ratings statses.

Returns:
the ratings statses
Throws:
SystemException - if a system exception occurred

findAll

public static List<RatingsStats> findAll(int start,
                                         int end)
                                  throws SystemException
Returns a range of all the ratings statses.

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.

Parameters:
start - the lower bound of the range of ratings statses
end - the upper bound of the range of ratings statses (not inclusive)
Returns:
the range of ratings statses
Throws:
SystemException - if a system exception occurred

findAll

public static List<RatingsStats> findAll(int start,
                                         int end,
                                         OrderByComparator orderByComparator)
                                  throws SystemException
Returns an ordered range of all the ratings statses.

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.

Parameters:
start - the lower bound of the range of ratings statses
end - the upper bound of the range of ratings statses (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
Returns:
the ordered range of ratings statses
Throws:
SystemException - if a system exception occurred

removeByC_C

public static RatingsStats removeByC_C(long classNameId,
                                       long classPK)
                                throws SystemException,
                                       NoSuchStatsException
Removes the ratings stats where classNameId = ? and classPK = ? from the database.

Parameters:
classNameId - the class name ID
classPK - the class p k
Returns:
the ratings stats that was removed
Throws:
SystemException - if a system exception occurred
NoSuchStatsException

removeAll

public static void removeAll()
                      throws SystemException
Removes all the ratings statses from the database.

Throws:
SystemException - if a system exception occurred

countByC_C

public static int countByC_C(long classNameId,
                             long classPK)
                      throws SystemException
Returns the number of ratings statses where classNameId = ? and classPK = ?.

Parameters:
classNameId - the class name ID
classPK - the class p k
Returns:
the number of matching ratings statses
Throws:
SystemException - if a system exception occurred

countAll

public static int countAll()
                    throws SystemException
Returns the number of ratings statses.

Returns:
the number of ratings statses
Throws:
SystemException - if a system exception occurred

getPersistence

public static RatingsStatsPersistence getPersistence()

setPersistence

public void setPersistence(RatingsStatsPersistence persistence)
Deprecated. 


Liferay 6.1.2-ce-ga3