Liferay 6.0.5

com.liferay.portlet.shopping.service.persistence
Interface ShoppingItemFieldPersistence

All Superinterfaces:
BasePersistence<ShoppingItemField>
All Known Implementing Classes:
ShoppingItemFieldPersistenceImpl

public interface ShoppingItemFieldPersistence
extends BasePersistence<ShoppingItemField>

The persistence interface for the shopping item field service.

Never modify or reference this interface directly. Always use ShoppingItemFieldUtil to access the shopping item field persistence. Modify service.xml and rerun ServiceBuilder to regenerate this interface.

Caching information and settings can be found in portal.properties

See Also:
ShoppingItemFieldPersistenceImpl, ShoppingItemFieldUtil
ServiceBuilder generated this class. Modifications in this class will be overwritten the next time is generated.

Method Summary
 void cacheResult(List<ShoppingItemField> shoppingItemFields)
          Caches the shopping item fields in the entity cache if it is enabled.
 void cacheResult(ShoppingItemField shoppingItemField)
          Caches the shopping item field in the entity cache if it is enabled.
 int countAll()
          Counts all the shopping item fields.
 int countByItemId(long itemId)
          Counts all the shopping item fields where itemId = ?.
 ShoppingItemField create(long itemFieldId)
          Creates a new shopping item field with the primary key.
 ShoppingItemField fetchByPrimaryKey(long itemFieldId)
          Finds the shopping item field with the primary key or returns null if it could not be found.
 List<ShoppingItemField> findAll()
          Finds all the shopping item fields.
 List<ShoppingItemField> findAll(int start, int end)
          Finds a range of all the shopping item fields.
 List<ShoppingItemField> findAll(int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the shopping item fields.
 ShoppingItemField findByItemId_First(long itemId, OrderByComparator orderByComparator)
          Finds the first shopping item field in the ordered set where itemId = ?.
 ShoppingItemField findByItemId_Last(long itemId, OrderByComparator orderByComparator)
          Finds the last shopping item field in the ordered set where itemId = ?.
 ShoppingItemField[] findByItemId_PrevAndNext(long itemFieldId, long itemId, OrderByComparator orderByComparator)
          Finds the shopping item fields before and after the current shopping item field in the ordered set where itemId = ?.
 List<ShoppingItemField> findByItemId(long itemId)
          Finds all the shopping item fields where itemId = ?.
 List<ShoppingItemField> findByItemId(long itemId, int start, int end)
          Finds a range of all the shopping item fields where itemId = ?.
 List<ShoppingItemField> findByItemId(long itemId, int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the shopping item fields where itemId = ?.
 ShoppingItemField findByPrimaryKey(long itemFieldId)
          Finds the shopping item field with the primary key or throws a NoSuchItemFieldException if it could not be found.
 ShoppingItemField remove(long itemFieldId)
          Removes the shopping item field with the primary key from the database.
 void removeAll()
          Removes all the shopping item fields from the database.
 void removeByItemId(long itemId)
          Removes all the shopping item fields where itemId = ? from the database.
 ShoppingItemField updateImpl(ShoppingItemField shoppingItemField, boolean merge)
           
 
Methods inherited from interface com.liferay.portal.service.persistence.BasePersistence
clearCache, clearCache, countWithDynamicQuery, fetchByPrimaryKey, findByPrimaryKey, findWithDynamicQuery, findWithDynamicQuery, findWithDynamicQuery, getDataSource, getListeners, registerListener, remove, remove, setDataSource, unregisterListener, update, update
 

Method Detail

cacheResult

void cacheResult(ShoppingItemField shoppingItemField)
Caches the shopping item field in the entity cache if it is enabled.

Parameters:
shoppingItemField - the shopping item field to cache

cacheResult

void cacheResult(List<ShoppingItemField> shoppingItemFields)
Caches the shopping item fields in the entity cache if it is enabled.

Parameters:
shoppingItemFields - the shopping item fields to cache

create

ShoppingItemField create(long itemFieldId)
Creates a new shopping item field with the primary key. Does not add the shopping item field to the database.

Parameters:
itemFieldId - the primary key for the new shopping item field
Returns:
the new shopping item field

remove

ShoppingItemField remove(long itemFieldId)
                         throws SystemException,
                                NoSuchItemFieldException
Removes the shopping item field with the primary key from the database. Also notifies the appropriate model listeners.

Parameters:
itemFieldId - the primary key of the shopping item field to remove
Returns:
the shopping item field that was removed
Throws:
NoSuchItemFieldException - if a shopping item field with the primary key could not be found
SystemException - if a system exception occurred

updateImpl

ShoppingItemField updateImpl(ShoppingItemField shoppingItemField,
                             boolean merge)
                             throws SystemException
Throws:
SystemException

findByPrimaryKey

ShoppingItemField findByPrimaryKey(long itemFieldId)
                                   throws SystemException,
                                          NoSuchItemFieldException
Finds the shopping item field with the primary key or throws a NoSuchItemFieldException if it could not be found.

Parameters:
itemFieldId - the primary key of the shopping item field to find
Returns:
the shopping item field
Throws:
NoSuchItemFieldException - if a shopping item field with the primary key could not be found
SystemException - if a system exception occurred

fetchByPrimaryKey

ShoppingItemField fetchByPrimaryKey(long itemFieldId)
                                    throws SystemException
Finds the shopping item field with the primary key or returns null if it could not be found.

Parameters:
itemFieldId - the primary key of the shopping item field to find
Returns:
the shopping item field, or null if a shopping item field with the primary key could not be found
Throws:
SystemException - if a system exception occurred

findByItemId

List<ShoppingItemField> findByItemId(long itemId)
                                     throws SystemException
Finds all the shopping item fields where itemId = ?.

Parameters:
itemId - the item id to search with
Returns:
the matching shopping item fields
Throws:
SystemException - if a system exception occurred

findByItemId

List<ShoppingItemField> findByItemId(long itemId,
                                     int start,
                                     int end)
                                     throws SystemException
Finds a range of all the shopping item fields where itemId = ?.

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.

Parameters:
itemId - the item id to search with
start - the lower bound of the range of shopping item fields to return
end - the upper bound of the range of shopping item fields to return (not inclusive)
Returns:
the range of matching shopping item fields
Throws:
SystemException - if a system exception occurred

findByItemId

List<ShoppingItemField> findByItemId(long itemId,
                                     int start,
                                     int end,
                                     OrderByComparator orderByComparator)
                                     throws SystemException
Finds an ordered range of all the shopping item fields where itemId = ?.

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.

Parameters:
itemId - the item id to search with
start - the lower bound of the range of shopping item fields to return
end - the upper bound of the range of shopping item fields to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of matching shopping item fields
Throws:
SystemException - if a system exception occurred

findByItemId_First

ShoppingItemField findByItemId_First(long itemId,
                                     OrderByComparator orderByComparator)
                                     throws SystemException,
                                            NoSuchItemFieldException
Finds the first shopping item field in the ordered set where itemId = ?.

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.

Parameters:
itemId - the item id to search with
orderByComparator - the comparator to order the set by
Returns:
the first matching shopping item field
Throws:
NoSuchItemFieldException - if a matching shopping item field could not be found
SystemException - if a system exception occurred

findByItemId_Last

ShoppingItemField findByItemId_Last(long itemId,
                                    OrderByComparator orderByComparator)
                                    throws SystemException,
                                           NoSuchItemFieldException
Finds the last shopping item field in the ordered set where itemId = ?.

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.

Parameters:
itemId - the item id to search with
orderByComparator - the comparator to order the set by
Returns:
the last matching shopping item field
Throws:
NoSuchItemFieldException - if a matching shopping item field could not be found
SystemException - if a system exception occurred

findByItemId_PrevAndNext

ShoppingItemField[] findByItemId_PrevAndNext(long itemFieldId,
                                             long itemId,
                                             OrderByComparator orderByComparator)
                                             throws SystemException,
                                                    NoSuchItemFieldException
Finds the shopping item fields before and after the current shopping item field in the ordered set where itemId = ?.

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.

Parameters:
itemFieldId - the primary key of the current shopping item field
itemId - the item id to search with
orderByComparator - the comparator to order the set by
Returns:
the previous, current, and next shopping item field
Throws:
NoSuchItemFieldException - if a shopping item field with the primary key could not be found
SystemException - if a system exception occurred

findAll

List<ShoppingItemField> findAll()
                                throws SystemException
Finds all the shopping item fields.

Returns:
the shopping item fields
Throws:
SystemException - if a system exception occurred

findAll

List<ShoppingItemField> findAll(int start,
                                int end)
                                throws SystemException
Finds a range of all the shopping item fields.

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.

Parameters:
start - the lower bound of the range of shopping item fields to return
end - the upper bound of the range of shopping item fields to return (not inclusive)
Returns:
the range of shopping item fields
Throws:
SystemException - if a system exception occurred

findAll

List<ShoppingItemField> findAll(int start,
                                int end,
                                OrderByComparator orderByComparator)
                                throws SystemException
Finds an ordered range of all the shopping item fields.

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.

Parameters:
start - the lower bound of the range of shopping item fields to return
end - the upper bound of the range of shopping item fields to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of shopping item fields
Throws:
SystemException - if a system exception occurred

removeByItemId

void removeByItemId(long itemId)
                    throws SystemException
Removes all the shopping item fields where itemId = ? from the database.

Parameters:
itemId - the item id to search with
Throws:
SystemException - if a system exception occurred

removeAll

void removeAll()
               throws SystemException
Removes all the shopping item fields from the database.

Throws:
SystemException - if a system exception occurred

countByItemId

int countByItemId(long itemId)
                  throws SystemException
Counts all the shopping item fields where itemId = ?.

Parameters:
itemId - the item id to search with
Returns:
the number of matching shopping item fields
Throws:
SystemException - if a system exception occurred

countAll

int countAll()
             throws SystemException
Counts all the shopping item fields.

Returns:
the number of shopping item fields
Throws:
SystemException - if a system exception occurred

Liferay 6.0.5