|
Liferay 6.2.0 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
@ProviderType public interface ShoppingItemFieldPersistence
The persistence interface for the shopping item field service.
Caching information and settings can be found in portal.properties
ShoppingItemFieldPersistenceImpl,
ShoppingItemFieldUtil| Method Summary | |
|---|---|
abstract void |
cacheResult(List<ShoppingItemField> shoppingItemFields)
Caches the shopping item fields in the entity cache if it is enabled. |
abstract void |
cacheResult(ShoppingItemField shoppingItemField)
Caches the shopping item field in the entity cache if it is enabled. |
abstract int |
countAll()
Returns the number of shopping item fields. |
abstract int |
countByItemId(long itemId)
Returns the number of shopping item fields where itemId = ?. |
abstract ShoppingItemField |
create(long itemFieldId)
Creates a new shopping item field with the primary key. |
abstract ShoppingItemField |
fetchByItemId_First(long itemId,
OrderByComparator orderByComparator)
Returns the first shopping item field in the ordered set where itemId = ?. |
abstract ShoppingItemField |
fetchByItemId_Last(long itemId,
OrderByComparator orderByComparator)
Returns the last shopping item field in the ordered set where itemId = ?. |
abstract ShoppingItemField |
fetchByPrimaryKey(long itemFieldId)
Returns the shopping item field with the primary key or returns null if it could not be found. |
abstract List<ShoppingItemField> |
findAll()
Returns all the shopping item fields. |
abstract List<ShoppingItemField> |
findAll(int start,
int end)
Returns a range of all the shopping item fields. |
abstract List<ShoppingItemField> |
findAll(int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the shopping item fields. |
abstract ShoppingItemField |
findByItemId_First(long itemId,
OrderByComparator orderByComparator)
Returns the first shopping item field in the ordered set where itemId = ?. |
abstract ShoppingItemField |
findByItemId_Last(long itemId,
OrderByComparator orderByComparator)
Returns the last shopping item field in the ordered set where itemId = ?. |
abstract ShoppingItemField[] |
findByItemId_PrevAndNext(long itemFieldId,
long itemId,
OrderByComparator orderByComparator)
Returns the shopping item fields before and after the current shopping item field in the ordered set where itemId = ?. |
abstract List<ShoppingItemField> |
findByItemId(long itemId)
Returns all the shopping item fields where itemId = ?. |
abstract List<ShoppingItemField> |
findByItemId(long itemId,
int start,
int end)
Returns a range of all the shopping item fields where itemId = ?. |
abstract List<ShoppingItemField> |
findByItemId(long itemId,
int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the shopping item fields where itemId = ?. |
abstract ShoppingItemField |
findByPrimaryKey(long itemFieldId)
Returns the shopping item field with the primary key or throws a NoSuchItemFieldException if it could not be found. |
abstract ShoppingItemField |
remove(long itemFieldId)
Removes the shopping item field with the primary key from the database. |
abstract void |
removeAll()
Removes all the shopping item fields from the database. |
abstract void |
removeByItemId(long itemId)
Removes all the shopping item fields where itemId = ? from the database. |
abstract ShoppingItemField |
updateImpl(ShoppingItemField shoppingItemField)
|
| Methods inherited from interface com.liferay.portal.service.persistence.BasePersistence |
|---|
clearCache, clearCache, clearCache, closeSession, countWithDynamicQuery, countWithDynamicQuery, fetchByPrimaryKey, findByPrimaryKey, findWithDynamicQuery, findWithDynamicQuery, findWithDynamicQuery, flush, getCurrentSession, getDataSource, getListeners, getModelClass, openSession, processException, registerListener, remove, remove, setDataSource, unregisterListener, update, update, update, update |
| Method Detail |
|---|
List<ShoppingItemField> findByItemId(long itemId)
throws SystemException
itemId - the item ID
SystemException - if a system exception occurred
List<ShoppingItemField> 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. 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 com.liferay.portlet.shopping.model.impl.ShoppingItemFieldModelImpl. 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.
itemId - the item IDstart - the lower bound of the range of shopping item fieldsend - the upper bound of the range of shopping item fields (not inclusive)
SystemException - if a system exception occurred
List<ShoppingItemField> 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. 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 com.liferay.portlet.shopping.model.impl.ShoppingItemFieldModelImpl. 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.
itemId - the item IDstart - the lower bound of the range of shopping item fieldsend - the upper bound of the range of shopping item fields (not inclusive)orderByComparator - the comparator to order the results by (optionally null)
SystemException - if a system exception occurred
ShoppingItemField findByItemId_First(long itemId,
OrderByComparator orderByComparator)
throws SystemException,
NoSuchItemFieldException
itemId - the item IDorderByComparator - the comparator to order the set by (optionally null)
NoSuchItemFieldException - if a matching shopping item field could not be found
SystemException - if a system exception occurred
ShoppingItemField fetchByItemId_First(long itemId,
OrderByComparator orderByComparator)
throws SystemException
itemId - the item IDorderByComparator - the comparator to order the set by (optionally null)
null if a matching shopping item field could not be found
SystemException - if a system exception occurred
ShoppingItemField findByItemId_Last(long itemId,
OrderByComparator orderByComparator)
throws SystemException,
NoSuchItemFieldException
itemId - the item IDorderByComparator - the comparator to order the set by (optionally null)
NoSuchItemFieldException - if a matching shopping item field could not be found
SystemException - if a system exception occurred
ShoppingItemField fetchByItemId_Last(long itemId,
OrderByComparator orderByComparator)
throws SystemException
itemId - the item IDorderByComparator - the comparator to order the set by (optionally null)
null if a matching shopping item field could not be found
SystemException - if a system exception occurred
ShoppingItemField[] findByItemId_PrevAndNext(long itemFieldId,
long itemId,
OrderByComparator orderByComparator)
throws SystemException,
NoSuchItemFieldException
itemFieldId - the primary key of the current shopping item fielditemId - the item IDorderByComparator - the comparator to order the set by (optionally null)
NoSuchItemFieldException - if a shopping item field with the primary key could not be found
SystemException - if a system exception occurred
void removeByItemId(long itemId)
throws SystemException
itemId - the item ID
SystemException - if a system exception occurred
int countByItemId(long itemId)
throws SystemException
itemId - the item ID
SystemException - if a system exception occurredvoid cacheResult(ShoppingItemField shoppingItemField)
shoppingItemField - the shopping item fieldvoid cacheResult(List<ShoppingItemField> shoppingItemFields)
shoppingItemFields - the shopping item fieldsShoppingItemField create(long itemFieldId)
itemFieldId - the primary key for the new shopping item field
ShoppingItemField remove(long itemFieldId)
throws SystemException,
NoSuchItemFieldException
itemFieldId - the primary key of the shopping item field
NoSuchItemFieldException - if a shopping item field with the primary key could not be found
SystemException - if a system exception occurred
ShoppingItemField updateImpl(ShoppingItemField shoppingItemField)
throws SystemException
SystemException
ShoppingItemField findByPrimaryKey(long itemFieldId)
throws SystemException,
NoSuchItemFieldException
NoSuchItemFieldException if it could not be found.
itemFieldId - the primary key of the shopping item field
NoSuchItemFieldException - if a shopping item field with the primary key could not be found
SystemException - if a system exception occurred
ShoppingItemField fetchByPrimaryKey(long itemFieldId)
throws SystemException
null if it could not be found.
itemFieldId - the primary key of the shopping item field
null if a shopping item field with the primary key could not be found
SystemException - if a system exception occurred
List<ShoppingItemField> findAll()
throws SystemException
SystemException - if a system exception occurred
List<ShoppingItemField> 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. 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 com.liferay.portlet.shopping.model.impl.ShoppingItemFieldModelImpl. 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 shopping item fieldsend - the upper bound of the range of shopping item fields (not inclusive)
SystemException - if a system exception occurred
List<ShoppingItemField> 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. 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 com.liferay.portlet.shopping.model.impl.ShoppingItemFieldModelImpl. 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 shopping item fieldsend - the upper bound of the range of shopping item fields (not inclusive)orderByComparator - the comparator to order the results by (optionally null)
SystemException - if a system exception occurred
void removeAll()
throws SystemException
SystemException - if a system exception occurred
int countAll()
throws SystemException
SystemException - if a system exception occurred
|
Liferay 6.2.0 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||