Liferay 6.1.2-ce-ga3

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.

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 it 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()
          Returns the number of shopping item fields.
 int countByItemId(long itemId)
          Returns the number of shopping item fields where itemId = ?.
 ShoppingItemField create(long itemFieldId)
          Creates a new shopping item field with the primary key.
 ShoppingItemField fetchByItemId_First(long itemId, OrderByComparator orderByComparator)
          Returns the first shopping item field in the ordered set where itemId = ?.
 ShoppingItemField fetchByItemId_Last(long itemId, OrderByComparator orderByComparator)
          Returns the last shopping item field in the ordered set where itemId = ?.
 ShoppingItemField fetchByPrimaryKey(long itemFieldId)
          Returns the shopping item field with the primary key or returns null if it could not be found.
 List<ShoppingItemField> findAll()
          Returns all the shopping item fields.
 List<ShoppingItemField> findAll(int start, int end)
          Returns a range of all the shopping item fields.
 List<ShoppingItemField> findAll(int start, int end, OrderByComparator orderByComparator)
          Returns an ordered range of all the shopping item fields.
 ShoppingItemField findByItemId_First(long itemId, OrderByComparator orderByComparator)
          Returns the first shopping item field in the ordered set where itemId = ?.
 ShoppingItemField findByItemId_Last(long itemId, OrderByComparator orderByComparator)
          Returns the last shopping item field in the ordered set where itemId = ?.
 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 = ?.
 List<ShoppingItemField> findByItemId(long itemId)
          Returns all the shopping item fields where itemId = ?.
 List<ShoppingItemField> findByItemId(long itemId, int start, int end)
          Returns a range of all the shopping item fields where itemId = ?.
 List<ShoppingItemField> findByItemId(long itemId, int start, int end, OrderByComparator orderByComparator)
          Returns an ordered range of all the shopping item fields where itemId = ?.
 ShoppingItemField findByPrimaryKey(long itemFieldId)
          Returns 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, clearCache, closeSession, countWithDynamicQuery, fetchByPrimaryKey, findByPrimaryKey, findWithDynamicQuery, findWithDynamicQuery, findWithDynamicQuery, getDataSource, getListeners, openSession, processException, 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

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

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
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
Returns 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
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
Returns 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
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
Returns all the shopping item fields where itemId = ?.

Parameters:
itemId - the item ID
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
Returns 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
start - the lower bound of the range of shopping item fields
end - the upper bound of the range of shopping item fields (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
Returns 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
start - the lower bound of the range of shopping item fields
end - the upper bound of the range of shopping item fields (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
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
Returns the first shopping item field in the ordered set where itemId = ?.

Parameters:
itemId - the item ID
orderByComparator - the comparator to order the set by (optionally null)
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

fetchByItemId_First

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

Parameters:
itemId - the item ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the first matching shopping item field, or null if a matching shopping item field could not be found
Throws:
SystemException - if a system exception occurred

findByItemId_Last

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

Parameters:
itemId - the item ID
orderByComparator - the comparator to order the set by (optionally null)
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

fetchByItemId_Last

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

Parameters:
itemId - the item ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the last matching shopping item field, or null if a matching shopping item field could not be found
Throws:
SystemException - if a system exception occurred

findByItemId_PrevAndNext

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

Parameters:
itemFieldId - the primary key of the current shopping item field
itemId - the item ID
orderByComparator - the comparator to order the set by (optionally null)
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
Returns 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
Returns 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
end - the upper bound of the range of shopping item fields (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
Returns 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
end - the upper bound of the range of shopping item fields (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
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
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
Returns the number of shopping item fields where itemId = ?.

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

countAll

int countAll()
             throws SystemException
Returns the number of shopping item fields.

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

Liferay 6.1.2-ce-ga3