public class AnnouncementsDeliveryUtil
extends Object
com.liferay.portlet.announcements.service.persistence.impl.AnnouncementsDeliveryPersistenceImpl
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
AnnouncementsDeliveryPersistence
Constructor and Description |
---|
AnnouncementsDeliveryUtil() |
Modifier and Type | Method and Description |
---|---|
static void |
cacheResult(AnnouncementsDelivery announcementsDelivery)
Caches the announcements delivery in the entity cache if it is enabled.
|
static void |
cacheResult(List<AnnouncementsDelivery> announcementsDeliveries)
Caches the announcements deliveries in the entity cache if it is enabled.
|
static void |
clearCache() |
static void |
clearCache(AnnouncementsDelivery announcementsDelivery) |
static int |
countAll()
Returns the number of announcements deliveries.
|
static int |
countByCompanyId(long companyId)
Returns the number of announcements deliveries where companyId = ?.
|
static int |
countByU_T(long userId,
String type)
Returns the number of announcements deliveries where userId = ? and type = ?.
|
static int |
countByUserId(long userId)
Returns the number of announcements deliveries where userId = ?.
|
static long |
countWithDynamicQuery(DynamicQuery dynamicQuery) |
static AnnouncementsDelivery |
create(long deliveryId)
Creates a new announcements delivery with the primary key.
|
static AnnouncementsDelivery |
fetchByCompanyId_First(long companyId,
OrderByComparator<AnnouncementsDelivery> orderByComparator)
Returns the first announcements delivery in the ordered set where companyId = ?.
|
static AnnouncementsDelivery |
fetchByCompanyId_Last(long companyId,
OrderByComparator<AnnouncementsDelivery> orderByComparator)
Returns the last announcements delivery in the ordered set where companyId = ?.
|
static AnnouncementsDelivery |
fetchByPrimaryKey(long deliveryId)
Returns the announcements delivery with the primary key or returns
null if it could not be found. |
static Map<Serializable,AnnouncementsDelivery> |
fetchByPrimaryKeys(Set<Serializable> primaryKeys) |
static AnnouncementsDelivery |
fetchByU_T(long userId,
String type)
Returns the announcements delivery where userId = ? and type = ? or returns
null if it could not be found. |
static AnnouncementsDelivery |
fetchByU_T(long userId,
String type,
boolean useFinderCache)
Returns the announcements delivery where userId = ? and type = ? or returns
null if it could not be found, optionally using the finder cache. |
static AnnouncementsDelivery |
fetchByUserId_First(long userId,
OrderByComparator<AnnouncementsDelivery> orderByComparator)
Returns the first announcements delivery in the ordered set where userId = ?.
|
static AnnouncementsDelivery |
fetchByUserId_Last(long userId,
OrderByComparator<AnnouncementsDelivery> orderByComparator)
Returns the last announcements delivery in the ordered set where userId = ?.
|
static List<AnnouncementsDelivery> |
findAll()
Returns all the announcements deliveries.
|
static List<AnnouncementsDelivery> |
findAll(int start,
int end)
Returns a range of all the announcements deliveries.
|
static List<AnnouncementsDelivery> |
findAll(int start,
int end,
OrderByComparator<AnnouncementsDelivery> orderByComparator)
Returns an ordered range of all the announcements deliveries.
|
static List<AnnouncementsDelivery> |
findAll(int start,
int end,
OrderByComparator<AnnouncementsDelivery> orderByComparator,
boolean useFinderCache)
Returns an ordered range of all the announcements deliveries.
|
static AnnouncementsDelivery |
findByCompanyId_First(long companyId,
OrderByComparator<AnnouncementsDelivery> orderByComparator)
Returns the first announcements delivery in the ordered set where companyId = ?.
|
static AnnouncementsDelivery |
findByCompanyId_Last(long companyId,
OrderByComparator<AnnouncementsDelivery> orderByComparator)
Returns the last announcements delivery in the ordered set where companyId = ?.
|
static AnnouncementsDelivery[] |
findByCompanyId_PrevAndNext(long deliveryId,
long companyId,
OrderByComparator<AnnouncementsDelivery> orderByComparator)
Returns the announcements deliveries before and after the current announcements delivery in the ordered set where companyId = ?.
|
static List<AnnouncementsDelivery> |
findByCompanyId(long companyId)
Returns all the announcements deliveries where companyId = ?.
|
static List<AnnouncementsDelivery> |
findByCompanyId(long companyId,
int start,
int end)
Returns a range of all the announcements deliveries where companyId = ?.
|
static List<AnnouncementsDelivery> |
findByCompanyId(long companyId,
int start,
int end,
OrderByComparator<AnnouncementsDelivery> orderByComparator)
Returns an ordered range of all the announcements deliveries where companyId = ?.
|
static List<AnnouncementsDelivery> |
findByCompanyId(long companyId,
int start,
int end,
OrderByComparator<AnnouncementsDelivery> orderByComparator,
boolean useFinderCache)
Returns an ordered range of all the announcements deliveries where companyId = ?.
|
static AnnouncementsDelivery |
findByPrimaryKey(long deliveryId)
Returns the announcements delivery with the primary key or throws a
NoSuchDeliveryException if it could not be found. |
static AnnouncementsDelivery |
findByU_T(long userId,
String type)
Returns the announcements delivery where userId = ? and type = ? or throws a
NoSuchDeliveryException if it could not be found. |
static AnnouncementsDelivery |
findByUserId_First(long userId,
OrderByComparator<AnnouncementsDelivery> orderByComparator)
Returns the first announcements delivery in the ordered set where userId = ?.
|
static AnnouncementsDelivery |
findByUserId_Last(long userId,
OrderByComparator<AnnouncementsDelivery> orderByComparator)
Returns the last announcements delivery in the ordered set where userId = ?.
|
static AnnouncementsDelivery[] |
findByUserId_PrevAndNext(long deliveryId,
long userId,
OrderByComparator<AnnouncementsDelivery> orderByComparator)
Returns the announcements deliveries before and after the current announcements delivery in the ordered set where userId = ?.
|
static List<AnnouncementsDelivery> |
findByUserId(long userId)
Returns all the announcements deliveries where userId = ?.
|
static List<AnnouncementsDelivery> |
findByUserId(long userId,
int start,
int end)
Returns a range of all the announcements deliveries where userId = ?.
|
static List<AnnouncementsDelivery> |
findByUserId(long userId,
int start,
int end,
OrderByComparator<AnnouncementsDelivery> orderByComparator)
Returns an ordered range of all the announcements deliveries where userId = ?.
|
static List<AnnouncementsDelivery> |
findByUserId(long userId,
int start,
int end,
OrderByComparator<AnnouncementsDelivery> orderByComparator,
boolean useFinderCache)
Returns an ordered range of all the announcements deliveries where userId = ?.
|
static List<AnnouncementsDelivery> |
findWithDynamicQuery(DynamicQuery dynamicQuery) |
static List<AnnouncementsDelivery> |
findWithDynamicQuery(DynamicQuery dynamicQuery,
int start,
int end) |
static List<AnnouncementsDelivery> |
findWithDynamicQuery(DynamicQuery dynamicQuery,
int start,
int end,
OrderByComparator<AnnouncementsDelivery> orderByComparator) |
static AnnouncementsDeliveryPersistence |
getPersistence() |
static AnnouncementsDelivery |
remove(long deliveryId)
Removes the announcements delivery with the primary key from the database.
|
static void |
removeAll()
Removes all the announcements deliveries from the database.
|
static void |
removeByCompanyId(long companyId)
Removes all the announcements deliveries where companyId = ? from the database.
|
static AnnouncementsDelivery |
removeByU_T(long userId,
String type)
Removes the announcements delivery where userId = ? and type = ? from the database.
|
static void |
removeByUserId(long userId)
Removes all the announcements deliveries where userId = ? from the database.
|
static AnnouncementsDelivery |
update(AnnouncementsDelivery announcementsDelivery) |
static AnnouncementsDelivery |
update(AnnouncementsDelivery announcementsDelivery,
ServiceContext serviceContext) |
static AnnouncementsDelivery |
updateImpl(AnnouncementsDelivery announcementsDelivery) |
public static void clearCache()
BasePersistence.clearCache()
public static void clearCache(AnnouncementsDelivery announcementsDelivery)
public static long countWithDynamicQuery(DynamicQuery dynamicQuery)
public static Map<Serializable,AnnouncementsDelivery> fetchByPrimaryKeys(Set<Serializable> primaryKeys)
BasePersistence.fetchByPrimaryKeys(Set)
public static List<AnnouncementsDelivery> findWithDynamicQuery(DynamicQuery dynamicQuery)
public static List<AnnouncementsDelivery> findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end)
public static List<AnnouncementsDelivery> findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end, OrderByComparator<AnnouncementsDelivery> orderByComparator)
public static AnnouncementsDelivery update(AnnouncementsDelivery announcementsDelivery)
public static AnnouncementsDelivery update(AnnouncementsDelivery announcementsDelivery, ServiceContext serviceContext)
public static List<AnnouncementsDelivery> findByCompanyId(long companyId)
companyId
- the company IDpublic static List<AnnouncementsDelivery> findByCompanyId(long companyId, 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, then the query will include the default ORDER BY logic from AnnouncementsDeliveryModelImpl
.
companyId
- the company IDstart
- the lower bound of the range of announcements deliveriesend
- the upper bound of the range of announcements deliveries (not inclusive)public static List<AnnouncementsDelivery> findByCompanyId(long companyId, int start, int end, OrderByComparator<AnnouncementsDelivery> 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, then the query will include the default ORDER BY logic from AnnouncementsDeliveryModelImpl
.
companyId
- the company IDstart
- the lower bound of the range of announcements deliveriesend
- the upper bound of the range of announcements deliveries (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)public static List<AnnouncementsDelivery> findByCompanyId(long companyId, int start, int end, OrderByComparator<AnnouncementsDelivery> orderByComparator, boolean useFinderCache)
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 AnnouncementsDeliveryModelImpl
.
companyId
- the company IDstart
- the lower bound of the range of announcements deliveriesend
- the upper bound of the range of announcements deliveries (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)useFinderCache
- whether to use the finder cachepublic static AnnouncementsDelivery findByCompanyId_First(long companyId, OrderByComparator<AnnouncementsDelivery> orderByComparator) throws NoSuchDeliveryException
companyId
- the company IDorderByComparator
- the comparator to order the set by (optionally null
)NoSuchDeliveryException
- if a matching announcements delivery could not be foundpublic static AnnouncementsDelivery fetchByCompanyId_First(long companyId, OrderByComparator<AnnouncementsDelivery> orderByComparator)
companyId
- the company IDorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching announcements delivery could not be foundpublic static AnnouncementsDelivery findByCompanyId_Last(long companyId, OrderByComparator<AnnouncementsDelivery> orderByComparator) throws NoSuchDeliveryException
companyId
- the company IDorderByComparator
- the comparator to order the set by (optionally null
)NoSuchDeliveryException
- if a matching announcements delivery could not be foundpublic static AnnouncementsDelivery fetchByCompanyId_Last(long companyId, OrderByComparator<AnnouncementsDelivery> orderByComparator)
companyId
- the company IDorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching announcements delivery could not be foundpublic static AnnouncementsDelivery[] findByCompanyId_PrevAndNext(long deliveryId, long companyId, OrderByComparator<AnnouncementsDelivery> orderByComparator) throws NoSuchDeliveryException
deliveryId
- the primary key of the current announcements deliverycompanyId
- the company IDorderByComparator
- the comparator to order the set by (optionally null
)NoSuchDeliveryException
- if a announcements delivery with the primary key could not be foundpublic static void removeByCompanyId(long companyId)
companyId
- the company IDpublic static int countByCompanyId(long companyId)
companyId
- the company IDpublic static List<AnnouncementsDelivery> findByUserId(long userId)
userId
- the user IDpublic static List<AnnouncementsDelivery> findByUserId(long userId, 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, then the query will include the default ORDER BY logic from AnnouncementsDeliveryModelImpl
.
userId
- the user IDstart
- the lower bound of the range of announcements deliveriesend
- the upper bound of the range of announcements deliveries (not inclusive)public static List<AnnouncementsDelivery> findByUserId(long userId, int start, int end, OrderByComparator<AnnouncementsDelivery> 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, then the query will include the default ORDER BY logic from AnnouncementsDeliveryModelImpl
.
userId
- the user IDstart
- the lower bound of the range of announcements deliveriesend
- the upper bound of the range of announcements deliveries (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)public static List<AnnouncementsDelivery> findByUserId(long userId, int start, int end, OrderByComparator<AnnouncementsDelivery> orderByComparator, boolean useFinderCache)
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 AnnouncementsDeliveryModelImpl
.
userId
- the user IDstart
- the lower bound of the range of announcements deliveriesend
- the upper bound of the range of announcements deliveries (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)useFinderCache
- whether to use the finder cachepublic static AnnouncementsDelivery findByUserId_First(long userId, OrderByComparator<AnnouncementsDelivery> orderByComparator) throws NoSuchDeliveryException
userId
- the user IDorderByComparator
- the comparator to order the set by (optionally null
)NoSuchDeliveryException
- if a matching announcements delivery could not be foundpublic static AnnouncementsDelivery fetchByUserId_First(long userId, OrderByComparator<AnnouncementsDelivery> orderByComparator)
userId
- the user IDorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching announcements delivery could not be foundpublic static AnnouncementsDelivery findByUserId_Last(long userId, OrderByComparator<AnnouncementsDelivery> orderByComparator) throws NoSuchDeliveryException
userId
- the user IDorderByComparator
- the comparator to order the set by (optionally null
)NoSuchDeliveryException
- if a matching announcements delivery could not be foundpublic static AnnouncementsDelivery fetchByUserId_Last(long userId, OrderByComparator<AnnouncementsDelivery> orderByComparator)
userId
- the user IDorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching announcements delivery could not be foundpublic static AnnouncementsDelivery[] findByUserId_PrevAndNext(long deliveryId, long userId, OrderByComparator<AnnouncementsDelivery> orderByComparator) throws NoSuchDeliveryException
deliveryId
- the primary key of the current announcements deliveryuserId
- the user IDorderByComparator
- the comparator to order the set by (optionally null
)NoSuchDeliveryException
- if a announcements delivery with the primary key could not be foundpublic static void removeByUserId(long userId)
userId
- the user IDpublic static int countByUserId(long userId)
userId
- the user IDpublic static AnnouncementsDelivery findByU_T(long userId, String type) throws NoSuchDeliveryException
NoSuchDeliveryException
if it could not be found.userId
- the user IDtype
- the typeNoSuchDeliveryException
- if a matching announcements delivery could not be foundpublic static AnnouncementsDelivery fetchByU_T(long userId, String type)
null
if it could not be found. Uses the finder cache.userId
- the user IDtype
- the typenull
if a matching announcements delivery could not be foundpublic static AnnouncementsDelivery fetchByU_T(long userId, String type, boolean useFinderCache)
null
if it could not be found, optionally using the finder cache.userId
- the user IDtype
- the typeuseFinderCache
- whether to use the finder cachenull
if a matching announcements delivery could not be foundpublic static AnnouncementsDelivery removeByU_T(long userId, String type) throws NoSuchDeliveryException
userId
- the user IDtype
- the typeNoSuchDeliveryException
public static int countByU_T(long userId, String type)
userId
- the user IDtype
- the typepublic static void cacheResult(AnnouncementsDelivery announcementsDelivery)
announcementsDelivery
- the announcements deliverypublic static void cacheResult(List<AnnouncementsDelivery> announcementsDeliveries)
announcementsDeliveries
- the announcements deliveriespublic static AnnouncementsDelivery create(long deliveryId)
deliveryId
- the primary key for the new announcements deliverypublic static AnnouncementsDelivery remove(long deliveryId) throws NoSuchDeliveryException
deliveryId
- the primary key of the announcements deliveryNoSuchDeliveryException
- if a announcements delivery with the primary key could not be foundpublic static AnnouncementsDelivery updateImpl(AnnouncementsDelivery announcementsDelivery)
public static AnnouncementsDelivery findByPrimaryKey(long deliveryId) throws NoSuchDeliveryException
NoSuchDeliveryException
if it could not be found.deliveryId
- the primary key of the announcements deliveryNoSuchDeliveryException
- if a announcements delivery with the primary key could not be foundpublic static AnnouncementsDelivery fetchByPrimaryKey(long deliveryId)
null
if it could not be found.deliveryId
- the primary key of the announcements deliverynull
if a announcements delivery with the primary key could not be foundpublic static List<AnnouncementsDelivery> findAll()
public static List<AnnouncementsDelivery> 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, then the query will include the default ORDER BY logic from AnnouncementsDeliveryModelImpl
.
start
- the lower bound of the range of announcements deliveriesend
- the upper bound of the range of announcements deliveries (not inclusive)public static List<AnnouncementsDelivery> findAll(int start, int end, OrderByComparator<AnnouncementsDelivery> 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, then the query will include the default ORDER BY logic from AnnouncementsDeliveryModelImpl
.
start
- the lower bound of the range of announcements deliveriesend
- the upper bound of the range of announcements deliveries (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)public static List<AnnouncementsDelivery> findAll(int start, int end, OrderByComparator<AnnouncementsDelivery> orderByComparator, boolean useFinderCache)
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 AnnouncementsDeliveryModelImpl
.
start
- the lower bound of the range of announcements deliveriesend
- the upper bound of the range of announcements deliveries (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)useFinderCache
- whether to use the finder cachepublic static void removeAll()
public static int countAll()
public static AnnouncementsDeliveryPersistence getPersistence()