Interface RatingsStatsPersistence

All Superinterfaces:
BasePersistence<RatingsStats>, CTPersistence<RatingsStats>

@ProviderType public interface RatingsStatsPersistence extends BasePersistence<RatingsStats>, CTPersistence<RatingsStats>
The persistence interface for the ratings stats service.

Caching information and settings can be found in portal.properties

Author:
Brian Wing Shun Chan
See Also:
{$generated.description}
  • Method Details

    • findByC_C

      List<RatingsStats> findByC_C(long classNameId, long[] classPKs)
      Returns all the ratings statses where classNameId = ? and classPK = any ?.

      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 RatingsStatsModelImpl.

      Parameters:
      classNameId - the class name ID
      classPKs - the class pks
      Returns:
      the matching ratings statses
    • findByC_C

      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 ?.

      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 RatingsStatsModelImpl.

      Parameters:
      classNameId - the class name ID
      classPKs - the class pks
      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 matching ratings statses
    • findByC_C

      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 ?.

      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 RatingsStatsModelImpl.

      Parameters:
      classNameId - the class name ID
      classPKs - the class pks
      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 matching ratings statses
    • findByC_C

      List<RatingsStats> findByC_C(long classNameId, long[] classPKs, int start, int end, OrderByComparator<RatingsStats> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the ratings statses where classNameId = ? and classPK = ?, optionally using the finder cache.

      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 RatingsStatsModelImpl.

      Parameters:
      classNameId - the class name ID
      classPKs - the class pks
      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)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching ratings statses
    • findByC_C

      RatingsStats findByC_C(long classNameId, long classPK) throws 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 pk
      Returns:
      the matching ratings stats
      Throws:
      NoSuchStatsException - if a matching ratings stats could not be found
    • fetchByC_C

      RatingsStats fetchByC_C(long classNameId, long classPK)
      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 pk
      Returns:
      the matching ratings stats, or null if a matching ratings stats could not be found
    • fetchByC_C

      RatingsStats fetchByC_C(long classNameId, long classPK, boolean useFinderCache)
      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 pk
      useFinderCache - whether to use the finder cache
      Returns:
      the matching ratings stats, or null if a matching ratings stats could not be found
    • removeByC_C

      RatingsStats removeByC_C(long classNameId, long classPK) throws NoSuchStatsException
      Removes the ratings stats where classNameId = ? and classPK = ? from the database.
      Parameters:
      classNameId - the class name ID
      classPK - the class pk
      Returns:
      the ratings stats that was removed
      Throws:
      NoSuchStatsException
    • countByC_C

      int countByC_C(long classNameId, long classPK)
      Returns the number of ratings statses where classNameId = ? and classPK = ?.
      Parameters:
      classNameId - the class name ID
      classPK - the class pk
      Returns:
      the number of matching ratings statses
    • countByC_C

      int countByC_C(long classNameId, long[] classPKs)
      Returns the number of ratings statses where classNameId = ? and classPK = any ?.
      Parameters:
      classNameId - the class name ID
      classPKs - the class pks
      Returns:
      the number of matching ratings statses
    • cacheResult

      void cacheResult(RatingsStats ratingsStats)
      Caches the ratings stats in the entity cache if it is enabled.
      Parameters:
      ratingsStats - the ratings stats
    • cacheResult

      void cacheResult(List<RatingsStats> ratingsStatses)
      Caches the ratings statses in the entity cache if it is enabled.
      Parameters:
      ratingsStatses - the ratings statses
    • create

      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

      RatingsStats remove(long statsId) throws 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
    • updateImpl

      RatingsStats updateImpl(RatingsStats ratingsStats)
    • findByPrimaryKey

      RatingsStats findByPrimaryKey(long statsId) throws 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
    • fetchByPrimaryKey

      RatingsStats fetchByPrimaryKey(long statsId)
      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
    • findAll

      List<RatingsStats> findAll()
      Returns all the ratings statses.
      Returns:
      the ratings statses
    • findAll

      List<RatingsStats> findAll(int start, int end)
      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. 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 RatingsStatsModelImpl.

      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
    • findAll

      List<RatingsStats> findAll(int start, int end, OrderByComparator<RatingsStats> orderByComparator)
      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. 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 RatingsStatsModelImpl.

      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
    • findAll

      List<RatingsStats> findAll(int start, int end, OrderByComparator<RatingsStats> orderByComparator, boolean useFinderCache)
      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. 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 RatingsStatsModelImpl.

      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)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of ratings statses
    • removeAll

      void removeAll()
      Removes all the ratings statses from the database.
    • countAll

      int countAll()
      Returns the number of ratings statses.
      Returns:
      the number of ratings statses