@ProviderType public interface RatingsStatsPersistence extends BasePersistence<RatingsStats>
Caching information and settings can be found in portal.properties
RatingsStatsPersistenceImpl
,
RatingsStatsUtil
Modifier and Type | Method and Description |
---|---|
void |
cacheResult(List<RatingsStats> ratingsStatses)
Caches the ratings statses in the entity cache if it is enabled.
|
void |
cacheResult(RatingsStats ratingsStats)
Caches the ratings stats in the entity cache if it is enabled.
|
int |
countAll()
Returns the number of ratings statses.
|
int |
countByC_C(long classNameId,
long classPK)
Returns the number of ratings statses where classNameId = ? and classPK = ?.
|
int |
countByC_C(long classNameId,
long[] classPKs)
Returns the number of ratings statses where classNameId = ? and classPK = any ?.
|
RatingsStats |
create(long statsId)
Creates a new ratings stats with the primary key.
|
RatingsStats |
fetchByC_C(long classNameId,
long classPK)
Returns the ratings stats where classNameId = ? and classPK = ? or returns
null if it could not be found. |
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. |
RatingsStats |
fetchByPrimaryKey(long statsId)
Returns the ratings stats with the primary key or returns
null if it could not be found. |
Map<Serializable,RatingsStats> |
fetchByPrimaryKeys(Set<Serializable> primaryKeys) |
List<RatingsStats> |
findAll()
Returns all the ratings statses.
|
List<RatingsStats> |
findAll(int start,
int end)
Returns a range of all the ratings statses.
|
List<RatingsStats> |
findAll(int start,
int end,
OrderByComparator<RatingsStats> orderByComparator)
Returns an ordered range of all the ratings statses.
|
List<RatingsStats> |
findAll(int start,
int end,
OrderByComparator<RatingsStats> orderByComparator,
boolean retrieveFromCache)
Returns an ordered range of all the ratings statses.
|
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. |
List<RatingsStats> |
findByC_C(long classNameId,
long[] classPKs)
Returns all the ratings statses where classNameId = ? and classPK = any ?.
|
List<RatingsStats> |
findByC_C(long classNameId,
long[] classPKs,
int start,
int end)
Returns a range of all the ratings statses where classNameId = ? and classPK = any ?.
|
List<RatingsStats> |
findByC_C(long classNameId,
long[] classPKs,
int start,
int end,
OrderByComparator<RatingsStats> orderByComparator)
Returns an ordered range of all the ratings statses where classNameId = ? and classPK = any ?.
|
List<RatingsStats> |
findByC_C(long classNameId,
long[] classPKs,
int start,
int end,
OrderByComparator<RatingsStats> orderByComparator,
boolean retrieveFromCache)
Returns an ordered range of all the ratings statses where classNameId = ? and classPK = ?, optionally using the finder cache.
|
RatingsStats |
findByPrimaryKey(long statsId)
Returns the ratings stats with the primary key or throws a
NoSuchStatsException if it could not be found. |
RatingsStats |
remove(long statsId)
Removes the ratings stats with the primary key from the database.
|
void |
removeAll()
Removes all the ratings statses from the database.
|
RatingsStats |
removeByC_C(long classNameId,
long classPK)
Removes the ratings stats where classNameId = ? and classPK = ? from the database.
|
RatingsStats |
updateImpl(RatingsStats ratingsStats) |
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<RatingsStats> findByC_C(long classNameId, long[] classPKs)
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.
classNameId
- the class name IDclassPKs
- the class pksList<RatingsStats> findByC_C(long classNameId, long[] classPKs, 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 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.
classNameId
- the class name IDclassPKs
- the class pksstart
- the lower bound of the range of ratings statsesend
- the upper bound of the range of ratings statses (not inclusive)List<RatingsStats> findByC_C(long classNameId, long[] classPKs, int start, int end, OrderByComparator<RatingsStats> 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 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.
classNameId
- the class name IDclassPKs
- the class pksstart
- 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
)List<RatingsStats> findByC_C(long classNameId, long[] classPKs, int start, int end, OrderByComparator<RatingsStats> 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 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.
classNameId
- the class name IDclassPK
- the class pkstart
- 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
)retrieveFromCache
- whether to retrieve from the finder cacheRatingsStats findByC_C(long classNameId, long classPK) throws NoSuchStatsException
NoSuchStatsException
if it could not be found.classNameId
- the class name IDclassPK
- the class pkNoSuchStatsException
- if a matching ratings stats could not be foundRatingsStats fetchByC_C(long classNameId, long classPK)
null
if it could not be found. Uses the finder cache.classNameId
- the class name IDclassPK
- the class pknull
if a matching ratings stats could not be foundRatingsStats fetchByC_C(long classNameId, long classPK, boolean retrieveFromCache)
null
if it could not be found, optionally using the finder cache.classNameId
- the class name IDclassPK
- the class pkretrieveFromCache
- whether to retrieve from the finder cachenull
if a matching ratings stats could not be foundRatingsStats removeByC_C(long classNameId, long classPK) throws NoSuchStatsException
classNameId
- the class name IDclassPK
- the class pkNoSuchStatsException
int countByC_C(long classNameId, long classPK)
classNameId
- the class name IDclassPK
- the class pkint countByC_C(long classNameId, long[] classPKs)
classNameId
- the class name IDclassPKs
- the class pksvoid cacheResult(RatingsStats ratingsStats)
ratingsStats
- the ratings statsvoid cacheResult(List<RatingsStats> ratingsStatses)
ratingsStatses
- the ratings statsesRatingsStats create(long statsId)
statsId
- the primary key for the new ratings statsRatingsStats remove(long statsId) throws NoSuchStatsException
statsId
- the primary key of the ratings statsNoSuchStatsException
- if a ratings stats with the primary key could not be foundRatingsStats updateImpl(RatingsStats ratingsStats)
RatingsStats findByPrimaryKey(long statsId) throws NoSuchStatsException
NoSuchStatsException
if it could not be found.statsId
- the primary key of the ratings statsNoSuchStatsException
- if a ratings stats with the primary key could not be foundRatingsStats fetchByPrimaryKey(long statsId)
null
if it could not be found.statsId
- the primary key of the ratings statsnull
if a ratings stats with the primary key could not be foundMap<Serializable,RatingsStats> fetchByPrimaryKeys(Set<Serializable> primaryKeys)
fetchByPrimaryKeys
in interface BasePersistence<RatingsStats>
List<RatingsStats> findAll()
List<RatingsStats> 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 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)List<RatingsStats> findAll(int start, int end, OrderByComparator<RatingsStats> 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 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
)List<RatingsStats> findAll(int start, int end, OrderByComparator<RatingsStats> 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 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
)retrieveFromCache
- whether to retrieve from the finder cachevoid removeAll()
int countAll()