@ProviderType
public class MBCategoryUtil
extends java.lang.Object
MBCategoryPersistenceImpl 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
MBCategoryPersistence,
MBCategoryPersistenceImpl| Constructor and Description |
|---|
MBCategoryUtil() |
| Modifier and Type | Method and Description |
|---|---|
static void |
cacheResult(java.util.List<MBCategory> mbCategories)
Caches the message boards categories in the entity cache if it is enabled.
|
static void |
cacheResult(MBCategory mbCategory)
Caches the message boards category in the entity cache if it is enabled.
|
static void |
clearCache() |
static void |
clearCache(MBCategory mbCategory) |
static int |
countAll()
Returns the number of message boards categories.
|
static int |
countByC_S(long companyId,
int status)
Returns the number of message boards categories where companyId = ? and status = ?.
|
static int |
countByCompanyId(long companyId)
Returns the number of message boards categories where companyId = ?.
|
static int |
countByG_P_S(long groupId,
long[] parentCategoryIds,
int status)
Returns the number of message boards categories where groupId = ? and parentCategoryId = any ? and status = ?.
|
static int |
countByG_P_S(long groupId,
long parentCategoryId,
int status)
Returns the number of message boards categories where groupId = ? and parentCategoryId = ? and status = ?.
|
static int |
countByG_P(long groupId,
long parentCategoryId)
Returns the number of message boards categories where groupId = ? and parentCategoryId = ?.
|
static int |
countByG_P(long groupId,
long[] parentCategoryIds)
Returns the number of message boards categories where groupId = ? and parentCategoryId = any ?.
|
static int |
countByG_S(long groupId,
int status)
Returns the number of message boards categories where groupId = ? and status = ?.
|
static int |
countByGroupId(long groupId)
Returns the number of message boards categories where groupId = ?.
|
static int |
countByUuid_C(java.lang.String uuid,
long companyId)
Returns the number of message boards categories where uuid = ? and companyId = ?.
|
static int |
countByUUID_G(java.lang.String uuid,
long groupId)
Returns the number of message boards categories where uuid = ? and groupId = ?.
|
static int |
countByUuid(java.lang.String uuid)
Returns the number of message boards categories where uuid = ?.
|
static long |
countWithDynamicQuery(DynamicQuery dynamicQuery) |
static MBCategory |
create(long categoryId)
Creates a new message boards category with the primary key.
|
static MBCategory |
fetchByC_S_First(long companyId,
int status,
OrderByComparator orderByComparator)
Returns the first message boards category in the ordered set where companyId = ? and status = ?.
|
static MBCategory |
fetchByC_S_Last(long companyId,
int status,
OrderByComparator orderByComparator)
Returns the last message boards category in the ordered set where companyId = ? and status = ?.
|
static MBCategory |
fetchByCompanyId_First(long companyId,
OrderByComparator orderByComparator)
Returns the first message boards category in the ordered set where companyId = ?.
|
static MBCategory |
fetchByCompanyId_Last(long companyId,
OrderByComparator orderByComparator)
Returns the last message boards category in the ordered set where companyId = ?.
|
static MBCategory |
fetchByG_P_First(long groupId,
long parentCategoryId,
OrderByComparator orderByComparator)
Returns the first message boards category in the ordered set where groupId = ? and parentCategoryId = ?.
|
static MBCategory |
fetchByG_P_Last(long groupId,
long parentCategoryId,
OrderByComparator orderByComparator)
Returns the last message boards category in the ordered set where groupId = ? and parentCategoryId = ?.
|
static MBCategory |
fetchByG_P_S_First(long groupId,
long parentCategoryId,
int status,
OrderByComparator orderByComparator)
Returns the first message boards category in the ordered set where groupId = ? and parentCategoryId = ? and status = ?.
|
static MBCategory |
fetchByG_P_S_Last(long groupId,
long parentCategoryId,
int status,
OrderByComparator orderByComparator)
Returns the last message boards category in the ordered set where groupId = ? and parentCategoryId = ? and status = ?.
|
static MBCategory |
fetchByG_S_First(long groupId,
int status,
OrderByComparator orderByComparator)
Returns the first message boards category in the ordered set where groupId = ? and status = ?.
|
static MBCategory |
fetchByG_S_Last(long groupId,
int status,
OrderByComparator orderByComparator)
Returns the last message boards category in the ordered set where groupId = ? and status = ?.
|
static MBCategory |
fetchByGroupId_First(long groupId,
OrderByComparator orderByComparator)
Returns the first message boards category in the ordered set where groupId = ?.
|
static MBCategory |
fetchByGroupId_Last(long groupId,
OrderByComparator orderByComparator)
Returns the last message boards category in the ordered set where groupId = ?.
|
static MBCategory |
fetchByPrimaryKey(long categoryId)
Returns the message boards category with the primary key or returns
null if it could not be found. |
static MBCategory |
fetchByUuid_C_First(java.lang.String uuid,
long companyId,
OrderByComparator orderByComparator)
Returns the first message boards category in the ordered set where uuid = ? and companyId = ?.
|
static MBCategory |
fetchByUuid_C_Last(java.lang.String uuid,
long companyId,
OrderByComparator orderByComparator)
Returns the last message boards category in the ordered set where uuid = ? and companyId = ?.
|
static MBCategory |
fetchByUuid_First(java.lang.String uuid,
OrderByComparator orderByComparator)
Returns the first message boards category in the ordered set where uuid = ?.
|
static MBCategory |
fetchByUUID_G(java.lang.String uuid,
long groupId)
Returns the message boards category where uuid = ? and groupId = ? or returns
null if it could not be found. |
static MBCategory |
fetchByUUID_G(java.lang.String uuid,
long groupId,
boolean retrieveFromCache)
Returns the message boards category where uuid = ? and groupId = ? or returns
null if it could not be found, optionally using the finder cache. |
static MBCategory |
fetchByUuid_Last(java.lang.String uuid,
OrderByComparator orderByComparator)
Returns the last message boards category in the ordered set where uuid = ?.
|
static int |
filterCountByG_P_S(long groupId,
long[] parentCategoryIds,
int status)
Returns the number of message boards categories that the user has permission to view where groupId = ? and parentCategoryId = any ? and status = ?.
|
static int |
filterCountByG_P_S(long groupId,
long parentCategoryId,
int status)
Returns the number of message boards categories that the user has permission to view where groupId = ? and parentCategoryId = ? and status = ?.
|
static int |
filterCountByG_P(long groupId,
long parentCategoryId)
Returns the number of message boards categories that the user has permission to view where groupId = ? and parentCategoryId = ?.
|
static int |
filterCountByG_P(long groupId,
long[] parentCategoryIds)
Returns the number of message boards categories that the user has permission to view where groupId = ? and parentCategoryId = any ?.
|
static int |
filterCountByG_S(long groupId,
int status)
Returns the number of message boards categories that the user has permission to view where groupId = ? and status = ?.
|
static int |
filterCountByGroupId(long groupId)
Returns the number of message boards categories that the user has permission to view where groupId = ?.
|
static MBCategory[] |
filterFindByG_P_PrevAndNext(long categoryId,
long groupId,
long parentCategoryId,
OrderByComparator orderByComparator)
Returns the message boards categories before and after the current message boards category in the ordered set of message boards categories that the user has permission to view where groupId = ? and parentCategoryId = ?.
|
static MBCategory[] |
filterFindByG_P_S_PrevAndNext(long categoryId,
long groupId,
long parentCategoryId,
int status,
OrderByComparator orderByComparator)
Returns the message boards categories before and after the current message boards category in the ordered set of message boards categories that the user has permission to view where groupId = ? and parentCategoryId = ? and status = ?.
|
static java.util.List<MBCategory> |
filterFindByG_P_S(long groupId,
long[] parentCategoryIds,
int status)
Returns all the message boards categories that the user has permission to view where groupId = ? and parentCategoryId = any ? and status = ?.
|
static java.util.List<MBCategory> |
filterFindByG_P_S(long groupId,
long[] parentCategoryIds,
int status,
int start,
int end)
Returns a range of all the message boards categories that the user has permission to view where groupId = ? and parentCategoryId = any ? and status = ?.
|
static java.util.List<MBCategory> |
filterFindByG_P_S(long groupId,
long[] parentCategoryIds,
int status,
int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the message boards categories that the user has permission to view where groupId = ? and parentCategoryId = any ? and status = ?.
|
static java.util.List<MBCategory> |
filterFindByG_P_S(long groupId,
long parentCategoryId,
int status)
Returns all the message boards categories that the user has permission to view where groupId = ? and parentCategoryId = ? and status = ?.
|
static java.util.List<MBCategory> |
filterFindByG_P_S(long groupId,
long parentCategoryId,
int status,
int start,
int end)
Returns a range of all the message boards categories that the user has permission to view where groupId = ? and parentCategoryId = ? and status = ?.
|
static java.util.List<MBCategory> |
filterFindByG_P_S(long groupId,
long parentCategoryId,
int status,
int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the message boards categories that the user has permissions to view where groupId = ? and parentCategoryId = ? and status = ?.
|
static java.util.List<MBCategory> |
filterFindByG_P(long groupId,
long parentCategoryId)
Returns all the message boards categories that the user has permission to view where groupId = ? and parentCategoryId = ?.
|
static java.util.List<MBCategory> |
filterFindByG_P(long groupId,
long[] parentCategoryIds)
Returns all the message boards categories that the user has permission to view where groupId = ? and parentCategoryId = any ?.
|
static java.util.List<MBCategory> |
filterFindByG_P(long groupId,
long[] parentCategoryIds,
int start,
int end)
Returns a range of all the message boards categories that the user has permission to view where groupId = ? and parentCategoryId = any ?.
|
static java.util.List<MBCategory> |
filterFindByG_P(long groupId,
long[] parentCategoryIds,
int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the message boards categories that the user has permission to view where groupId = ? and parentCategoryId = any ?.
|
static java.util.List<MBCategory> |
filterFindByG_P(long groupId,
long parentCategoryId,
int start,
int end)
Returns a range of all the message boards categories that the user has permission to view where groupId = ? and parentCategoryId = ?.
|
static java.util.List<MBCategory> |
filterFindByG_P(long groupId,
long parentCategoryId,
int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the message boards categories that the user has permissions to view where groupId = ? and parentCategoryId = ?.
|
static MBCategory[] |
filterFindByG_S_PrevAndNext(long categoryId,
long groupId,
int status,
OrderByComparator orderByComparator)
Returns the message boards categories before and after the current message boards category in the ordered set of message boards categories that the user has permission to view where groupId = ? and status = ?.
|
static java.util.List<MBCategory> |
filterFindByG_S(long groupId,
int status)
Returns all the message boards categories that the user has permission to view where groupId = ? and status = ?.
|
static java.util.List<MBCategory> |
filterFindByG_S(long groupId,
int status,
int start,
int end)
Returns a range of all the message boards categories that the user has permission to view where groupId = ? and status = ?.
|
static java.util.List<MBCategory> |
filterFindByG_S(long groupId,
int status,
int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the message boards categories that the user has permissions to view where groupId = ? and status = ?.
|
static MBCategory[] |
filterFindByGroupId_PrevAndNext(long categoryId,
long groupId,
OrderByComparator orderByComparator)
Returns the message boards categories before and after the current message boards category in the ordered set of message boards categories that the user has permission to view where groupId = ?.
|
static java.util.List<MBCategory> |
filterFindByGroupId(long groupId)
Returns all the message boards categories that the user has permission to view where groupId = ?.
|
static java.util.List<MBCategory> |
filterFindByGroupId(long groupId,
int start,
int end)
Returns a range of all the message boards categories that the user has permission to view where groupId = ?.
|
static java.util.List<MBCategory> |
filterFindByGroupId(long groupId,
int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the message boards categories that the user has permissions to view where groupId = ?.
|
static java.util.List<MBCategory> |
findAll()
Returns all the message boards categories.
|
static java.util.List<MBCategory> |
findAll(int start,
int end)
Returns a range of all the message boards categories.
|
static java.util.List<MBCategory> |
findAll(int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the message boards categories.
|
static MBCategory |
findByC_S_First(long companyId,
int status,
OrderByComparator orderByComparator)
Returns the first message boards category in the ordered set where companyId = ? and status = ?.
|
static MBCategory |
findByC_S_Last(long companyId,
int status,
OrderByComparator orderByComparator)
Returns the last message boards category in the ordered set where companyId = ? and status = ?.
|
static MBCategory[] |
findByC_S_PrevAndNext(long categoryId,
long companyId,
int status,
OrderByComparator orderByComparator)
Returns the message boards categories before and after the current message boards category in the ordered set where companyId = ? and status = ?.
|
static java.util.List<MBCategory> |
findByC_S(long companyId,
int status)
Returns all the message boards categories where companyId = ? and status = ?.
|
static java.util.List<MBCategory> |
findByC_S(long companyId,
int status,
int start,
int end)
Returns a range of all the message boards categories where companyId = ? and status = ?.
|
static java.util.List<MBCategory> |
findByC_S(long companyId,
int status,
int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the message boards categories where companyId = ? and status = ?.
|
static MBCategory |
findByCompanyId_First(long companyId,
OrderByComparator orderByComparator)
Returns the first message boards category in the ordered set where companyId = ?.
|
static MBCategory |
findByCompanyId_Last(long companyId,
OrderByComparator orderByComparator)
Returns the last message boards category in the ordered set where companyId = ?.
|
static MBCategory[] |
findByCompanyId_PrevAndNext(long categoryId,
long companyId,
OrderByComparator orderByComparator)
Returns the message boards categories before and after the current message boards category in the ordered set where companyId = ?.
|
static java.util.List<MBCategory> |
findByCompanyId(long companyId)
Returns all the message boards categories where companyId = ?.
|
static java.util.List<MBCategory> |
findByCompanyId(long companyId,
int start,
int end)
Returns a range of all the message boards categories where companyId = ?.
|
static java.util.List<MBCategory> |
findByCompanyId(long companyId,
int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the message boards categories where companyId = ?.
|
static MBCategory |
findByG_P_First(long groupId,
long parentCategoryId,
OrderByComparator orderByComparator)
Returns the first message boards category in the ordered set where groupId = ? and parentCategoryId = ?.
|
static MBCategory |
findByG_P_Last(long groupId,
long parentCategoryId,
OrderByComparator orderByComparator)
Returns the last message boards category in the ordered set where groupId = ? and parentCategoryId = ?.
|
static MBCategory[] |
findByG_P_PrevAndNext(long categoryId,
long groupId,
long parentCategoryId,
OrderByComparator orderByComparator)
Returns the message boards categories before and after the current message boards category in the ordered set where groupId = ? and parentCategoryId = ?.
|
static MBCategory |
findByG_P_S_First(long groupId,
long parentCategoryId,
int status,
OrderByComparator orderByComparator)
Returns the first message boards category in the ordered set where groupId = ? and parentCategoryId = ? and status = ?.
|
static MBCategory |
findByG_P_S_Last(long groupId,
long parentCategoryId,
int status,
OrderByComparator orderByComparator)
Returns the last message boards category in the ordered set where groupId = ? and parentCategoryId = ? and status = ?.
|
static MBCategory[] |
findByG_P_S_PrevAndNext(long categoryId,
long groupId,
long parentCategoryId,
int status,
OrderByComparator orderByComparator)
Returns the message boards categories before and after the current message boards category in the ordered set where groupId = ? and parentCategoryId = ? and status = ?.
|
static java.util.List<MBCategory> |
findByG_P_S(long groupId,
long[] parentCategoryIds,
int status)
Returns all the message boards categories where groupId = ? and parentCategoryId = any ? and status = ?.
|
static java.util.List<MBCategory> |
findByG_P_S(long groupId,
long[] parentCategoryIds,
int status,
int start,
int end)
Returns a range of all the message boards categories where groupId = ? and parentCategoryId = any ? and status = ?.
|
static java.util.List<MBCategory> |
findByG_P_S(long groupId,
long[] parentCategoryIds,
int status,
int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the message boards categories where groupId = ? and parentCategoryId = any ? and status = ?.
|
static java.util.List<MBCategory> |
findByG_P_S(long groupId,
long parentCategoryId,
int status)
Returns all the message boards categories where groupId = ? and parentCategoryId = ? and status = ?.
|
static java.util.List<MBCategory> |
findByG_P_S(long groupId,
long parentCategoryId,
int status,
int start,
int end)
Returns a range of all the message boards categories where groupId = ? and parentCategoryId = ? and status = ?.
|
static java.util.List<MBCategory> |
findByG_P_S(long groupId,
long parentCategoryId,
int status,
int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the message boards categories where groupId = ? and parentCategoryId = ? and status = ?.
|
static java.util.List<MBCategory> |
findByG_P(long groupId,
long parentCategoryId)
Returns all the message boards categories where groupId = ? and parentCategoryId = ?.
|
static java.util.List<MBCategory> |
findByG_P(long groupId,
long[] parentCategoryIds)
Returns all the message boards categories where groupId = ? and parentCategoryId = any ?.
|
static java.util.List<MBCategory> |
findByG_P(long groupId,
long[] parentCategoryIds,
int start,
int end)
Returns a range of all the message boards categories where groupId = ? and parentCategoryId = any ?.
|
static java.util.List<MBCategory> |
findByG_P(long groupId,
long[] parentCategoryIds,
int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the message boards categories where groupId = ? and parentCategoryId = any ?.
|
static java.util.List<MBCategory> |
findByG_P(long groupId,
long parentCategoryId,
int start,
int end)
Returns a range of all the message boards categories where groupId = ? and parentCategoryId = ?.
|
static java.util.List<MBCategory> |
findByG_P(long groupId,
long parentCategoryId,
int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the message boards categories where groupId = ? and parentCategoryId = ?.
|
static MBCategory |
findByG_S_First(long groupId,
int status,
OrderByComparator orderByComparator)
Returns the first message boards category in the ordered set where groupId = ? and status = ?.
|
static MBCategory |
findByG_S_Last(long groupId,
int status,
OrderByComparator orderByComparator)
Returns the last message boards category in the ordered set where groupId = ? and status = ?.
|
static MBCategory[] |
findByG_S_PrevAndNext(long categoryId,
long groupId,
int status,
OrderByComparator orderByComparator)
Returns the message boards categories before and after the current message boards category in the ordered set where groupId = ? and status = ?.
|
static java.util.List<MBCategory> |
findByG_S(long groupId,
int status)
Returns all the message boards categories where groupId = ? and status = ?.
|
static java.util.List<MBCategory> |
findByG_S(long groupId,
int status,
int start,
int end)
Returns a range of all the message boards categories where groupId = ? and status = ?.
|
static java.util.List<MBCategory> |
findByG_S(long groupId,
int status,
int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the message boards categories where groupId = ? and status = ?.
|
static MBCategory |
findByGroupId_First(long groupId,
OrderByComparator orderByComparator)
Returns the first message boards category in the ordered set where groupId = ?.
|
static MBCategory |
findByGroupId_Last(long groupId,
OrderByComparator orderByComparator)
Returns the last message boards category in the ordered set where groupId = ?.
|
static MBCategory[] |
findByGroupId_PrevAndNext(long categoryId,
long groupId,
OrderByComparator orderByComparator)
Returns the message boards categories before and after the current message boards category in the ordered set where groupId = ?.
|
static java.util.List<MBCategory> |
findByGroupId(long groupId)
Returns all the message boards categories where groupId = ?.
|
static java.util.List<MBCategory> |
findByGroupId(long groupId,
int start,
int end)
Returns a range of all the message boards categories where groupId = ?.
|
static java.util.List<MBCategory> |
findByGroupId(long groupId,
int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the message boards categories where groupId = ?.
|
static MBCategory |
findByPrimaryKey(long categoryId)
Returns the message boards category with the primary key or throws a
NoSuchCategoryException if it could not be found. |
static MBCategory |
findByUuid_C_First(java.lang.String uuid,
long companyId,
OrderByComparator orderByComparator)
Returns the first message boards category in the ordered set where uuid = ? and companyId = ?.
|
static MBCategory |
findByUuid_C_Last(java.lang.String uuid,
long companyId,
OrderByComparator orderByComparator)
Returns the last message boards category in the ordered set where uuid = ? and companyId = ?.
|
static MBCategory[] |
findByUuid_C_PrevAndNext(long categoryId,
java.lang.String uuid,
long companyId,
OrderByComparator orderByComparator)
Returns the message boards categories before and after the current message boards category in the ordered set where uuid = ? and companyId = ?.
|
static java.util.List<MBCategory> |
findByUuid_C(java.lang.String uuid,
long companyId)
Returns all the message boards categories where uuid = ? and companyId = ?.
|
static java.util.List<MBCategory> |
findByUuid_C(java.lang.String uuid,
long companyId,
int start,
int end)
Returns a range of all the message boards categories where uuid = ? and companyId = ?.
|
static java.util.List<MBCategory> |
findByUuid_C(java.lang.String uuid,
long companyId,
int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the message boards categories where uuid = ? and companyId = ?.
|
static MBCategory |
findByUuid_First(java.lang.String uuid,
OrderByComparator orderByComparator)
Returns the first message boards category in the ordered set where uuid = ?.
|
static MBCategory |
findByUUID_G(java.lang.String uuid,
long groupId)
Returns the message boards category where uuid = ? and groupId = ? or throws a
NoSuchCategoryException if it could not be found. |
static MBCategory |
findByUuid_Last(java.lang.String uuid,
OrderByComparator orderByComparator)
Returns the last message boards category in the ordered set where uuid = ?.
|
static MBCategory[] |
findByUuid_PrevAndNext(long categoryId,
java.lang.String uuid,
OrderByComparator orderByComparator)
Returns the message boards categories before and after the current message boards category in the ordered set where uuid = ?.
|
static java.util.List<MBCategory> |
findByUuid(java.lang.String uuid)
Returns all the message boards categories where uuid = ?.
|
static java.util.List<MBCategory> |
findByUuid(java.lang.String uuid,
int start,
int end)
Returns a range of all the message boards categories where uuid = ?.
|
static java.util.List<MBCategory> |
findByUuid(java.lang.String uuid,
int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the message boards categories where uuid = ?.
|
static java.util.List<MBCategory> |
findWithDynamicQuery(DynamicQuery dynamicQuery) |
static java.util.List<MBCategory> |
findWithDynamicQuery(DynamicQuery dynamicQuery,
int start,
int end) |
static java.util.List<MBCategory> |
findWithDynamicQuery(DynamicQuery dynamicQuery,
int start,
int end,
OrderByComparator orderByComparator) |
static MBCategoryPersistence |
getPersistence() |
static MBCategory |
remove(long categoryId)
Removes the message boards category with the primary key from the database.
|
static void |
removeAll()
Removes all the message boards categories from the database.
|
static void |
removeByC_S(long companyId,
int status)
Removes all the message boards categories where companyId = ? and status = ? from the database.
|
static void |
removeByCompanyId(long companyId)
Removes all the message boards categories where companyId = ? from the database.
|
static void |
removeByG_P_S(long groupId,
long parentCategoryId,
int status)
Removes all the message boards categories where groupId = ? and parentCategoryId = ? and status = ? from the database.
|
static void |
removeByG_P(long groupId,
long parentCategoryId)
Removes all the message boards categories where groupId = ? and parentCategoryId = ? from the database.
|
static void |
removeByG_S(long groupId,
int status)
Removes all the message boards categories where groupId = ? and status = ? from the database.
|
static void |
removeByGroupId(long groupId)
Removes all the message boards categories where groupId = ? from the database.
|
static void |
removeByUuid_C(java.lang.String uuid,
long companyId)
Removes all the message boards categories where uuid = ? and companyId = ? from the database.
|
static MBCategory |
removeByUUID_G(java.lang.String uuid,
long groupId)
Removes the message boards category where uuid = ? and groupId = ? from the database.
|
static void |
removeByUuid(java.lang.String uuid)
Removes all the message boards categories where uuid = ? from the database.
|
void |
setPersistence(MBCategoryPersistence persistence)
Deprecated.
As of 6.2.0
|
static MBCategory |
update(MBCategory mbCategory) |
static MBCategory |
update(MBCategory mbCategory,
ServiceContext serviceContext) |
static MBCategory |
updateImpl(MBCategory mbCategory) |
public static void clearCache()
BasePersistence.clearCache()public static void clearCache(MBCategory mbCategory)
public static long countWithDynamicQuery(DynamicQuery dynamicQuery) throws SystemException
SystemExceptionBasePersistence.countWithDynamicQuery(DynamicQuery)public static java.util.List<MBCategory> findWithDynamicQuery(DynamicQuery dynamicQuery) throws SystemException
SystemExceptionBasePersistence.findWithDynamicQuery(DynamicQuery)public static java.util.List<MBCategory> findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end) throws SystemException
public static java.util.List<MBCategory> findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end, OrderByComparator orderByComparator) throws SystemException
public static MBCategory update(MBCategory mbCategory) throws SystemException
public static MBCategory update(MBCategory mbCategory, ServiceContext serviceContext) throws SystemException
public static java.util.List<MBCategory> findByUuid(java.lang.String uuid) throws SystemException
uuid - the uuidSystemException - if a system exception occurredpublic static java.util.List<MBCategory> findByUuid(java.lang.String uuid, 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 MBCategoryModelImpl. 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.
uuid - the uuidstart - the lower bound of the range of message boards categoriesend - the upper bound of the range of message boards categories (not inclusive)SystemException - if a system exception occurredpublic static java.util.List<MBCategory> findByUuid(java.lang.String uuid, 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 MBCategoryModelImpl. 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.
uuid - the uuidstart - the lower bound of the range of message boards categoriesend - the upper bound of the range of message boards categories (not inclusive)orderByComparator - the comparator to order the results by (optionally null)SystemException - if a system exception occurredpublic static MBCategory findByUuid_First(java.lang.String uuid, OrderByComparator orderByComparator) throws SystemException, NoSuchCategoryException
uuid - the uuidorderByComparator - the comparator to order the set by (optionally null)NoSuchCategoryException - if a matching message boards category could not be foundSystemException - if a system exception occurredpublic static MBCategory fetchByUuid_First(java.lang.String uuid, OrderByComparator orderByComparator) throws SystemException
uuid - the uuidorderByComparator - the comparator to order the set by (optionally null)null if a matching message boards category could not be foundSystemException - if a system exception occurredpublic static MBCategory findByUuid_Last(java.lang.String uuid, OrderByComparator orderByComparator) throws SystemException, NoSuchCategoryException
uuid - the uuidorderByComparator - the comparator to order the set by (optionally null)NoSuchCategoryException - if a matching message boards category could not be foundSystemException - if a system exception occurredpublic static MBCategory fetchByUuid_Last(java.lang.String uuid, OrderByComparator orderByComparator) throws SystemException
uuid - the uuidorderByComparator - the comparator to order the set by (optionally null)null if a matching message boards category could not be foundSystemException - if a system exception occurredpublic static MBCategory[] findByUuid_PrevAndNext(long categoryId, java.lang.String uuid, OrderByComparator orderByComparator) throws SystemException, NoSuchCategoryException
categoryId - the primary key of the current message boards categoryuuid - the uuidorderByComparator - the comparator to order the set by (optionally null)NoSuchCategoryException - if a message boards category with the primary key could not be foundSystemException - if a system exception occurredpublic static void removeByUuid(java.lang.String uuid)
throws SystemException
uuid - the uuidSystemException - if a system exception occurredpublic static int countByUuid(java.lang.String uuid)
throws SystemException
uuid - the uuidSystemException - if a system exception occurredpublic static MBCategory findByUUID_G(java.lang.String uuid, long groupId) throws SystemException, NoSuchCategoryException
NoSuchCategoryException if it could not be found.uuid - the uuidgroupId - the group IDNoSuchCategoryException - if a matching message boards category could not be foundSystemException - if a system exception occurredpublic static MBCategory fetchByUUID_G(java.lang.String uuid, long groupId) throws SystemException
null if it could not be found. Uses the finder cache.uuid - the uuidgroupId - the group IDnull if a matching message boards category could not be foundSystemException - if a system exception occurredpublic static MBCategory fetchByUUID_G(java.lang.String uuid, long groupId, boolean retrieveFromCache) throws SystemException
null if it could not be found, optionally using the finder cache.uuid - the uuidgroupId - the group IDretrieveFromCache - whether to use the finder cachenull if a matching message boards category could not be foundSystemException - if a system exception occurredpublic static MBCategory removeByUUID_G(java.lang.String uuid, long groupId) throws SystemException, NoSuchCategoryException
uuid - the uuidgroupId - the group IDSystemException - if a system exception occurredNoSuchCategoryExceptionpublic static int countByUUID_G(java.lang.String uuid,
long groupId)
throws SystemException
uuid - the uuidgroupId - the group IDSystemException - if a system exception occurredpublic static java.util.List<MBCategory> findByUuid_C(java.lang.String uuid, long companyId) throws SystemException
uuid - the uuidcompanyId - the company IDSystemException - if a system exception occurredpublic static java.util.List<MBCategory> findByUuid_C(java.lang.String uuid, long companyId, 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 MBCategoryModelImpl. 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.
uuid - the uuidcompanyId - the company IDstart - the lower bound of the range of message boards categoriesend - the upper bound of the range of message boards categories (not inclusive)SystemException - if a system exception occurredpublic static java.util.List<MBCategory> findByUuid_C(java.lang.String uuid, long companyId, 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 MBCategoryModelImpl. 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.
uuid - the uuidcompanyId - the company IDstart - the lower bound of the range of message boards categoriesend - the upper bound of the range of message boards categories (not inclusive)orderByComparator - the comparator to order the results by (optionally null)SystemException - if a system exception occurredpublic static MBCategory findByUuid_C_First(java.lang.String uuid, long companyId, OrderByComparator orderByComparator) throws SystemException, NoSuchCategoryException
uuid - the uuidcompanyId - the company IDorderByComparator - the comparator to order the set by (optionally null)NoSuchCategoryException - if a matching message boards category could not be foundSystemException - if a system exception occurredpublic static MBCategory fetchByUuid_C_First(java.lang.String uuid, long companyId, OrderByComparator orderByComparator) throws SystemException
uuid - the uuidcompanyId - the company IDorderByComparator - the comparator to order the set by (optionally null)null if a matching message boards category could not be foundSystemException - if a system exception occurredpublic static MBCategory findByUuid_C_Last(java.lang.String uuid, long companyId, OrderByComparator orderByComparator) throws SystemException, NoSuchCategoryException
uuid - the uuidcompanyId - the company IDorderByComparator - the comparator to order the set by (optionally null)NoSuchCategoryException - if a matching message boards category could not be foundSystemException - if a system exception occurredpublic static MBCategory fetchByUuid_C_Last(java.lang.String uuid, long companyId, OrderByComparator orderByComparator) throws SystemException
uuid - the uuidcompanyId - the company IDorderByComparator - the comparator to order the set by (optionally null)null if a matching message boards category could not be foundSystemException - if a system exception occurredpublic static MBCategory[] findByUuid_C_PrevAndNext(long categoryId, java.lang.String uuid, long companyId, OrderByComparator orderByComparator) throws SystemException, NoSuchCategoryException
categoryId - the primary key of the current message boards categoryuuid - the uuidcompanyId - the company IDorderByComparator - the comparator to order the set by (optionally null)NoSuchCategoryException - if a message boards category with the primary key could not be foundSystemException - if a system exception occurredpublic static void removeByUuid_C(java.lang.String uuid,
long companyId)
throws SystemException
uuid - the uuidcompanyId - the company IDSystemException - if a system exception occurredpublic static int countByUuid_C(java.lang.String uuid,
long companyId)
throws SystemException
uuid - the uuidcompanyId - the company IDSystemException - if a system exception occurredpublic static java.util.List<MBCategory> findByGroupId(long groupId) throws SystemException
groupId - the group IDSystemException - if a system exception occurredpublic static java.util.List<MBCategory> findByGroupId(long groupId, 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 MBCategoryModelImpl. 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.
groupId - the group IDstart - the lower bound of the range of message boards categoriesend - the upper bound of the range of message boards categories (not inclusive)SystemException - if a system exception occurredpublic static java.util.List<MBCategory> findByGroupId(long groupId, 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 MBCategoryModelImpl. 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.
groupId - the group IDstart - the lower bound of the range of message boards categoriesend - the upper bound of the range of message boards categories (not inclusive)orderByComparator - the comparator to order the results by (optionally null)SystemException - if a system exception occurredpublic static MBCategory findByGroupId_First(long groupId, OrderByComparator orderByComparator) throws SystemException, NoSuchCategoryException
groupId - the group IDorderByComparator - the comparator to order the set by (optionally null)NoSuchCategoryException - if a matching message boards category could not be foundSystemException - if a system exception occurredpublic static MBCategory fetchByGroupId_First(long groupId, OrderByComparator orderByComparator) throws SystemException
groupId - the group IDorderByComparator - the comparator to order the set by (optionally null)null if a matching message boards category could not be foundSystemException - if a system exception occurredpublic static MBCategory findByGroupId_Last(long groupId, OrderByComparator orderByComparator) throws SystemException, NoSuchCategoryException
groupId - the group IDorderByComparator - the comparator to order the set by (optionally null)NoSuchCategoryException - if a matching message boards category could not be foundSystemException - if a system exception occurredpublic static MBCategory fetchByGroupId_Last(long groupId, OrderByComparator orderByComparator) throws SystemException
groupId - the group IDorderByComparator - the comparator to order the set by (optionally null)null if a matching message boards category could not be foundSystemException - if a system exception occurredpublic static MBCategory[] findByGroupId_PrevAndNext(long categoryId, long groupId, OrderByComparator orderByComparator) throws SystemException, NoSuchCategoryException
categoryId - the primary key of the current message boards categorygroupId - the group IDorderByComparator - the comparator to order the set by (optionally null)NoSuchCategoryException - if a message boards category with the primary key could not be foundSystemException - if a system exception occurredpublic static java.util.List<MBCategory> filterFindByGroupId(long groupId) throws SystemException
groupId - the group IDSystemException - if a system exception occurredpublic static java.util.List<MBCategory> filterFindByGroupId(long groupId, 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 MBCategoryModelImpl. 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.
groupId - the group IDstart - the lower bound of the range of message boards categoriesend - the upper bound of the range of message boards categories (not inclusive)SystemException - if a system exception occurredpublic static java.util.List<MBCategory> filterFindByGroupId(long groupId, 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 MBCategoryModelImpl. 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.
groupId - the group IDstart - the lower bound of the range of message boards categoriesend - the upper bound of the range of message boards categories (not inclusive)orderByComparator - the comparator to order the results by (optionally null)SystemException - if a system exception occurredpublic static MBCategory[] filterFindByGroupId_PrevAndNext(long categoryId, long groupId, OrderByComparator orderByComparator) throws SystemException, NoSuchCategoryException
categoryId - the primary key of the current message boards categorygroupId - the group IDorderByComparator - the comparator to order the set by (optionally null)NoSuchCategoryException - if a message boards category with the primary key could not be foundSystemException - if a system exception occurredpublic static void removeByGroupId(long groupId)
throws SystemException
groupId - the group IDSystemException - if a system exception occurredpublic static int countByGroupId(long groupId)
throws SystemException
groupId - the group IDSystemException - if a system exception occurredpublic static int filterCountByGroupId(long groupId)
throws SystemException
groupId - the group IDSystemException - if a system exception occurredpublic static java.util.List<MBCategory> findByCompanyId(long companyId) throws SystemException
companyId - the company IDSystemException - if a system exception occurredpublic static java.util.List<MBCategory> findByCompanyId(long companyId, 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 MBCategoryModelImpl. 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.
companyId - the company IDstart - the lower bound of the range of message boards categoriesend - the upper bound of the range of message boards categories (not inclusive)SystemException - if a system exception occurredpublic static java.util.List<MBCategory> findByCompanyId(long companyId, 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 MBCategoryModelImpl. 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.
companyId - the company IDstart - the lower bound of the range of message boards categoriesend - the upper bound of the range of message boards categories (not inclusive)orderByComparator - the comparator to order the results by (optionally null)SystemException - if a system exception occurredpublic static MBCategory findByCompanyId_First(long companyId, OrderByComparator orderByComparator) throws SystemException, NoSuchCategoryException
companyId - the company IDorderByComparator - the comparator to order the set by (optionally null)NoSuchCategoryException - if a matching message boards category could not be foundSystemException - if a system exception occurredpublic static MBCategory fetchByCompanyId_First(long companyId, OrderByComparator orderByComparator) throws SystemException
companyId - the company IDorderByComparator - the comparator to order the set by (optionally null)null if a matching message boards category could not be foundSystemException - if a system exception occurredpublic static MBCategory findByCompanyId_Last(long companyId, OrderByComparator orderByComparator) throws SystemException, NoSuchCategoryException
companyId - the company IDorderByComparator - the comparator to order the set by (optionally null)NoSuchCategoryException - if a matching message boards category could not be foundSystemException - if a system exception occurredpublic static MBCategory fetchByCompanyId_Last(long companyId, OrderByComparator orderByComparator) throws SystemException
companyId - the company IDorderByComparator - the comparator to order the set by (optionally null)null if a matching message boards category could not be foundSystemException - if a system exception occurredpublic static MBCategory[] findByCompanyId_PrevAndNext(long categoryId, long companyId, OrderByComparator orderByComparator) throws SystemException, NoSuchCategoryException
categoryId - the primary key of the current message boards categorycompanyId - the company IDorderByComparator - the comparator to order the set by (optionally null)NoSuchCategoryException - if a message boards category with the primary key could not be foundSystemException - if a system exception occurredpublic static void removeByCompanyId(long companyId)
throws SystemException
companyId - the company IDSystemException - if a system exception occurredpublic static int countByCompanyId(long companyId)
throws SystemException
companyId - the company IDSystemException - if a system exception occurredpublic static java.util.List<MBCategory> findByG_P(long groupId, long parentCategoryId) throws SystemException
groupId - the group IDparentCategoryId - the parent category IDSystemException - if a system exception occurredpublic static java.util.List<MBCategory> findByG_P(long groupId, long parentCategoryId, 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 MBCategoryModelImpl. 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.
groupId - the group IDparentCategoryId - the parent category IDstart - the lower bound of the range of message boards categoriesend - the upper bound of the range of message boards categories (not inclusive)SystemException - if a system exception occurredpublic static java.util.List<MBCategory> findByG_P(long groupId, long parentCategoryId, 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 MBCategoryModelImpl. 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.
groupId - the group IDparentCategoryId - the parent category IDstart - the lower bound of the range of message boards categoriesend - the upper bound of the range of message boards categories (not inclusive)orderByComparator - the comparator to order the results by (optionally null)SystemException - if a system exception occurredpublic static MBCategory findByG_P_First(long groupId, long parentCategoryId, OrderByComparator orderByComparator) throws SystemException, NoSuchCategoryException
groupId - the group IDparentCategoryId - the parent category IDorderByComparator - the comparator to order the set by (optionally null)NoSuchCategoryException - if a matching message boards category could not be foundSystemException - if a system exception occurredpublic static MBCategory fetchByG_P_First(long groupId, long parentCategoryId, OrderByComparator orderByComparator) throws SystemException
groupId - the group IDparentCategoryId - the parent category IDorderByComparator - the comparator to order the set by (optionally null)null if a matching message boards category could not be foundSystemException - if a system exception occurredpublic static MBCategory findByG_P_Last(long groupId, long parentCategoryId, OrderByComparator orderByComparator) throws SystemException, NoSuchCategoryException
groupId - the group IDparentCategoryId - the parent category IDorderByComparator - the comparator to order the set by (optionally null)NoSuchCategoryException - if a matching message boards category could not be foundSystemException - if a system exception occurredpublic static MBCategory fetchByG_P_Last(long groupId, long parentCategoryId, OrderByComparator orderByComparator) throws SystemException
groupId - the group IDparentCategoryId - the parent category IDorderByComparator - the comparator to order the set by (optionally null)null if a matching message boards category could not be foundSystemException - if a system exception occurredpublic static MBCategory[] findByG_P_PrevAndNext(long categoryId, long groupId, long parentCategoryId, OrderByComparator orderByComparator) throws SystemException, NoSuchCategoryException
categoryId - the primary key of the current message boards categorygroupId - the group IDparentCategoryId - the parent category IDorderByComparator - the comparator to order the set by (optionally null)NoSuchCategoryException - if a message boards category with the primary key could not be foundSystemException - if a system exception occurredpublic static java.util.List<MBCategory> filterFindByG_P(long groupId, long parentCategoryId) throws SystemException
groupId - the group IDparentCategoryId - the parent category IDSystemException - if a system exception occurredpublic static java.util.List<MBCategory> filterFindByG_P(long groupId, long parentCategoryId, 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 MBCategoryModelImpl. 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.
groupId - the group IDparentCategoryId - the parent category IDstart - the lower bound of the range of message boards categoriesend - the upper bound of the range of message boards categories (not inclusive)SystemException - if a system exception occurredpublic static java.util.List<MBCategory> filterFindByG_P(long groupId, long parentCategoryId, 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 MBCategoryModelImpl. 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.
groupId - the group IDparentCategoryId - the parent category IDstart - the lower bound of the range of message boards categoriesend - the upper bound of the range of message boards categories (not inclusive)orderByComparator - the comparator to order the results by (optionally null)SystemException - if a system exception occurredpublic static MBCategory[] filterFindByG_P_PrevAndNext(long categoryId, long groupId, long parentCategoryId, OrderByComparator orderByComparator) throws SystemException, NoSuchCategoryException
categoryId - the primary key of the current message boards categorygroupId - the group IDparentCategoryId - the parent category IDorderByComparator - the comparator to order the set by (optionally null)NoSuchCategoryException - if a message boards category with the primary key could not be foundSystemException - if a system exception occurredpublic static java.util.List<MBCategory> filterFindByG_P(long groupId, long[] parentCategoryIds) throws SystemException
groupId - the group IDparentCategoryIds - the parent category IDsSystemException - if a system exception occurredpublic static java.util.List<MBCategory> filterFindByG_P(long groupId, long[] parentCategoryIds, 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 MBCategoryModelImpl. 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.
groupId - the group IDparentCategoryIds - the parent category IDsstart - the lower bound of the range of message boards categoriesend - the upper bound of the range of message boards categories (not inclusive)SystemException - if a system exception occurredpublic static java.util.List<MBCategory> filterFindByG_P(long groupId, long[] parentCategoryIds, 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 MBCategoryModelImpl. 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.
groupId - the group IDparentCategoryIds - the parent category IDsstart - the lower bound of the range of message boards categoriesend - the upper bound of the range of message boards categories (not inclusive)orderByComparator - the comparator to order the results by (optionally null)SystemException - if a system exception occurredpublic static java.util.List<MBCategory> findByG_P(long groupId, long[] parentCategoryIds) 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 MBCategoryModelImpl. 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.
groupId - the group IDparentCategoryIds - the parent category IDsSystemException - if a system exception occurredpublic static java.util.List<MBCategory> findByG_P(long groupId, long[] parentCategoryIds, 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 MBCategoryModelImpl. 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.
groupId - the group IDparentCategoryIds - the parent category IDsstart - the lower bound of the range of message boards categoriesend - the upper bound of the range of message boards categories (not inclusive)SystemException - if a system exception occurredpublic static java.util.List<MBCategory> findByG_P(long groupId, long[] parentCategoryIds, 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 MBCategoryModelImpl. 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.
groupId - the group IDparentCategoryIds - the parent category IDsstart - the lower bound of the range of message boards categoriesend - the upper bound of the range of message boards categories (not inclusive)orderByComparator - the comparator to order the results by (optionally null)SystemException - if a system exception occurredpublic static void removeByG_P(long groupId,
long parentCategoryId)
throws SystemException
groupId - the group IDparentCategoryId - the parent category IDSystemException - if a system exception occurredpublic static int countByG_P(long groupId,
long parentCategoryId)
throws SystemException
groupId - the group IDparentCategoryId - the parent category IDSystemException - if a system exception occurredpublic static int countByG_P(long groupId,
long[] parentCategoryIds)
throws SystemException
groupId - the group IDparentCategoryIds - the parent category IDsSystemException - if a system exception occurredpublic static int filterCountByG_P(long groupId,
long parentCategoryId)
throws SystemException
groupId - the group IDparentCategoryId - the parent category IDSystemException - if a system exception occurredpublic static int filterCountByG_P(long groupId,
long[] parentCategoryIds)
throws SystemException
groupId - the group IDparentCategoryIds - the parent category IDsSystemException - if a system exception occurredpublic static java.util.List<MBCategory> findByG_S(long groupId, int status) throws SystemException
groupId - the group IDstatus - the statusSystemException - if a system exception occurredpublic static java.util.List<MBCategory> findByG_S(long groupId, int status, 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 MBCategoryModelImpl. 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.
groupId - the group IDstatus - the statusstart - the lower bound of the range of message boards categoriesend - the upper bound of the range of message boards categories (not inclusive)SystemException - if a system exception occurredpublic static java.util.List<MBCategory> findByG_S(long groupId, int status, 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 MBCategoryModelImpl. 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.
groupId - the group IDstatus - the statusstart - the lower bound of the range of message boards categoriesend - the upper bound of the range of message boards categories (not inclusive)orderByComparator - the comparator to order the results by (optionally null)SystemException - if a system exception occurredpublic static MBCategory findByG_S_First(long groupId, int status, OrderByComparator orderByComparator) throws SystemException, NoSuchCategoryException
groupId - the group IDstatus - the statusorderByComparator - the comparator to order the set by (optionally null)NoSuchCategoryException - if a matching message boards category could not be foundSystemException - if a system exception occurredpublic static MBCategory fetchByG_S_First(long groupId, int status, OrderByComparator orderByComparator) throws SystemException
groupId - the group IDstatus - the statusorderByComparator - the comparator to order the set by (optionally null)null if a matching message boards category could not be foundSystemException - if a system exception occurredpublic static MBCategory findByG_S_Last(long groupId, int status, OrderByComparator orderByComparator) throws SystemException, NoSuchCategoryException
groupId - the group IDstatus - the statusorderByComparator - the comparator to order the set by (optionally null)NoSuchCategoryException - if a matching message boards category could not be foundSystemException - if a system exception occurredpublic static MBCategory fetchByG_S_Last(long groupId, int status, OrderByComparator orderByComparator) throws SystemException
groupId - the group IDstatus - the statusorderByComparator - the comparator to order the set by (optionally null)null if a matching message boards category could not be foundSystemException - if a system exception occurredpublic static MBCategory[] findByG_S_PrevAndNext(long categoryId, long groupId, int status, OrderByComparator orderByComparator) throws SystemException, NoSuchCategoryException
categoryId - the primary key of the current message boards categorygroupId - the group IDstatus - the statusorderByComparator - the comparator to order the set by (optionally null)NoSuchCategoryException - if a message boards category with the primary key could not be foundSystemException - if a system exception occurredpublic static java.util.List<MBCategory> filterFindByG_S(long groupId, int status) throws SystemException
groupId - the group IDstatus - the statusSystemException - if a system exception occurredpublic static java.util.List<MBCategory> filterFindByG_S(long groupId, int status, 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 MBCategoryModelImpl. 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.
groupId - the group IDstatus - the statusstart - the lower bound of the range of message boards categoriesend - the upper bound of the range of message boards categories (not inclusive)SystemException - if a system exception occurredpublic static java.util.List<MBCategory> filterFindByG_S(long groupId, int status, 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 MBCategoryModelImpl. 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.
groupId - the group IDstatus - the statusstart - the lower bound of the range of message boards categoriesend - the upper bound of the range of message boards categories (not inclusive)orderByComparator - the comparator to order the results by (optionally null)SystemException - if a system exception occurredpublic static MBCategory[] filterFindByG_S_PrevAndNext(long categoryId, long groupId, int status, OrderByComparator orderByComparator) throws SystemException, NoSuchCategoryException
categoryId - the primary key of the current message boards categorygroupId - the group IDstatus - the statusorderByComparator - the comparator to order the set by (optionally null)NoSuchCategoryException - if a message boards category with the primary key could not be foundSystemException - if a system exception occurredpublic static void removeByG_S(long groupId,
int status)
throws SystemException
groupId - the group IDstatus - the statusSystemException - if a system exception occurredpublic static int countByG_S(long groupId,
int status)
throws SystemException
groupId - the group IDstatus - the statusSystemException - if a system exception occurredpublic static int filterCountByG_S(long groupId,
int status)
throws SystemException
groupId - the group IDstatus - the statusSystemException - if a system exception occurredpublic static java.util.List<MBCategory> findByC_S(long companyId, int status) throws SystemException
companyId - the company IDstatus - the statusSystemException - if a system exception occurredpublic static java.util.List<MBCategory> findByC_S(long companyId, int status, 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 MBCategoryModelImpl. 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.
companyId - the company IDstatus - the statusstart - the lower bound of the range of message boards categoriesend - the upper bound of the range of message boards categories (not inclusive)SystemException - if a system exception occurredpublic static java.util.List<MBCategory> findByC_S(long companyId, int status, 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 MBCategoryModelImpl. 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.
companyId - the company IDstatus - the statusstart - the lower bound of the range of message boards categoriesend - the upper bound of the range of message boards categories (not inclusive)orderByComparator - the comparator to order the results by (optionally null)SystemException - if a system exception occurredpublic static MBCategory findByC_S_First(long companyId, int status, OrderByComparator orderByComparator) throws SystemException, NoSuchCategoryException
companyId - the company IDstatus - the statusorderByComparator - the comparator to order the set by (optionally null)NoSuchCategoryException - if a matching message boards category could not be foundSystemException - if a system exception occurredpublic static MBCategory fetchByC_S_First(long companyId, int status, OrderByComparator orderByComparator) throws SystemException
companyId - the company IDstatus - the statusorderByComparator - the comparator to order the set by (optionally null)null if a matching message boards category could not be foundSystemException - if a system exception occurredpublic static MBCategory findByC_S_Last(long companyId, int status, OrderByComparator orderByComparator) throws SystemException, NoSuchCategoryException
companyId - the company IDstatus - the statusorderByComparator - the comparator to order the set by (optionally null)NoSuchCategoryException - if a matching message boards category could not be foundSystemException - if a system exception occurredpublic static MBCategory fetchByC_S_Last(long companyId, int status, OrderByComparator orderByComparator) throws SystemException
companyId - the company IDstatus - the statusorderByComparator - the comparator to order the set by (optionally null)null if a matching message boards category could not be foundSystemException - if a system exception occurredpublic static MBCategory[] findByC_S_PrevAndNext(long categoryId, long companyId, int status, OrderByComparator orderByComparator) throws SystemException, NoSuchCategoryException
categoryId - the primary key of the current message boards categorycompanyId - the company IDstatus - the statusorderByComparator - the comparator to order the set by (optionally null)NoSuchCategoryException - if a message boards category with the primary key could not be foundSystemException - if a system exception occurredpublic static void removeByC_S(long companyId,
int status)
throws SystemException
companyId - the company IDstatus - the statusSystemException - if a system exception occurredpublic static int countByC_S(long companyId,
int status)
throws SystemException
companyId - the company IDstatus - the statusSystemException - if a system exception occurredpublic static java.util.List<MBCategory> findByG_P_S(long groupId, long parentCategoryId, int status) throws SystemException
groupId - the group IDparentCategoryId - the parent category IDstatus - the statusSystemException - if a system exception occurredpublic static java.util.List<MBCategory> findByG_P_S(long groupId, long parentCategoryId, int status, 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 MBCategoryModelImpl. 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.
groupId - the group IDparentCategoryId - the parent category IDstatus - the statusstart - the lower bound of the range of message boards categoriesend - the upper bound of the range of message boards categories (not inclusive)SystemException - if a system exception occurredpublic static java.util.List<MBCategory> findByG_P_S(long groupId, long parentCategoryId, int status, 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 MBCategoryModelImpl. 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.
groupId - the group IDparentCategoryId - the parent category IDstatus - the statusstart - the lower bound of the range of message boards categoriesend - the upper bound of the range of message boards categories (not inclusive)orderByComparator - the comparator to order the results by (optionally null)SystemException - if a system exception occurredpublic static MBCategory findByG_P_S_First(long groupId, long parentCategoryId, int status, OrderByComparator orderByComparator) throws SystemException, NoSuchCategoryException
groupId - the group IDparentCategoryId - the parent category IDstatus - the statusorderByComparator - the comparator to order the set by (optionally null)NoSuchCategoryException - if a matching message boards category could not be foundSystemException - if a system exception occurredpublic static MBCategory fetchByG_P_S_First(long groupId, long parentCategoryId, int status, OrderByComparator orderByComparator) throws SystemException
groupId - the group IDparentCategoryId - the parent category IDstatus - the statusorderByComparator - the comparator to order the set by (optionally null)null if a matching message boards category could not be foundSystemException - if a system exception occurredpublic static MBCategory findByG_P_S_Last(long groupId, long parentCategoryId, int status, OrderByComparator orderByComparator) throws SystemException, NoSuchCategoryException
groupId - the group IDparentCategoryId - the parent category IDstatus - the statusorderByComparator - the comparator to order the set by (optionally null)NoSuchCategoryException - if a matching message boards category could not be foundSystemException - if a system exception occurredpublic static MBCategory fetchByG_P_S_Last(long groupId, long parentCategoryId, int status, OrderByComparator orderByComparator) throws SystemException
groupId - the group IDparentCategoryId - the parent category IDstatus - the statusorderByComparator - the comparator to order the set by (optionally null)null if a matching message boards category could not be foundSystemException - if a system exception occurredpublic static MBCategory[] findByG_P_S_PrevAndNext(long categoryId, long groupId, long parentCategoryId, int status, OrderByComparator orderByComparator) throws SystemException, NoSuchCategoryException
categoryId - the primary key of the current message boards categorygroupId - the group IDparentCategoryId - the parent category IDstatus - the statusorderByComparator - the comparator to order the set by (optionally null)NoSuchCategoryException - if a message boards category with the primary key could not be foundSystemException - if a system exception occurredpublic static java.util.List<MBCategory> filterFindByG_P_S(long groupId, long parentCategoryId, int status) throws SystemException
groupId - the group IDparentCategoryId - the parent category IDstatus - the statusSystemException - if a system exception occurredpublic static java.util.List<MBCategory> filterFindByG_P_S(long groupId, long parentCategoryId, int status, 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 MBCategoryModelImpl. 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.
groupId - the group IDparentCategoryId - the parent category IDstatus - the statusstart - the lower bound of the range of message boards categoriesend - the upper bound of the range of message boards categories (not inclusive)SystemException - if a system exception occurredpublic static java.util.List<MBCategory> filterFindByG_P_S(long groupId, long parentCategoryId, int status, 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 MBCategoryModelImpl. 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.
groupId - the group IDparentCategoryId - the parent category IDstatus - the statusstart - the lower bound of the range of message boards categoriesend - the upper bound of the range of message boards categories (not inclusive)orderByComparator - the comparator to order the results by (optionally null)SystemException - if a system exception occurredpublic static MBCategory[] filterFindByG_P_S_PrevAndNext(long categoryId, long groupId, long parentCategoryId, int status, OrderByComparator orderByComparator) throws SystemException, NoSuchCategoryException
categoryId - the primary key of the current message boards categorygroupId - the group IDparentCategoryId - the parent category IDstatus - the statusorderByComparator - the comparator to order the set by (optionally null)NoSuchCategoryException - if a message boards category with the primary key could not be foundSystemException - if a system exception occurredpublic static java.util.List<MBCategory> filterFindByG_P_S(long groupId, long[] parentCategoryIds, int status) throws SystemException
groupId - the group IDparentCategoryIds - the parent category IDsstatus - the statusSystemException - if a system exception occurredpublic static java.util.List<MBCategory> filterFindByG_P_S(long groupId, long[] parentCategoryIds, int status, 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 MBCategoryModelImpl. 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.
groupId - the group IDparentCategoryIds - the parent category IDsstatus - the statusstart - the lower bound of the range of message boards categoriesend - the upper bound of the range of message boards categories (not inclusive)SystemException - if a system exception occurredpublic static java.util.List<MBCategory> filterFindByG_P_S(long groupId, long[] parentCategoryIds, int status, 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 MBCategoryModelImpl. 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.
groupId - the group IDparentCategoryIds - the parent category IDsstatus - the statusstart - the lower bound of the range of message boards categoriesend - the upper bound of the range of message boards categories (not inclusive)orderByComparator - the comparator to order the results by (optionally null)SystemException - if a system exception occurredpublic static java.util.List<MBCategory> findByG_P_S(long groupId, long[] parentCategoryIds, int status) 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 MBCategoryModelImpl. 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.
groupId - the group IDparentCategoryIds - the parent category IDsstatus - the statusSystemException - if a system exception occurredpublic static java.util.List<MBCategory> findByG_P_S(long groupId, long[] parentCategoryIds, int status, 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 MBCategoryModelImpl. 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.
groupId - the group IDparentCategoryIds - the parent category IDsstatus - the statusstart - the lower bound of the range of message boards categoriesend - the upper bound of the range of message boards categories (not inclusive)SystemException - if a system exception occurredpublic static java.util.List<MBCategory> findByG_P_S(long groupId, long[] parentCategoryIds, int status, 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 MBCategoryModelImpl. 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.
groupId - the group IDparentCategoryIds - the parent category IDsstatus - the statusstart - the lower bound of the range of message boards categoriesend - the upper bound of the range of message boards categories (not inclusive)orderByComparator - the comparator to order the results by (optionally null)SystemException - if a system exception occurredpublic static void removeByG_P_S(long groupId,
long parentCategoryId,
int status)
throws SystemException
groupId - the group IDparentCategoryId - the parent category IDstatus - the statusSystemException - if a system exception occurredpublic static int countByG_P_S(long groupId,
long parentCategoryId,
int status)
throws SystemException
groupId - the group IDparentCategoryId - the parent category IDstatus - the statusSystemException - if a system exception occurredpublic static int countByG_P_S(long groupId,
long[] parentCategoryIds,
int status)
throws SystemException
groupId - the group IDparentCategoryIds - the parent category IDsstatus - the statusSystemException - if a system exception occurredpublic static int filterCountByG_P_S(long groupId,
long parentCategoryId,
int status)
throws SystemException
groupId - the group IDparentCategoryId - the parent category IDstatus - the statusSystemException - if a system exception occurredpublic static int filterCountByG_P_S(long groupId,
long[] parentCategoryIds,
int status)
throws SystemException
groupId - the group IDparentCategoryIds - the parent category IDsstatus - the statusSystemException - if a system exception occurredpublic static void cacheResult(MBCategory mbCategory)
mbCategory - the message boards categorypublic static void cacheResult(java.util.List<MBCategory> mbCategories)
mbCategories - the message boards categoriespublic static MBCategory create(long categoryId)
categoryId - the primary key for the new message boards categorypublic static MBCategory remove(long categoryId) throws SystemException, NoSuchCategoryException
categoryId - the primary key of the message boards categoryNoSuchCategoryException - if a message boards category with the primary key could not be foundSystemException - if a system exception occurredpublic static MBCategory updateImpl(MBCategory mbCategory) throws SystemException
SystemExceptionpublic static MBCategory findByPrimaryKey(long categoryId) throws SystemException, NoSuchCategoryException
NoSuchCategoryException if it could not be found.categoryId - the primary key of the message boards categoryNoSuchCategoryException - if a message boards category with the primary key could not be foundSystemException - if a system exception occurredpublic static MBCategory fetchByPrimaryKey(long categoryId) throws SystemException
null if it could not be found.categoryId - the primary key of the message boards categorynull if a message boards category with the primary key could not be foundSystemException - if a system exception occurredpublic static java.util.List<MBCategory> findAll() throws SystemException
SystemException - if a system exception occurredpublic static java.util.List<MBCategory> 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 MBCategoryModelImpl. 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 message boards categoriesend - the upper bound of the range of message boards categories (not inclusive)SystemException - if a system exception occurredpublic static java.util.List<MBCategory> 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 MBCategoryModelImpl. 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 message boards categoriesend - the upper bound of the range of message boards categories (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 MBCategoryPersistence getPersistence()
public void setPersistence(MBCategoryPersistence persistence)