@ProviderType
public class SocialRelationUtil
extends java.lang.Object
SocialRelationPersistenceImpl 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
SocialRelationPersistence,
SocialRelationPersistenceImpl| Constructor and Description |
|---|
SocialRelationUtil() |
| Modifier and Type | Method and Description |
|---|---|
static void |
cacheResult(java.util.List<SocialRelation> socialRelations)
Caches the social relations in the entity cache if it is enabled.
|
static void |
cacheResult(SocialRelation socialRelation)
Caches the social relation in the entity cache if it is enabled.
|
static void |
clearCache() |
static void |
clearCache(SocialRelation socialRelation) |
static int |
countAll()
Returns the number of social relations.
|
static int |
countByC_T(long companyId,
int type)
Returns the number of social relations where companyId = ? and type = ?.
|
static int |
countByCompanyId(long companyId)
Returns the number of social relations where companyId = ?.
|
static int |
countByType(int type)
Returns the number of social relations where type = ?.
|
static int |
countByU1_T(long userId1,
int type)
Returns the number of social relations where userId1 = ? and type = ?.
|
static int |
countByU1_U2_T(long userId1,
long userId2,
int type)
Returns the number of social relations where userId1 = ? and userId2 = ? and type = ?.
|
static int |
countByU1_U2(long userId1,
long userId2)
Returns the number of social relations where userId1 = ? and userId2 = ?.
|
static int |
countByU2_T(long userId2,
int type)
Returns the number of social relations where userId2 = ? and type = ?.
|
static int |
countByUserId1(long userId1)
Returns the number of social relations where userId1 = ?.
|
static int |
countByUserId2(long userId2)
Returns the number of social relations where userId2 = ?.
|
static int |
countByUuid_C(java.lang.String uuid,
long companyId)
Returns the number of social relations where uuid = ? and companyId = ?.
|
static int |
countByUuid(java.lang.String uuid)
Returns the number of social relations where uuid = ?.
|
static long |
countWithDynamicQuery(DynamicQuery dynamicQuery) |
static SocialRelation |
create(long relationId)
Creates a new social relation with the primary key.
|
static SocialRelation |
fetchByC_T_First(long companyId,
int type,
OrderByComparator orderByComparator)
Returns the first social relation in the ordered set where companyId = ? and type = ?.
|
static SocialRelation |
fetchByC_T_Last(long companyId,
int type,
OrderByComparator orderByComparator)
Returns the last social relation in the ordered set where companyId = ? and type = ?.
|
static SocialRelation |
fetchByCompanyId_First(long companyId,
OrderByComparator orderByComparator)
Returns the first social relation in the ordered set where companyId = ?.
|
static SocialRelation |
fetchByCompanyId_Last(long companyId,
OrderByComparator orderByComparator)
Returns the last social relation in the ordered set where companyId = ?.
|
static SocialRelation |
fetchByPrimaryKey(long relationId)
Returns the social relation with the primary key or returns
null if it could not be found. |
static SocialRelation |
fetchByType_First(int type,
OrderByComparator orderByComparator)
Returns the first social relation in the ordered set where type = ?.
|
static SocialRelation |
fetchByType_Last(int type,
OrderByComparator orderByComparator)
Returns the last social relation in the ordered set where type = ?.
|
static SocialRelation |
fetchByU1_T_First(long userId1,
int type,
OrderByComparator orderByComparator)
Returns the first social relation in the ordered set where userId1 = ? and type = ?.
|
static SocialRelation |
fetchByU1_T_Last(long userId1,
int type,
OrderByComparator orderByComparator)
Returns the last social relation in the ordered set where userId1 = ? and type = ?.
|
static SocialRelation |
fetchByU1_U2_First(long userId1,
long userId2,
OrderByComparator orderByComparator)
Returns the first social relation in the ordered set where userId1 = ? and userId2 = ?.
|
static SocialRelation |
fetchByU1_U2_Last(long userId1,
long userId2,
OrderByComparator orderByComparator)
Returns the last social relation in the ordered set where userId1 = ? and userId2 = ?.
|
static SocialRelation |
fetchByU1_U2_T(long userId1,
long userId2,
int type)
Returns the social relation where userId1 = ? and userId2 = ? and type = ? or returns
null if it could not be found. |
static SocialRelation |
fetchByU1_U2_T(long userId1,
long userId2,
int type,
boolean retrieveFromCache)
Returns the social relation where userId1 = ? and userId2 = ? and type = ? or returns
null if it could not be found, optionally using the finder cache. |
static SocialRelation |
fetchByU2_T_First(long userId2,
int type,
OrderByComparator orderByComparator)
Returns the first social relation in the ordered set where userId2 = ? and type = ?.
|
static SocialRelation |
fetchByU2_T_Last(long userId2,
int type,
OrderByComparator orderByComparator)
Returns the last social relation in the ordered set where userId2 = ? and type = ?.
|
static SocialRelation |
fetchByUserId1_First(long userId1,
OrderByComparator orderByComparator)
Returns the first social relation in the ordered set where userId1 = ?.
|
static SocialRelation |
fetchByUserId1_Last(long userId1,
OrderByComparator orderByComparator)
Returns the last social relation in the ordered set where userId1 = ?.
|
static SocialRelation |
fetchByUserId2_First(long userId2,
OrderByComparator orderByComparator)
Returns the first social relation in the ordered set where userId2 = ?.
|
static SocialRelation |
fetchByUserId2_Last(long userId2,
OrderByComparator orderByComparator)
Returns the last social relation in the ordered set where userId2 = ?.
|
static SocialRelation |
fetchByUuid_C_First(java.lang.String uuid,
long companyId,
OrderByComparator orderByComparator)
Returns the first social relation in the ordered set where uuid = ? and companyId = ?.
|
static SocialRelation |
fetchByUuid_C_Last(java.lang.String uuid,
long companyId,
OrderByComparator orderByComparator)
Returns the last social relation in the ordered set where uuid = ? and companyId = ?.
|
static SocialRelation |
fetchByUuid_First(java.lang.String uuid,
OrderByComparator orderByComparator)
Returns the first social relation in the ordered set where uuid = ?.
|
static SocialRelation |
fetchByUuid_Last(java.lang.String uuid,
OrderByComparator orderByComparator)
Returns the last social relation in the ordered set where uuid = ?.
|
static java.util.List<SocialRelation> |
findAll()
Returns all the social relations.
|
static java.util.List<SocialRelation> |
findAll(int start,
int end)
Returns a range of all the social relations.
|
static java.util.List<SocialRelation> |
findAll(int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the social relations.
|
static SocialRelation |
findByC_T_First(long companyId,
int type,
OrderByComparator orderByComparator)
Returns the first social relation in the ordered set where companyId = ? and type = ?.
|
static SocialRelation |
findByC_T_Last(long companyId,
int type,
OrderByComparator orderByComparator)
Returns the last social relation in the ordered set where companyId = ? and type = ?.
|
static SocialRelation[] |
findByC_T_PrevAndNext(long relationId,
long companyId,
int type,
OrderByComparator orderByComparator)
Returns the social relations before and after the current social relation in the ordered set where companyId = ? and type = ?.
|
static java.util.List<SocialRelation> |
findByC_T(long companyId,
int type)
Returns all the social relations where companyId = ? and type = ?.
|
static java.util.List<SocialRelation> |
findByC_T(long companyId,
int type,
int start,
int end)
Returns a range of all the social relations where companyId = ? and type = ?.
|
static java.util.List<SocialRelation> |
findByC_T(long companyId,
int type,
int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the social relations where companyId = ? and type = ?.
|
static SocialRelation |
findByCompanyId_First(long companyId,
OrderByComparator orderByComparator)
Returns the first social relation in the ordered set where companyId = ?.
|
static SocialRelation |
findByCompanyId_Last(long companyId,
OrderByComparator orderByComparator)
Returns the last social relation in the ordered set where companyId = ?.
|
static SocialRelation[] |
findByCompanyId_PrevAndNext(long relationId,
long companyId,
OrderByComparator orderByComparator)
Returns the social relations before and after the current social relation in the ordered set where companyId = ?.
|
static java.util.List<SocialRelation> |
findByCompanyId(long companyId)
Returns all the social relations where companyId = ?.
|
static java.util.List<SocialRelation> |
findByCompanyId(long companyId,
int start,
int end)
Returns a range of all the social relations where companyId = ?.
|
static java.util.List<SocialRelation> |
findByCompanyId(long companyId,
int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the social relations where companyId = ?.
|
static SocialRelation |
findByPrimaryKey(long relationId)
Returns the social relation with the primary key or throws a
NoSuchRelationException if it could not be found. |
static SocialRelation |
findByType_First(int type,
OrderByComparator orderByComparator)
Returns the first social relation in the ordered set where type = ?.
|
static SocialRelation |
findByType_Last(int type,
OrderByComparator orderByComparator)
Returns the last social relation in the ordered set where type = ?.
|
static SocialRelation[] |
findByType_PrevAndNext(long relationId,
int type,
OrderByComparator orderByComparator)
Returns the social relations before and after the current social relation in the ordered set where type = ?.
|
static java.util.List<SocialRelation> |
findByType(int type)
Returns all the social relations where type = ?.
|
static java.util.List<SocialRelation> |
findByType(int type,
int start,
int end)
Returns a range of all the social relations where type = ?.
|
static java.util.List<SocialRelation> |
findByType(int type,
int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the social relations where type = ?.
|
static SocialRelation |
findByU1_T_First(long userId1,
int type,
OrderByComparator orderByComparator)
Returns the first social relation in the ordered set where userId1 = ? and type = ?.
|
static SocialRelation |
findByU1_T_Last(long userId1,
int type,
OrderByComparator orderByComparator)
Returns the last social relation in the ordered set where userId1 = ? and type = ?.
|
static SocialRelation[] |
findByU1_T_PrevAndNext(long relationId,
long userId1,
int type,
OrderByComparator orderByComparator)
Returns the social relations before and after the current social relation in the ordered set where userId1 = ? and type = ?.
|
static java.util.List<SocialRelation> |
findByU1_T(long userId1,
int type)
Returns all the social relations where userId1 = ? and type = ?.
|
static java.util.List<SocialRelation> |
findByU1_T(long userId1,
int type,
int start,
int end)
Returns a range of all the social relations where userId1 = ? and type = ?.
|
static java.util.List<SocialRelation> |
findByU1_T(long userId1,
int type,
int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the social relations where userId1 = ? and type = ?.
|
static SocialRelation |
findByU1_U2_First(long userId1,
long userId2,
OrderByComparator orderByComparator)
Returns the first social relation in the ordered set where userId1 = ? and userId2 = ?.
|
static SocialRelation |
findByU1_U2_Last(long userId1,
long userId2,
OrderByComparator orderByComparator)
Returns the last social relation in the ordered set where userId1 = ? and userId2 = ?.
|
static SocialRelation[] |
findByU1_U2_PrevAndNext(long relationId,
long userId1,
long userId2,
OrderByComparator orderByComparator)
Returns the social relations before and after the current social relation in the ordered set where userId1 = ? and userId2 = ?.
|
static SocialRelation |
findByU1_U2_T(long userId1,
long userId2,
int type)
Returns the social relation where userId1 = ? and userId2 = ? and type = ? or throws a
NoSuchRelationException if it could not be found. |
static java.util.List<SocialRelation> |
findByU1_U2(long userId1,
long userId2)
Returns all the social relations where userId1 = ? and userId2 = ?.
|
static java.util.List<SocialRelation> |
findByU1_U2(long userId1,
long userId2,
int start,
int end)
Returns a range of all the social relations where userId1 = ? and userId2 = ?.
|
static java.util.List<SocialRelation> |
findByU1_U2(long userId1,
long userId2,
int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the social relations where userId1 = ? and userId2 = ?.
|
static SocialRelation |
findByU2_T_First(long userId2,
int type,
OrderByComparator orderByComparator)
Returns the first social relation in the ordered set where userId2 = ? and type = ?.
|
static SocialRelation |
findByU2_T_Last(long userId2,
int type,
OrderByComparator orderByComparator)
Returns the last social relation in the ordered set where userId2 = ? and type = ?.
|
static SocialRelation[] |
findByU2_T_PrevAndNext(long relationId,
long userId2,
int type,
OrderByComparator orderByComparator)
Returns the social relations before and after the current social relation in the ordered set where userId2 = ? and type = ?.
|
static java.util.List<SocialRelation> |
findByU2_T(long userId2,
int type)
Returns all the social relations where userId2 = ? and type = ?.
|
static java.util.List<SocialRelation> |
findByU2_T(long userId2,
int type,
int start,
int end)
Returns a range of all the social relations where userId2 = ? and type = ?.
|
static java.util.List<SocialRelation> |
findByU2_T(long userId2,
int type,
int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the social relations where userId2 = ? and type = ?.
|
static SocialRelation |
findByUserId1_First(long userId1,
OrderByComparator orderByComparator)
Returns the first social relation in the ordered set where userId1 = ?.
|
static SocialRelation |
findByUserId1_Last(long userId1,
OrderByComparator orderByComparator)
Returns the last social relation in the ordered set where userId1 = ?.
|
static SocialRelation[] |
findByUserId1_PrevAndNext(long relationId,
long userId1,
OrderByComparator orderByComparator)
Returns the social relations before and after the current social relation in the ordered set where userId1 = ?.
|
static java.util.List<SocialRelation> |
findByUserId1(long userId1)
Returns all the social relations where userId1 = ?.
|
static java.util.List<SocialRelation> |
findByUserId1(long userId1,
int start,
int end)
Returns a range of all the social relations where userId1 = ?.
|
static java.util.List<SocialRelation> |
findByUserId1(long userId1,
int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the social relations where userId1 = ?.
|
static SocialRelation |
findByUserId2_First(long userId2,
OrderByComparator orderByComparator)
Returns the first social relation in the ordered set where userId2 = ?.
|
static SocialRelation |
findByUserId2_Last(long userId2,
OrderByComparator orderByComparator)
Returns the last social relation in the ordered set where userId2 = ?.
|
static SocialRelation[] |
findByUserId2_PrevAndNext(long relationId,
long userId2,
OrderByComparator orderByComparator)
Returns the social relations before and after the current social relation in the ordered set where userId2 = ?.
|
static java.util.List<SocialRelation> |
findByUserId2(long userId2)
Returns all the social relations where userId2 = ?.
|
static java.util.List<SocialRelation> |
findByUserId2(long userId2,
int start,
int end)
Returns a range of all the social relations where userId2 = ?.
|
static java.util.List<SocialRelation> |
findByUserId2(long userId2,
int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the social relations where userId2 = ?.
|
static SocialRelation |
findByUuid_C_First(java.lang.String uuid,
long companyId,
OrderByComparator orderByComparator)
Returns the first social relation in the ordered set where uuid = ? and companyId = ?.
|
static SocialRelation |
findByUuid_C_Last(java.lang.String uuid,
long companyId,
OrderByComparator orderByComparator)
Returns the last social relation in the ordered set where uuid = ? and companyId = ?.
|
static SocialRelation[] |
findByUuid_C_PrevAndNext(long relationId,
java.lang.String uuid,
long companyId,
OrderByComparator orderByComparator)
Returns the social relations before and after the current social relation in the ordered set where uuid = ? and companyId = ?.
|
static java.util.List<SocialRelation> |
findByUuid_C(java.lang.String uuid,
long companyId)
Returns all the social relations where uuid = ? and companyId = ?.
|
static java.util.List<SocialRelation> |
findByUuid_C(java.lang.String uuid,
long companyId,
int start,
int end)
Returns a range of all the social relations where uuid = ? and companyId = ?.
|
static java.util.List<SocialRelation> |
findByUuid_C(java.lang.String uuid,
long companyId,
int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the social relations where uuid = ? and companyId = ?.
|
static SocialRelation |
findByUuid_First(java.lang.String uuid,
OrderByComparator orderByComparator)
Returns the first social relation in the ordered set where uuid = ?.
|
static SocialRelation |
findByUuid_Last(java.lang.String uuid,
OrderByComparator orderByComparator)
Returns the last social relation in the ordered set where uuid = ?.
|
static SocialRelation[] |
findByUuid_PrevAndNext(long relationId,
java.lang.String uuid,
OrderByComparator orderByComparator)
Returns the social relations before and after the current social relation in the ordered set where uuid = ?.
|
static java.util.List<SocialRelation> |
findByUuid(java.lang.String uuid)
Returns all the social relations where uuid = ?.
|
static java.util.List<SocialRelation> |
findByUuid(java.lang.String uuid,
int start,
int end)
Returns a range of all the social relations where uuid = ?.
|
static java.util.List<SocialRelation> |
findByUuid(java.lang.String uuid,
int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the social relations where uuid = ?.
|
static java.util.List<SocialRelation> |
findWithDynamicQuery(DynamicQuery dynamicQuery) |
static java.util.List<SocialRelation> |
findWithDynamicQuery(DynamicQuery dynamicQuery,
int start,
int end) |
static java.util.List<SocialRelation> |
findWithDynamicQuery(DynamicQuery dynamicQuery,
int start,
int end,
OrderByComparator orderByComparator) |
static SocialRelationPersistence |
getPersistence() |
static SocialRelation |
remove(long relationId)
Removes the social relation with the primary key from the database.
|
static void |
removeAll()
Removes all the social relations from the database.
|
static void |
removeByC_T(long companyId,
int type)
Removes all the social relations where companyId = ? and type = ? from the database.
|
static void |
removeByCompanyId(long companyId)
Removes all the social relations where companyId = ? from the database.
|
static void |
removeByType(int type)
Removes all the social relations where type = ? from the database.
|
static void |
removeByU1_T(long userId1,
int type)
Removes all the social relations where userId1 = ? and type = ? from the database.
|
static SocialRelation |
removeByU1_U2_T(long userId1,
long userId2,
int type)
Removes the social relation where userId1 = ? and userId2 = ? and type = ? from the database.
|
static void |
removeByU1_U2(long userId1,
long userId2)
Removes all the social relations where userId1 = ? and userId2 = ? from the database.
|
static void |
removeByU2_T(long userId2,
int type)
Removes all the social relations where userId2 = ? and type = ? from the database.
|
static void |
removeByUserId1(long userId1)
Removes all the social relations where userId1 = ? from the database.
|
static void |
removeByUserId2(long userId2)
Removes all the social relations where userId2 = ? from the database.
|
static void |
removeByUuid_C(java.lang.String uuid,
long companyId)
Removes all the social relations where uuid = ? and companyId = ? from the database.
|
static void |
removeByUuid(java.lang.String uuid)
Removes all the social relations where uuid = ? from the database.
|
void |
setPersistence(SocialRelationPersistence persistence)
Deprecated.
As of 6.2.0
|
static SocialRelation |
update(SocialRelation socialRelation) |
static SocialRelation |
update(SocialRelation socialRelation,
ServiceContext serviceContext) |
static SocialRelation |
updateImpl(SocialRelation socialRelation) |
public static void clearCache()
BasePersistence.clearCache()public static void clearCache(SocialRelation socialRelation)
public static long countWithDynamicQuery(DynamicQuery dynamicQuery) throws SystemException
SystemExceptionBasePersistence.countWithDynamicQuery(DynamicQuery)public static java.util.List<SocialRelation> findWithDynamicQuery(DynamicQuery dynamicQuery) throws SystemException
SystemExceptionBasePersistence.findWithDynamicQuery(DynamicQuery)public static java.util.List<SocialRelation> findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end) throws SystemException
public static java.util.List<SocialRelation> findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end, OrderByComparator orderByComparator) throws SystemException
public static SocialRelation update(SocialRelation socialRelation) throws SystemException
public static SocialRelation update(SocialRelation socialRelation, ServiceContext serviceContext) throws SystemException
public static java.util.List<SocialRelation> findByUuid(java.lang.String uuid) throws SystemException
uuid - the uuidSystemException - if a system exception occurredpublic static java.util.List<SocialRelation> 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 SocialRelationModelImpl. 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 social relationsend - the upper bound of the range of social relations (not inclusive)SystemException - if a system exception occurredpublic static java.util.List<SocialRelation> 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 SocialRelationModelImpl. 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 social relationsend - the upper bound of the range of social relations (not inclusive)orderByComparator - the comparator to order the results by (optionally null)SystemException - if a system exception occurredpublic static SocialRelation findByUuid_First(java.lang.String uuid, OrderByComparator orderByComparator) throws SystemException, NoSuchRelationException
uuid - the uuidorderByComparator - the comparator to order the set by (optionally null)NoSuchRelationException - if a matching social relation could not be foundSystemException - if a system exception occurredpublic static SocialRelation 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 social relation could not be foundSystemException - if a system exception occurredpublic static SocialRelation findByUuid_Last(java.lang.String uuid, OrderByComparator orderByComparator) throws SystemException, NoSuchRelationException
uuid - the uuidorderByComparator - the comparator to order the set by (optionally null)NoSuchRelationException - if a matching social relation could not be foundSystemException - if a system exception occurredpublic static SocialRelation 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 social relation could not be foundSystemException - if a system exception occurredpublic static SocialRelation[] findByUuid_PrevAndNext(long relationId, java.lang.String uuid, OrderByComparator orderByComparator) throws SystemException, NoSuchRelationException
relationId - the primary key of the current social relationuuid - the uuidorderByComparator - the comparator to order the set by (optionally null)NoSuchRelationException - if a social relation 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 java.util.List<SocialRelation> 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<SocialRelation> 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 SocialRelationModelImpl. 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 social relationsend - the upper bound of the range of social relations (not inclusive)SystemException - if a system exception occurredpublic static java.util.List<SocialRelation> 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 SocialRelationModelImpl. 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 social relationsend - the upper bound of the range of social relations (not inclusive)orderByComparator - the comparator to order the results by (optionally null)SystemException - if a system exception occurredpublic static SocialRelation findByUuid_C_First(java.lang.String uuid, long companyId, OrderByComparator orderByComparator) throws SystemException, NoSuchRelationException
uuid - the uuidcompanyId - the company IDorderByComparator - the comparator to order the set by (optionally null)NoSuchRelationException - if a matching social relation could not be foundSystemException - if a system exception occurredpublic static SocialRelation 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 social relation could not be foundSystemException - if a system exception occurredpublic static SocialRelation findByUuid_C_Last(java.lang.String uuid, long companyId, OrderByComparator orderByComparator) throws SystemException, NoSuchRelationException
uuid - the uuidcompanyId - the company IDorderByComparator - the comparator to order the set by (optionally null)NoSuchRelationException - if a matching social relation could not be foundSystemException - if a system exception occurredpublic static SocialRelation 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 social relation could not be foundSystemException - if a system exception occurredpublic static SocialRelation[] findByUuid_C_PrevAndNext(long relationId, java.lang.String uuid, long companyId, OrderByComparator orderByComparator) throws SystemException, NoSuchRelationException
relationId - the primary key of the current social relationuuid - the uuidcompanyId - the company IDorderByComparator - the comparator to order the set by (optionally null)NoSuchRelationException - if a social relation 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<SocialRelation> findByCompanyId(long companyId) throws SystemException
companyId - the company IDSystemException - if a system exception occurredpublic static java.util.List<SocialRelation> 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 SocialRelationModelImpl. 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 social relationsend - the upper bound of the range of social relations (not inclusive)SystemException - if a system exception occurredpublic static java.util.List<SocialRelation> 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 SocialRelationModelImpl. 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 social relationsend - the upper bound of the range of social relations (not inclusive)orderByComparator - the comparator to order the results by (optionally null)SystemException - if a system exception occurredpublic static SocialRelation findByCompanyId_First(long companyId, OrderByComparator orderByComparator) throws SystemException, NoSuchRelationException
companyId - the company IDorderByComparator - the comparator to order the set by (optionally null)NoSuchRelationException - if a matching social relation could not be foundSystemException - if a system exception occurredpublic static SocialRelation 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 social relation could not be foundSystemException - if a system exception occurredpublic static SocialRelation findByCompanyId_Last(long companyId, OrderByComparator orderByComparator) throws SystemException, NoSuchRelationException
companyId - the company IDorderByComparator - the comparator to order the set by (optionally null)NoSuchRelationException - if a matching social relation could not be foundSystemException - if a system exception occurredpublic static SocialRelation 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 social relation could not be foundSystemException - if a system exception occurredpublic static SocialRelation[] findByCompanyId_PrevAndNext(long relationId, long companyId, OrderByComparator orderByComparator) throws SystemException, NoSuchRelationException
relationId - the primary key of the current social relationcompanyId - the company IDorderByComparator - the comparator to order the set by (optionally null)NoSuchRelationException - if a social relation 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<SocialRelation> findByUserId1(long userId1) throws SystemException
userId1 - the user id1SystemException - if a system exception occurredpublic static java.util.List<SocialRelation> findByUserId1(long userId1, 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 SocialRelationModelImpl. 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.
userId1 - the user id1start - the lower bound of the range of social relationsend - the upper bound of the range of social relations (not inclusive)SystemException - if a system exception occurredpublic static java.util.List<SocialRelation> findByUserId1(long userId1, 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 SocialRelationModelImpl. 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.
userId1 - the user id1start - the lower bound of the range of social relationsend - the upper bound of the range of social relations (not inclusive)orderByComparator - the comparator to order the results by (optionally null)SystemException - if a system exception occurredpublic static SocialRelation findByUserId1_First(long userId1, OrderByComparator orderByComparator) throws SystemException, NoSuchRelationException
userId1 - the user id1orderByComparator - the comparator to order the set by (optionally null)NoSuchRelationException - if a matching social relation could not be foundSystemException - if a system exception occurredpublic static SocialRelation fetchByUserId1_First(long userId1, OrderByComparator orderByComparator) throws SystemException
userId1 - the user id1orderByComparator - the comparator to order the set by (optionally null)null if a matching social relation could not be foundSystemException - if a system exception occurredpublic static SocialRelation findByUserId1_Last(long userId1, OrderByComparator orderByComparator) throws SystemException, NoSuchRelationException
userId1 - the user id1orderByComparator - the comparator to order the set by (optionally null)NoSuchRelationException - if a matching social relation could not be foundSystemException - if a system exception occurredpublic static SocialRelation fetchByUserId1_Last(long userId1, OrderByComparator orderByComparator) throws SystemException
userId1 - the user id1orderByComparator - the comparator to order the set by (optionally null)null if a matching social relation could not be foundSystemException - if a system exception occurredpublic static SocialRelation[] findByUserId1_PrevAndNext(long relationId, long userId1, OrderByComparator orderByComparator) throws SystemException, NoSuchRelationException
relationId - the primary key of the current social relationuserId1 - the user id1orderByComparator - the comparator to order the set by (optionally null)NoSuchRelationException - if a social relation with the primary key could not be foundSystemException - if a system exception occurredpublic static void removeByUserId1(long userId1)
throws SystemException
userId1 - the user id1SystemException - if a system exception occurredpublic static int countByUserId1(long userId1)
throws SystemException
userId1 - the user id1SystemException - if a system exception occurredpublic static java.util.List<SocialRelation> findByUserId2(long userId2) throws SystemException
userId2 - the user id2SystemException - if a system exception occurredpublic static java.util.List<SocialRelation> findByUserId2(long userId2, 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 SocialRelationModelImpl. 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.
userId2 - the user id2start - the lower bound of the range of social relationsend - the upper bound of the range of social relations (not inclusive)SystemException - if a system exception occurredpublic static java.util.List<SocialRelation> findByUserId2(long userId2, 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 SocialRelationModelImpl. 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.
userId2 - the user id2start - the lower bound of the range of social relationsend - the upper bound of the range of social relations (not inclusive)orderByComparator - the comparator to order the results by (optionally null)SystemException - if a system exception occurredpublic static SocialRelation findByUserId2_First(long userId2, OrderByComparator orderByComparator) throws SystemException, NoSuchRelationException
userId2 - the user id2orderByComparator - the comparator to order the set by (optionally null)NoSuchRelationException - if a matching social relation could not be foundSystemException - if a system exception occurredpublic static SocialRelation fetchByUserId2_First(long userId2, OrderByComparator orderByComparator) throws SystemException
userId2 - the user id2orderByComparator - the comparator to order the set by (optionally null)null if a matching social relation could not be foundSystemException - if a system exception occurredpublic static SocialRelation findByUserId2_Last(long userId2, OrderByComparator orderByComparator) throws SystemException, NoSuchRelationException
userId2 - the user id2orderByComparator - the comparator to order the set by (optionally null)NoSuchRelationException - if a matching social relation could not be foundSystemException - if a system exception occurredpublic static SocialRelation fetchByUserId2_Last(long userId2, OrderByComparator orderByComparator) throws SystemException
userId2 - the user id2orderByComparator - the comparator to order the set by (optionally null)null if a matching social relation could not be foundSystemException - if a system exception occurredpublic static SocialRelation[] findByUserId2_PrevAndNext(long relationId, long userId2, OrderByComparator orderByComparator) throws SystemException, NoSuchRelationException
relationId - the primary key of the current social relationuserId2 - the user id2orderByComparator - the comparator to order the set by (optionally null)NoSuchRelationException - if a social relation with the primary key could not be foundSystemException - if a system exception occurredpublic static void removeByUserId2(long userId2)
throws SystemException
userId2 - the user id2SystemException - if a system exception occurredpublic static int countByUserId2(long userId2)
throws SystemException
userId2 - the user id2SystemException - if a system exception occurredpublic static java.util.List<SocialRelation> findByType(int type) throws SystemException
type - the typeSystemException - if a system exception occurredpublic static java.util.List<SocialRelation> findByType(int type, 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 SocialRelationModelImpl. 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.
type - the typestart - the lower bound of the range of social relationsend - the upper bound of the range of social relations (not inclusive)SystemException - if a system exception occurredpublic static java.util.List<SocialRelation> findByType(int type, 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 SocialRelationModelImpl. 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.
type - the typestart - the lower bound of the range of social relationsend - the upper bound of the range of social relations (not inclusive)orderByComparator - the comparator to order the results by (optionally null)SystemException - if a system exception occurredpublic static SocialRelation findByType_First(int type, OrderByComparator orderByComparator) throws SystemException, NoSuchRelationException
type - the typeorderByComparator - the comparator to order the set by (optionally null)NoSuchRelationException - if a matching social relation could not be foundSystemException - if a system exception occurredpublic static SocialRelation fetchByType_First(int type, OrderByComparator orderByComparator) throws SystemException
type - the typeorderByComparator - the comparator to order the set by (optionally null)null if a matching social relation could not be foundSystemException - if a system exception occurredpublic static SocialRelation findByType_Last(int type, OrderByComparator orderByComparator) throws SystemException, NoSuchRelationException
type - the typeorderByComparator - the comparator to order the set by (optionally null)NoSuchRelationException - if a matching social relation could not be foundSystemException - if a system exception occurredpublic static SocialRelation fetchByType_Last(int type, OrderByComparator orderByComparator) throws SystemException
type - the typeorderByComparator - the comparator to order the set by (optionally null)null if a matching social relation could not be foundSystemException - if a system exception occurredpublic static SocialRelation[] findByType_PrevAndNext(long relationId, int type, OrderByComparator orderByComparator) throws SystemException, NoSuchRelationException
relationId - the primary key of the current social relationtype - the typeorderByComparator - the comparator to order the set by (optionally null)NoSuchRelationException - if a social relation with the primary key could not be foundSystemException - if a system exception occurredpublic static void removeByType(int type)
throws SystemException
type - the typeSystemException - if a system exception occurredpublic static int countByType(int type)
throws SystemException
type - the typeSystemException - if a system exception occurredpublic static java.util.List<SocialRelation> findByC_T(long companyId, int type) throws SystemException
companyId - the company IDtype - the typeSystemException - if a system exception occurredpublic static java.util.List<SocialRelation> findByC_T(long companyId, int type, 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 SocialRelationModelImpl. 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 IDtype - the typestart - the lower bound of the range of social relationsend - the upper bound of the range of social relations (not inclusive)SystemException - if a system exception occurredpublic static java.util.List<SocialRelation> findByC_T(long companyId, int type, 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 SocialRelationModelImpl. 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 IDtype - the typestart - the lower bound of the range of social relationsend - the upper bound of the range of social relations (not inclusive)orderByComparator - the comparator to order the results by (optionally null)SystemException - if a system exception occurredpublic static SocialRelation findByC_T_First(long companyId, int type, OrderByComparator orderByComparator) throws SystemException, NoSuchRelationException
companyId - the company IDtype - the typeorderByComparator - the comparator to order the set by (optionally null)NoSuchRelationException - if a matching social relation could not be foundSystemException - if a system exception occurredpublic static SocialRelation fetchByC_T_First(long companyId, int type, OrderByComparator orderByComparator) throws SystemException
companyId - the company IDtype - the typeorderByComparator - the comparator to order the set by (optionally null)null if a matching social relation could not be foundSystemException - if a system exception occurredpublic static SocialRelation findByC_T_Last(long companyId, int type, OrderByComparator orderByComparator) throws SystemException, NoSuchRelationException
companyId - the company IDtype - the typeorderByComparator - the comparator to order the set by (optionally null)NoSuchRelationException - if a matching social relation could not be foundSystemException - if a system exception occurredpublic static SocialRelation fetchByC_T_Last(long companyId, int type, OrderByComparator orderByComparator) throws SystemException
companyId - the company IDtype - the typeorderByComparator - the comparator to order the set by (optionally null)null if a matching social relation could not be foundSystemException - if a system exception occurredpublic static SocialRelation[] findByC_T_PrevAndNext(long relationId, long companyId, int type, OrderByComparator orderByComparator) throws SystemException, NoSuchRelationException
relationId - the primary key of the current social relationcompanyId - the company IDtype - the typeorderByComparator - the comparator to order the set by (optionally null)NoSuchRelationException - if a social relation with the primary key could not be foundSystemException - if a system exception occurredpublic static void removeByC_T(long companyId,
int type)
throws SystemException
companyId - the company IDtype - the typeSystemException - if a system exception occurredpublic static int countByC_T(long companyId,
int type)
throws SystemException
companyId - the company IDtype - the typeSystemException - if a system exception occurredpublic static java.util.List<SocialRelation> findByU1_U2(long userId1, long userId2) throws SystemException
userId1 - the user id1userId2 - the user id2SystemException - if a system exception occurredpublic static java.util.List<SocialRelation> findByU1_U2(long userId1, long userId2, 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 SocialRelationModelImpl. 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.
userId1 - the user id1userId2 - the user id2start - the lower bound of the range of social relationsend - the upper bound of the range of social relations (not inclusive)SystemException - if a system exception occurredpublic static java.util.List<SocialRelation> findByU1_U2(long userId1, long userId2, 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 SocialRelationModelImpl. 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.
userId1 - the user id1userId2 - the user id2start - the lower bound of the range of social relationsend - the upper bound of the range of social relations (not inclusive)orderByComparator - the comparator to order the results by (optionally null)SystemException - if a system exception occurredpublic static SocialRelation findByU1_U2_First(long userId1, long userId2, OrderByComparator orderByComparator) throws SystemException, NoSuchRelationException
userId1 - the user id1userId2 - the user id2orderByComparator - the comparator to order the set by (optionally null)NoSuchRelationException - if a matching social relation could not be foundSystemException - if a system exception occurredpublic static SocialRelation fetchByU1_U2_First(long userId1, long userId2, OrderByComparator orderByComparator) throws SystemException
userId1 - the user id1userId2 - the user id2orderByComparator - the comparator to order the set by (optionally null)null if a matching social relation could not be foundSystemException - if a system exception occurredpublic static SocialRelation findByU1_U2_Last(long userId1, long userId2, OrderByComparator orderByComparator) throws SystemException, NoSuchRelationException
userId1 - the user id1userId2 - the user id2orderByComparator - the comparator to order the set by (optionally null)NoSuchRelationException - if a matching social relation could not be foundSystemException - if a system exception occurredpublic static SocialRelation fetchByU1_U2_Last(long userId1, long userId2, OrderByComparator orderByComparator) throws SystemException
userId1 - the user id1userId2 - the user id2orderByComparator - the comparator to order the set by (optionally null)null if a matching social relation could not be foundSystemException - if a system exception occurredpublic static SocialRelation[] findByU1_U2_PrevAndNext(long relationId, long userId1, long userId2, OrderByComparator orderByComparator) throws SystemException, NoSuchRelationException
relationId - the primary key of the current social relationuserId1 - the user id1userId2 - the user id2orderByComparator - the comparator to order the set by (optionally null)NoSuchRelationException - if a social relation with the primary key could not be foundSystemException - if a system exception occurredpublic static void removeByU1_U2(long userId1,
long userId2)
throws SystemException
userId1 - the user id1userId2 - the user id2SystemException - if a system exception occurredpublic static int countByU1_U2(long userId1,
long userId2)
throws SystemException
userId1 - the user id1userId2 - the user id2SystemException - if a system exception occurredpublic static java.util.List<SocialRelation> findByU1_T(long userId1, int type) throws SystemException
userId1 - the user id1type - the typeSystemException - if a system exception occurredpublic static java.util.List<SocialRelation> findByU1_T(long userId1, int type, 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 SocialRelationModelImpl. 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.
userId1 - the user id1type - the typestart - the lower bound of the range of social relationsend - the upper bound of the range of social relations (not inclusive)SystemException - if a system exception occurredpublic static java.util.List<SocialRelation> findByU1_T(long userId1, int type, 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 SocialRelationModelImpl. 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.
userId1 - the user id1type - the typestart - the lower bound of the range of social relationsend - the upper bound of the range of social relations (not inclusive)orderByComparator - the comparator to order the results by (optionally null)SystemException - if a system exception occurredpublic static SocialRelation findByU1_T_First(long userId1, int type, OrderByComparator orderByComparator) throws SystemException, NoSuchRelationException
userId1 - the user id1type - the typeorderByComparator - the comparator to order the set by (optionally null)NoSuchRelationException - if a matching social relation could not be foundSystemException - if a system exception occurredpublic static SocialRelation fetchByU1_T_First(long userId1, int type, OrderByComparator orderByComparator) throws SystemException
userId1 - the user id1type - the typeorderByComparator - the comparator to order the set by (optionally null)null if a matching social relation could not be foundSystemException - if a system exception occurredpublic static SocialRelation findByU1_T_Last(long userId1, int type, OrderByComparator orderByComparator) throws SystemException, NoSuchRelationException
userId1 - the user id1type - the typeorderByComparator - the comparator to order the set by (optionally null)NoSuchRelationException - if a matching social relation could not be foundSystemException - if a system exception occurredpublic static SocialRelation fetchByU1_T_Last(long userId1, int type, OrderByComparator orderByComparator) throws SystemException
userId1 - the user id1type - the typeorderByComparator - the comparator to order the set by (optionally null)null if a matching social relation could not be foundSystemException - if a system exception occurredpublic static SocialRelation[] findByU1_T_PrevAndNext(long relationId, long userId1, int type, OrderByComparator orderByComparator) throws SystemException, NoSuchRelationException
relationId - the primary key of the current social relationuserId1 - the user id1type - the typeorderByComparator - the comparator to order the set by (optionally null)NoSuchRelationException - if a social relation with the primary key could not be foundSystemException - if a system exception occurredpublic static void removeByU1_T(long userId1,
int type)
throws SystemException
userId1 - the user id1type - the typeSystemException - if a system exception occurredpublic static int countByU1_T(long userId1,
int type)
throws SystemException
userId1 - the user id1type - the typeSystemException - if a system exception occurredpublic static java.util.List<SocialRelation> findByU2_T(long userId2, int type) throws SystemException
userId2 - the user id2type - the typeSystemException - if a system exception occurredpublic static java.util.List<SocialRelation> findByU2_T(long userId2, int type, 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 SocialRelationModelImpl. 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.
userId2 - the user id2type - the typestart - the lower bound of the range of social relationsend - the upper bound of the range of social relations (not inclusive)SystemException - if a system exception occurredpublic static java.util.List<SocialRelation> findByU2_T(long userId2, int type, 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 SocialRelationModelImpl. 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.
userId2 - the user id2type - the typestart - the lower bound of the range of social relationsend - the upper bound of the range of social relations (not inclusive)orderByComparator - the comparator to order the results by (optionally null)SystemException - if a system exception occurredpublic static SocialRelation findByU2_T_First(long userId2, int type, OrderByComparator orderByComparator) throws SystemException, NoSuchRelationException
userId2 - the user id2type - the typeorderByComparator - the comparator to order the set by (optionally null)NoSuchRelationException - if a matching social relation could not be foundSystemException - if a system exception occurredpublic static SocialRelation fetchByU2_T_First(long userId2, int type, OrderByComparator orderByComparator) throws SystemException
userId2 - the user id2type - the typeorderByComparator - the comparator to order the set by (optionally null)null if a matching social relation could not be foundSystemException - if a system exception occurredpublic static SocialRelation findByU2_T_Last(long userId2, int type, OrderByComparator orderByComparator) throws SystemException, NoSuchRelationException
userId2 - the user id2type - the typeorderByComparator - the comparator to order the set by (optionally null)NoSuchRelationException - if a matching social relation could not be foundSystemException - if a system exception occurredpublic static SocialRelation fetchByU2_T_Last(long userId2, int type, OrderByComparator orderByComparator) throws SystemException
userId2 - the user id2type - the typeorderByComparator - the comparator to order the set by (optionally null)null if a matching social relation could not be foundSystemException - if a system exception occurredpublic static SocialRelation[] findByU2_T_PrevAndNext(long relationId, long userId2, int type, OrderByComparator orderByComparator) throws SystemException, NoSuchRelationException
relationId - the primary key of the current social relationuserId2 - the user id2type - the typeorderByComparator - the comparator to order the set by (optionally null)NoSuchRelationException - if a social relation with the primary key could not be foundSystemException - if a system exception occurredpublic static void removeByU2_T(long userId2,
int type)
throws SystemException
userId2 - the user id2type - the typeSystemException - if a system exception occurredpublic static int countByU2_T(long userId2,
int type)
throws SystemException
userId2 - the user id2type - the typeSystemException - if a system exception occurredpublic static SocialRelation findByU1_U2_T(long userId1, long userId2, int type) throws SystemException, NoSuchRelationException
NoSuchRelationException if it could not be found.userId1 - the user id1userId2 - the user id2type - the typeNoSuchRelationException - if a matching social relation could not be foundSystemException - if a system exception occurredpublic static SocialRelation fetchByU1_U2_T(long userId1, long userId2, int type) throws SystemException
null if it could not be found. Uses the finder cache.userId1 - the user id1userId2 - the user id2type - the typenull if a matching social relation could not be foundSystemException - if a system exception occurredpublic static SocialRelation fetchByU1_U2_T(long userId1, long userId2, int type, boolean retrieveFromCache) throws SystemException
null if it could not be found, optionally using the finder cache.userId1 - the user id1userId2 - the user id2type - the typeretrieveFromCache - whether to use the finder cachenull if a matching social relation could not be foundSystemException - if a system exception occurredpublic static SocialRelation removeByU1_U2_T(long userId1, long userId2, int type) throws SystemException, NoSuchRelationException
userId1 - the user id1userId2 - the user id2type - the typeSystemException - if a system exception occurredNoSuchRelationExceptionpublic static int countByU1_U2_T(long userId1,
long userId2,
int type)
throws SystemException
userId1 - the user id1userId2 - the user id2type - the typeSystemException - if a system exception occurredpublic static void cacheResult(SocialRelation socialRelation)
socialRelation - the social relationpublic static void cacheResult(java.util.List<SocialRelation> socialRelations)
socialRelations - the social relationspublic static SocialRelation create(long relationId)
relationId - the primary key for the new social relationpublic static SocialRelation remove(long relationId) throws SystemException, NoSuchRelationException
relationId - the primary key of the social relationNoSuchRelationException - if a social relation with the primary key could not be foundSystemException - if a system exception occurredpublic static SocialRelation updateImpl(SocialRelation socialRelation) throws SystemException
SystemExceptionpublic static SocialRelation findByPrimaryKey(long relationId) throws SystemException, NoSuchRelationException
NoSuchRelationException if it could not be found.relationId - the primary key of the social relationNoSuchRelationException - if a social relation with the primary key could not be foundSystemException - if a system exception occurredpublic static SocialRelation fetchByPrimaryKey(long relationId) throws SystemException
null if it could not be found.relationId - the primary key of the social relationnull if a social relation with the primary key could not be foundSystemException - if a system exception occurredpublic static java.util.List<SocialRelation> findAll() throws SystemException
SystemException - if a system exception occurredpublic static java.util.List<SocialRelation> 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 SocialRelationModelImpl. 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 social relationsend - the upper bound of the range of social relations (not inclusive)SystemException - if a system exception occurredpublic static java.util.List<SocialRelation> 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 SocialRelationModelImpl. 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 social relationsend - the upper bound of the range of social relations (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 SocialRelationPersistence getPersistence()
public void setPersistence(SocialRelationPersistence persistence)