public class CommerceMLForecastAlertEntryUtil
extends java.lang.Object
com.liferay.commerce.machine.learning.forecast.alert.service.persistence.impl.CommerceMLForecastAlertEntryPersistenceImpl
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
CommerceMLForecastAlertEntryPersistence
Constructor and Description |
---|
CommerceMLForecastAlertEntryUtil() |
Modifier and Type | Method and Description |
---|---|
static void |
cacheResult(CommerceMLForecastAlertEntry commerceMLForecastAlertEntry)
Caches the commerce ml forecast alert entry in the entity cache if it is enabled.
|
static void |
cacheResult(java.util.List<CommerceMLForecastAlertEntry> commerceMLForecastAlertEntries)
Caches the commerce ml forecast alert entries in the entity cache if it is enabled.
|
static void |
clearCache() |
static void |
clearCache(CommerceMLForecastAlertEntry commerceMLForecastAlertEntry) |
static int |
countAll()
Returns the number of commerce ml forecast alert entries.
|
static int |
countByC_C_GtRc_S(long companyId,
long[] commerceAccountIds,
double relativeChange,
int status)
Returns the number of commerce ml forecast alert entries where companyId = ? and commerceAccountId = any ? and relativeChange > ? and status = ?.
|
static int |
countByC_C_GtRc_S(long companyId,
long commerceAccountId,
double relativeChange,
int status)
Returns the number of commerce ml forecast alert entries where companyId = ? and commerceAccountId = ? and relativeChange > ? and status = ?.
|
static int |
countByC_C_LtRc_S(long companyId,
long[] commerceAccountIds,
double relativeChange,
int status)
Returns the number of commerce ml forecast alert entries where companyId = ? and commerceAccountId = any ? and relativeChange < ? and status = ?.
|
static int |
countByC_C_LtRc_S(long companyId,
long commerceAccountId,
double relativeChange,
int status)
Returns the number of commerce ml forecast alert entries where companyId = ? and commerceAccountId = ? and relativeChange < ? and status = ?.
|
static int |
countByC_C_S(long companyId,
long[] commerceAccountIds,
int status)
Returns the number of commerce ml forecast alert entries where companyId = ? and commerceAccountId = any ? and status = ?.
|
static int |
countByC_C_S(long companyId,
long commerceAccountId,
int status)
Returns the number of commerce ml forecast alert entries where companyId = ? and commerceAccountId = ? and status = ?.
|
static int |
countByC_C_T(long companyId,
long commerceAccountId,
java.util.Date timestamp)
Returns the number of commerce ml forecast alert entries where companyId = ? and commerceAccountId = ? and timestamp = ?.
|
static int |
countByUuid_C(java.lang.String uuid,
long companyId)
Returns the number of commerce ml forecast alert entries where uuid = ? and companyId = ?.
|
static int |
countByUuid(java.lang.String uuid)
Returns the number of commerce ml forecast alert entries where uuid = ?.
|
static long |
countWithDynamicQuery(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery) |
static CommerceMLForecastAlertEntry |
create(long commerceMLForecastAlertEntryId)
Creates a new commerce ml forecast alert entry with the primary key.
|
static CommerceMLForecastAlertEntry |
fetchByC_C_GtRc_S_First(long companyId,
long commerceAccountId,
double relativeChange,
int status,
com.liferay.portal.kernel.util.OrderByComparator<CommerceMLForecastAlertEntry> orderByComparator)
Returns the first commerce ml forecast alert entry in the ordered set where companyId = ? and commerceAccountId = ? and relativeChange > ? and status = ?.
|
static CommerceMLForecastAlertEntry |
fetchByC_C_GtRc_S_Last(long companyId,
long commerceAccountId,
double relativeChange,
int status,
com.liferay.portal.kernel.util.OrderByComparator<CommerceMLForecastAlertEntry> orderByComparator)
Returns the last commerce ml forecast alert entry in the ordered set where companyId = ? and commerceAccountId = ? and relativeChange > ? and status = ?.
|
static CommerceMLForecastAlertEntry |
fetchByC_C_LtRc_S_First(long companyId,
long commerceAccountId,
double relativeChange,
int status,
com.liferay.portal.kernel.util.OrderByComparator<CommerceMLForecastAlertEntry> orderByComparator)
Returns the first commerce ml forecast alert entry in the ordered set where companyId = ? and commerceAccountId = ? and relativeChange < ? and status = ?.
|
static CommerceMLForecastAlertEntry |
fetchByC_C_LtRc_S_Last(long companyId,
long commerceAccountId,
double relativeChange,
int status,
com.liferay.portal.kernel.util.OrderByComparator<CommerceMLForecastAlertEntry> orderByComparator)
Returns the last commerce ml forecast alert entry in the ordered set where companyId = ? and commerceAccountId = ? and relativeChange < ? and status = ?.
|
static CommerceMLForecastAlertEntry |
fetchByC_C_S_First(long companyId,
long commerceAccountId,
int status,
com.liferay.portal.kernel.util.OrderByComparator<CommerceMLForecastAlertEntry> orderByComparator)
Returns the first commerce ml forecast alert entry in the ordered set where companyId = ? and commerceAccountId = ? and status = ?.
|
static CommerceMLForecastAlertEntry |
fetchByC_C_S_Last(long companyId,
long commerceAccountId,
int status,
com.liferay.portal.kernel.util.OrderByComparator<CommerceMLForecastAlertEntry> orderByComparator)
Returns the last commerce ml forecast alert entry in the ordered set where companyId = ? and commerceAccountId = ? and status = ?.
|
static CommerceMLForecastAlertEntry |
fetchByC_C_T(long companyId,
long commerceAccountId,
java.util.Date timestamp)
Returns the commerce ml forecast alert entry where companyId = ? and commerceAccountId = ? and timestamp = ? or returns
null if it could not be found. |
static CommerceMLForecastAlertEntry |
fetchByC_C_T(long companyId,
long commerceAccountId,
java.util.Date timestamp,
boolean useFinderCache)
Returns the commerce ml forecast alert entry where companyId = ? and commerceAccountId = ? and timestamp = ? or returns
null if it could not be found, optionally using the finder cache. |
static CommerceMLForecastAlertEntry |
fetchByPrimaryKey(long commerceMLForecastAlertEntryId)
Returns the commerce ml forecast alert entry with the primary key or returns
null if it could not be found. |
static java.util.Map<java.io.Serializable,CommerceMLForecastAlertEntry> |
fetchByPrimaryKeys(java.util.Set<java.io.Serializable> primaryKeys) |
static CommerceMLForecastAlertEntry |
fetchByUuid_C_First(java.lang.String uuid,
long companyId,
com.liferay.portal.kernel.util.OrderByComparator<CommerceMLForecastAlertEntry> orderByComparator)
Returns the first commerce ml forecast alert entry in the ordered set where uuid = ? and companyId = ?.
|
static CommerceMLForecastAlertEntry |
fetchByUuid_C_Last(java.lang.String uuid,
long companyId,
com.liferay.portal.kernel.util.OrderByComparator<CommerceMLForecastAlertEntry> orderByComparator)
Returns the last commerce ml forecast alert entry in the ordered set where uuid = ? and companyId = ?.
|
static CommerceMLForecastAlertEntry |
fetchByUuid_First(java.lang.String uuid,
com.liferay.portal.kernel.util.OrderByComparator<CommerceMLForecastAlertEntry> orderByComparator)
Returns the first commerce ml forecast alert entry in the ordered set where uuid = ?.
|
static CommerceMLForecastAlertEntry |
fetchByUuid_Last(java.lang.String uuid,
com.liferay.portal.kernel.util.OrderByComparator<CommerceMLForecastAlertEntry> orderByComparator)
Returns the last commerce ml forecast alert entry in the ordered set where uuid = ?.
|
static java.util.List<CommerceMLForecastAlertEntry> |
findAll()
Returns all the commerce ml forecast alert entries.
|
static java.util.List<CommerceMLForecastAlertEntry> |
findAll(int start,
int end)
Returns a range of all the commerce ml forecast alert entries.
|
static java.util.List<CommerceMLForecastAlertEntry> |
findAll(int start,
int end,
com.liferay.portal.kernel.util.OrderByComparator<CommerceMLForecastAlertEntry> orderByComparator)
Returns an ordered range of all the commerce ml forecast alert entries.
|
static java.util.List<CommerceMLForecastAlertEntry> |
findAll(int start,
int end,
com.liferay.portal.kernel.util.OrderByComparator<CommerceMLForecastAlertEntry> orderByComparator,
boolean useFinderCache)
Returns an ordered range of all the commerce ml forecast alert entries.
|
static CommerceMLForecastAlertEntry |
findByC_C_GtRc_S_First(long companyId,
long commerceAccountId,
double relativeChange,
int status,
com.liferay.portal.kernel.util.OrderByComparator<CommerceMLForecastAlertEntry> orderByComparator)
Returns the first commerce ml forecast alert entry in the ordered set where companyId = ? and commerceAccountId = ? and relativeChange > ? and status = ?.
|
static CommerceMLForecastAlertEntry |
findByC_C_GtRc_S_Last(long companyId,
long commerceAccountId,
double relativeChange,
int status,
com.liferay.portal.kernel.util.OrderByComparator<CommerceMLForecastAlertEntry> orderByComparator)
Returns the last commerce ml forecast alert entry in the ordered set where companyId = ? and commerceAccountId = ? and relativeChange > ? and status = ?.
|
static CommerceMLForecastAlertEntry[] |
findByC_C_GtRc_S_PrevAndNext(long commerceMLForecastAlertEntryId,
long companyId,
long commerceAccountId,
double relativeChange,
int status,
com.liferay.portal.kernel.util.OrderByComparator<CommerceMLForecastAlertEntry> orderByComparator)
Returns the commerce ml forecast alert entries before and after the current commerce ml forecast alert entry in the ordered set where companyId = ? and commerceAccountId = ? and relativeChange > ? and status = ?.
|
static java.util.List<CommerceMLForecastAlertEntry> |
findByC_C_GtRc_S(long companyId,
long[] commerceAccountIds,
double relativeChange,
int status)
Returns all the commerce ml forecast alert entries where companyId = ? and commerceAccountId = any ? and relativeChange > ? and status = ?.
|
static java.util.List<CommerceMLForecastAlertEntry> |
findByC_C_GtRc_S(long companyId,
long[] commerceAccountIds,
double relativeChange,
int status,
int start,
int end)
Returns a range of all the commerce ml forecast alert entries where companyId = ? and commerceAccountId = any ? and relativeChange > ? and status = ?.
|
static java.util.List<CommerceMLForecastAlertEntry> |
findByC_C_GtRc_S(long companyId,
long[] commerceAccountIds,
double relativeChange,
int status,
int start,
int end,
com.liferay.portal.kernel.util.OrderByComparator<CommerceMLForecastAlertEntry> orderByComparator)
Returns an ordered range of all the commerce ml forecast alert entries where companyId = ? and commerceAccountId = any ? and relativeChange > ? and status = ?.
|
static java.util.List<CommerceMLForecastAlertEntry> |
findByC_C_GtRc_S(long companyId,
long[] commerceAccountIds,
double relativeChange,
int status,
int start,
int end,
com.liferay.portal.kernel.util.OrderByComparator<CommerceMLForecastAlertEntry> orderByComparator,
boolean useFinderCache)
Returns an ordered range of all the commerce ml forecast alert entries where companyId = ? and commerceAccountId = ? and relativeChange > ? and status = ?, optionally using the finder cache.
|
static java.util.List<CommerceMLForecastAlertEntry> |
findByC_C_GtRc_S(long companyId,
long commerceAccountId,
double relativeChange,
int status)
Returns all the commerce ml forecast alert entries where companyId = ? and commerceAccountId = ? and relativeChange > ? and status = ?.
|
static java.util.List<CommerceMLForecastAlertEntry> |
findByC_C_GtRc_S(long companyId,
long commerceAccountId,
double relativeChange,
int status,
int start,
int end)
Returns a range of all the commerce ml forecast alert entries where companyId = ? and commerceAccountId = ? and relativeChange > ? and status = ?.
|
static java.util.List<CommerceMLForecastAlertEntry> |
findByC_C_GtRc_S(long companyId,
long commerceAccountId,
double relativeChange,
int status,
int start,
int end,
com.liferay.portal.kernel.util.OrderByComparator<CommerceMLForecastAlertEntry> orderByComparator)
Returns an ordered range of all the commerce ml forecast alert entries where companyId = ? and commerceAccountId = ? and relativeChange > ? and status = ?.
|
static java.util.List<CommerceMLForecastAlertEntry> |
findByC_C_GtRc_S(long companyId,
long commerceAccountId,
double relativeChange,
int status,
int start,
int end,
com.liferay.portal.kernel.util.OrderByComparator<CommerceMLForecastAlertEntry> orderByComparator,
boolean useFinderCache)
Returns an ordered range of all the commerce ml forecast alert entries where companyId = ? and commerceAccountId = ? and relativeChange > ? and status = ?.
|
static CommerceMLForecastAlertEntry |
findByC_C_LtRc_S_First(long companyId,
long commerceAccountId,
double relativeChange,
int status,
com.liferay.portal.kernel.util.OrderByComparator<CommerceMLForecastAlertEntry> orderByComparator)
Returns the first commerce ml forecast alert entry in the ordered set where companyId = ? and commerceAccountId = ? and relativeChange < ? and status = ?.
|
static CommerceMLForecastAlertEntry |
findByC_C_LtRc_S_Last(long companyId,
long commerceAccountId,
double relativeChange,
int status,
com.liferay.portal.kernel.util.OrderByComparator<CommerceMLForecastAlertEntry> orderByComparator)
Returns the last commerce ml forecast alert entry in the ordered set where companyId = ? and commerceAccountId = ? and relativeChange < ? and status = ?.
|
static CommerceMLForecastAlertEntry[] |
findByC_C_LtRc_S_PrevAndNext(long commerceMLForecastAlertEntryId,
long companyId,
long commerceAccountId,
double relativeChange,
int status,
com.liferay.portal.kernel.util.OrderByComparator<CommerceMLForecastAlertEntry> orderByComparator)
Returns the commerce ml forecast alert entries before and after the current commerce ml forecast alert entry in the ordered set where companyId = ? and commerceAccountId = ? and relativeChange < ? and status = ?.
|
static java.util.List<CommerceMLForecastAlertEntry> |
findByC_C_LtRc_S(long companyId,
long[] commerceAccountIds,
double relativeChange,
int status)
Returns all the commerce ml forecast alert entries where companyId = ? and commerceAccountId = any ? and relativeChange < ? and status = ?.
|
static java.util.List<CommerceMLForecastAlertEntry> |
findByC_C_LtRc_S(long companyId,
long[] commerceAccountIds,
double relativeChange,
int status,
int start,
int end)
Returns a range of all the commerce ml forecast alert entries where companyId = ? and commerceAccountId = any ? and relativeChange < ? and status = ?.
|
static java.util.List<CommerceMLForecastAlertEntry> |
findByC_C_LtRc_S(long companyId,
long[] commerceAccountIds,
double relativeChange,
int status,
int start,
int end,
com.liferay.portal.kernel.util.OrderByComparator<CommerceMLForecastAlertEntry> orderByComparator)
Returns an ordered range of all the commerce ml forecast alert entries where companyId = ? and commerceAccountId = any ? and relativeChange < ? and status = ?.
|
static java.util.List<CommerceMLForecastAlertEntry> |
findByC_C_LtRc_S(long companyId,
long[] commerceAccountIds,
double relativeChange,
int status,
int start,
int end,
com.liferay.portal.kernel.util.OrderByComparator<CommerceMLForecastAlertEntry> orderByComparator,
boolean useFinderCache)
Returns an ordered range of all the commerce ml forecast alert entries where companyId = ? and commerceAccountId = ? and relativeChange < ? and status = ?, optionally using the finder cache.
|
static java.util.List<CommerceMLForecastAlertEntry> |
findByC_C_LtRc_S(long companyId,
long commerceAccountId,
double relativeChange,
int status)
Returns all the commerce ml forecast alert entries where companyId = ? and commerceAccountId = ? and relativeChange < ? and status = ?.
|
static java.util.List<CommerceMLForecastAlertEntry> |
findByC_C_LtRc_S(long companyId,
long commerceAccountId,
double relativeChange,
int status,
int start,
int end)
Returns a range of all the commerce ml forecast alert entries where companyId = ? and commerceAccountId = ? and relativeChange < ? and status = ?.
|
static java.util.List<CommerceMLForecastAlertEntry> |
findByC_C_LtRc_S(long companyId,
long commerceAccountId,
double relativeChange,
int status,
int start,
int end,
com.liferay.portal.kernel.util.OrderByComparator<CommerceMLForecastAlertEntry> orderByComparator)
Returns an ordered range of all the commerce ml forecast alert entries where companyId = ? and commerceAccountId = ? and relativeChange < ? and status = ?.
|
static java.util.List<CommerceMLForecastAlertEntry> |
findByC_C_LtRc_S(long companyId,
long commerceAccountId,
double relativeChange,
int status,
int start,
int end,
com.liferay.portal.kernel.util.OrderByComparator<CommerceMLForecastAlertEntry> orderByComparator,
boolean useFinderCache)
Returns an ordered range of all the commerce ml forecast alert entries where companyId = ? and commerceAccountId = ? and relativeChange < ? and status = ?.
|
static CommerceMLForecastAlertEntry |
findByC_C_S_First(long companyId,
long commerceAccountId,
int status,
com.liferay.portal.kernel.util.OrderByComparator<CommerceMLForecastAlertEntry> orderByComparator)
Returns the first commerce ml forecast alert entry in the ordered set where companyId = ? and commerceAccountId = ? and status = ?.
|
static CommerceMLForecastAlertEntry |
findByC_C_S_Last(long companyId,
long commerceAccountId,
int status,
com.liferay.portal.kernel.util.OrderByComparator<CommerceMLForecastAlertEntry> orderByComparator)
Returns the last commerce ml forecast alert entry in the ordered set where companyId = ? and commerceAccountId = ? and status = ?.
|
static CommerceMLForecastAlertEntry[] |
findByC_C_S_PrevAndNext(long commerceMLForecastAlertEntryId,
long companyId,
long commerceAccountId,
int status,
com.liferay.portal.kernel.util.OrderByComparator<CommerceMLForecastAlertEntry> orderByComparator)
Returns the commerce ml forecast alert entries before and after the current commerce ml forecast alert entry in the ordered set where companyId = ? and commerceAccountId = ? and status = ?.
|
static java.util.List<CommerceMLForecastAlertEntry> |
findByC_C_S(long companyId,
long[] commerceAccountIds,
int status)
Returns all the commerce ml forecast alert entries where companyId = ? and commerceAccountId = any ? and status = ?.
|
static java.util.List<CommerceMLForecastAlertEntry> |
findByC_C_S(long companyId,
long[] commerceAccountIds,
int status,
int start,
int end)
Returns a range of all the commerce ml forecast alert entries where companyId = ? and commerceAccountId = any ? and status = ?.
|
static java.util.List<CommerceMLForecastAlertEntry> |
findByC_C_S(long companyId,
long[] commerceAccountIds,
int status,
int start,
int end,
com.liferay.portal.kernel.util.OrderByComparator<CommerceMLForecastAlertEntry> orderByComparator)
Returns an ordered range of all the commerce ml forecast alert entries where companyId = ? and commerceAccountId = any ? and status = ?.
|
static java.util.List<CommerceMLForecastAlertEntry> |
findByC_C_S(long companyId,
long[] commerceAccountIds,
int status,
int start,
int end,
com.liferay.portal.kernel.util.OrderByComparator<CommerceMLForecastAlertEntry> orderByComparator,
boolean useFinderCache)
Returns an ordered range of all the commerce ml forecast alert entries where companyId = ? and commerceAccountId = ? and status = ?, optionally using the finder cache.
|
static java.util.List<CommerceMLForecastAlertEntry> |
findByC_C_S(long companyId,
long commerceAccountId,
int status)
Returns all the commerce ml forecast alert entries where companyId = ? and commerceAccountId = ? and status = ?.
|
static java.util.List<CommerceMLForecastAlertEntry> |
findByC_C_S(long companyId,
long commerceAccountId,
int status,
int start,
int end)
Returns a range of all the commerce ml forecast alert entries where companyId = ? and commerceAccountId = ? and status = ?.
|
static java.util.List<CommerceMLForecastAlertEntry> |
findByC_C_S(long companyId,
long commerceAccountId,
int status,
int start,
int end,
com.liferay.portal.kernel.util.OrderByComparator<CommerceMLForecastAlertEntry> orderByComparator)
Returns an ordered range of all the commerce ml forecast alert entries where companyId = ? and commerceAccountId = ? and status = ?.
|
static java.util.List<CommerceMLForecastAlertEntry> |
findByC_C_S(long companyId,
long commerceAccountId,
int status,
int start,
int end,
com.liferay.portal.kernel.util.OrderByComparator<CommerceMLForecastAlertEntry> orderByComparator,
boolean useFinderCache)
Returns an ordered range of all the commerce ml forecast alert entries where companyId = ? and commerceAccountId = ? and status = ?.
|
static CommerceMLForecastAlertEntry |
findByC_C_T(long companyId,
long commerceAccountId,
java.util.Date timestamp)
Returns the commerce ml forecast alert entry where companyId = ? and commerceAccountId = ? and timestamp = ? or throws a
NoSuchMLForecastAlertEntryException if it could not be found. |
static CommerceMLForecastAlertEntry |
findByPrimaryKey(long commerceMLForecastAlertEntryId)
Returns the commerce ml forecast alert entry with the primary key or throws a
NoSuchMLForecastAlertEntryException if it could not be found. |
static CommerceMLForecastAlertEntry |
findByUuid_C_First(java.lang.String uuid,
long companyId,
com.liferay.portal.kernel.util.OrderByComparator<CommerceMLForecastAlertEntry> orderByComparator)
Returns the first commerce ml forecast alert entry in the ordered set where uuid = ? and companyId = ?.
|
static CommerceMLForecastAlertEntry |
findByUuid_C_Last(java.lang.String uuid,
long companyId,
com.liferay.portal.kernel.util.OrderByComparator<CommerceMLForecastAlertEntry> orderByComparator)
Returns the last commerce ml forecast alert entry in the ordered set where uuid = ? and companyId = ?.
|
static CommerceMLForecastAlertEntry[] |
findByUuid_C_PrevAndNext(long commerceMLForecastAlertEntryId,
java.lang.String uuid,
long companyId,
com.liferay.portal.kernel.util.OrderByComparator<CommerceMLForecastAlertEntry> orderByComparator)
Returns the commerce ml forecast alert entries before and after the current commerce ml forecast alert entry in the ordered set where uuid = ? and companyId = ?.
|
static java.util.List<CommerceMLForecastAlertEntry> |
findByUuid_C(java.lang.String uuid,
long companyId)
Returns all the commerce ml forecast alert entries where uuid = ? and companyId = ?.
|
static java.util.List<CommerceMLForecastAlertEntry> |
findByUuid_C(java.lang.String uuid,
long companyId,
int start,
int end)
Returns a range of all the commerce ml forecast alert entries where uuid = ? and companyId = ?.
|
static java.util.List<CommerceMLForecastAlertEntry> |
findByUuid_C(java.lang.String uuid,
long companyId,
int start,
int end,
com.liferay.portal.kernel.util.OrderByComparator<CommerceMLForecastAlertEntry> orderByComparator)
Returns an ordered range of all the commerce ml forecast alert entries where uuid = ? and companyId = ?.
|
static java.util.List<CommerceMLForecastAlertEntry> |
findByUuid_C(java.lang.String uuid,
long companyId,
int start,
int end,
com.liferay.portal.kernel.util.OrderByComparator<CommerceMLForecastAlertEntry> orderByComparator,
boolean useFinderCache)
Returns an ordered range of all the commerce ml forecast alert entries where uuid = ? and companyId = ?.
|
static CommerceMLForecastAlertEntry |
findByUuid_First(java.lang.String uuid,
com.liferay.portal.kernel.util.OrderByComparator<CommerceMLForecastAlertEntry> orderByComparator)
Returns the first commerce ml forecast alert entry in the ordered set where uuid = ?.
|
static CommerceMLForecastAlertEntry |
findByUuid_Last(java.lang.String uuid,
com.liferay.portal.kernel.util.OrderByComparator<CommerceMLForecastAlertEntry> orderByComparator)
Returns the last commerce ml forecast alert entry in the ordered set where uuid = ?.
|
static CommerceMLForecastAlertEntry[] |
findByUuid_PrevAndNext(long commerceMLForecastAlertEntryId,
java.lang.String uuid,
com.liferay.portal.kernel.util.OrderByComparator<CommerceMLForecastAlertEntry> orderByComparator)
Returns the commerce ml forecast alert entries before and after the current commerce ml forecast alert entry in the ordered set where uuid = ?.
|
static java.util.List<CommerceMLForecastAlertEntry> |
findByUuid(java.lang.String uuid)
Returns all the commerce ml forecast alert entries where uuid = ?.
|
static java.util.List<CommerceMLForecastAlertEntry> |
findByUuid(java.lang.String uuid,
int start,
int end)
Returns a range of all the commerce ml forecast alert entries where uuid = ?.
|
static java.util.List<CommerceMLForecastAlertEntry> |
findByUuid(java.lang.String uuid,
int start,
int end,
com.liferay.portal.kernel.util.OrderByComparator<CommerceMLForecastAlertEntry> orderByComparator)
Returns an ordered range of all the commerce ml forecast alert entries where uuid = ?.
|
static java.util.List<CommerceMLForecastAlertEntry> |
findByUuid(java.lang.String uuid,
int start,
int end,
com.liferay.portal.kernel.util.OrderByComparator<CommerceMLForecastAlertEntry> orderByComparator,
boolean useFinderCache)
Returns an ordered range of all the commerce ml forecast alert entries where uuid = ?.
|
static java.util.List<CommerceMLForecastAlertEntry> |
findWithDynamicQuery(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery) |
static java.util.List<CommerceMLForecastAlertEntry> |
findWithDynamicQuery(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery,
int start,
int end) |
static java.util.List<CommerceMLForecastAlertEntry> |
findWithDynamicQuery(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery,
int start,
int end,
com.liferay.portal.kernel.util.OrderByComparator<CommerceMLForecastAlertEntry> orderByComparator) |
static CommerceMLForecastAlertEntryPersistence |
getPersistence() |
static CommerceMLForecastAlertEntry |
remove(long commerceMLForecastAlertEntryId)
Removes the commerce ml forecast alert entry with the primary key from the database.
|
static void |
removeAll()
Removes all the commerce ml forecast alert entries from the database.
|
static void |
removeByC_C_GtRc_S(long companyId,
long commerceAccountId,
double relativeChange,
int status)
Removes all the commerce ml forecast alert entries where companyId = ? and commerceAccountId = ? and relativeChange > ? and status = ? from the database.
|
static void |
removeByC_C_LtRc_S(long companyId,
long commerceAccountId,
double relativeChange,
int status)
Removes all the commerce ml forecast alert entries where companyId = ? and commerceAccountId = ? and relativeChange < ? and status = ? from the database.
|
static void |
removeByC_C_S(long companyId,
long commerceAccountId,
int status)
Removes all the commerce ml forecast alert entries where companyId = ? and commerceAccountId = ? and status = ? from the database.
|
static CommerceMLForecastAlertEntry |
removeByC_C_T(long companyId,
long commerceAccountId,
java.util.Date timestamp)
Removes the commerce ml forecast alert entry where companyId = ? and commerceAccountId = ? and timestamp = ? from the database.
|
static void |
removeByUuid_C(java.lang.String uuid,
long companyId)
Removes all the commerce ml forecast alert entries where uuid = ? and companyId = ? from the database.
|
static void |
removeByUuid(java.lang.String uuid)
Removes all the commerce ml forecast alert entries where uuid = ? from the database.
|
static CommerceMLForecastAlertEntry |
update(CommerceMLForecastAlertEntry commerceMLForecastAlertEntry) |
static CommerceMLForecastAlertEntry |
update(CommerceMLForecastAlertEntry commerceMLForecastAlertEntry,
com.liferay.portal.kernel.service.ServiceContext serviceContext) |
static CommerceMLForecastAlertEntry |
updateImpl(CommerceMLForecastAlertEntry commerceMLForecastAlertEntry) |
public static void clearCache()
BasePersistence.clearCache()
public static void clearCache(CommerceMLForecastAlertEntry commerceMLForecastAlertEntry)
BasePersistence.clearCache(com.liferay.portal.kernel.model.BaseModel)
public static long countWithDynamicQuery(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
BasePersistence.countWithDynamicQuery(DynamicQuery)
public static java.util.Map<java.io.Serializable,CommerceMLForecastAlertEntry> fetchByPrimaryKeys(java.util.Set<java.io.Serializable> primaryKeys)
BasePersistence.fetchByPrimaryKeys(Set)
public static java.util.List<CommerceMLForecastAlertEntry> findWithDynamicQuery(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
BasePersistence.findWithDynamicQuery(DynamicQuery)
public static java.util.List<CommerceMLForecastAlertEntry> findWithDynamicQuery(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start, int end)
BasePersistence.findWithDynamicQuery(DynamicQuery, int, int)
public static java.util.List<CommerceMLForecastAlertEntry> findWithDynamicQuery(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<CommerceMLForecastAlertEntry> orderByComparator)
BasePersistence.findWithDynamicQuery(DynamicQuery, int, int, OrderByComparator)
public static CommerceMLForecastAlertEntry update(CommerceMLForecastAlertEntry commerceMLForecastAlertEntry)
BasePersistence.update(com.liferay.portal.kernel.model.BaseModel)
public static CommerceMLForecastAlertEntry update(CommerceMLForecastAlertEntry commerceMLForecastAlertEntry, com.liferay.portal.kernel.service.ServiceContext serviceContext)
BasePersistence.update(com.liferay.portal.kernel.model.BaseModel, ServiceContext)
public static java.util.List<CommerceMLForecastAlertEntry> findByUuid(java.lang.String uuid)
uuid
- the uuidpublic static java.util.List<CommerceMLForecastAlertEntry> findByUuid(java.lang.String uuid, int start, int end)
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, then the query will include the default ORDER BY logic from CommerceMLForecastAlertEntryModelImpl
.
uuid
- the uuidstart
- the lower bound of the range of commerce ml forecast alert entriesend
- the upper bound of the range of commerce ml forecast alert entries (not inclusive)public static java.util.List<CommerceMLForecastAlertEntry> findByUuid(java.lang.String uuid, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<CommerceMLForecastAlertEntry> orderByComparator)
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, then the query will include the default ORDER BY logic from CommerceMLForecastAlertEntryModelImpl
.
uuid
- the uuidstart
- the lower bound of the range of commerce ml forecast alert entriesend
- the upper bound of the range of commerce ml forecast alert entries (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)public static java.util.List<CommerceMLForecastAlertEntry> findByUuid(java.lang.String uuid, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<CommerceMLForecastAlertEntry> orderByComparator, boolean useFinderCache)
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, then the query will include the default ORDER BY logic from CommerceMLForecastAlertEntryModelImpl
.
uuid
- the uuidstart
- the lower bound of the range of commerce ml forecast alert entriesend
- the upper bound of the range of commerce ml forecast alert entries (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)useFinderCache
- whether to use the finder cachepublic static CommerceMLForecastAlertEntry findByUuid_First(java.lang.String uuid, com.liferay.portal.kernel.util.OrderByComparator<CommerceMLForecastAlertEntry> orderByComparator) throws NoSuchMLForecastAlertEntryException
uuid
- the uuidorderByComparator
- the comparator to order the set by (optionally null
)NoSuchMLForecastAlertEntryException
- if a matching commerce ml forecast alert entry could not be foundpublic static CommerceMLForecastAlertEntry fetchByUuid_First(java.lang.String uuid, com.liferay.portal.kernel.util.OrderByComparator<CommerceMLForecastAlertEntry> orderByComparator)
uuid
- the uuidorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching commerce ml forecast alert entry could not be foundpublic static CommerceMLForecastAlertEntry findByUuid_Last(java.lang.String uuid, com.liferay.portal.kernel.util.OrderByComparator<CommerceMLForecastAlertEntry> orderByComparator) throws NoSuchMLForecastAlertEntryException
uuid
- the uuidorderByComparator
- the comparator to order the set by (optionally null
)NoSuchMLForecastAlertEntryException
- if a matching commerce ml forecast alert entry could not be foundpublic static CommerceMLForecastAlertEntry fetchByUuid_Last(java.lang.String uuid, com.liferay.portal.kernel.util.OrderByComparator<CommerceMLForecastAlertEntry> orderByComparator)
uuid
- the uuidorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching commerce ml forecast alert entry could not be foundpublic static CommerceMLForecastAlertEntry[] findByUuid_PrevAndNext(long commerceMLForecastAlertEntryId, java.lang.String uuid, com.liferay.portal.kernel.util.OrderByComparator<CommerceMLForecastAlertEntry> orderByComparator) throws NoSuchMLForecastAlertEntryException
commerceMLForecastAlertEntryId
- the primary key of the current commerce ml forecast alert entryuuid
- the uuidorderByComparator
- the comparator to order the set by (optionally null
)NoSuchMLForecastAlertEntryException
- if a commerce ml forecast alert entry with the primary key could not be foundpublic static void removeByUuid(java.lang.String uuid)
uuid
- the uuidpublic static int countByUuid(java.lang.String uuid)
uuid
- the uuidpublic static java.util.List<CommerceMLForecastAlertEntry> findByUuid_C(java.lang.String uuid, long companyId)
uuid
- the uuidcompanyId
- the company IDpublic static java.util.List<CommerceMLForecastAlertEntry> findByUuid_C(java.lang.String uuid, long companyId, int start, int end)
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, then the query will include the default ORDER BY logic from CommerceMLForecastAlertEntryModelImpl
.
uuid
- the uuidcompanyId
- the company IDstart
- the lower bound of the range of commerce ml forecast alert entriesend
- the upper bound of the range of commerce ml forecast alert entries (not inclusive)public static java.util.List<CommerceMLForecastAlertEntry> findByUuid_C(java.lang.String uuid, long companyId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<CommerceMLForecastAlertEntry> orderByComparator)
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, then the query will include the default ORDER BY logic from CommerceMLForecastAlertEntryModelImpl
.
uuid
- the uuidcompanyId
- the company IDstart
- the lower bound of the range of commerce ml forecast alert entriesend
- the upper bound of the range of commerce ml forecast alert entries (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)public static java.util.List<CommerceMLForecastAlertEntry> findByUuid_C(java.lang.String uuid, long companyId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<CommerceMLForecastAlertEntry> orderByComparator, boolean useFinderCache)
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, then the query will include the default ORDER BY logic from CommerceMLForecastAlertEntryModelImpl
.
uuid
- the uuidcompanyId
- the company IDstart
- the lower bound of the range of commerce ml forecast alert entriesend
- the upper bound of the range of commerce ml forecast alert entries (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)useFinderCache
- whether to use the finder cachepublic static CommerceMLForecastAlertEntry findByUuid_C_First(java.lang.String uuid, long companyId, com.liferay.portal.kernel.util.OrderByComparator<CommerceMLForecastAlertEntry> orderByComparator) throws NoSuchMLForecastAlertEntryException
uuid
- the uuidcompanyId
- the company IDorderByComparator
- the comparator to order the set by (optionally null
)NoSuchMLForecastAlertEntryException
- if a matching commerce ml forecast alert entry could not be foundpublic static CommerceMLForecastAlertEntry fetchByUuid_C_First(java.lang.String uuid, long companyId, com.liferay.portal.kernel.util.OrderByComparator<CommerceMLForecastAlertEntry> orderByComparator)
uuid
- the uuidcompanyId
- the company IDorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching commerce ml forecast alert entry could not be foundpublic static CommerceMLForecastAlertEntry findByUuid_C_Last(java.lang.String uuid, long companyId, com.liferay.portal.kernel.util.OrderByComparator<CommerceMLForecastAlertEntry> orderByComparator) throws NoSuchMLForecastAlertEntryException
uuid
- the uuidcompanyId
- the company IDorderByComparator
- the comparator to order the set by (optionally null
)NoSuchMLForecastAlertEntryException
- if a matching commerce ml forecast alert entry could not be foundpublic static CommerceMLForecastAlertEntry fetchByUuid_C_Last(java.lang.String uuid, long companyId, com.liferay.portal.kernel.util.OrderByComparator<CommerceMLForecastAlertEntry> orderByComparator)
uuid
- the uuidcompanyId
- the company IDorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching commerce ml forecast alert entry could not be foundpublic static CommerceMLForecastAlertEntry[] findByUuid_C_PrevAndNext(long commerceMLForecastAlertEntryId, java.lang.String uuid, long companyId, com.liferay.portal.kernel.util.OrderByComparator<CommerceMLForecastAlertEntry> orderByComparator) throws NoSuchMLForecastAlertEntryException
commerceMLForecastAlertEntryId
- the primary key of the current commerce ml forecast alert entryuuid
- the uuidcompanyId
- the company IDorderByComparator
- the comparator to order the set by (optionally null
)NoSuchMLForecastAlertEntryException
- if a commerce ml forecast alert entry with the primary key could not be foundpublic static void removeByUuid_C(java.lang.String uuid, long companyId)
uuid
- the uuidcompanyId
- the company IDpublic static int countByUuid_C(java.lang.String uuid, long companyId)
uuid
- the uuidcompanyId
- the company IDpublic static CommerceMLForecastAlertEntry findByC_C_T(long companyId, long commerceAccountId, java.util.Date timestamp) throws NoSuchMLForecastAlertEntryException
NoSuchMLForecastAlertEntryException
if it could not be found.companyId
- the company IDcommerceAccountId
- the commerce account IDtimestamp
- the timestampNoSuchMLForecastAlertEntryException
- if a matching commerce ml forecast alert entry could not be foundpublic static CommerceMLForecastAlertEntry fetchByC_C_T(long companyId, long commerceAccountId, java.util.Date timestamp)
null
if it could not be found. Uses the finder cache.companyId
- the company IDcommerceAccountId
- the commerce account IDtimestamp
- the timestampnull
if a matching commerce ml forecast alert entry could not be foundpublic static CommerceMLForecastAlertEntry fetchByC_C_T(long companyId, long commerceAccountId, java.util.Date timestamp, boolean useFinderCache)
null
if it could not be found, optionally using the finder cache.companyId
- the company IDcommerceAccountId
- the commerce account IDtimestamp
- the timestampuseFinderCache
- whether to use the finder cachenull
if a matching commerce ml forecast alert entry could not be foundpublic static CommerceMLForecastAlertEntry removeByC_C_T(long companyId, long commerceAccountId, java.util.Date timestamp) throws NoSuchMLForecastAlertEntryException
companyId
- the company IDcommerceAccountId
- the commerce account IDtimestamp
- the timestampNoSuchMLForecastAlertEntryException
public static int countByC_C_T(long companyId, long commerceAccountId, java.util.Date timestamp)
companyId
- the company IDcommerceAccountId
- the commerce account IDtimestamp
- the timestamppublic static java.util.List<CommerceMLForecastAlertEntry> findByC_C_S(long companyId, long commerceAccountId, int status)
companyId
- the company IDcommerceAccountId
- the commerce account IDstatus
- the statuspublic static java.util.List<CommerceMLForecastAlertEntry> findByC_C_S(long companyId, long commerceAccountId, int status, int start, int end)
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, then the query will include the default ORDER BY logic from CommerceMLForecastAlertEntryModelImpl
.
companyId
- the company IDcommerceAccountId
- the commerce account IDstatus
- the statusstart
- the lower bound of the range of commerce ml forecast alert entriesend
- the upper bound of the range of commerce ml forecast alert entries (not inclusive)public static java.util.List<CommerceMLForecastAlertEntry> findByC_C_S(long companyId, long commerceAccountId, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<CommerceMLForecastAlertEntry> orderByComparator)
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, then the query will include the default ORDER BY logic from CommerceMLForecastAlertEntryModelImpl
.
companyId
- the company IDcommerceAccountId
- the commerce account IDstatus
- the statusstart
- the lower bound of the range of commerce ml forecast alert entriesend
- the upper bound of the range of commerce ml forecast alert entries (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)public static java.util.List<CommerceMLForecastAlertEntry> findByC_C_S(long companyId, long commerceAccountId, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<CommerceMLForecastAlertEntry> orderByComparator, boolean useFinderCache)
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, then the query will include the default ORDER BY logic from CommerceMLForecastAlertEntryModelImpl
.
companyId
- the company IDcommerceAccountId
- the commerce account IDstatus
- the statusstart
- the lower bound of the range of commerce ml forecast alert entriesend
- the upper bound of the range of commerce ml forecast alert entries (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)useFinderCache
- whether to use the finder cachepublic static CommerceMLForecastAlertEntry findByC_C_S_First(long companyId, long commerceAccountId, int status, com.liferay.portal.kernel.util.OrderByComparator<CommerceMLForecastAlertEntry> orderByComparator) throws NoSuchMLForecastAlertEntryException
companyId
- the company IDcommerceAccountId
- the commerce account IDstatus
- the statusorderByComparator
- the comparator to order the set by (optionally null
)NoSuchMLForecastAlertEntryException
- if a matching commerce ml forecast alert entry could not be foundpublic static CommerceMLForecastAlertEntry fetchByC_C_S_First(long companyId, long commerceAccountId, int status, com.liferay.portal.kernel.util.OrderByComparator<CommerceMLForecastAlertEntry> orderByComparator)
companyId
- the company IDcommerceAccountId
- the commerce account IDstatus
- the statusorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching commerce ml forecast alert entry could not be foundpublic static CommerceMLForecastAlertEntry findByC_C_S_Last(long companyId, long commerceAccountId, int status, com.liferay.portal.kernel.util.OrderByComparator<CommerceMLForecastAlertEntry> orderByComparator) throws NoSuchMLForecastAlertEntryException
companyId
- the company IDcommerceAccountId
- the commerce account IDstatus
- the statusorderByComparator
- the comparator to order the set by (optionally null
)NoSuchMLForecastAlertEntryException
- if a matching commerce ml forecast alert entry could not be foundpublic static CommerceMLForecastAlertEntry fetchByC_C_S_Last(long companyId, long commerceAccountId, int status, com.liferay.portal.kernel.util.OrderByComparator<CommerceMLForecastAlertEntry> orderByComparator)
companyId
- the company IDcommerceAccountId
- the commerce account IDstatus
- the statusorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching commerce ml forecast alert entry could not be foundpublic static CommerceMLForecastAlertEntry[] findByC_C_S_PrevAndNext(long commerceMLForecastAlertEntryId, long companyId, long commerceAccountId, int status, com.liferay.portal.kernel.util.OrderByComparator<CommerceMLForecastAlertEntry> orderByComparator) throws NoSuchMLForecastAlertEntryException
commerceMLForecastAlertEntryId
- the primary key of the current commerce ml forecast alert entrycompanyId
- the company IDcommerceAccountId
- the commerce account IDstatus
- the statusorderByComparator
- the comparator to order the set by (optionally null
)NoSuchMLForecastAlertEntryException
- if a commerce ml forecast alert entry with the primary key could not be foundpublic static java.util.List<CommerceMLForecastAlertEntry> findByC_C_S(long companyId, long[] commerceAccountIds, int status)
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, then the query will include the default ORDER BY logic from CommerceMLForecastAlertEntryModelImpl
.
companyId
- the company IDcommerceAccountIds
- the commerce account IDsstatus
- the statuspublic static java.util.List<CommerceMLForecastAlertEntry> findByC_C_S(long companyId, long[] commerceAccountIds, int status, int start, int end)
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, then the query will include the default ORDER BY logic from CommerceMLForecastAlertEntryModelImpl
.
companyId
- the company IDcommerceAccountIds
- the commerce account IDsstatus
- the statusstart
- the lower bound of the range of commerce ml forecast alert entriesend
- the upper bound of the range of commerce ml forecast alert entries (not inclusive)public static java.util.List<CommerceMLForecastAlertEntry> findByC_C_S(long companyId, long[] commerceAccountIds, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<CommerceMLForecastAlertEntry> orderByComparator)
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, then the query will include the default ORDER BY logic from CommerceMLForecastAlertEntryModelImpl
.
companyId
- the company IDcommerceAccountIds
- the commerce account IDsstatus
- the statusstart
- the lower bound of the range of commerce ml forecast alert entriesend
- the upper bound of the range of commerce ml forecast alert entries (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)public static java.util.List<CommerceMLForecastAlertEntry> findByC_C_S(long companyId, long[] commerceAccountIds, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<CommerceMLForecastAlertEntry> orderByComparator, boolean useFinderCache)
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, then the query will include the default ORDER BY logic from CommerceMLForecastAlertEntryModelImpl
.
companyId
- the company IDcommerceAccountIds
- the commerce account IDsstatus
- the statusstart
- the lower bound of the range of commerce ml forecast alert entriesend
- the upper bound of the range of commerce ml forecast alert entries (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)useFinderCache
- whether to use the finder cachepublic static void removeByC_C_S(long companyId, long commerceAccountId, int status)
companyId
- the company IDcommerceAccountId
- the commerce account IDstatus
- the statuspublic static int countByC_C_S(long companyId, long commerceAccountId, int status)
companyId
- the company IDcommerceAccountId
- the commerce account IDstatus
- the statuspublic static int countByC_C_S(long companyId, long[] commerceAccountIds, int status)
companyId
- the company IDcommerceAccountIds
- the commerce account IDsstatus
- the statuspublic static java.util.List<CommerceMLForecastAlertEntry> findByC_C_GtRc_S(long companyId, long commerceAccountId, double relativeChange, int status)
companyId
- the company IDcommerceAccountId
- the commerce account IDrelativeChange
- the relative changestatus
- the statuspublic static java.util.List<CommerceMLForecastAlertEntry> findByC_C_GtRc_S(long companyId, long commerceAccountId, double relativeChange, int status, int start, int end)
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, then the query will include the default ORDER BY logic from CommerceMLForecastAlertEntryModelImpl
.
companyId
- the company IDcommerceAccountId
- the commerce account IDrelativeChange
- the relative changestatus
- the statusstart
- the lower bound of the range of commerce ml forecast alert entriesend
- the upper bound of the range of commerce ml forecast alert entries (not inclusive)public static java.util.List<CommerceMLForecastAlertEntry> findByC_C_GtRc_S(long companyId, long commerceAccountId, double relativeChange, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<CommerceMLForecastAlertEntry> orderByComparator)
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, then the query will include the default ORDER BY logic from CommerceMLForecastAlertEntryModelImpl
.
companyId
- the company IDcommerceAccountId
- the commerce account IDrelativeChange
- the relative changestatus
- the statusstart
- the lower bound of the range of commerce ml forecast alert entriesend
- the upper bound of the range of commerce ml forecast alert entries (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)public static java.util.List<CommerceMLForecastAlertEntry> findByC_C_GtRc_S(long companyId, long commerceAccountId, double relativeChange, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<CommerceMLForecastAlertEntry> orderByComparator, boolean useFinderCache)
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, then the query will include the default ORDER BY logic from CommerceMLForecastAlertEntryModelImpl
.
companyId
- the company IDcommerceAccountId
- the commerce account IDrelativeChange
- the relative changestatus
- the statusstart
- the lower bound of the range of commerce ml forecast alert entriesend
- the upper bound of the range of commerce ml forecast alert entries (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)useFinderCache
- whether to use the finder cachepublic static CommerceMLForecastAlertEntry findByC_C_GtRc_S_First(long companyId, long commerceAccountId, double relativeChange, int status, com.liferay.portal.kernel.util.OrderByComparator<CommerceMLForecastAlertEntry> orderByComparator) throws NoSuchMLForecastAlertEntryException
companyId
- the company IDcommerceAccountId
- the commerce account IDrelativeChange
- the relative changestatus
- the statusorderByComparator
- the comparator to order the set by (optionally null
)NoSuchMLForecastAlertEntryException
- if a matching commerce ml forecast alert entry could not be foundpublic static CommerceMLForecastAlertEntry fetchByC_C_GtRc_S_First(long companyId, long commerceAccountId, double relativeChange, int status, com.liferay.portal.kernel.util.OrderByComparator<CommerceMLForecastAlertEntry> orderByComparator)
companyId
- the company IDcommerceAccountId
- the commerce account IDrelativeChange
- the relative changestatus
- the statusorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching commerce ml forecast alert entry could not be foundpublic static CommerceMLForecastAlertEntry findByC_C_GtRc_S_Last(long companyId, long commerceAccountId, double relativeChange, int status, com.liferay.portal.kernel.util.OrderByComparator<CommerceMLForecastAlertEntry> orderByComparator) throws NoSuchMLForecastAlertEntryException
companyId
- the company IDcommerceAccountId
- the commerce account IDrelativeChange
- the relative changestatus
- the statusorderByComparator
- the comparator to order the set by (optionally null
)NoSuchMLForecastAlertEntryException
- if a matching commerce ml forecast alert entry could not be foundpublic static CommerceMLForecastAlertEntry fetchByC_C_GtRc_S_Last(long companyId, long commerceAccountId, double relativeChange, int status, com.liferay.portal.kernel.util.OrderByComparator<CommerceMLForecastAlertEntry> orderByComparator)
companyId
- the company IDcommerceAccountId
- the commerce account IDrelativeChange
- the relative changestatus
- the statusorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching commerce ml forecast alert entry could not be foundpublic static CommerceMLForecastAlertEntry[] findByC_C_GtRc_S_PrevAndNext(long commerceMLForecastAlertEntryId, long companyId, long commerceAccountId, double relativeChange, int status, com.liferay.portal.kernel.util.OrderByComparator<CommerceMLForecastAlertEntry> orderByComparator) throws NoSuchMLForecastAlertEntryException
commerceMLForecastAlertEntryId
- the primary key of the current commerce ml forecast alert entrycompanyId
- the company IDcommerceAccountId
- the commerce account IDrelativeChange
- the relative changestatus
- the statusorderByComparator
- the comparator to order the set by (optionally null
)NoSuchMLForecastAlertEntryException
- if a commerce ml forecast alert entry with the primary key could not be foundpublic static java.util.List<CommerceMLForecastAlertEntry> findByC_C_GtRc_S(long companyId, long[] commerceAccountIds, double relativeChange, int status)
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, then the query will include the default ORDER BY logic from CommerceMLForecastAlertEntryModelImpl
.
companyId
- the company IDcommerceAccountIds
- the commerce account IDsrelativeChange
- the relative changestatus
- the statuspublic static java.util.List<CommerceMLForecastAlertEntry> findByC_C_GtRc_S(long companyId, long[] commerceAccountIds, double relativeChange, int status, int start, int end)
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, then the query will include the default ORDER BY logic from CommerceMLForecastAlertEntryModelImpl
.
companyId
- the company IDcommerceAccountIds
- the commerce account IDsrelativeChange
- the relative changestatus
- the statusstart
- the lower bound of the range of commerce ml forecast alert entriesend
- the upper bound of the range of commerce ml forecast alert entries (not inclusive)public static java.util.List<CommerceMLForecastAlertEntry> findByC_C_GtRc_S(long companyId, long[] commerceAccountIds, double relativeChange, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<CommerceMLForecastAlertEntry> orderByComparator)
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, then the query will include the default ORDER BY logic from CommerceMLForecastAlertEntryModelImpl
.
companyId
- the company IDcommerceAccountIds
- the commerce account IDsrelativeChange
- the relative changestatus
- the statusstart
- the lower bound of the range of commerce ml forecast alert entriesend
- the upper bound of the range of commerce ml forecast alert entries (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)public static java.util.List<CommerceMLForecastAlertEntry> findByC_C_GtRc_S(long companyId, long[] commerceAccountIds, double relativeChange, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<CommerceMLForecastAlertEntry> orderByComparator, boolean useFinderCache)
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, then the query will include the default ORDER BY logic from CommerceMLForecastAlertEntryModelImpl
.
companyId
- the company IDcommerceAccountIds
- the commerce account IDsrelativeChange
- the relative changestatus
- the statusstart
- the lower bound of the range of commerce ml forecast alert entriesend
- the upper bound of the range of commerce ml forecast alert entries (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)useFinderCache
- whether to use the finder cachepublic static void removeByC_C_GtRc_S(long companyId, long commerceAccountId, double relativeChange, int status)
companyId
- the company IDcommerceAccountId
- the commerce account IDrelativeChange
- the relative changestatus
- the statuspublic static int countByC_C_GtRc_S(long companyId, long commerceAccountId, double relativeChange, int status)
companyId
- the company IDcommerceAccountId
- the commerce account IDrelativeChange
- the relative changestatus
- the statuspublic static int countByC_C_GtRc_S(long companyId, long[] commerceAccountIds, double relativeChange, int status)
companyId
- the company IDcommerceAccountIds
- the commerce account IDsrelativeChange
- the relative changestatus
- the statuspublic static java.util.List<CommerceMLForecastAlertEntry> findByC_C_LtRc_S(long companyId, long commerceAccountId, double relativeChange, int status)
companyId
- the company IDcommerceAccountId
- the commerce account IDrelativeChange
- the relative changestatus
- the statuspublic static java.util.List<CommerceMLForecastAlertEntry> findByC_C_LtRc_S(long companyId, long commerceAccountId, double relativeChange, int status, int start, int end)
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, then the query will include the default ORDER BY logic from CommerceMLForecastAlertEntryModelImpl
.
companyId
- the company IDcommerceAccountId
- the commerce account IDrelativeChange
- the relative changestatus
- the statusstart
- the lower bound of the range of commerce ml forecast alert entriesend
- the upper bound of the range of commerce ml forecast alert entries (not inclusive)public static java.util.List<CommerceMLForecastAlertEntry> findByC_C_LtRc_S(long companyId, long commerceAccountId, double relativeChange, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<CommerceMLForecastAlertEntry> orderByComparator)
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, then the query will include the default ORDER BY logic from CommerceMLForecastAlertEntryModelImpl
.
companyId
- the company IDcommerceAccountId
- the commerce account IDrelativeChange
- the relative changestatus
- the statusstart
- the lower bound of the range of commerce ml forecast alert entriesend
- the upper bound of the range of commerce ml forecast alert entries (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)public static java.util.List<CommerceMLForecastAlertEntry> findByC_C_LtRc_S(long companyId, long commerceAccountId, double relativeChange, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<CommerceMLForecastAlertEntry> orderByComparator, boolean useFinderCache)
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, then the query will include the default ORDER BY logic from CommerceMLForecastAlertEntryModelImpl
.
companyId
- the company IDcommerceAccountId
- the commerce account IDrelativeChange
- the relative changestatus
- the statusstart
- the lower bound of the range of commerce ml forecast alert entriesend
- the upper bound of the range of commerce ml forecast alert entries (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)useFinderCache
- whether to use the finder cachepublic static CommerceMLForecastAlertEntry findByC_C_LtRc_S_First(long companyId, long commerceAccountId, double relativeChange, int status, com.liferay.portal.kernel.util.OrderByComparator<CommerceMLForecastAlertEntry> orderByComparator) throws NoSuchMLForecastAlertEntryException
companyId
- the company IDcommerceAccountId
- the commerce account IDrelativeChange
- the relative changestatus
- the statusorderByComparator
- the comparator to order the set by (optionally null
)NoSuchMLForecastAlertEntryException
- if a matching commerce ml forecast alert entry could not be foundpublic static CommerceMLForecastAlertEntry fetchByC_C_LtRc_S_First(long companyId, long commerceAccountId, double relativeChange, int status, com.liferay.portal.kernel.util.OrderByComparator<CommerceMLForecastAlertEntry> orderByComparator)
companyId
- the company IDcommerceAccountId
- the commerce account IDrelativeChange
- the relative changestatus
- the statusorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching commerce ml forecast alert entry could not be foundpublic static CommerceMLForecastAlertEntry findByC_C_LtRc_S_Last(long companyId, long commerceAccountId, double relativeChange, int status, com.liferay.portal.kernel.util.OrderByComparator<CommerceMLForecastAlertEntry> orderByComparator) throws NoSuchMLForecastAlertEntryException
companyId
- the company IDcommerceAccountId
- the commerce account IDrelativeChange
- the relative changestatus
- the statusorderByComparator
- the comparator to order the set by (optionally null
)NoSuchMLForecastAlertEntryException
- if a matching commerce ml forecast alert entry could not be foundpublic static CommerceMLForecastAlertEntry fetchByC_C_LtRc_S_Last(long companyId, long commerceAccountId, double relativeChange, int status, com.liferay.portal.kernel.util.OrderByComparator<CommerceMLForecastAlertEntry> orderByComparator)
companyId
- the company IDcommerceAccountId
- the commerce account IDrelativeChange
- the relative changestatus
- the statusorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching commerce ml forecast alert entry could not be foundpublic static CommerceMLForecastAlertEntry[] findByC_C_LtRc_S_PrevAndNext(long commerceMLForecastAlertEntryId, long companyId, long commerceAccountId, double relativeChange, int status, com.liferay.portal.kernel.util.OrderByComparator<CommerceMLForecastAlertEntry> orderByComparator) throws NoSuchMLForecastAlertEntryException
commerceMLForecastAlertEntryId
- the primary key of the current commerce ml forecast alert entrycompanyId
- the company IDcommerceAccountId
- the commerce account IDrelativeChange
- the relative changestatus
- the statusorderByComparator
- the comparator to order the set by (optionally null
)NoSuchMLForecastAlertEntryException
- if a commerce ml forecast alert entry with the primary key could not be foundpublic static java.util.List<CommerceMLForecastAlertEntry> findByC_C_LtRc_S(long companyId, long[] commerceAccountIds, double relativeChange, int status)
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, then the query will include the default ORDER BY logic from CommerceMLForecastAlertEntryModelImpl
.
companyId
- the company IDcommerceAccountIds
- the commerce account IDsrelativeChange
- the relative changestatus
- the statuspublic static java.util.List<CommerceMLForecastAlertEntry> findByC_C_LtRc_S(long companyId, long[] commerceAccountIds, double relativeChange, int status, int start, int end)
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, then the query will include the default ORDER BY logic from CommerceMLForecastAlertEntryModelImpl
.
companyId
- the company IDcommerceAccountIds
- the commerce account IDsrelativeChange
- the relative changestatus
- the statusstart
- the lower bound of the range of commerce ml forecast alert entriesend
- the upper bound of the range of commerce ml forecast alert entries (not inclusive)public static java.util.List<CommerceMLForecastAlertEntry> findByC_C_LtRc_S(long companyId, long[] commerceAccountIds, double relativeChange, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<CommerceMLForecastAlertEntry> orderByComparator)
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, then the query will include the default ORDER BY logic from CommerceMLForecastAlertEntryModelImpl
.
companyId
- the company IDcommerceAccountIds
- the commerce account IDsrelativeChange
- the relative changestatus
- the statusstart
- the lower bound of the range of commerce ml forecast alert entriesend
- the upper bound of the range of commerce ml forecast alert entries (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)public static java.util.List<CommerceMLForecastAlertEntry> findByC_C_LtRc_S(long companyId, long[] commerceAccountIds, double relativeChange, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<CommerceMLForecastAlertEntry> orderByComparator, boolean useFinderCache)
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, then the query will include the default ORDER BY logic from CommerceMLForecastAlertEntryModelImpl
.
companyId
- the company IDcommerceAccountIds
- the commerce account IDsrelativeChange
- the relative changestatus
- the statusstart
- the lower bound of the range of commerce ml forecast alert entriesend
- the upper bound of the range of commerce ml forecast alert entries (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)useFinderCache
- whether to use the finder cachepublic static void removeByC_C_LtRc_S(long companyId, long commerceAccountId, double relativeChange, int status)
companyId
- the company IDcommerceAccountId
- the commerce account IDrelativeChange
- the relative changestatus
- the statuspublic static int countByC_C_LtRc_S(long companyId, long commerceAccountId, double relativeChange, int status)
companyId
- the company IDcommerceAccountId
- the commerce account IDrelativeChange
- the relative changestatus
- the statuspublic static int countByC_C_LtRc_S(long companyId, long[] commerceAccountIds, double relativeChange, int status)
companyId
- the company IDcommerceAccountIds
- the commerce account IDsrelativeChange
- the relative changestatus
- the statuspublic static void cacheResult(CommerceMLForecastAlertEntry commerceMLForecastAlertEntry)
commerceMLForecastAlertEntry
- the commerce ml forecast alert entrypublic static void cacheResult(java.util.List<CommerceMLForecastAlertEntry> commerceMLForecastAlertEntries)
commerceMLForecastAlertEntries
- the commerce ml forecast alert entriespublic static CommerceMLForecastAlertEntry create(long commerceMLForecastAlertEntryId)
commerceMLForecastAlertEntryId
- the primary key for the new commerce ml forecast alert entrypublic static CommerceMLForecastAlertEntry remove(long commerceMLForecastAlertEntryId) throws NoSuchMLForecastAlertEntryException
commerceMLForecastAlertEntryId
- the primary key of the commerce ml forecast alert entryNoSuchMLForecastAlertEntryException
- if a commerce ml forecast alert entry with the primary key could not be foundpublic static CommerceMLForecastAlertEntry updateImpl(CommerceMLForecastAlertEntry commerceMLForecastAlertEntry)
public static CommerceMLForecastAlertEntry findByPrimaryKey(long commerceMLForecastAlertEntryId) throws NoSuchMLForecastAlertEntryException
NoSuchMLForecastAlertEntryException
if it could not be found.commerceMLForecastAlertEntryId
- the primary key of the commerce ml forecast alert entryNoSuchMLForecastAlertEntryException
- if a commerce ml forecast alert entry with the primary key could not be foundpublic static CommerceMLForecastAlertEntry fetchByPrimaryKey(long commerceMLForecastAlertEntryId)
null
if it could not be found.commerceMLForecastAlertEntryId
- the primary key of the commerce ml forecast alert entrynull
if a commerce ml forecast alert entry with the primary key could not be foundpublic static java.util.List<CommerceMLForecastAlertEntry> findAll()
public static java.util.List<CommerceMLForecastAlertEntry> findAll(int start, int end)
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, then the query will include the default ORDER BY logic from CommerceMLForecastAlertEntryModelImpl
.
start
- the lower bound of the range of commerce ml forecast alert entriesend
- the upper bound of the range of commerce ml forecast alert entries (not inclusive)public static java.util.List<CommerceMLForecastAlertEntry> findAll(int start, int end, com.liferay.portal.kernel.util.OrderByComparator<CommerceMLForecastAlertEntry> orderByComparator)
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, then the query will include the default ORDER BY logic from CommerceMLForecastAlertEntryModelImpl
.
start
- the lower bound of the range of commerce ml forecast alert entriesend
- the upper bound of the range of commerce ml forecast alert entries (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)public static java.util.List<CommerceMLForecastAlertEntry> findAll(int start, int end, com.liferay.portal.kernel.util.OrderByComparator<CommerceMLForecastAlertEntry> orderByComparator, boolean useFinderCache)
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, then the query will include the default ORDER BY logic from CommerceMLForecastAlertEntryModelImpl
.
start
- the lower bound of the range of commerce ml forecast alert entriesend
- the upper bound of the range of commerce ml forecast alert entries (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)useFinderCache
- whether to use the finder cachepublic static void removeAll()
public static int countAll()
public static CommerceMLForecastAlertEntryPersistence getPersistence()