|
Liferay 6.0.5 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object com.liferay.portlet.shopping.service.persistence.ShoppingItemPriceUtil
public class ShoppingItemPriceUtil
The persistence utility for the shopping item price service. This utility wraps ShoppingItemPricePersistenceImpl
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.
Never modify this class directly. Modify service.xml
and rerun ServiceBuilder to regenerate this class.
Caching information and settings can be found in portal.properties
ShoppingItemPricePersistence
,
ShoppingItemPricePersistenceImpl
Constructor Summary | |
---|---|
ShoppingItemPriceUtil()
|
Method Summary | |
---|---|
static void |
cacheResult(List<ShoppingItemPrice> shoppingItemPrices)
Caches the shopping item prices in the entity cache if it is enabled. |
static void |
cacheResult(ShoppingItemPrice shoppingItemPrice)
Caches the shopping item price in the entity cache if it is enabled. |
static void |
clearCache()
|
static void |
clearCache(ShoppingItemPrice shoppingItemPrice)
|
static int |
countAll()
Counts all the shopping item prices. |
static int |
countByItemId(long itemId)
Counts all the shopping item prices where itemId = ?. |
long |
countWithDynamicQuery(DynamicQuery dynamicQuery)
|
static ShoppingItemPrice |
create(long itemPriceId)
Creates a new shopping item price with the primary key. |
static ShoppingItemPrice |
fetchByPrimaryKey(long itemPriceId)
Finds the shopping item price with the primary key or returns null if it could not be found. |
static List<ShoppingItemPrice> |
findAll()
Finds all the shopping item prices. |
static List<ShoppingItemPrice> |
findAll(int start,
int end)
Finds a range of all the shopping item prices. |
static List<ShoppingItemPrice> |
findAll(int start,
int end,
OrderByComparator orderByComparator)
Finds an ordered range of all the shopping item prices. |
static ShoppingItemPrice |
findByItemId_First(long itemId,
OrderByComparator orderByComparator)
Finds the first shopping item price in the ordered set where itemId = ?. |
static ShoppingItemPrice |
findByItemId_Last(long itemId,
OrderByComparator orderByComparator)
Finds the last shopping item price in the ordered set where itemId = ?. |
static ShoppingItemPrice[] |
findByItemId_PrevAndNext(long itemPriceId,
long itemId,
OrderByComparator orderByComparator)
Finds the shopping item prices before and after the current shopping item price in the ordered set where itemId = ?. |
static List<ShoppingItemPrice> |
findByItemId(long itemId)
Finds all the shopping item prices where itemId = ?. |
static List<ShoppingItemPrice> |
findByItemId(long itemId,
int start,
int end)
Finds a range of all the shopping item prices where itemId = ?. |
static List<ShoppingItemPrice> |
findByItemId(long itemId,
int start,
int end,
OrderByComparator orderByComparator)
Finds an ordered range of all the shopping item prices where itemId = ?. |
static ShoppingItemPrice |
findByPrimaryKey(long itemPriceId)
Finds the shopping item price with the primary key or throws a NoSuchItemPriceException if it could not be found. |
static List<ShoppingItemPrice> |
findWithDynamicQuery(DynamicQuery dynamicQuery)
|
static List<ShoppingItemPrice> |
findWithDynamicQuery(DynamicQuery dynamicQuery,
int start,
int end)
|
static List<ShoppingItemPrice> |
findWithDynamicQuery(DynamicQuery dynamicQuery,
int start,
int end,
OrderByComparator orderByComparator)
|
static ShoppingItemPricePersistence |
getPersistence()
|
static ShoppingItemPrice |
remove(long itemPriceId)
Removes the shopping item price with the primary key from the database. |
static ShoppingItemPrice |
remove(ShoppingItemPrice shoppingItemPrice)
|
static void |
removeAll()
Removes all the shopping item prices from the database. |
static void |
removeByItemId(long itemId)
Removes all the shopping item prices where itemId = ? from the database. |
void |
setPersistence(ShoppingItemPricePersistence persistence)
|
static ShoppingItemPrice |
update(ShoppingItemPrice shoppingItemPrice,
boolean merge)
|
static ShoppingItemPrice |
update(ShoppingItemPrice shoppingItemPrice,
boolean merge,
ServiceContext serviceContext)
|
static ShoppingItemPrice |
updateImpl(ShoppingItemPrice shoppingItemPrice,
boolean merge)
|
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public ShoppingItemPriceUtil()
Method Detail |
---|
public static void clearCache()
BasePersistence.clearCache()
public static void clearCache(ShoppingItemPrice shoppingItemPrice)
BasePersistence.clearCache(com.liferay.portal.model.BaseModel)
public long countWithDynamicQuery(DynamicQuery dynamicQuery) throws SystemException
SystemException
BasePersistence.countWithDynamicQuery(DynamicQuery)
public static List<ShoppingItemPrice> findWithDynamicQuery(DynamicQuery dynamicQuery) throws SystemException
SystemException
BasePersistence.findWithDynamicQuery(DynamicQuery)
public static List<ShoppingItemPrice> findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end) throws SystemException
SystemException
BasePersistence.findWithDynamicQuery(DynamicQuery, int, int)
public static List<ShoppingItemPrice> findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end, OrderByComparator orderByComparator) throws SystemException
SystemException
BasePersistence.findWithDynamicQuery(DynamicQuery, int, int, OrderByComparator)
public static ShoppingItemPrice remove(ShoppingItemPrice shoppingItemPrice) throws SystemException
SystemException
BasePersistence.remove(com.liferay.portal.model.BaseModel)
public static ShoppingItemPrice update(ShoppingItemPrice shoppingItemPrice, boolean merge) throws SystemException
SystemException
BasePersistence.update(com.liferay.portal.model.BaseModel, boolean)
public static ShoppingItemPrice update(ShoppingItemPrice shoppingItemPrice, boolean merge, ServiceContext serviceContext) throws SystemException
SystemException
BasePersistence.update(com.liferay.portal.model.BaseModel, boolean, ServiceContext)
public static void cacheResult(ShoppingItemPrice shoppingItemPrice)
shoppingItemPrice
- the shopping item price to cachepublic static void cacheResult(List<ShoppingItemPrice> shoppingItemPrices)
shoppingItemPrices
- the shopping item prices to cachepublic static ShoppingItemPrice create(long itemPriceId)
itemPriceId
- the primary key for the new shopping item price
public static ShoppingItemPrice remove(long itemPriceId) throws SystemException, NoSuchItemPriceException
itemPriceId
- the primary key of the shopping item price to remove
NoSuchItemPriceException
- if a shopping item price with the primary key could not be found
SystemException
- if a system exception occurredpublic static ShoppingItemPrice updateImpl(ShoppingItemPrice shoppingItemPrice, boolean merge) throws SystemException
SystemException
public static ShoppingItemPrice findByPrimaryKey(long itemPriceId) throws SystemException, NoSuchItemPriceException
NoSuchItemPriceException
if it could not be found.
itemPriceId
- the primary key of the shopping item price to find
NoSuchItemPriceException
- if a shopping item price with the primary key could not be found
SystemException
- if a system exception occurredpublic static ShoppingItemPrice fetchByPrimaryKey(long itemPriceId) throws SystemException
null
if it could not be found.
itemPriceId
- the primary key of the shopping item price to find
null
if a shopping item price with the primary key could not be found
SystemException
- if a system exception occurredpublic static List<ShoppingItemPrice> findByItemId(long itemId) throws SystemException
itemId
- the item id to search with
SystemException
- if a system exception occurredpublic static List<ShoppingItemPrice> findByItemId(long itemId, int start, int end) throws SystemException
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.
itemId
- the item id to search withstart
- the lower bound of the range of shopping item prices to returnend
- the upper bound of the range of shopping item prices to return (not inclusive)
SystemException
- if a system exception occurredpublic static List<ShoppingItemPrice> findByItemId(long itemId, int start, int end, OrderByComparator orderByComparator) throws SystemException
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.
itemId
- the item id to search withstart
- the lower bound of the range of shopping item prices to returnend
- the upper bound of the range of shopping item prices to return (not inclusive)orderByComparator
- the comparator to order the results by
SystemException
- if a system exception occurredpublic static ShoppingItemPrice findByItemId_First(long itemId, OrderByComparator orderByComparator) throws SystemException, NoSuchItemPriceException
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.
itemId
- the item id to search withorderByComparator
- the comparator to order the set by
NoSuchItemPriceException
- if a matching shopping item price could not be found
SystemException
- if a system exception occurredpublic static ShoppingItemPrice findByItemId_Last(long itemId, OrderByComparator orderByComparator) throws SystemException, NoSuchItemPriceException
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.
itemId
- the item id to search withorderByComparator
- the comparator to order the set by
NoSuchItemPriceException
- if a matching shopping item price could not be found
SystemException
- if a system exception occurredpublic static ShoppingItemPrice[] findByItemId_PrevAndNext(long itemPriceId, long itemId, OrderByComparator orderByComparator) throws SystemException, NoSuchItemPriceException
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.
itemPriceId
- the primary key of the current shopping item priceitemId
- the item id to search withorderByComparator
- the comparator to order the set by
NoSuchItemPriceException
- if a shopping item price with the primary key could not be found
SystemException
- if a system exception occurredpublic static List<ShoppingItemPrice> findAll() throws SystemException
SystemException
- if a system exception occurredpublic static List<ShoppingItemPrice> findAll(int start, int end) throws SystemException
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.
start
- the lower bound of the range of shopping item prices to returnend
- the upper bound of the range of shopping item prices to return (not inclusive)
SystemException
- if a system exception occurredpublic static List<ShoppingItemPrice> findAll(int start, int end, OrderByComparator orderByComparator) throws SystemException
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.
start
- the lower bound of the range of shopping item prices to returnend
- the upper bound of the range of shopping item prices to return (not inclusive)orderByComparator
- the comparator to order the results by
SystemException
- if a system exception occurredpublic static void removeByItemId(long itemId) throws SystemException
itemId
- the item id to search with
SystemException
- if a system exception occurredpublic static void removeAll() throws SystemException
SystemException
- if a system exception occurredpublic static int countByItemId(long itemId) throws SystemException
itemId
- the item id to search with
SystemException
- if a system exception occurredpublic static int countAll() throws SystemException
SystemException
- if a system exception occurredpublic static ShoppingItemPricePersistence getPersistence()
public void setPersistence(ShoppingItemPricePersistence persistence)
|
Liferay 6.0.5 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |