Class CTScoreUtil
com.liferay.change.tracking.service.persistence.impl.CTScorePersistenceImpl 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:
- Generated:
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic voidcacheResult(CTScore ctScore) Caches the ct score in the entity cache if it is enabled.static voidcacheResult(List<CTScore> ctScores) Caches the ct scores in the entity cache if it is enabled.static voidstatic voidclearCache(CTScore ctScore) static intcountAll()Returns the number of ct scores.static intcountByCtCollectionId(long ctCollectionId) Returns the number of ct scores where ctCollectionId = ?.static longcountWithDynamicQuery(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery) static CTScorecreate(long ctScoreId) Creates a new ct score with the primary key.static CTScorefetchByCtCollectionId(long ctCollectionId) Returns the ct score where ctCollectionId = ? or returnsnullif it could not be found.static CTScorefetchByCtCollectionId(long ctCollectionId, boolean useFinderCache) Returns the ct score where ctCollectionId = ? or returnsnullif it could not be found, optionally using the finder cache.static CTScorefetchByPrimaryKey(long ctScoreId) Returns the ct score with the primary key or returnsnullif it could not be found.static Map<Serializable,CTScore> fetchByPrimaryKeys(Set<Serializable> primaryKeys) findAll()Returns all the ct scores.findAll(int start, int end) Returns a range of all the ct scores.findAll(int start, int end, com.liferay.portal.kernel.util.OrderByComparator<CTScore> orderByComparator) Returns an ordered range of all the ct scores.findAll(int start, int end, com.liferay.portal.kernel.util.OrderByComparator<CTScore> orderByComparator, boolean useFinderCache) Returns an ordered range of all the ct scores.static CTScorefindByCtCollectionId(long ctCollectionId) Returns the ct score where ctCollectionId = ? or throws aNoSuchScoreExceptionif it could not be found.static CTScorefindByPrimaryKey(long ctScoreId) Returns the ct score with the primary key or throws aNoSuchScoreExceptionif it could not be found.findWithDynamicQuery(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery) findWithDynamicQuery(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start, int end) findWithDynamicQuery(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<CTScore> orderByComparator) static CTScorePersistencestatic CTScoreremove(long ctScoreId) Removes the ct score with the primary key from the database.static voidRemoves all the ct scores from the database.static CTScoreremoveByCtCollectionId(long ctCollectionId) Removes the ct score where ctCollectionId = ? from the database.static voidsetPersistence(CTScorePersistence persistence) static CTScorestatic CTScorestatic CTScoreupdateImpl(CTScore ctScore)
-
Constructor Details
-
CTScoreUtil
public CTScoreUtil()
-
-
Method Details
-
clearCache
public static void clearCache()- See Also:
-
BasePersistence.clearCache()
-
clearCache
- See Also:
-
BasePersistence.clearCache(com.liferay.portal.kernel.model.BaseModel)
-
countWithDynamicQuery
public static long countWithDynamicQuery(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery) - See Also:
-
BasePersistence.countWithDynamicQuery(DynamicQuery)
-
fetchByPrimaryKeys
- See Also:
-
BasePersistence.fetchByPrimaryKeys(Set)
-
findWithDynamicQuery
public static List<CTScore> findWithDynamicQuery(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery) - See Also:
-
BasePersistence.findWithDynamicQuery(DynamicQuery)
-
findWithDynamicQuery
public static List<CTScore> findWithDynamicQuery(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start, int end) - See Also:
-
BasePersistence.findWithDynamicQuery(DynamicQuery, int, int)
-
findWithDynamicQuery
public static List<CTScore> findWithDynamicQuery(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<CTScore> orderByComparator) - See Also:
-
BasePersistence.findWithDynamicQuery(DynamicQuery, int, int, OrderByComparator)
-
update
- See Also:
-
BasePersistence.update(com.liferay.portal.kernel.model.BaseModel)
-
update
public static CTScore update(CTScore ctScore, com.liferay.portal.kernel.service.ServiceContext serviceContext) - See Also:
-
BasePersistence.update(com.liferay.portal.kernel.model.BaseModel, ServiceContext)
-
findByCtCollectionId
Returns the ct score where ctCollectionId = ? or throws aNoSuchScoreExceptionif it could not be found.- Parameters:
ctCollectionId- the ct collection ID- Returns:
- the matching ct score
- Throws:
NoSuchScoreException- if a matching ct score could not be foundNoSuchScoreException
-
fetchByCtCollectionId
Returns the ct score where ctCollectionId = ? or returnsnullif it could not be found. Uses the finder cache.- Parameters:
ctCollectionId- the ct collection ID- Returns:
- the matching ct score, or
nullif a matching ct score could not be found
-
fetchByCtCollectionId
Returns the ct score where ctCollectionId = ? or returnsnullif it could not be found, optionally using the finder cache.- Parameters:
ctCollectionId- the ct collection IDuseFinderCache- whether to use the finder cache- Returns:
- the matching ct score, or
nullif a matching ct score could not be found
-
removeByCtCollectionId
Removes the ct score where ctCollectionId = ? from the database.- Parameters:
ctCollectionId- the ct collection ID- Returns:
- the ct score that was removed
- Throws:
NoSuchScoreException
-
countByCtCollectionId
public static int countByCtCollectionId(long ctCollectionId) Returns the number of ct scores where ctCollectionId = ?.- Parameters:
ctCollectionId- the ct collection ID- Returns:
- the number of matching ct scores
-
cacheResult
Caches the ct score in the entity cache if it is enabled.- Parameters:
ctScore- the ct score
-
cacheResult
Caches the ct scores in the entity cache if it is enabled.- Parameters:
ctScores- the ct scores
-
create
Creates a new ct score with the primary key. Does not add the ct score to the database.- Parameters:
ctScoreId- the primary key for the new ct score- Returns:
- the new ct score
-
remove
Removes the ct score with the primary key from the database. Also notifies the appropriate model listeners.- Parameters:
ctScoreId- the primary key of the ct score- Returns:
- the ct score that was removed
- Throws:
NoSuchScoreException- if a ct score with the primary key could not be foundNoSuchScoreException
-
updateImpl
-
findByPrimaryKey
Returns the ct score with the primary key or throws aNoSuchScoreExceptionif it could not be found.- Parameters:
ctScoreId- the primary key of the ct score- Returns:
- the ct score
- Throws:
NoSuchScoreException- if a ct score with the primary key could not be foundNoSuchScoreException
-
fetchByPrimaryKey
Returns the ct score with the primary key or returnsnullif it could not be found.- Parameters:
ctScoreId- the primary key of the ct score- Returns:
- the ct score, or
nullif a ct score with the primary key could not be found
-
findAll
Returns all the ct scores.- Returns:
- the ct scores
-
findAll
Returns a range of all the ct scores.Useful when paginating results. Returns a maximum of
end - startinstances.startandendare not primary keys, they are indexes in the result set. Thus,0refers to the first result in the set. Setting bothstartandendtoQueryUtil#ALL_POSwill return the full result set. IforderByComparatoris specified, then the query will include the given ORDER BY logic. IforderByComparatoris absent, then the query will include the default ORDER BY logic fromCTScoreModelImpl.- Parameters:
start- the lower bound of the range of ct scoresend- the upper bound of the range of ct scores (not inclusive)- Returns:
- the range of ct scores
-
findAll
public static List<CTScore> findAll(int start, int end, com.liferay.portal.kernel.util.OrderByComparator<CTScore> orderByComparator) Returns an ordered range of all the ct scores.Useful when paginating results. Returns a maximum of
end - startinstances.startandendare not primary keys, they are indexes in the result set. Thus,0refers to the first result in the set. Setting bothstartandendtoQueryUtil#ALL_POSwill return the full result set. IforderByComparatoris specified, then the query will include the given ORDER BY logic. IforderByComparatoris absent, then the query will include the default ORDER BY logic fromCTScoreModelImpl.- Parameters:
start- the lower bound of the range of ct scoresend- the upper bound of the range of ct scores (not inclusive)orderByComparator- the comparator to order the results by (optionallynull)- Returns:
- the ordered range of ct scores
-
findAll
public static List<CTScore> findAll(int start, int end, com.liferay.portal.kernel.util.OrderByComparator<CTScore> orderByComparator, boolean useFinderCache) Returns an ordered range of all the ct scores.Useful when paginating results. Returns a maximum of
end - startinstances.startandendare not primary keys, they are indexes in the result set. Thus,0refers to the first result in the set. Setting bothstartandendtoQueryUtil#ALL_POSwill return the full result set. IforderByComparatoris specified, then the query will include the given ORDER BY logic. IforderByComparatoris absent, then the query will include the default ORDER BY logic fromCTScoreModelImpl.- Parameters:
start- the lower bound of the range of ct scoresend- the upper bound of the range of ct scores (not inclusive)orderByComparator- the comparator to order the results by (optionallynull)useFinderCache- whether to use the finder cache- Returns:
- the ordered range of ct scores
-
removeAll
public static void removeAll()Removes all the ct scores from the database. -
countAll
public static int countAll()Returns the number of ct scores.- Returns:
- the number of ct scores
-
getPersistence
-
setPersistence
-