@ProviderType
public class ShoppingItemFieldUtil
extends java.lang.Object
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
ShoppingItemFieldPersistence,
ShoppingItemFieldPersistenceImpl| Constructor and Description |
|---|
ShoppingItemFieldUtil() |
| Modifier and Type | Method and Description |
|---|---|
static void |
cacheResult(java.util.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 java.util.List<ShoppingItemField> |
findAll()
Returns all the shopping item fields.
|
static java.util.List<ShoppingItemField> |
findAll(int start,
int end)
Returns a range of all the shopping item fields.
|
static java.util.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 java.util.List<ShoppingItemField> |
findByItemId(long itemId)
Returns all the shopping item fields where itemId = ?.
|
static java.util.List<ShoppingItemField> |
findByItemId(long itemId,
int start,
int end)
Returns a range of all the shopping item fields where itemId = ?.
|
static java.util.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 java.util.List<ShoppingItemField> |
findWithDynamicQuery(DynamicQuery dynamicQuery) |
static java.util.List<ShoppingItemField> |
findWithDynamicQuery(DynamicQuery dynamicQuery,
int start,
int end) |
static java.util.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) |
public static void clearCache()
BasePersistence.clearCache()public static void clearCache(ShoppingItemField shoppingItemField)
public static long countWithDynamicQuery(DynamicQuery dynamicQuery) throws SystemException
SystemExceptionBasePersistence.countWithDynamicQuery(DynamicQuery)public static java.util.List<ShoppingItemField> findWithDynamicQuery(DynamicQuery dynamicQuery) throws SystemException
SystemExceptionBasePersistence.findWithDynamicQuery(DynamicQuery)public static java.util.List<ShoppingItemField> findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end) throws SystemException
public static java.util.List<ShoppingItemField> findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end, OrderByComparator orderByComparator) throws SystemException
public static ShoppingItemField update(ShoppingItemField shoppingItemField) throws SystemException
public static ShoppingItemField update(ShoppingItemField shoppingItemField, ServiceContext serviceContext) throws SystemException
public static java.util.List<ShoppingItemField> findByItemId(long itemId) throws SystemException
itemId - the item IDSystemException - if a system exception occurredpublic static java.util.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 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 occurredpublic static java.util.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 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 occurredpublic static 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 foundSystemException - if a system exception occurredpublic static 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 foundSystemException - if a system exception occurredpublic static 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 foundSystemException - if a system exception occurredpublic static 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 foundSystemException - if a system exception occurredpublic static 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 foundSystemException - if a system exception occurredpublic static void removeByItemId(long itemId)
throws SystemException
itemId - the item IDSystemException - if a system exception occurredpublic static int countByItemId(long itemId)
throws SystemException
itemId - the item IDSystemException - if a system exception occurredpublic static void cacheResult(ShoppingItemField shoppingItemField)
shoppingItemField - the shopping item fieldpublic static void cacheResult(java.util.List<ShoppingItemField> shoppingItemFields)
shoppingItemFields - the shopping item fieldspublic static ShoppingItemField create(long itemFieldId)
itemFieldId - the primary key for the new shopping item fieldpublic static ShoppingItemField remove(long itemFieldId) throws SystemException, NoSuchItemFieldException
itemFieldId - the primary key of the shopping item fieldNoSuchItemFieldException - if a shopping item field with the primary key could not be foundSystemException - if a system exception occurredpublic static ShoppingItemField updateImpl(ShoppingItemField shoppingItemField) throws SystemException
SystemExceptionpublic static ShoppingItemField findByPrimaryKey(long itemFieldId) throws SystemException, NoSuchItemFieldException
NoSuchItemFieldException if it could not be found.itemFieldId - the primary key of the shopping item fieldNoSuchItemFieldException - if a shopping item field with the primary key could not be foundSystemException - if a system exception occurredpublic static ShoppingItemField fetchByPrimaryKey(long itemFieldId) throws SystemException
null if it could not be found.itemFieldId - the primary key of the shopping item fieldnull if a shopping item field with the primary key could not be foundSystemException - if a system exception occurredpublic static java.util.List<ShoppingItemField> findAll() throws SystemException
SystemException - if a system exception occurredpublic static java.util.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 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 occurredpublic static java.util.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 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 occurredpublic static void removeAll()
throws SystemException
SystemException - if a system exception occurredpublic static int countAll()
throws SystemException
SystemException - if a system exception occurredpublic static ShoppingItemFieldPersistence getPersistence()
public void setPersistence(ShoppingItemFieldPersistence persistence)