Liferay 6.2-ce-ga5

com.liferay.portlet.shopping.service.persistence
Class ShoppingItemFieldUtil

java.lang.Object
  extended by com.liferay.portlet.shopping.service.persistence.ShoppingItemFieldUtil

@ProviderType
public class ShoppingItemFieldUtil
extends Object

The persistence utility for the shopping item field service. This utility wraps ShoppingItemFieldPersistenceImpl 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

See Also:
ShoppingItemFieldPersistence, ShoppingItemFieldPersistenceImpl

Constructor Summary
ShoppingItemFieldUtil()
           
 
Method Summary
static void cacheResult(List<ShoppingItemField> shoppingItemFields)
          Caches the shopping item fields in the entity cache if it is enabled.
static void cacheResult(ShoppingItemField shoppingItemField)
          Caches the shopping item field in the entity cache if it is enabled.
static void clearCache()
           
static void clearCache(ShoppingItemField shoppingItemField)
           
static int countAll()
          Returns the number of shopping item fields.
static int countByItemId(long itemId)
          Returns the number of shopping item fields where itemId = ?.
static long countWithDynamicQuery(DynamicQuery dynamicQuery)
           
static ShoppingItemField create(long itemFieldId)
          Creates a new shopping item field with the primary key.
static ShoppingItemField fetchByItemId_First(long itemId, OrderByComparator orderByComparator)
          Returns the first shopping item field in the ordered set where itemId = ?.
static ShoppingItemField fetchByItemId_Last(long itemId, OrderByComparator orderByComparator)
          Returns the last shopping item field in the ordered set where itemId = ?.
static ShoppingItemField fetchByPrimaryKey(long itemFieldId)
          Returns the shopping item field with the primary key or returns null if it could not be found.
static List<ShoppingItemField> findAll()
          Returns all the shopping item fields.
static List<ShoppingItemField> findAll(int start, int end)
          Returns a range of all the shopping item fields.
static List<ShoppingItemField> findAll(int start, int end, OrderByComparator orderByComparator)
          Returns an ordered range of all the shopping item fields.
static ShoppingItemField findByItemId_First(long itemId, OrderByComparator orderByComparator)
          Returns the first shopping item field in the ordered set where itemId = ?.
static ShoppingItemField findByItemId_Last(long itemId, OrderByComparator orderByComparator)
          Returns the last shopping item field in the ordered set where itemId = ?.
static 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 = ?.
static List<ShoppingItemField> findByItemId(long itemId)
          Returns all the shopping item fields where itemId = ?.
static List<ShoppingItemField> findByItemId(long itemId, int start, int end)
          Returns a range of all the shopping item fields where itemId = ?.
static List<ShoppingItemField> findByItemId(long itemId, int start, int end, OrderByComparator orderByComparator)
          Returns an ordered range of all the shopping item fields where itemId = ?.
static ShoppingItemField findByPrimaryKey(long itemFieldId)
          Returns the shopping item field with the primary key or throws a NoSuchItemFieldException if it could not be found.
static List<ShoppingItemField> findWithDynamicQuery(DynamicQuery dynamicQuery)
           
static List<ShoppingItemField> findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end)
           
static List<ShoppingItemField> findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end, OrderByComparator orderByComparator)
           
static ShoppingItemFieldPersistence getPersistence()
           
static ShoppingItemField remove(long itemFieldId)
          Removes the shopping item field with the primary key from the database.
static void removeAll()
          Removes all the shopping item fields from the database.
static void removeByItemId(long itemId)
          Removes all the shopping item fields where itemId = ? from the database.
 void setPersistence(ShoppingItemFieldPersistence persistence)
          Deprecated. As of 6.2.0
static ShoppingItemField update(ShoppingItemField shoppingItemField)
           
static ShoppingItemField update(ShoppingItemField shoppingItemField, ServiceContext serviceContext)
           
static ShoppingItemField updateImpl(ShoppingItemField shoppingItemField)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ShoppingItemFieldUtil

public ShoppingItemFieldUtil()
Method Detail

clearCache

public static void clearCache()
See Also:
BasePersistence.clearCache()

clearCache

public static void clearCache(ShoppingItemField shoppingItemField)
See Also:
BasePersistence.clearCache(com.liferay.portal.model.BaseModel)

countWithDynamicQuery

public static long countWithDynamicQuery(DynamicQuery dynamicQuery)
                                  throws SystemException
Throws:
SystemException
See Also:
BasePersistence.countWithDynamicQuery(DynamicQuery)

findWithDynamicQuery

public static List<ShoppingItemField> findWithDynamicQuery(DynamicQuery dynamicQuery)
                                                    throws SystemException
Throws:
SystemException
See Also:
BasePersistence.findWithDynamicQuery(DynamicQuery)

findWithDynamicQuery

public static List<ShoppingItemField> findWithDynamicQuery(DynamicQuery dynamicQuery,
                                                           int start,
                                                           int end)
                                                    throws SystemException
Throws:
SystemException
See Also:
BasePersistence.findWithDynamicQuery(DynamicQuery, int, int)

findWithDynamicQuery

public static List<ShoppingItemField> findWithDynamicQuery(DynamicQuery dynamicQuery,
                                                           int start,
                                                           int end,
                                                           OrderByComparator orderByComparator)
                                                    throws SystemException
Throws:
SystemException
See Also:
BasePersistence.findWithDynamicQuery(DynamicQuery, int, int, OrderByComparator)

update

public static ShoppingItemField update(ShoppingItemField shoppingItemField)
                                throws SystemException
Throws:
SystemException
See Also:
BasePersistence.update(com.liferay.portal.model.BaseModel)

update

public static ShoppingItemField update(ShoppingItemField shoppingItemField,
                                       ServiceContext serviceContext)
                                throws SystemException
Throws:
SystemException
See Also:
BasePersistence.update(com.liferay.portal.model.BaseModel, ServiceContext)

findByItemId

public static 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

public static 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. 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 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.

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

public static 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. 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 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.

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

public static 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

public static 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

public static 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

public static 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

public static 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

removeByItemId

public static 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

countByItemId

public static 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

cacheResult

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

Parameters:
shoppingItemField - the shopping item field

cacheResult

public static 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

public static 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

public static 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

public static ShoppingItemField updateImpl(ShoppingItemField shoppingItemField)
                                    throws SystemException
Throws:
SystemException

findByPrimaryKey

public static 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

public static 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

findAll

public static List<ShoppingItemField> findAll()
                                       throws SystemException
Returns all the shopping item fields.

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

findAll

public static 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. 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 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.

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

public static 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. 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 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.

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

removeAll

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

Throws:
SystemException - if a system exception occurred

countAll

public static 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

getPersistence

public static ShoppingItemFieldPersistence getPersistence()

setPersistence

public void setPersistence(ShoppingItemFieldPersistence persistence)
Deprecated. As of 6.2.0


Liferay 6.2-ce-ga5