Class MicroblogsEntryUtil

java.lang.Object
com.liferay.microblogs.service.persistence.MicroblogsEntryUtil

public class MicroblogsEntryUtil extends Object
The persistence utility for the microblogs entry service. This utility wraps com.liferay.microblogs.service.persistence.impl.MicroblogsEntryPersistenceImpl and provides direct access to the database for CRUD operations. This utility should only be used by the service layer, as it must operate within a transaction. Never access this utility in a JSP, controller, model, or other front-end class.

Caching information and settings can be found in portal.properties

See Also:
Generated:
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    static void
    cacheResult(MicroblogsEntry microblogsEntry)
    Caches the microblogs entry in the entity cache if it is enabled.
    static void
    cacheResult(List<MicroblogsEntry> microblogsEntries)
    Caches the microblogs entries in the entity cache if it is enabled.
    static void
     
    static void
    clearCache(MicroblogsEntry microblogsEntry)
     
    static int
    Returns the number of microblogs entries.
    static int
    countByC_CCNI_CCPK(long companyId, long creatorClassNameId, long creatorClassPK)
    Returns the number of microblogs entries where companyId = ? and creatorClassNameId = ? and creatorClassPK = ?.
    static int
    countByC_CCNI_CCPK(long companyId, long creatorClassNameId, long[] creatorClassPKs)
    Returns the number of microblogs entries where companyId = ? and creatorClassNameId = ? and creatorClassPK = any ?.
    static int
    countByC_CCNI_CCPK_T(long companyId, long creatorClassNameId, long[] creatorClassPKs, int type)
    Returns the number of microblogs entries where companyId = ? and creatorClassNameId = ? and creatorClassPK = any ? and type = ?.
    static int
    countByC_CCNI_CCPK_T(long companyId, long creatorClassNameId, long creatorClassPK, int type)
    Returns the number of microblogs entries where companyId = ? and creatorClassNameId = ? and creatorClassPK = ? and type = ?.
    static int
    countByC_CCNI_T(long companyId, long creatorClassNameId, int type)
    Returns the number of microblogs entries where companyId = ? and creatorClassNameId = ? and type = ?.
    static int
    countByCCNI_CCPK(long creatorClassNameId, long creatorClassPK)
    Returns the number of microblogs entries where creatorClassNameId = ? and creatorClassPK = ?.
    static int
    countByCCNI_CCPK(long creatorClassNameId, long[] creatorClassPKs)
    Returns the number of microblogs entries where creatorClassNameId = ? and creatorClassPK = any ?.
    static int
    countByCCNI_CCPK_T(long creatorClassNameId, long[] creatorClassPKs, int type)
    Returns the number of microblogs entries where creatorClassNameId = ? and creatorClassPK = any ? and type = ?.
    static int
    countByCCNI_CCPK_T(long creatorClassNameId, long creatorClassPK, int type)
    Returns the number of microblogs entries where creatorClassNameId = ? and creatorClassPK = ? and type = ?.
    static int
    countByCCNI_T(long creatorClassNameId, int type)
    Returns the number of microblogs entries where creatorClassNameId = ? and type = ?.
    static int
    countByCompanyId(long companyId)
    Returns the number of microblogs entries where companyId = ?.
    static int
    countByT_P(int type, long parentMicroblogsEntryId)
    Returns the number of microblogs entries where type = ? and parentMicroblogsEntryId = ?.
    static int
    countByU_C_T_S(long userId, Date createDate, int type, int socialRelationType)
    Returns the number of microblogs entries where userId = ? and createDate = ? and type = ? and socialRelationType = ?.
    static int
    countByU_T(long userId, int type)
    Returns the number of microblogs entries where userId = ? and type = ?.
    static int
    countByUserId(long userId)
    Returns the number of microblogs entries where userId = ?.
    static long
    countWithDynamicQuery(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
     
    create(long microblogsEntryId)
    Creates a new microblogs entry with the primary key.
    fetchByC_CCNI_CCPK_First(long companyId, long creatorClassNameId, long creatorClassPK, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns the first microblogs entry in the ordered set where companyId = ? and creatorClassNameId = ? and creatorClassPK = ?.
    fetchByC_CCNI_CCPK_Last(long companyId, long creatorClassNameId, long creatorClassPK, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns the last microblogs entry in the ordered set where companyId = ? and creatorClassNameId = ? and creatorClassPK = ?.
    fetchByC_CCNI_CCPK_T_First(long companyId, long creatorClassNameId, long creatorClassPK, int type, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns the first microblogs entry in the ordered set where companyId = ? and creatorClassNameId = ? and creatorClassPK = ? and type = ?.
    fetchByC_CCNI_CCPK_T_Last(long companyId, long creatorClassNameId, long creatorClassPK, int type, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns the last microblogs entry in the ordered set where companyId = ? and creatorClassNameId = ? and creatorClassPK = ? and type = ?.
    fetchByC_CCNI_T_First(long companyId, long creatorClassNameId, int type, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns the first microblogs entry in the ordered set where companyId = ? and creatorClassNameId = ? and type = ?.
    fetchByC_CCNI_T_Last(long companyId, long creatorClassNameId, int type, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns the last microblogs entry in the ordered set where companyId = ? and creatorClassNameId = ? and type = ?.
    fetchByCCNI_CCPK_First(long creatorClassNameId, long creatorClassPK, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns the first microblogs entry in the ordered set where creatorClassNameId = ? and creatorClassPK = ?.
    fetchByCCNI_CCPK_Last(long creatorClassNameId, long creatorClassPK, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns the last microblogs entry in the ordered set where creatorClassNameId = ? and creatorClassPK = ?.
    fetchByCCNI_CCPK_T_First(long creatorClassNameId, long creatorClassPK, int type, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns the first microblogs entry in the ordered set where creatorClassNameId = ? and creatorClassPK = ? and type = ?.
    fetchByCCNI_CCPK_T_Last(long creatorClassNameId, long creatorClassPK, int type, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns the last microblogs entry in the ordered set where creatorClassNameId = ? and creatorClassPK = ? and type = ?.
    fetchByCCNI_T_First(long creatorClassNameId, int type, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns the first microblogs entry in the ordered set where creatorClassNameId = ? and type = ?.
    fetchByCCNI_T_Last(long creatorClassNameId, int type, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns the last microblogs entry in the ordered set where creatorClassNameId = ? and type = ?.
    fetchByCompanyId_First(long companyId, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns the first microblogs entry in the ordered set where companyId = ?.
    fetchByCompanyId_Last(long companyId, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns the last microblogs entry in the ordered set where companyId = ?.
    fetchByPrimaryKey(long microblogsEntryId)
    Returns the microblogs entry with the primary key or returns null if it could not be found.
     
    fetchByT_P_First(int type, long parentMicroblogsEntryId, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns the first microblogs entry in the ordered set where type = ? and parentMicroblogsEntryId = ?.
    fetchByT_P_Last(int type, long parentMicroblogsEntryId, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns the last microblogs entry in the ordered set where type = ? and parentMicroblogsEntryId = ?.
    fetchByU_C_T_S_First(long userId, Date createDate, int type, int socialRelationType, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns the first microblogs entry in the ordered set where userId = ? and createDate = ? and type = ? and socialRelationType = ?.
    fetchByU_C_T_S_Last(long userId, Date createDate, int type, int socialRelationType, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns the last microblogs entry in the ordered set where userId = ? and createDate = ? and type = ? and socialRelationType = ?.
    fetchByU_T_First(long userId, int type, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns the first microblogs entry in the ordered set where userId = ? and type = ?.
    fetchByU_T_Last(long userId, int type, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns the last microblogs entry in the ordered set where userId = ? and type = ?.
    fetchByUserId_First(long userId, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns the first microblogs entry in the ordered set where userId = ?.
    fetchByUserId_Last(long userId, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns the last microblogs entry in the ordered set where userId = ?.
    static int
    filterCountByC_CCNI_CCPK(long companyId, long creatorClassNameId, long creatorClassPK)
    Returns the number of microblogs entries that the user has permission to view where companyId = ? and creatorClassNameId = ? and creatorClassPK = ?.
    static int
    filterCountByC_CCNI_CCPK(long companyId, long creatorClassNameId, long[] creatorClassPKs)
    Returns the number of microblogs entries that the user has permission to view where companyId = ? and creatorClassNameId = ? and creatorClassPK = any ?.
    static int
    filterCountByC_CCNI_CCPK_T(long companyId, long creatorClassNameId, long[] creatorClassPKs, int type)
    Returns the number of microblogs entries that the user has permission to view where companyId = ? and creatorClassNameId = ? and creatorClassPK = any ? and type = ?.
    static int
    filterCountByC_CCNI_CCPK_T(long companyId, long creatorClassNameId, long creatorClassPK, int type)
    Returns the number of microblogs entries that the user has permission to view where companyId = ? and creatorClassNameId = ? and creatorClassPK = ? and type = ?.
    static int
    filterCountByC_CCNI_T(long companyId, long creatorClassNameId, int type)
    Returns the number of microblogs entries that the user has permission to view where companyId = ? and creatorClassNameId = ? and type = ?.
    static int
    filterCountByCCNI_CCPK(long creatorClassNameId, long creatorClassPK)
    Returns the number of microblogs entries that the user has permission to view where creatorClassNameId = ? and creatorClassPK = ?.
    static int
    filterCountByCCNI_CCPK(long creatorClassNameId, long[] creatorClassPKs)
    Returns the number of microblogs entries that the user has permission to view where creatorClassNameId = ? and creatorClassPK = any ?.
    static int
    filterCountByCCNI_CCPK_T(long creatorClassNameId, long[] creatorClassPKs, int type)
    Returns the number of microblogs entries that the user has permission to view where creatorClassNameId = ? and creatorClassPK = any ? and type = ?.
    static int
    filterCountByCCNI_CCPK_T(long creatorClassNameId, long creatorClassPK, int type)
    Returns the number of microblogs entries that the user has permission to view where creatorClassNameId = ? and creatorClassPK = ? and type = ?.
    static int
    filterCountByCCNI_T(long creatorClassNameId, int type)
    Returns the number of microblogs entries that the user has permission to view where creatorClassNameId = ? and type = ?.
    static int
    filterCountByCompanyId(long companyId)
    Returns the number of microblogs entries that the user has permission to view where companyId = ?.
    static int
    filterCountByT_P(int type, long parentMicroblogsEntryId)
    Returns the number of microblogs entries that the user has permission to view where type = ? and parentMicroblogsEntryId = ?.
    static int
    filterCountByU_C_T_S(long userId, Date createDate, int type, int socialRelationType)
    Returns the number of microblogs entries that the user has permission to view where userId = ? and createDate = ? and type = ? and socialRelationType = ?.
    static int
    filterCountByU_T(long userId, int type)
    Returns the number of microblogs entries that the user has permission to view where userId = ? and type = ?.
    static int
    filterCountByUserId(long userId)
    Returns the number of microblogs entries that the user has permission to view where userId = ?.
    filterFindByC_CCNI_CCPK(long companyId, long creatorClassNameId, long creatorClassPK)
    Returns all the microblogs entries that the user has permission to view where companyId = ? and creatorClassNameId = ? and creatorClassPK = ?.
    filterFindByC_CCNI_CCPK(long companyId, long creatorClassNameId, long[] creatorClassPKs)
    Returns all the microblogs entries that the user has permission to view where companyId = ? and creatorClassNameId = ? and creatorClassPK = any ?.
    filterFindByC_CCNI_CCPK(long companyId, long creatorClassNameId, long[] creatorClassPKs, int start, int end)
    Returns a range of all the microblogs entries that the user has permission to view where companyId = ? and creatorClassNameId = ? and creatorClassPK = any ?.
    filterFindByC_CCNI_CCPK(long companyId, long creatorClassNameId, long[] creatorClassPKs, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns an ordered range of all the microblogs entries that the user has permission to view where companyId = ? and creatorClassNameId = ? and creatorClassPK = any ?.
    filterFindByC_CCNI_CCPK(long companyId, long creatorClassNameId, long creatorClassPK, int start, int end)
    Returns a range of all the microblogs entries that the user has permission to view where companyId = ? and creatorClassNameId = ? and creatorClassPK = ?.
    filterFindByC_CCNI_CCPK(long companyId, long creatorClassNameId, long creatorClassPK, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns an ordered range of all the microblogs entries that the user has permissions to view where companyId = ? and creatorClassNameId = ? and creatorClassPK = ?.
    filterFindByC_CCNI_CCPK_PrevAndNext(long microblogsEntryId, long companyId, long creatorClassNameId, long creatorClassPK, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns the microblogs entries before and after the current microblogs entry in the ordered set of microblogs entries that the user has permission to view where companyId = ? and creatorClassNameId = ? and creatorClassPK = ?.
    filterFindByC_CCNI_CCPK_T(long companyId, long creatorClassNameId, long[] creatorClassPKs, int type)
    Returns all the microblogs entries that the user has permission to view where companyId = ? and creatorClassNameId = ? and creatorClassPK = any ? and type = ?.
    filterFindByC_CCNI_CCPK_T(long companyId, long creatorClassNameId, long[] creatorClassPKs, int type, int start, int end)
    Returns a range of all the microblogs entries that the user has permission to view where companyId = ? and creatorClassNameId = ? and creatorClassPK = any ? and type = ?.
    filterFindByC_CCNI_CCPK_T(long companyId, long creatorClassNameId, long[] creatorClassPKs, int type, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns an ordered range of all the microblogs entries that the user has permission to view where companyId = ? and creatorClassNameId = ? and creatorClassPK = any ? and type = ?.
    filterFindByC_CCNI_CCPK_T(long companyId, long creatorClassNameId, long creatorClassPK, int type)
    Returns all the microblogs entries that the user has permission to view where companyId = ? and creatorClassNameId = ? and creatorClassPK = ? and type = ?.
    filterFindByC_CCNI_CCPK_T(long companyId, long creatorClassNameId, long creatorClassPK, int type, int start, int end)
    Returns a range of all the microblogs entries that the user has permission to view where companyId = ? and creatorClassNameId = ? and creatorClassPK = ? and type = ?.
    filterFindByC_CCNI_CCPK_T(long companyId, long creatorClassNameId, long creatorClassPK, int type, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns an ordered range of all the microblogs entries that the user has permissions to view where companyId = ? and creatorClassNameId = ? and creatorClassPK = ? and type = ?.
    filterFindByC_CCNI_CCPK_T_PrevAndNext(long microblogsEntryId, long companyId, long creatorClassNameId, long creatorClassPK, int type, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns the microblogs entries before and after the current microblogs entry in the ordered set of microblogs entries that the user has permission to view where companyId = ? and creatorClassNameId = ? and creatorClassPK = ? and type = ?.
    filterFindByC_CCNI_T(long companyId, long creatorClassNameId, int type)
    Returns all the microblogs entries that the user has permission to view where companyId = ? and creatorClassNameId = ? and type = ?.
    filterFindByC_CCNI_T(long companyId, long creatorClassNameId, int type, int start, int end)
    Returns a range of all the microblogs entries that the user has permission to view where companyId = ? and creatorClassNameId = ? and type = ?.
    filterFindByC_CCNI_T(long companyId, long creatorClassNameId, int type, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns an ordered range of all the microblogs entries that the user has permissions to view where companyId = ? and creatorClassNameId = ? and type = ?.
    filterFindByC_CCNI_T_PrevAndNext(long microblogsEntryId, long companyId, long creatorClassNameId, int type, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns the microblogs entries before and after the current microblogs entry in the ordered set of microblogs entries that the user has permission to view where companyId = ? and creatorClassNameId = ? and type = ?.
    filterFindByCCNI_CCPK(long creatorClassNameId, long creatorClassPK)
    Returns all the microblogs entries that the user has permission to view where creatorClassNameId = ? and creatorClassPK = ?.
    filterFindByCCNI_CCPK(long creatorClassNameId, long[] creatorClassPKs)
    Returns all the microblogs entries that the user has permission to view where creatorClassNameId = ? and creatorClassPK = any ?.
    filterFindByCCNI_CCPK(long creatorClassNameId, long[] creatorClassPKs, int start, int end)
    Returns a range of all the microblogs entries that the user has permission to view where creatorClassNameId = ? and creatorClassPK = any ?.
    filterFindByCCNI_CCPK(long creatorClassNameId, long[] creatorClassPKs, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns an ordered range of all the microblogs entries that the user has permission to view where creatorClassNameId = ? and creatorClassPK = any ?.
    filterFindByCCNI_CCPK(long creatorClassNameId, long creatorClassPK, int start, int end)
    Returns a range of all the microblogs entries that the user has permission to view where creatorClassNameId = ? and creatorClassPK = ?.
    filterFindByCCNI_CCPK(long creatorClassNameId, long creatorClassPK, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns an ordered range of all the microblogs entries that the user has permissions to view where creatorClassNameId = ? and creatorClassPK = ?.
    filterFindByCCNI_CCPK_PrevAndNext(long microblogsEntryId, long creatorClassNameId, long creatorClassPK, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns the microblogs entries before and after the current microblogs entry in the ordered set of microblogs entries that the user has permission to view where creatorClassNameId = ? and creatorClassPK = ?.
    filterFindByCCNI_CCPK_T(long creatorClassNameId, long[] creatorClassPKs, int type)
    Returns all the microblogs entries that the user has permission to view where creatorClassNameId = ? and creatorClassPK = any ? and type = ?.
    filterFindByCCNI_CCPK_T(long creatorClassNameId, long[] creatorClassPKs, int type, int start, int end)
    Returns a range of all the microblogs entries that the user has permission to view where creatorClassNameId = ? and creatorClassPK = any ? and type = ?.
    filterFindByCCNI_CCPK_T(long creatorClassNameId, long[] creatorClassPKs, int type, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns an ordered range of all the microblogs entries that the user has permission to view where creatorClassNameId = ? and creatorClassPK = any ? and type = ?.
    filterFindByCCNI_CCPK_T(long creatorClassNameId, long creatorClassPK, int type)
    Returns all the microblogs entries that the user has permission to view where creatorClassNameId = ? and creatorClassPK = ? and type = ?.
    filterFindByCCNI_CCPK_T(long creatorClassNameId, long creatorClassPK, int type, int start, int end)
    Returns a range of all the microblogs entries that the user has permission to view where creatorClassNameId = ? and creatorClassPK = ? and type = ?.
    filterFindByCCNI_CCPK_T(long creatorClassNameId, long creatorClassPK, int type, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns an ordered range of all the microblogs entries that the user has permissions to view where creatorClassNameId = ? and creatorClassPK = ? and type = ?.
    filterFindByCCNI_CCPK_T_PrevAndNext(long microblogsEntryId, long creatorClassNameId, long creatorClassPK, int type, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns the microblogs entries before and after the current microblogs entry in the ordered set of microblogs entries that the user has permission to view where creatorClassNameId = ? and creatorClassPK = ? and type = ?.
    filterFindByCCNI_T(long creatorClassNameId, int type)
    Returns all the microblogs entries that the user has permission to view where creatorClassNameId = ? and type = ?.
    filterFindByCCNI_T(long creatorClassNameId, int type, int start, int end)
    Returns a range of all the microblogs entries that the user has permission to view where creatorClassNameId = ? and type = ?.
    filterFindByCCNI_T(long creatorClassNameId, int type, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns an ordered range of all the microblogs entries that the user has permissions to view where creatorClassNameId = ? and type = ?.
    filterFindByCCNI_T_PrevAndNext(long microblogsEntryId, long creatorClassNameId, int type, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns the microblogs entries before and after the current microblogs entry in the ordered set of microblogs entries that the user has permission to view where creatorClassNameId = ? and type = ?.
    filterFindByCompanyId(long companyId)
    Returns all the microblogs entries that the user has permission to view where companyId = ?.
    filterFindByCompanyId(long companyId, int start, int end)
    Returns a range of all the microblogs entries that the user has permission to view where companyId = ?.
    filterFindByCompanyId(long companyId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns an ordered range of all the microblogs entries that the user has permissions to view where companyId = ?.
    filterFindByCompanyId_PrevAndNext(long microblogsEntryId, long companyId, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns the microblogs entries before and after the current microblogs entry in the ordered set of microblogs entries that the user has permission to view where companyId = ?.
    filterFindByT_P(int type, long parentMicroblogsEntryId)
    Returns all the microblogs entries that the user has permission to view where type = ? and parentMicroblogsEntryId = ?.
    filterFindByT_P(int type, long parentMicroblogsEntryId, int start, int end)
    Returns a range of all the microblogs entries that the user has permission to view where type = ? and parentMicroblogsEntryId = ?.
    filterFindByT_P(int type, long parentMicroblogsEntryId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns an ordered range of all the microblogs entries that the user has permissions to view where type = ? and parentMicroblogsEntryId = ?.
    filterFindByT_P_PrevAndNext(long microblogsEntryId, int type, long parentMicroblogsEntryId, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns the microblogs entries before and after the current microblogs entry in the ordered set of microblogs entries that the user has permission to view where type = ? and parentMicroblogsEntryId = ?.
    filterFindByU_C_T_S(long userId, Date createDate, int type, int socialRelationType)
    Returns all the microblogs entries that the user has permission to view where userId = ? and createDate = ? and type = ? and socialRelationType = ?.
    filterFindByU_C_T_S(long userId, Date createDate, int type, int socialRelationType, int start, int end)
    Returns a range of all the microblogs entries that the user has permission to view where userId = ? and createDate = ? and type = ? and socialRelationType = ?.
    filterFindByU_C_T_S(long userId, Date createDate, int type, int socialRelationType, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns an ordered range of all the microblogs entries that the user has permissions to view where userId = ? and createDate = ? and type = ? and socialRelationType = ?.
    filterFindByU_C_T_S_PrevAndNext(long microblogsEntryId, long userId, Date createDate, int type, int socialRelationType, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns the microblogs entries before and after the current microblogs entry in the ordered set of microblogs entries that the user has permission to view where userId = ? and createDate = ? and type = ? and socialRelationType = ?.
    filterFindByU_T(long userId, int type)
    Returns all the microblogs entries that the user has permission to view where userId = ? and type = ?.
    filterFindByU_T(long userId, int type, int start, int end)
    Returns a range of all the microblogs entries that the user has permission to view where userId = ? and type = ?.
    filterFindByU_T(long userId, int type, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns an ordered range of all the microblogs entries that the user has permissions to view where userId = ? and type = ?.
    filterFindByU_T_PrevAndNext(long microblogsEntryId, long userId, int type, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns the microblogs entries before and after the current microblogs entry in the ordered set of microblogs entries that the user has permission to view where userId = ? and type = ?.
    filterFindByUserId(long userId)
    Returns all the microblogs entries that the user has permission to view where userId = ?.
    filterFindByUserId(long userId, int start, int end)
    Returns a range of all the microblogs entries that the user has permission to view where userId = ?.
    filterFindByUserId(long userId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns an ordered range of all the microblogs entries that the user has permissions to view where userId = ?.
    filterFindByUserId_PrevAndNext(long microblogsEntryId, long userId, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns the microblogs entries before and after the current microblogs entry in the ordered set of microblogs entries that the user has permission to view where userId = ?.
    Returns all the microblogs entries.
    findAll(int start, int end)
    Returns a range of all the microblogs entries.
    findAll(int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns an ordered range of all the microblogs entries.
    findAll(int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the microblogs entries.
    findByC_CCNI_CCPK(long companyId, long creatorClassNameId, long creatorClassPK)
    Returns all the microblogs entries where companyId = ? and creatorClassNameId = ? and creatorClassPK = ?.
    findByC_CCNI_CCPK(long companyId, long creatorClassNameId, long[] creatorClassPKs)
    Returns all the microblogs entries where companyId = ? and creatorClassNameId = ? and creatorClassPK = any ?.
    findByC_CCNI_CCPK(long companyId, long creatorClassNameId, long[] creatorClassPKs, int start, int end)
    Returns a range of all the microblogs entries where companyId = ? and creatorClassNameId = ? and creatorClassPK = any ?.
    findByC_CCNI_CCPK(long companyId, long creatorClassNameId, long[] creatorClassPKs, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns an ordered range of all the microblogs entries where companyId = ? and creatorClassNameId = ? and creatorClassPK = any ?.
    findByC_CCNI_CCPK(long companyId, long creatorClassNameId, long[] creatorClassPKs, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the microblogs entries where companyId = ? and creatorClassNameId = ? and creatorClassPK = ?, optionally using the finder cache.
    findByC_CCNI_CCPK(long companyId, long creatorClassNameId, long creatorClassPK, int start, int end)
    Returns a range of all the microblogs entries where companyId = ? and creatorClassNameId = ? and creatorClassPK = ?.
    findByC_CCNI_CCPK(long companyId, long creatorClassNameId, long creatorClassPK, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns an ordered range of all the microblogs entries where companyId = ? and creatorClassNameId = ? and creatorClassPK = ?.
    findByC_CCNI_CCPK(long companyId, long creatorClassNameId, long creatorClassPK, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the microblogs entries where companyId = ? and creatorClassNameId = ? and creatorClassPK = ?.
    findByC_CCNI_CCPK_First(long companyId, long creatorClassNameId, long creatorClassPK, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns the first microblogs entry in the ordered set where companyId = ? and creatorClassNameId = ? and creatorClassPK = ?.
    findByC_CCNI_CCPK_Last(long companyId, long creatorClassNameId, long creatorClassPK, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns the last microblogs entry in the ordered set where companyId = ? and creatorClassNameId = ? and creatorClassPK = ?.
    findByC_CCNI_CCPK_PrevAndNext(long microblogsEntryId, long companyId, long creatorClassNameId, long creatorClassPK, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns the microblogs entries before and after the current microblogs entry in the ordered set where companyId = ? and creatorClassNameId = ? and creatorClassPK = ?.
    findByC_CCNI_CCPK_T(long companyId, long creatorClassNameId, long[] creatorClassPKs, int type)
    Returns all the microblogs entries where companyId = ? and creatorClassNameId = ? and creatorClassPK = any ? and type = ?.
    findByC_CCNI_CCPK_T(long companyId, long creatorClassNameId, long[] creatorClassPKs, int type, int start, int end)
    Returns a range of all the microblogs entries where companyId = ? and creatorClassNameId = ? and creatorClassPK = any ? and type = ?.
    findByC_CCNI_CCPK_T(long companyId, long creatorClassNameId, long[] creatorClassPKs, int type, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns an ordered range of all the microblogs entries where companyId = ? and creatorClassNameId = ? and creatorClassPK = any ? and type = ?.
    findByC_CCNI_CCPK_T(long companyId, long creatorClassNameId, long[] creatorClassPKs, int type, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the microblogs entries where companyId = ? and creatorClassNameId = ? and creatorClassPK = ? and type = ?, optionally using the finder cache.
    findByC_CCNI_CCPK_T(long companyId, long creatorClassNameId, long creatorClassPK, int type)
    Returns all the microblogs entries where companyId = ? and creatorClassNameId = ? and creatorClassPK = ? and type = ?.
    findByC_CCNI_CCPK_T(long companyId, long creatorClassNameId, long creatorClassPK, int type, int start, int end)
    Returns a range of all the microblogs entries where companyId = ? and creatorClassNameId = ? and creatorClassPK = ? and type = ?.
    findByC_CCNI_CCPK_T(long companyId, long creatorClassNameId, long creatorClassPK, int type, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns an ordered range of all the microblogs entries where companyId = ? and creatorClassNameId = ? and creatorClassPK = ? and type = ?.
    findByC_CCNI_CCPK_T(long companyId, long creatorClassNameId, long creatorClassPK, int type, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the microblogs entries where companyId = ? and creatorClassNameId = ? and creatorClassPK = ? and type = ?.
    findByC_CCNI_CCPK_T_First(long companyId, long creatorClassNameId, long creatorClassPK, int type, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns the first microblogs entry in the ordered set where companyId = ? and creatorClassNameId = ? and creatorClassPK = ? and type = ?.
    findByC_CCNI_CCPK_T_Last(long companyId, long creatorClassNameId, long creatorClassPK, int type, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns the last microblogs entry in the ordered set where companyId = ? and creatorClassNameId = ? and creatorClassPK = ? and type = ?.
    findByC_CCNI_CCPK_T_PrevAndNext(long microblogsEntryId, long companyId, long creatorClassNameId, long creatorClassPK, int type, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns the microblogs entries before and after the current microblogs entry in the ordered set where companyId = ? and creatorClassNameId = ? and creatorClassPK = ? and type = ?.
    findByC_CCNI_T(long companyId, long creatorClassNameId, int type)
    Returns all the microblogs entries where companyId = ? and creatorClassNameId = ? and type = ?.
    findByC_CCNI_T(long companyId, long creatorClassNameId, int type, int start, int end)
    Returns a range of all the microblogs entries where companyId = ? and creatorClassNameId = ? and type = ?.
    findByC_CCNI_T(long companyId, long creatorClassNameId, int type, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns an ordered range of all the microblogs entries where companyId = ? and creatorClassNameId = ? and type = ?.
    findByC_CCNI_T(long companyId, long creatorClassNameId, int type, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the microblogs entries where companyId = ? and creatorClassNameId = ? and type = ?.
    findByC_CCNI_T_First(long companyId, long creatorClassNameId, int type, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns the first microblogs entry in the ordered set where companyId = ? and creatorClassNameId = ? and type = ?.
    findByC_CCNI_T_Last(long companyId, long creatorClassNameId, int type, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns the last microblogs entry in the ordered set where companyId = ? and creatorClassNameId = ? and type = ?.
    findByC_CCNI_T_PrevAndNext(long microblogsEntryId, long companyId, long creatorClassNameId, int type, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns the microblogs entries before and after the current microblogs entry in the ordered set where companyId = ? and creatorClassNameId = ? and type = ?.
    findByCCNI_CCPK(long creatorClassNameId, long creatorClassPK)
    Returns all the microblogs entries where creatorClassNameId = ? and creatorClassPK = ?.
    findByCCNI_CCPK(long creatorClassNameId, long[] creatorClassPKs)
    Returns all the microblogs entries where creatorClassNameId = ? and creatorClassPK = any ?.
    findByCCNI_CCPK(long creatorClassNameId, long[] creatorClassPKs, int start, int end)
    Returns a range of all the microblogs entries where creatorClassNameId = ? and creatorClassPK = any ?.
    findByCCNI_CCPK(long creatorClassNameId, long[] creatorClassPKs, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns an ordered range of all the microblogs entries where creatorClassNameId = ? and creatorClassPK = any ?.
    findByCCNI_CCPK(long creatorClassNameId, long[] creatorClassPKs, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the microblogs entries where creatorClassNameId = ? and creatorClassPK = ?, optionally using the finder cache.
    findByCCNI_CCPK(long creatorClassNameId, long creatorClassPK, int start, int end)
    Returns a range of all the microblogs entries where creatorClassNameId = ? and creatorClassPK = ?.
    findByCCNI_CCPK(long creatorClassNameId, long creatorClassPK, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns an ordered range of all the microblogs entries where creatorClassNameId = ? and creatorClassPK = ?.
    findByCCNI_CCPK(long creatorClassNameId, long creatorClassPK, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the microblogs entries where creatorClassNameId = ? and creatorClassPK = ?.
    findByCCNI_CCPK_First(long creatorClassNameId, long creatorClassPK, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns the first microblogs entry in the ordered set where creatorClassNameId = ? and creatorClassPK = ?.
    findByCCNI_CCPK_Last(long creatorClassNameId, long creatorClassPK, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns the last microblogs entry in the ordered set where creatorClassNameId = ? and creatorClassPK = ?.
    findByCCNI_CCPK_PrevAndNext(long microblogsEntryId, long creatorClassNameId, long creatorClassPK, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns the microblogs entries before and after the current microblogs entry in the ordered set where creatorClassNameId = ? and creatorClassPK = ?.
    findByCCNI_CCPK_T(long creatorClassNameId, long[] creatorClassPKs, int type)
    Returns all the microblogs entries where creatorClassNameId = ? and creatorClassPK = any ? and type = ?.
    findByCCNI_CCPK_T(long creatorClassNameId, long[] creatorClassPKs, int type, int start, int end)
    Returns a range of all the microblogs entries where creatorClassNameId = ? and creatorClassPK = any ? and type = ?.
    findByCCNI_CCPK_T(long creatorClassNameId, long[] creatorClassPKs, int type, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns an ordered range of all the microblogs entries where creatorClassNameId = ? and creatorClassPK = any ? and type = ?.
    findByCCNI_CCPK_T(long creatorClassNameId, long[] creatorClassPKs, int type, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the microblogs entries where creatorClassNameId = ? and creatorClassPK = ? and type = ?, optionally using the finder cache.
    findByCCNI_CCPK_T(long creatorClassNameId, long creatorClassPK, int type)
    Returns all the microblogs entries where creatorClassNameId = ? and creatorClassPK = ? and type = ?.
    findByCCNI_CCPK_T(long creatorClassNameId, long creatorClassPK, int type, int start, int end)
    Returns a range of all the microblogs entries where creatorClassNameId = ? and creatorClassPK = ? and type = ?.
    findByCCNI_CCPK_T(long creatorClassNameId, long creatorClassPK, int type, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns an ordered range of all the microblogs entries where creatorClassNameId = ? and creatorClassPK = ? and type = ?.
    findByCCNI_CCPK_T(long creatorClassNameId, long creatorClassPK, int type, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the microblogs entries where creatorClassNameId = ? and creatorClassPK = ? and type = ?.
    findByCCNI_CCPK_T_First(long creatorClassNameId, long creatorClassPK, int type, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns the first microblogs entry in the ordered set where creatorClassNameId = ? and creatorClassPK = ? and type = ?.
    findByCCNI_CCPK_T_Last(long creatorClassNameId, long creatorClassPK, int type, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns the last microblogs entry in the ordered set where creatorClassNameId = ? and creatorClassPK = ? and type = ?.
    findByCCNI_CCPK_T_PrevAndNext(long microblogsEntryId, long creatorClassNameId, long creatorClassPK, int type, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns the microblogs entries before and after the current microblogs entry in the ordered set where creatorClassNameId = ? and creatorClassPK = ? and type = ?.
    findByCCNI_T(long creatorClassNameId, int type)
    Returns all the microblogs entries where creatorClassNameId = ? and type = ?.
    findByCCNI_T(long creatorClassNameId, int type, int start, int end)
    Returns a range of all the microblogs entries where creatorClassNameId = ? and type = ?.
    findByCCNI_T(long creatorClassNameId, int type, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns an ordered range of all the microblogs entries where creatorClassNameId = ? and type = ?.
    findByCCNI_T(long creatorClassNameId, int type, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the microblogs entries where creatorClassNameId = ? and type = ?.
    findByCCNI_T_First(long creatorClassNameId, int type, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns the first microblogs entry in the ordered set where creatorClassNameId = ? and type = ?.
    findByCCNI_T_Last(long creatorClassNameId, int type, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns the last microblogs entry in the ordered set where creatorClassNameId = ? and type = ?.
    findByCCNI_T_PrevAndNext(long microblogsEntryId, long creatorClassNameId, int type, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns the microblogs entries before and after the current microblogs entry in the ordered set where creatorClassNameId = ? and type = ?.
    findByCompanyId(long companyId)
    Returns all the microblogs entries where companyId = ?.
    findByCompanyId(long companyId, int start, int end)
    Returns a range of all the microblogs entries where companyId = ?.
    findByCompanyId(long companyId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns an ordered range of all the microblogs entries where companyId = ?.
    findByCompanyId(long companyId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the microblogs entries where companyId = ?.
    findByCompanyId_First(long companyId, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns the first microblogs entry in the ordered set where companyId = ?.
    findByCompanyId_Last(long companyId, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns the last microblogs entry in the ordered set where companyId = ?.
    findByCompanyId_PrevAndNext(long microblogsEntryId, long companyId, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns the microblogs entries before and after the current microblogs entry in the ordered set where companyId = ?.
    findByPrimaryKey(long microblogsEntryId)
    Returns the microblogs entry with the primary key or throws a NoSuchEntryException if it could not be found.
    findByT_P(int type, long parentMicroblogsEntryId)
    Returns all the microblogs entries where type = ? and parentMicroblogsEntryId = ?.
    findByT_P(int type, long parentMicroblogsEntryId, int start, int end)
    Returns a range of all the microblogs entries where type = ? and parentMicroblogsEntryId = ?.
    findByT_P(int type, long parentMicroblogsEntryId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns an ordered range of all the microblogs entries where type = ? and parentMicroblogsEntryId = ?.
    findByT_P(int type, long parentMicroblogsEntryId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the microblogs entries where type = ? and parentMicroblogsEntryId = ?.
    findByT_P_First(int type, long parentMicroblogsEntryId, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns the first microblogs entry in the ordered set where type = ? and parentMicroblogsEntryId = ?.
    findByT_P_Last(int type, long parentMicroblogsEntryId, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns the last microblogs entry in the ordered set where type = ? and parentMicroblogsEntryId = ?.
    findByT_P_PrevAndNext(long microblogsEntryId, int type, long parentMicroblogsEntryId, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns the microblogs entries before and after the current microblogs entry in the ordered set where type = ? and parentMicroblogsEntryId = ?.
    findByU_C_T_S(long userId, Date createDate, int type, int socialRelationType)
    Returns all the microblogs entries where userId = ? and createDate = ? and type = ? and socialRelationType = ?.
    findByU_C_T_S(long userId, Date createDate, int type, int socialRelationType, int start, int end)
    Returns a range of all the microblogs entries where userId = ? and createDate = ? and type = ? and socialRelationType = ?.
    findByU_C_T_S(long userId, Date createDate, int type, int socialRelationType, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns an ordered range of all the microblogs entries where userId = ? and createDate = ? and type = ? and socialRelationType = ?.
    findByU_C_T_S(long userId, Date createDate, int type, int socialRelationType, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the microblogs entries where userId = ? and createDate = ? and type = ? and socialRelationType = ?.
    findByU_C_T_S_First(long userId, Date createDate, int type, int socialRelationType, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns the first microblogs entry in the ordered set where userId = ? and createDate = ? and type = ? and socialRelationType = ?.
    findByU_C_T_S_Last(long userId, Date createDate, int type, int socialRelationType, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns the last microblogs entry in the ordered set where userId = ? and createDate = ? and type = ? and socialRelationType = ?.
    findByU_C_T_S_PrevAndNext(long microblogsEntryId, long userId, Date createDate, int type, int socialRelationType, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns the microblogs entries before and after the current microblogs entry in the ordered set where userId = ? and createDate = ? and type = ? and socialRelationType = ?.
    findByU_T(long userId, int type)
    Returns all the microblogs entries where userId = ? and type = ?.
    findByU_T(long userId, int type, int start, int end)
    Returns a range of all the microblogs entries where userId = ? and type = ?.
    findByU_T(long userId, int type, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns an ordered range of all the microblogs entries where userId = ? and type = ?.
    findByU_T(long userId, int type, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the microblogs entries where userId = ? and type = ?.
    findByU_T_First(long userId, int type, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns the first microblogs entry in the ordered set where userId = ? and type = ?.
    findByU_T_Last(long userId, int type, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns the last microblogs entry in the ordered set where userId = ? and type = ?.
    findByU_T_PrevAndNext(long microblogsEntryId, long userId, int type, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns the microblogs entries before and after the current microblogs entry in the ordered set where userId = ? and type = ?.
    findByUserId(long userId)
    Returns all the microblogs entries where userId = ?.
    findByUserId(long userId, int start, int end)
    Returns a range of all the microblogs entries where userId = ?.
    findByUserId(long userId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns an ordered range of all the microblogs entries where userId = ?.
    findByUserId(long userId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the microblogs entries where userId = ?.
    findByUserId_First(long userId, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns the first microblogs entry in the ordered set where userId = ?.
    findByUserId_Last(long userId, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns the last microblogs entry in the ordered set where userId = ?.
    findByUserId_PrevAndNext(long microblogsEntryId, long userId, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
    Returns the microblogs entries before and after the current microblogs entry in the ordered set where userId = ?.
    findWithDynamicQuery(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
     
    findWithDynamicQuery(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start, int end)
     
    findWithDynamicQuery(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
     
     
    remove(long microblogsEntryId)
    Removes the microblogs entry with the primary key from the database.
    static void
    Removes all the microblogs entries from the database.
    static void
    removeByC_CCNI_CCPK(long companyId, long creatorClassNameId, long creatorClassPK)
    Removes all the microblogs entries where companyId = ? and creatorClassNameId = ? and creatorClassPK = ? from the database.
    static void
    removeByC_CCNI_CCPK_T(long companyId, long creatorClassNameId, long creatorClassPK, int type)
    Removes all the microblogs entries where companyId = ? and creatorClassNameId = ? and creatorClassPK = ? and type = ? from the database.
    static void
    removeByC_CCNI_T(long companyId, long creatorClassNameId, int type)
    Removes all the microblogs entries where companyId = ? and creatorClassNameId = ? and type = ? from the database.
    static void
    removeByCCNI_CCPK(long creatorClassNameId, long creatorClassPK)
    Removes all the microblogs entries where creatorClassNameId = ? and creatorClassPK = ? from the database.
    static void
    removeByCCNI_CCPK_T(long creatorClassNameId, long creatorClassPK, int type)
    Removes all the microblogs entries where creatorClassNameId = ? and creatorClassPK = ? and type = ? from the database.
    static void
    removeByCCNI_T(long creatorClassNameId, int type)
    Removes all the microblogs entries where creatorClassNameId = ? and type = ? from the database.
    static void
    removeByCompanyId(long companyId)
    Removes all the microblogs entries where companyId = ? from the database.
    static void
    removeByT_P(int type, long parentMicroblogsEntryId)
    Removes all the microblogs entries where type = ? and parentMicroblogsEntryId = ? from the database.
    static void
    removeByU_C_T_S(long userId, Date createDate, int type, int socialRelationType)
    Removes all the microblogs entries where userId = ? and createDate = ? and type = ? and socialRelationType = ? from the database.
    static void
    removeByU_T(long userId, int type)
    Removes all the microblogs entries where userId = ? and type = ? from the database.
    static void
    removeByUserId(long userId)
    Removes all the microblogs entries where userId = ? from the database.
    static void
     
    update(MicroblogsEntry microblogsEntry)
     
    update(MicroblogsEntry microblogsEntry, com.liferay.portal.kernel.service.ServiceContext serviceContext)
     
    updateImpl(MicroblogsEntry microblogsEntry)
     

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • MicroblogsEntryUtil

      public MicroblogsEntryUtil()
  • Method Details

    • clearCache

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

      public static void clearCache(MicroblogsEntry microblogsEntry)
      See Also:
      • BasePersistence.clearCache(com.liferay.portal.kernel.model.BaseModel)
    • countWithDynamicQuery

      public static long countWithDynamicQuery(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
      See Also:
      • BasePersistence.countWithDynamicQuery(DynamicQuery)
    • fetchByPrimaryKeys

      public static Map<Serializable,MicroblogsEntry> fetchByPrimaryKeys(Set<Serializable> primaryKeys)
      See Also:
      • BasePersistence.fetchByPrimaryKeys(Set)
    • findWithDynamicQuery

      public static List<MicroblogsEntry> findWithDynamicQuery(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
      See Also:
      • BasePersistence.findWithDynamicQuery(DynamicQuery)
    • findWithDynamicQuery

      public static List<MicroblogsEntry> findWithDynamicQuery(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start, int end)
      See Also:
      • BasePersistence.findWithDynamicQuery(DynamicQuery, int, int)
    • findWithDynamicQuery

      public static List<MicroblogsEntry> findWithDynamicQuery(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
      See Also:
      • BasePersistence.findWithDynamicQuery(DynamicQuery, int, int, OrderByComparator)
    • update

      public static MicroblogsEntry update(MicroblogsEntry microblogsEntry)
      See Also:
      • BasePersistence.update(com.liferay.portal.kernel.model.BaseModel)
    • update

      public static MicroblogsEntry update(MicroblogsEntry microblogsEntry, com.liferay.portal.kernel.service.ServiceContext serviceContext)
      See Also:
      • BasePersistence.update(com.liferay.portal.kernel.model.BaseModel, ServiceContext)
    • findByCompanyId

      public static List<MicroblogsEntry> findByCompanyId(long companyId)
      Returns all the microblogs entries where companyId = ?.
      Parameters:
      companyId - the company ID
      Returns:
      the matching microblogs entries
    • findByCompanyId

      public static List<MicroblogsEntry> findByCompanyId(long companyId, int start, int end)
      Returns a range of all the microblogs entries where companyId = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from MicroblogsEntryModelImpl.

      Parameters:
      companyId - the company ID
      start - the lower bound of the range of microblogs entries
      end - the upper bound of the range of microblogs entries (not inclusive)
      Returns:
      the range of matching microblogs entries
    • findByCompanyId

      public static List<MicroblogsEntry> findByCompanyId(long companyId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
      Returns an ordered range of all the microblogs entries where companyId = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from MicroblogsEntryModelImpl.

      Parameters:
      companyId - the company ID
      start - the lower bound of the range of microblogs entries
      end - the upper bound of the range of microblogs entries (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching microblogs entries
    • findByCompanyId

      public static List<MicroblogsEntry> findByCompanyId(long companyId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the microblogs entries where companyId = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from MicroblogsEntryModelImpl.

      Parameters:
      companyId - the company ID
      start - the lower bound of the range of microblogs entries
      end - the upper bound of the range of microblogs entries (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching microblogs entries
    • findByCompanyId_First

      public static MicroblogsEntry findByCompanyId_First(long companyId, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the first microblogs entry in the ordered set where companyId = ?.
      Parameters:
      companyId - the company ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching microblogs entry
      Throws:
      NoSuchEntryException - if a matching microblogs entry could not be found
      NoSuchEntryException
    • fetchByCompanyId_First

      public static MicroblogsEntry fetchByCompanyId_First(long companyId, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
      Returns the first microblogs entry in the ordered set where companyId = ?.
      Parameters:
      companyId - the company ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching microblogs entry, or null if a matching microblogs entry could not be found
    • findByCompanyId_Last

      public static MicroblogsEntry findByCompanyId_Last(long companyId, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the last microblogs entry in the ordered set where companyId = ?.
      Parameters:
      companyId - the company ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching microblogs entry
      Throws:
      NoSuchEntryException - if a matching microblogs entry could not be found
      NoSuchEntryException
    • fetchByCompanyId_Last

      public static MicroblogsEntry fetchByCompanyId_Last(long companyId, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
      Returns the last microblogs entry in the ordered set where companyId = ?.
      Parameters:
      companyId - the company ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching microblogs entry, or null if a matching microblogs entry could not be found
    • findByCompanyId_PrevAndNext

      public static MicroblogsEntry[] findByCompanyId_PrevAndNext(long microblogsEntryId, long companyId, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the microblogs entries before and after the current microblogs entry in the ordered set where companyId = ?.
      Parameters:
      microblogsEntryId - the primary key of the current microblogs entry
      companyId - the company ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next microblogs entry
      Throws:
      NoSuchEntryException - if a microblogs entry with the primary key could not be found
      NoSuchEntryException
    • filterFindByCompanyId

      public static List<MicroblogsEntry> filterFindByCompanyId(long companyId)
      Returns all the microblogs entries that the user has permission to view where companyId = ?.
      Parameters:
      companyId - the company ID
      Returns:
      the matching microblogs entries that the user has permission to view
    • filterFindByCompanyId

      public static List<MicroblogsEntry> filterFindByCompanyId(long companyId, int start, int end)
      Returns a range of all the microblogs entries that the user has permission to view where companyId = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from MicroblogsEntryModelImpl.

      Parameters:
      companyId - the company ID
      start - the lower bound of the range of microblogs entries
      end - the upper bound of the range of microblogs entries (not inclusive)
      Returns:
      the range of matching microblogs entries that the user has permission to view
    • filterFindByCompanyId

      public static List<MicroblogsEntry> filterFindByCompanyId(long companyId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
      Returns an ordered range of all the microblogs entries that the user has permissions to view where companyId = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from MicroblogsEntryModelImpl.

      Parameters:
      companyId - the company ID
      start - the lower bound of the range of microblogs entries
      end - the upper bound of the range of microblogs entries (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching microblogs entries that the user has permission to view
    • filterFindByCompanyId_PrevAndNext

      public static MicroblogsEntry[] filterFindByCompanyId_PrevAndNext(long microblogsEntryId, long companyId, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the microblogs entries before and after the current microblogs entry in the ordered set of microblogs entries that the user has permission to view where companyId = ?.
      Parameters:
      microblogsEntryId - the primary key of the current microblogs entry
      companyId - the company ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next microblogs entry
      Throws:
      NoSuchEntryException - if a microblogs entry with the primary key could not be found
      NoSuchEntryException
    • removeByCompanyId

      public static void removeByCompanyId(long companyId)
      Removes all the microblogs entries where companyId = ? from the database.
      Parameters:
      companyId - the company ID
    • countByCompanyId

      public static int countByCompanyId(long companyId)
      Returns the number of microblogs entries where companyId = ?.
      Parameters:
      companyId - the company ID
      Returns:
      the number of matching microblogs entries
    • filterCountByCompanyId

      public static int filterCountByCompanyId(long companyId)
      Returns the number of microblogs entries that the user has permission to view where companyId = ?.
      Parameters:
      companyId - the company ID
      Returns:
      the number of matching microblogs entries that the user has permission to view
    • findByUserId

      public static List<MicroblogsEntry> findByUserId(long userId)
      Returns all the microblogs entries where userId = ?.
      Parameters:
      userId - the user ID
      Returns:
      the matching microblogs entries
    • findByUserId

      public static List<MicroblogsEntry> findByUserId(long userId, int start, int end)
      Returns a range of all the microblogs entries where userId = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from MicroblogsEntryModelImpl.

      Parameters:
      userId - the user ID
      start - the lower bound of the range of microblogs entries
      end - the upper bound of the range of microblogs entries (not inclusive)
      Returns:
      the range of matching microblogs entries
    • findByUserId

      public static List<MicroblogsEntry> findByUserId(long userId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
      Returns an ordered range of all the microblogs entries where userId = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from MicroblogsEntryModelImpl.

      Parameters:
      userId - the user ID
      start - the lower bound of the range of microblogs entries
      end - the upper bound of the range of microblogs entries (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching microblogs entries
    • findByUserId

      public static List<MicroblogsEntry> findByUserId(long userId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the microblogs entries where userId = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from MicroblogsEntryModelImpl.

      Parameters:
      userId - the user ID
      start - the lower bound of the range of microblogs entries
      end - the upper bound of the range of microblogs entries (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching microblogs entries
    • findByUserId_First

      public static MicroblogsEntry findByUserId_First(long userId, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the first microblogs entry in the ordered set where userId = ?.
      Parameters:
      userId - the user ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching microblogs entry
      Throws:
      NoSuchEntryException - if a matching microblogs entry could not be found
      NoSuchEntryException
    • fetchByUserId_First

      public static MicroblogsEntry fetchByUserId_First(long userId, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
      Returns the first microblogs entry in the ordered set where userId = ?.
      Parameters:
      userId - the user ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching microblogs entry, or null if a matching microblogs entry could not be found
    • findByUserId_Last

      public static MicroblogsEntry findByUserId_Last(long userId, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the last microblogs entry in the ordered set where userId = ?.
      Parameters:
      userId - the user ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching microblogs entry
      Throws:
      NoSuchEntryException - if a matching microblogs entry could not be found
      NoSuchEntryException
    • fetchByUserId_Last

      public static MicroblogsEntry fetchByUserId_Last(long userId, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
      Returns the last microblogs entry in the ordered set where userId = ?.
      Parameters:
      userId - the user ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching microblogs entry, or null if a matching microblogs entry could not be found
    • findByUserId_PrevAndNext

      public static MicroblogsEntry[] findByUserId_PrevAndNext(long microblogsEntryId, long userId, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the microblogs entries before and after the current microblogs entry in the ordered set where userId = ?.
      Parameters:
      microblogsEntryId - the primary key of the current microblogs entry
      userId - the user ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next microblogs entry
      Throws:
      NoSuchEntryException - if a microblogs entry with the primary key could not be found
      NoSuchEntryException
    • filterFindByUserId

      public static List<MicroblogsEntry> filterFindByUserId(long userId)
      Returns all the microblogs entries that the user has permission to view where userId = ?.
      Parameters:
      userId - the user ID
      Returns:
      the matching microblogs entries that the user has permission to view
    • filterFindByUserId

      public static List<MicroblogsEntry> filterFindByUserId(long userId, int start, int end)
      Returns a range of all the microblogs entries that the user has permission to view where userId = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from MicroblogsEntryModelImpl.

      Parameters:
      userId - the user ID
      start - the lower bound of the range of microblogs entries
      end - the upper bound of the range of microblogs entries (not inclusive)
      Returns:
      the range of matching microblogs entries that the user has permission to view
    • filterFindByUserId

      public static List<MicroblogsEntry> filterFindByUserId(long userId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
      Returns an ordered range of all the microblogs entries that the user has permissions to view where userId = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from MicroblogsEntryModelImpl.

      Parameters:
      userId - the user ID
      start - the lower bound of the range of microblogs entries
      end - the upper bound of the range of microblogs entries (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching microblogs entries that the user has permission to view
    • filterFindByUserId_PrevAndNext

      public static MicroblogsEntry[] filterFindByUserId_PrevAndNext(long microblogsEntryId, long userId, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the microblogs entries before and after the current microblogs entry in the ordered set of microblogs entries that the user has permission to view where userId = ?.
      Parameters:
      microblogsEntryId - the primary key of the current microblogs entry
      userId - the user ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next microblogs entry
      Throws:
      NoSuchEntryException - if a microblogs entry with the primary key could not be found
      NoSuchEntryException
    • removeByUserId

      public static void removeByUserId(long userId)
      Removes all the microblogs entries where userId = ? from the database.
      Parameters:
      userId - the user ID
    • countByUserId

      public static int countByUserId(long userId)
      Returns the number of microblogs entries where userId = ?.
      Parameters:
      userId - the user ID
      Returns:
      the number of matching microblogs entries
    • filterCountByUserId

      public static int filterCountByUserId(long userId)
      Returns the number of microblogs entries that the user has permission to view where userId = ?.
      Parameters:
      userId - the user ID
      Returns:
      the number of matching microblogs entries that the user has permission to view
    • findByU_T

      public static List<MicroblogsEntry> findByU_T(long userId, int type)
      Returns all the microblogs entries where userId = ? and type = ?.
      Parameters:
      userId - the user ID
      type - the type
      Returns:
      the matching microblogs entries
    • findByU_T

      public static List<MicroblogsEntry> findByU_T(long userId, int type, int start, int end)
      Returns a range of all the microblogs entries where userId = ? and type = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from MicroblogsEntryModelImpl.

      Parameters:
      userId - the user ID
      type - the type
      start - the lower bound of the range of microblogs entries
      end - the upper bound of the range of microblogs entries (not inclusive)
      Returns:
      the range of matching microblogs entries
    • findByU_T

      public static List<MicroblogsEntry> findByU_T(long userId, int type, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
      Returns an ordered range of all the microblogs entries where userId = ? and type = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from MicroblogsEntryModelImpl.

      Parameters:
      userId - the user ID
      type - the type
      start - the lower bound of the range of microblogs entries
      end - the upper bound of the range of microblogs entries (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching microblogs entries
    • findByU_T

      public static List<MicroblogsEntry> findByU_T(long userId, int type, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the microblogs entries where userId = ? and type = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from MicroblogsEntryModelImpl.

      Parameters:
      userId - the user ID
      type - the type
      start - the lower bound of the range of microblogs entries
      end - the upper bound of the range of microblogs entries (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching microblogs entries
    • findByU_T_First

      public static MicroblogsEntry findByU_T_First(long userId, int type, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the first microblogs entry in the ordered set where userId = ? and type = ?.
      Parameters:
      userId - the user ID
      type - the type
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching microblogs entry
      Throws:
      NoSuchEntryException - if a matching microblogs entry could not be found
      NoSuchEntryException
    • fetchByU_T_First

      public static MicroblogsEntry fetchByU_T_First(long userId, int type, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
      Returns the first microblogs entry in the ordered set where userId = ? and type = ?.
      Parameters:
      userId - the user ID
      type - the type
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching microblogs entry, or null if a matching microblogs entry could not be found
    • findByU_T_Last

      public static MicroblogsEntry findByU_T_Last(long userId, int type, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the last microblogs entry in the ordered set where userId = ? and type = ?.
      Parameters:
      userId - the user ID
      type - the type
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching microblogs entry
      Throws:
      NoSuchEntryException - if a matching microblogs entry could not be found
      NoSuchEntryException
    • fetchByU_T_Last

      public static MicroblogsEntry fetchByU_T_Last(long userId, int type, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
      Returns the last microblogs entry in the ordered set where userId = ? and type = ?.
      Parameters:
      userId - the user ID
      type - the type
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching microblogs entry, or null if a matching microblogs entry could not be found
    • findByU_T_PrevAndNext

      public static MicroblogsEntry[] findByU_T_PrevAndNext(long microblogsEntryId, long userId, int type, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the microblogs entries before and after the current microblogs entry in the ordered set where userId = ? and type = ?.
      Parameters:
      microblogsEntryId - the primary key of the current microblogs entry
      userId - the user ID
      type - the type
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next microblogs entry
      Throws:
      NoSuchEntryException - if a microblogs entry with the primary key could not be found
      NoSuchEntryException
    • filterFindByU_T

      public static List<MicroblogsEntry> filterFindByU_T(long userId, int type)
      Returns all the microblogs entries that the user has permission to view where userId = ? and type = ?.
      Parameters:
      userId - the user ID
      type - the type
      Returns:
      the matching microblogs entries that the user has permission to view
    • filterFindByU_T

      public static List<MicroblogsEntry> filterFindByU_T(long userId, int type, int start, int end)
      Returns a range of all the microblogs entries that the user has permission to view where userId = ? and type = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from MicroblogsEntryModelImpl.

      Parameters:
      userId - the user ID
      type - the type
      start - the lower bound of the range of microblogs entries
      end - the upper bound of the range of microblogs entries (not inclusive)
      Returns:
      the range of matching microblogs entries that the user has permission to view
    • filterFindByU_T

      public static List<MicroblogsEntry> filterFindByU_T(long userId, int type, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
      Returns an ordered range of all the microblogs entries that the user has permissions to view where userId = ? and type = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from MicroblogsEntryModelImpl.

      Parameters:
      userId - the user ID
      type - the type
      start - the lower bound of the range of microblogs entries
      end - the upper bound of the range of microblogs entries (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching microblogs entries that the user has permission to view
    • filterFindByU_T_PrevAndNext

      public static MicroblogsEntry[] filterFindByU_T_PrevAndNext(long microblogsEntryId, long userId, int type, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the microblogs entries before and after the current microblogs entry in the ordered set of microblogs entries that the user has permission to view where userId = ? and type = ?.
      Parameters:
      microblogsEntryId - the primary key of the current microblogs entry
      userId - the user ID
      type - the type
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next microblogs entry
      Throws:
      NoSuchEntryException - if a microblogs entry with the primary key could not be found
      NoSuchEntryException
    • removeByU_T

      public static void removeByU_T(long userId, int type)
      Removes all the microblogs entries where userId = ? and type = ? from the database.
      Parameters:
      userId - the user ID
      type - the type
    • countByU_T

      public static int countByU_T(long userId, int type)
      Returns the number of microblogs entries where userId = ? and type = ?.
      Parameters:
      userId - the user ID
      type - the type
      Returns:
      the number of matching microblogs entries
    • filterCountByU_T

      public static int filterCountByU_T(long userId, int type)
      Returns the number of microblogs entries that the user has permission to view where userId = ? and type = ?.
      Parameters:
      userId - the user ID
      type - the type
      Returns:
      the number of matching microblogs entries that the user has permission to view
    • findByCCNI_CCPK

      public static List<MicroblogsEntry> findByCCNI_CCPK(long creatorClassNameId, long creatorClassPK)
      Returns all the microblogs entries where creatorClassNameId = ? and creatorClassPK = ?.
      Parameters:
      creatorClassNameId - the creator class name ID
      creatorClassPK - the creator class pk
      Returns:
      the matching microblogs entries
    • findByCCNI_CCPK

      public static List<MicroblogsEntry> findByCCNI_CCPK(long creatorClassNameId, long creatorClassPK, int start, int end)
      Returns a range of all the microblogs entries where creatorClassNameId = ? and creatorClassPK = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from MicroblogsEntryModelImpl.

      Parameters:
      creatorClassNameId - the creator class name ID
      creatorClassPK - the creator class pk
      start - the lower bound of the range of microblogs entries
      end - the upper bound of the range of microblogs entries (not inclusive)
      Returns:
      the range of matching microblogs entries
    • findByCCNI_CCPK

      public static List<MicroblogsEntry> findByCCNI_CCPK(long creatorClassNameId, long creatorClassPK, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
      Returns an ordered range of all the microblogs entries where creatorClassNameId = ? and creatorClassPK = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from MicroblogsEntryModelImpl.

      Parameters:
      creatorClassNameId - the creator class name ID
      creatorClassPK - the creator class pk
      start - the lower bound of the range of microblogs entries
      end - the upper bound of the range of microblogs entries (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching microblogs entries
    • findByCCNI_CCPK

      public static List<MicroblogsEntry> findByCCNI_CCPK(long creatorClassNameId, long creatorClassPK, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the microblogs entries where creatorClassNameId = ? and creatorClassPK = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from MicroblogsEntryModelImpl.

      Parameters:
      creatorClassNameId - the creator class name ID
      creatorClassPK - the creator class pk
      start - the lower bound of the range of microblogs entries
      end - the upper bound of the range of microblogs entries (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching microblogs entries
    • findByCCNI_CCPK_First

      public static MicroblogsEntry findByCCNI_CCPK_First(long creatorClassNameId, long creatorClassPK, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the first microblogs entry in the ordered set where creatorClassNameId = ? and creatorClassPK = ?.
      Parameters:
      creatorClassNameId - the creator class name ID
      creatorClassPK - the creator class pk
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching microblogs entry
      Throws:
      NoSuchEntryException - if a matching microblogs entry could not be found
      NoSuchEntryException
    • fetchByCCNI_CCPK_First

      public static MicroblogsEntry fetchByCCNI_CCPK_First(long creatorClassNameId, long creatorClassPK, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
      Returns the first microblogs entry in the ordered set where creatorClassNameId = ? and creatorClassPK = ?.
      Parameters:
      creatorClassNameId - the creator class name ID
      creatorClassPK - the creator class pk
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching microblogs entry, or null if a matching microblogs entry could not be found
    • findByCCNI_CCPK_Last

      public static MicroblogsEntry findByCCNI_CCPK_Last(long creatorClassNameId, long creatorClassPK, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the last microblogs entry in the ordered set where creatorClassNameId = ? and creatorClassPK = ?.
      Parameters:
      creatorClassNameId - the creator class name ID
      creatorClassPK - the creator class pk
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching microblogs entry
      Throws:
      NoSuchEntryException - if a matching microblogs entry could not be found
      NoSuchEntryException
    • fetchByCCNI_CCPK_Last

      public static MicroblogsEntry fetchByCCNI_CCPK_Last(long creatorClassNameId, long creatorClassPK, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
      Returns the last microblogs entry in the ordered set where creatorClassNameId = ? and creatorClassPK = ?.
      Parameters:
      creatorClassNameId - the creator class name ID
      creatorClassPK - the creator class pk
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching microblogs entry, or null if a matching microblogs entry could not be found
    • findByCCNI_CCPK_PrevAndNext

      public static MicroblogsEntry[] findByCCNI_CCPK_PrevAndNext(long microblogsEntryId, long creatorClassNameId, long creatorClassPK, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the microblogs entries before and after the current microblogs entry in the ordered set where creatorClassNameId = ? and creatorClassPK = ?.
      Parameters:
      microblogsEntryId - the primary key of the current microblogs entry
      creatorClassNameId - the creator class name ID
      creatorClassPK - the creator class pk
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next microblogs entry
      Throws:
      NoSuchEntryException - if a microblogs entry with the primary key could not be found
      NoSuchEntryException
    • filterFindByCCNI_CCPK

      public static List<MicroblogsEntry> filterFindByCCNI_CCPK(long creatorClassNameId, long creatorClassPK)
      Returns all the microblogs entries that the user has permission to view where creatorClassNameId = ? and creatorClassPK = ?.
      Parameters:
      creatorClassNameId - the creator class name ID
      creatorClassPK - the creator class pk
      Returns:
      the matching microblogs entries that the user has permission to view
    • filterFindByCCNI_CCPK

      public static List<MicroblogsEntry> filterFindByCCNI_CCPK(long creatorClassNameId, long creatorClassPK, int start, int end)
      Returns a range of all the microblogs entries that the user has permission to view where creatorClassNameId = ? and creatorClassPK = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from MicroblogsEntryModelImpl.

      Parameters:
      creatorClassNameId - the creator class name ID
      creatorClassPK - the creator class pk
      start - the lower bound of the range of microblogs entries
      end - the upper bound of the range of microblogs entries (not inclusive)
      Returns:
      the range of matching microblogs entries that the user has permission to view
    • filterFindByCCNI_CCPK

      public static List<MicroblogsEntry> filterFindByCCNI_CCPK(long creatorClassNameId, long creatorClassPK, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
      Returns an ordered range of all the microblogs entries that the user has permissions to view where creatorClassNameId = ? and creatorClassPK = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from MicroblogsEntryModelImpl.

      Parameters:
      creatorClassNameId - the creator class name ID
      creatorClassPK - the creator class pk
      start - the lower bound of the range of microblogs entries
      end - the upper bound of the range of microblogs entries (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching microblogs entries that the user has permission to view
    • filterFindByCCNI_CCPK_PrevAndNext

      public static MicroblogsEntry[] filterFindByCCNI_CCPK_PrevAndNext(long microblogsEntryId, long creatorClassNameId, long creatorClassPK, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the microblogs entries before and after the current microblogs entry in the ordered set of microblogs entries that the user has permission to view where creatorClassNameId = ? and creatorClassPK = ?.
      Parameters:
      microblogsEntryId - the primary key of the current microblogs entry
      creatorClassNameId - the creator class name ID
      creatorClassPK - the creator class pk
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next microblogs entry
      Throws:
      NoSuchEntryException - if a microblogs entry with the primary key could not be found
      NoSuchEntryException
    • filterFindByCCNI_CCPK

      public static List<MicroblogsEntry> filterFindByCCNI_CCPK(long creatorClassNameId, long[] creatorClassPKs)
      Returns all the microblogs entries that the user has permission to view where creatorClassNameId = ? and creatorClassPK = any ?.
      Parameters:
      creatorClassNameId - the creator class name ID
      creatorClassPKs - the creator class pks
      Returns:
      the matching microblogs entries that the user has permission to view
    • filterFindByCCNI_CCPK

      public static List<MicroblogsEntry> filterFindByCCNI_CCPK(long creatorClassNameId, long[] creatorClassPKs, int start, int end)
      Returns a range of all the microblogs entries that the user has permission to view where creatorClassNameId = ? and creatorClassPK = any ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from MicroblogsEntryModelImpl.

      Parameters:
      creatorClassNameId - the creator class name ID
      creatorClassPKs - the creator class pks
      start - the lower bound of the range of microblogs entries
      end - the upper bound of the range of microblogs entries (not inclusive)
      Returns:
      the range of matching microblogs entries that the user has permission to view
    • filterFindByCCNI_CCPK

      public static List<MicroblogsEntry> filterFindByCCNI_CCPK(long creatorClassNameId, long[] creatorClassPKs, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
      Returns an ordered range of all the microblogs entries that the user has permission to view where creatorClassNameId = ? and creatorClassPK = any ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from MicroblogsEntryModelImpl.

      Parameters:
      creatorClassNameId - the creator class name ID
      creatorClassPKs - the creator class pks
      start - the lower bound of the range of microblogs entries
      end - the upper bound of the range of microblogs entries (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching microblogs entries that the user has permission to view
    • findByCCNI_CCPK

      public static List<MicroblogsEntry> findByCCNI_CCPK(long creatorClassNameId, long[] creatorClassPKs)
      Returns all the microblogs entries where creatorClassNameId = ? and creatorClassPK = any ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from MicroblogsEntryModelImpl.

      Parameters:
      creatorClassNameId - the creator class name ID
      creatorClassPKs - the creator class pks
      Returns:
      the matching microblogs entries
    • findByCCNI_CCPK

      public static List<MicroblogsEntry> findByCCNI_CCPK(long creatorClassNameId, long[] creatorClassPKs, int start, int end)
      Returns a range of all the microblogs entries where creatorClassNameId = ? and creatorClassPK = any ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from MicroblogsEntryModelImpl.

      Parameters:
      creatorClassNameId - the creator class name ID
      creatorClassPKs - the creator class pks
      start - the lower bound of the range of microblogs entries
      end - the upper bound of the range of microblogs entries (not inclusive)
      Returns:
      the range of matching microblogs entries
    • findByCCNI_CCPK

      public static List<MicroblogsEntry> findByCCNI_CCPK(long creatorClassNameId, long[] creatorClassPKs, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
      Returns an ordered range of all the microblogs entries where creatorClassNameId = ? and creatorClassPK = any ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from MicroblogsEntryModelImpl.

      Parameters:
      creatorClassNameId - the creator class name ID
      creatorClassPKs - the creator class pks
      start - the lower bound of the range of microblogs entries
      end - the upper bound of the range of microblogs entries (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching microblogs entries
    • findByCCNI_CCPK

      public static List<MicroblogsEntry> findByCCNI_CCPK(long creatorClassNameId, long[] creatorClassPKs, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the microblogs entries where creatorClassNameId = ? and creatorClassPK = ?, optionally using the finder cache.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from MicroblogsEntryModelImpl.

      Parameters:
      creatorClassNameId - the creator class name ID
      creatorClassPKs - the creator class pks
      start - the lower bound of the range of microblogs entries
      end - the upper bound of the range of microblogs entries (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching microblogs entries
    • removeByCCNI_CCPK

      public static void removeByCCNI_CCPK(long creatorClassNameId, long creatorClassPK)
      Removes all the microblogs entries where creatorClassNameId = ? and creatorClassPK = ? from the database.
      Parameters:
      creatorClassNameId - the creator class name ID
      creatorClassPK - the creator class pk
    • countByCCNI_CCPK

      public static int countByCCNI_CCPK(long creatorClassNameId, long creatorClassPK)
      Returns the number of microblogs entries where creatorClassNameId = ? and creatorClassPK = ?.
      Parameters:
      creatorClassNameId - the creator class name ID
      creatorClassPK - the creator class pk
      Returns:
      the number of matching microblogs entries
    • countByCCNI_CCPK

      public static int countByCCNI_CCPK(long creatorClassNameId, long[] creatorClassPKs)
      Returns the number of microblogs entries where creatorClassNameId = ? and creatorClassPK = any ?.
      Parameters:
      creatorClassNameId - the creator class name ID
      creatorClassPKs - the creator class pks
      Returns:
      the number of matching microblogs entries
    • filterCountByCCNI_CCPK

      public static int filterCountByCCNI_CCPK(long creatorClassNameId, long creatorClassPK)
      Returns the number of microblogs entries that the user has permission to view where creatorClassNameId = ? and creatorClassPK = ?.
      Parameters:
      creatorClassNameId - the creator class name ID
      creatorClassPK - the creator class pk
      Returns:
      the number of matching microblogs entries that the user has permission to view
    • filterCountByCCNI_CCPK

      public static int filterCountByCCNI_CCPK(long creatorClassNameId, long[] creatorClassPKs)
      Returns the number of microblogs entries that the user has permission to view where creatorClassNameId = ? and creatorClassPK = any ?.
      Parameters:
      creatorClassNameId - the creator class name ID
      creatorClassPKs - the creator class pks
      Returns:
      the number of matching microblogs entries that the user has permission to view
    • findByCCNI_T

      public static List<MicroblogsEntry> findByCCNI_T(long creatorClassNameId, int type)
      Returns all the microblogs entries where creatorClassNameId = ? and type = ?.
      Parameters:
      creatorClassNameId - the creator class name ID
      type - the type
      Returns:
      the matching microblogs entries
    • findByCCNI_T

      public static List<MicroblogsEntry> findByCCNI_T(long creatorClassNameId, int type, int start, int end)
      Returns a range of all the microblogs entries where creatorClassNameId = ? and type = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from MicroblogsEntryModelImpl.

      Parameters:
      creatorClassNameId - the creator class name ID
      type - the type
      start - the lower bound of the range of microblogs entries
      end - the upper bound of the range of microblogs entries (not inclusive)
      Returns:
      the range of matching microblogs entries
    • findByCCNI_T

      public static List<MicroblogsEntry> findByCCNI_T(long creatorClassNameId, int type, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
      Returns an ordered range of all the microblogs entries where creatorClassNameId = ? and type = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from MicroblogsEntryModelImpl.

      Parameters:
      creatorClassNameId - the creator class name ID
      type - the type
      start - the lower bound of the range of microblogs entries
      end - the upper bound of the range of microblogs entries (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching microblogs entries
    • findByCCNI_T

      public static List<MicroblogsEntry> findByCCNI_T(long creatorClassNameId, int type, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the microblogs entries where creatorClassNameId = ? and type = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from MicroblogsEntryModelImpl.

      Parameters:
      creatorClassNameId - the creator class name ID
      type - the type
      start - the lower bound of the range of microblogs entries
      end - the upper bound of the range of microblogs entries (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching microblogs entries
    • findByCCNI_T_First

      public static MicroblogsEntry findByCCNI_T_First(long creatorClassNameId, int type, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the first microblogs entry in the ordered set where creatorClassNameId = ? and type = ?.
      Parameters:
      creatorClassNameId - the creator class name ID
      type - the type
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching microblogs entry
      Throws:
      NoSuchEntryException - if a matching microblogs entry could not be found
      NoSuchEntryException
    • fetchByCCNI_T_First

      public static MicroblogsEntry fetchByCCNI_T_First(long creatorClassNameId, int type, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
      Returns the first microblogs entry in the ordered set where creatorClassNameId = ? and type = ?.
      Parameters:
      creatorClassNameId - the creator class name ID
      type - the type
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching microblogs entry, or null if a matching microblogs entry could not be found
    • findByCCNI_T_Last

      public static MicroblogsEntry findByCCNI_T_Last(long creatorClassNameId, int type, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the last microblogs entry in the ordered set where creatorClassNameId = ? and type = ?.
      Parameters:
      creatorClassNameId - the creator class name ID
      type - the type
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching microblogs entry
      Throws:
      NoSuchEntryException - if a matching microblogs entry could not be found
      NoSuchEntryException
    • fetchByCCNI_T_Last

      public static MicroblogsEntry fetchByCCNI_T_Last(long creatorClassNameId, int type, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
      Returns the last microblogs entry in the ordered set where creatorClassNameId = ? and type = ?.
      Parameters:
      creatorClassNameId - the creator class name ID
      type - the type
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching microblogs entry, or null if a matching microblogs entry could not be found
    • findByCCNI_T_PrevAndNext

      public static MicroblogsEntry[] findByCCNI_T_PrevAndNext(long microblogsEntryId, long creatorClassNameId, int type, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the microblogs entries before and after the current microblogs entry in the ordered set where creatorClassNameId = ? and type = ?.
      Parameters:
      microblogsEntryId - the primary key of the current microblogs entry
      creatorClassNameId - the creator class name ID
      type - the type
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next microblogs entry
      Throws:
      NoSuchEntryException - if a microblogs entry with the primary key could not be found
      NoSuchEntryException
    • filterFindByCCNI_T

      public static List<MicroblogsEntry> filterFindByCCNI_T(long creatorClassNameId, int type)
      Returns all the microblogs entries that the user has permission to view where creatorClassNameId = ? and type = ?.
      Parameters:
      creatorClassNameId - the creator class name ID
      type - the type
      Returns:
      the matching microblogs entries that the user has permission to view
    • filterFindByCCNI_T

      public static List<MicroblogsEntry> filterFindByCCNI_T(long creatorClassNameId, int type, int start, int end)
      Returns a range of all the microblogs entries that the user has permission to view where creatorClassNameId = ? and type = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from MicroblogsEntryModelImpl.

      Parameters:
      creatorClassNameId - the creator class name ID
      type - the type
      start - the lower bound of the range of microblogs entries
      end - the upper bound of the range of microblogs entries (not inclusive)
      Returns:
      the range of matching microblogs entries that the user has permission to view
    • filterFindByCCNI_T

      public static List<MicroblogsEntry> filterFindByCCNI_T(long creatorClassNameId, int type, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
      Returns an ordered range of all the microblogs entries that the user has permissions to view where creatorClassNameId = ? and type = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from MicroblogsEntryModelImpl.

      Parameters:
      creatorClassNameId - the creator class name ID
      type - the type
      start - the lower bound of the range of microblogs entries
      end - the upper bound of the range of microblogs entries (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching microblogs entries that the user has permission to view
    • filterFindByCCNI_T_PrevAndNext

      public static MicroblogsEntry[] filterFindByCCNI_T_PrevAndNext(long microblogsEntryId, long creatorClassNameId, int type, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the microblogs entries before and after the current microblogs entry in the ordered set of microblogs entries that the user has permission to view where creatorClassNameId = ? and type = ?.
      Parameters:
      microblogsEntryId - the primary key of the current microblogs entry
      creatorClassNameId - the creator class name ID
      type - the type
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next microblogs entry
      Throws:
      NoSuchEntryException - if a microblogs entry with the primary key could not be found
      NoSuchEntryException
    • removeByCCNI_T

      public static void removeByCCNI_T(long creatorClassNameId, int type)
      Removes all the microblogs entries where creatorClassNameId = ? and type = ? from the database.
      Parameters:
      creatorClassNameId - the creator class name ID
      type - the type
    • countByCCNI_T

      public static int countByCCNI_T(long creatorClassNameId, int type)
      Returns the number of microblogs entries where creatorClassNameId = ? and type = ?.
      Parameters:
      creatorClassNameId - the creator class name ID
      type - the type
      Returns:
      the number of matching microblogs entries
    • filterCountByCCNI_T

      public static int filterCountByCCNI_T(long creatorClassNameId, int type)
      Returns the number of microblogs entries that the user has permission to view where creatorClassNameId = ? and type = ?.
      Parameters:
      creatorClassNameId - the creator class name ID
      type - the type
      Returns:
      the number of matching microblogs entries that the user has permission to view
    • findByT_P

      public static List<MicroblogsEntry> findByT_P(int type, long parentMicroblogsEntryId)
      Returns all the microblogs entries where type = ? and parentMicroblogsEntryId = ?.
      Parameters:
      type - the type
      parentMicroblogsEntryId - the parent microblogs entry ID
      Returns:
      the matching microblogs entries
    • findByT_P

      public static List<MicroblogsEntry> findByT_P(int type, long parentMicroblogsEntryId, int start, int end)
      Returns a range of all the microblogs entries where type = ? and parentMicroblogsEntryId = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from MicroblogsEntryModelImpl.

      Parameters:
      type - the type
      parentMicroblogsEntryId - the parent microblogs entry ID
      start - the lower bound of the range of microblogs entries
      end - the upper bound of the range of microblogs entries (not inclusive)
      Returns:
      the range of matching microblogs entries
    • findByT_P

      public static List<MicroblogsEntry> findByT_P(int type, long parentMicroblogsEntryId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
      Returns an ordered range of all the microblogs entries where type = ? and parentMicroblogsEntryId = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from MicroblogsEntryModelImpl.

      Parameters:
      type - the type
      parentMicroblogsEntryId - the parent microblogs entry ID
      start - the lower bound of the range of microblogs entries
      end - the upper bound of the range of microblogs entries (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching microblogs entries
    • findByT_P

      public static List<MicroblogsEntry> findByT_P(int type, long parentMicroblogsEntryId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the microblogs entries where type = ? and parentMicroblogsEntryId = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from MicroblogsEntryModelImpl.

      Parameters:
      type - the type
      parentMicroblogsEntryId - the parent microblogs entry ID
      start - the lower bound of the range of microblogs entries
      end - the upper bound of the range of microblogs entries (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching microblogs entries
    • findByT_P_First

      public static MicroblogsEntry findByT_P_First(int type, long parentMicroblogsEntryId, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the first microblogs entry in the ordered set where type = ? and parentMicroblogsEntryId = ?.
      Parameters:
      type - the type
      parentMicroblogsEntryId - the parent microblogs entry ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching microblogs entry
      Throws:
      NoSuchEntryException - if a matching microblogs entry could not be found
      NoSuchEntryException
    • fetchByT_P_First

      public static MicroblogsEntry fetchByT_P_First(int type, long parentMicroblogsEntryId, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
      Returns the first microblogs entry in the ordered set where type = ? and parentMicroblogsEntryId = ?.
      Parameters:
      type - the type
      parentMicroblogsEntryId - the parent microblogs entry ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching microblogs entry, or null if a matching microblogs entry could not be found
    • findByT_P_Last

      public static MicroblogsEntry findByT_P_Last(int type, long parentMicroblogsEntryId, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the last microblogs entry in the ordered set where type = ? and parentMicroblogsEntryId = ?.
      Parameters:
      type - the type
      parentMicroblogsEntryId - the parent microblogs entry ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching microblogs entry
      Throws:
      NoSuchEntryException - if a matching microblogs entry could not be found
      NoSuchEntryException
    • fetchByT_P_Last

      public static MicroblogsEntry fetchByT_P_Last(int type, long parentMicroblogsEntryId, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
      Returns the last microblogs entry in the ordered set where type = ? and parentMicroblogsEntryId = ?.
      Parameters:
      type - the type
      parentMicroblogsEntryId - the parent microblogs entry ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching microblogs entry, or null if a matching microblogs entry could not be found
    • findByT_P_PrevAndNext

      public static MicroblogsEntry[] findByT_P_PrevAndNext(long microblogsEntryId, int type, long parentMicroblogsEntryId, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the microblogs entries before and after the current microblogs entry in the ordered set where type = ? and parentMicroblogsEntryId = ?.
      Parameters:
      microblogsEntryId - the primary key of the current microblogs entry
      type - the type
      parentMicroblogsEntryId - the parent microblogs entry ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next microblogs entry
      Throws:
      NoSuchEntryException - if a microblogs entry with the primary key could not be found
      NoSuchEntryException
    • filterFindByT_P

      public static List<MicroblogsEntry> filterFindByT_P(int type, long parentMicroblogsEntryId)
      Returns all the microblogs entries that the user has permission to view where type = ? and parentMicroblogsEntryId = ?.
      Parameters:
      type - the type
      parentMicroblogsEntryId - the parent microblogs entry ID
      Returns:
      the matching microblogs entries that the user has permission to view
    • filterFindByT_P

      public static List<MicroblogsEntry> filterFindByT_P(int type, long parentMicroblogsEntryId, int start, int end)
      Returns a range of all the microblogs entries that the user has permission to view where type = ? and parentMicroblogsEntryId = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from MicroblogsEntryModelImpl.

      Parameters:
      type - the type
      parentMicroblogsEntryId - the parent microblogs entry ID
      start - the lower bound of the range of microblogs entries
      end - the upper bound of the range of microblogs entries (not inclusive)
      Returns:
      the range of matching microblogs entries that the user has permission to view
    • filterFindByT_P

      public static List<MicroblogsEntry> filterFindByT_P(int type, long parentMicroblogsEntryId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
      Returns an ordered range of all the microblogs entries that the user has permissions to view where type = ? and parentMicroblogsEntryId = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from MicroblogsEntryModelImpl.

      Parameters:
      type - the type
      parentMicroblogsEntryId - the parent microblogs entry ID
      start - the lower bound of the range of microblogs entries
      end - the upper bound of the range of microblogs entries (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching microblogs entries that the user has permission to view
    • filterFindByT_P_PrevAndNext

      public static MicroblogsEntry[] filterFindByT_P_PrevAndNext(long microblogsEntryId, int type, long parentMicroblogsEntryId, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the microblogs entries before and after the current microblogs entry in the ordered set of microblogs entries that the user has permission to view where type = ? and parentMicroblogsEntryId = ?.
      Parameters:
      microblogsEntryId - the primary key of the current microblogs entry
      type - the type
      parentMicroblogsEntryId - the parent microblogs entry ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next microblogs entry
      Throws:
      NoSuchEntryException - if a microblogs entry with the primary key could not be found
      NoSuchEntryException
    • removeByT_P

      public static void removeByT_P(int type, long parentMicroblogsEntryId)
      Removes all the microblogs entries where type = ? and parentMicroblogsEntryId = ? from the database.
      Parameters:
      type - the type
      parentMicroblogsEntryId - the parent microblogs entry ID
    • countByT_P

      public static int countByT_P(int type, long parentMicroblogsEntryId)
      Returns the number of microblogs entries where type = ? and parentMicroblogsEntryId = ?.
      Parameters:
      type - the type
      parentMicroblogsEntryId - the parent microblogs entry ID
      Returns:
      the number of matching microblogs entries
    • filterCountByT_P

      public static int filterCountByT_P(int type, long parentMicroblogsEntryId)
      Returns the number of microblogs entries that the user has permission to view where type = ? and parentMicroblogsEntryId = ?.
      Parameters:
      type - the type
      parentMicroblogsEntryId - the parent microblogs entry ID
      Returns:
      the number of matching microblogs entries that the user has permission to view
    • findByC_CCNI_CCPK

      public static List<MicroblogsEntry> findByC_CCNI_CCPK(long companyId, long creatorClassNameId, long creatorClassPK)
      Returns all the microblogs entries where companyId = ? and creatorClassNameId = ? and creatorClassPK = ?.
      Parameters:
      companyId - the company ID
      creatorClassNameId - the creator class name ID
      creatorClassPK - the creator class pk
      Returns:
      the matching microblogs entries
    • findByC_CCNI_CCPK

      public static List<MicroblogsEntry> findByC_CCNI_CCPK(long companyId, long creatorClassNameId, long creatorClassPK, int start, int end)
      Returns a range of all the microblogs entries where companyId = ? and creatorClassNameId = ? and creatorClassPK = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from MicroblogsEntryModelImpl.

      Parameters:
      companyId - the company ID
      creatorClassNameId - the creator class name ID
      creatorClassPK - the creator class pk
      start - the lower bound of the range of microblogs entries
      end - the upper bound of the range of microblogs entries (not inclusive)
      Returns:
      the range of matching microblogs entries
    • findByC_CCNI_CCPK

      public static List<MicroblogsEntry> findByC_CCNI_CCPK(long companyId, long creatorClassNameId, long creatorClassPK, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
      Returns an ordered range of all the microblogs entries where companyId = ? and creatorClassNameId = ? and creatorClassPK = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from MicroblogsEntryModelImpl.

      Parameters:
      companyId - the company ID
      creatorClassNameId - the creator class name ID
      creatorClassPK - the creator class pk
      start - the lower bound of the range of microblogs entries
      end - the upper bound of the range of microblogs entries (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching microblogs entries
    • findByC_CCNI_CCPK

      public static List<MicroblogsEntry> findByC_CCNI_CCPK(long companyId, long creatorClassNameId, long creatorClassPK, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the microblogs entries where companyId = ? and creatorClassNameId = ? and creatorClassPK = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from MicroblogsEntryModelImpl.

      Parameters:
      companyId - the company ID
      creatorClassNameId - the creator class name ID
      creatorClassPK - the creator class pk
      start - the lower bound of the range of microblogs entries
      end - the upper bound of the range of microblogs entries (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching microblogs entries
    • findByC_CCNI_CCPK_First

      public static MicroblogsEntry findByC_CCNI_CCPK_First(long companyId, long creatorClassNameId, long creatorClassPK, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the first microblogs entry in the ordered set where companyId = ? and creatorClassNameId = ? and creatorClassPK = ?.
      Parameters:
      companyId - the company ID
      creatorClassNameId - the creator class name ID
      creatorClassPK - the creator class pk
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching microblogs entry
      Throws:
      NoSuchEntryException - if a matching microblogs entry could not be found
      NoSuchEntryException
    • fetchByC_CCNI_CCPK_First

      public static MicroblogsEntry fetchByC_CCNI_CCPK_First(long companyId, long creatorClassNameId, long creatorClassPK, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
      Returns the first microblogs entry in the ordered set where companyId = ? and creatorClassNameId = ? and creatorClassPK = ?.
      Parameters:
      companyId - the company ID
      creatorClassNameId - the creator class name ID
      creatorClassPK - the creator class pk
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching microblogs entry, or null if a matching microblogs entry could not be found
    • findByC_CCNI_CCPK_Last

      public static MicroblogsEntry findByC_CCNI_CCPK_Last(long companyId, long creatorClassNameId, long creatorClassPK, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the last microblogs entry in the ordered set where companyId = ? and creatorClassNameId = ? and creatorClassPK = ?.
      Parameters:
      companyId - the company ID
      creatorClassNameId - the creator class name ID
      creatorClassPK - the creator class pk
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching microblogs entry
      Throws:
      NoSuchEntryException - if a matching microblogs entry could not be found
      NoSuchEntryException
    • fetchByC_CCNI_CCPK_Last

      public static MicroblogsEntry fetchByC_CCNI_CCPK_Last(long companyId, long creatorClassNameId, long creatorClassPK, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
      Returns the last microblogs entry in the ordered set where companyId = ? and creatorClassNameId = ? and creatorClassPK = ?.
      Parameters:
      companyId - the company ID
      creatorClassNameId - the creator class name ID
      creatorClassPK - the creator class pk
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching microblogs entry, or null if a matching microblogs entry could not be found
    • findByC_CCNI_CCPK_PrevAndNext

      public static MicroblogsEntry[] findByC_CCNI_CCPK_PrevAndNext(long microblogsEntryId, long companyId, long creatorClassNameId, long creatorClassPK, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the microblogs entries before and after the current microblogs entry in the ordered set where companyId = ? and creatorClassNameId = ? and creatorClassPK = ?.
      Parameters:
      microblogsEntryId - the primary key of the current microblogs entry
      companyId - the company ID
      creatorClassNameId - the creator class name ID
      creatorClassPK - the creator class pk
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next microblogs entry
      Throws:
      NoSuchEntryException - if a microblogs entry with the primary key could not be found
      NoSuchEntryException
    • filterFindByC_CCNI_CCPK

      public static List<MicroblogsEntry> filterFindByC_CCNI_CCPK(long companyId, long creatorClassNameId, long creatorClassPK)
      Returns all the microblogs entries that the user has permission to view where companyId = ? and creatorClassNameId = ? and creatorClassPK = ?.
      Parameters:
      companyId - the company ID
      creatorClassNameId - the creator class name ID
      creatorClassPK - the creator class pk
      Returns:
      the matching microblogs entries that the user has permission to view
    • filterFindByC_CCNI_CCPK

      public static List<MicroblogsEntry> filterFindByC_CCNI_CCPK(long companyId, long creatorClassNameId, long creatorClassPK, int start, int end)
      Returns a range of all the microblogs entries that the user has permission to view where companyId = ? and creatorClassNameId = ? and creatorClassPK = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from MicroblogsEntryModelImpl.

      Parameters:
      companyId - the company ID
      creatorClassNameId - the creator class name ID
      creatorClassPK - the creator class pk
      start - the lower bound of the range of microblogs entries
      end - the upper bound of the range of microblogs entries (not inclusive)
      Returns:
      the range of matching microblogs entries that the user has permission to view
    • filterFindByC_CCNI_CCPK

      public static List<MicroblogsEntry> filterFindByC_CCNI_CCPK(long companyId, long creatorClassNameId, long creatorClassPK, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
      Returns an ordered range of all the microblogs entries that the user has permissions to view where companyId = ? and creatorClassNameId = ? and creatorClassPK = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from MicroblogsEntryModelImpl.

      Parameters:
      companyId - the company ID
      creatorClassNameId - the creator class name ID
      creatorClassPK - the creator class pk
      start - the lower bound of the range of microblogs entries
      end - the upper bound of the range of microblogs entries (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching microblogs entries that the user has permission to view
    • filterFindByC_CCNI_CCPK_PrevAndNext

      public static MicroblogsEntry[] filterFindByC_CCNI_CCPK_PrevAndNext(long microblogsEntryId, long companyId, long creatorClassNameId, long creatorClassPK, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the microblogs entries before and after the current microblogs entry in the ordered set of microblogs entries that the user has permission to view where companyId = ? and creatorClassNameId = ? and creatorClassPK = ?.
      Parameters:
      microblogsEntryId - the primary key of the current microblogs entry
      companyId - the company ID
      creatorClassNameId - the creator class name ID
      creatorClassPK - the creator class pk
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next microblogs entry
      Throws:
      NoSuchEntryException - if a microblogs entry with the primary key could not be found
      NoSuchEntryException
    • filterFindByC_CCNI_CCPK

      public static List<MicroblogsEntry> filterFindByC_CCNI_CCPK(long companyId, long creatorClassNameId, long[] creatorClassPKs)
      Returns all the microblogs entries that the user has permission to view where companyId = ? and creatorClassNameId = ? and creatorClassPK = any ?.
      Parameters:
      companyId - the company ID
      creatorClassNameId - the creator class name ID
      creatorClassPKs - the creator class pks
      Returns:
      the matching microblogs entries that the user has permission to view
    • filterFindByC_CCNI_CCPK

      public static List<MicroblogsEntry> filterFindByC_CCNI_CCPK(long companyId, long creatorClassNameId, long[] creatorClassPKs, int start, int end)
      Returns a range of all the microblogs entries that the user has permission to view where companyId = ? and creatorClassNameId = ? and creatorClassPK = any ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from MicroblogsEntryModelImpl.

      Parameters:
      companyId - the company ID
      creatorClassNameId - the creator class name ID
      creatorClassPKs - the creator class pks
      start - the lower bound of the range of microblogs entries
      end - the upper bound of the range of microblogs entries (not inclusive)
      Returns:
      the range of matching microblogs entries that the user has permission to view
    • filterFindByC_CCNI_CCPK

      public static List<MicroblogsEntry> filterFindByC_CCNI_CCPK(long companyId, long creatorClassNameId, long[] creatorClassPKs, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
      Returns an ordered range of all the microblogs entries that the user has permission to view where companyId = ? and creatorClassNameId = ? and creatorClassPK = any ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from MicroblogsEntryModelImpl.

      Parameters:
      companyId - the company ID
      creatorClassNameId - the creator class name ID
      creatorClassPKs - the creator class pks
      start - the lower bound of the range of microblogs entries
      end - the upper bound of the range of microblogs entries (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching microblogs entries that the user has permission to view
    • findByC_CCNI_CCPK

      public static List<MicroblogsEntry> findByC_CCNI_CCPK(long companyId, long creatorClassNameId, long[] creatorClassPKs)
      Returns all the microblogs entries where companyId = ? and creatorClassNameId = ? and creatorClassPK = any ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from MicroblogsEntryModelImpl.

      Parameters:
      companyId - the company ID
      creatorClassNameId - the creator class name ID
      creatorClassPKs - the creator class pks
      Returns:
      the matching microblogs entries
    • findByC_CCNI_CCPK

      public static List<MicroblogsEntry> findByC_CCNI_CCPK(long companyId, long creatorClassNameId, long[] creatorClassPKs, int start, int end)
      Returns a range of all the microblogs entries where companyId = ? and creatorClassNameId = ? and creatorClassPK = any ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from MicroblogsEntryModelImpl.

      Parameters:
      companyId - the company ID
      creatorClassNameId - the creator class name ID
      creatorClassPKs - the creator class pks
      start - the lower bound of the range of microblogs entries
      end - the upper bound of the range of microblogs entries (not inclusive)
      Returns:
      the range of matching microblogs entries
    • findByC_CCNI_CCPK

      public static List<MicroblogsEntry> findByC_CCNI_CCPK(long companyId, long creatorClassNameId, long[] creatorClassPKs, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
      Returns an ordered range of all the microblogs entries where companyId = ? and creatorClassNameId = ? and creatorClassPK = any ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from MicroblogsEntryModelImpl.

      Parameters:
      companyId - the company ID
      creatorClassNameId - the creator class name ID
      creatorClassPKs - the creator class pks
      start - the lower bound of the range of microblogs entries
      end - the upper bound of the range of microblogs entries (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching microblogs entries
    • findByC_CCNI_CCPK

      public static List<MicroblogsEntry> findByC_CCNI_CCPK(long companyId, long creatorClassNameId, long[] creatorClassPKs, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the microblogs entries where companyId = ? and creatorClassNameId = ? and creatorClassPK = ?, optionally using the finder cache.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from MicroblogsEntryModelImpl.

      Parameters:
      companyId - the company ID
      creatorClassNameId - the creator class name ID
      creatorClassPKs - the creator class pks
      start - the lower bound of the range of microblogs entries
      end - the upper bound of the range of microblogs entries (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching microblogs entries
    • removeByC_CCNI_CCPK

      public static void removeByC_CCNI_CCPK(long companyId, long creatorClassNameId, long creatorClassPK)
      Removes all the microblogs entries where companyId = ? and creatorClassNameId = ? and creatorClassPK = ? from the database.
      Parameters:
      companyId - the company ID
      creatorClassNameId - the creator class name ID
      creatorClassPK - the creator class pk
    • countByC_CCNI_CCPK

      public static int countByC_CCNI_CCPK(long companyId, long creatorClassNameId, long creatorClassPK)
      Returns the number of microblogs entries where companyId = ? and creatorClassNameId = ? and creatorClassPK = ?.
      Parameters:
      companyId - the company ID
      creatorClassNameId - the creator class name ID
      creatorClassPK - the creator class pk
      Returns:
      the number of matching microblogs entries
    • countByC_CCNI_CCPK

      public static int countByC_CCNI_CCPK(long companyId, long creatorClassNameId, long[] creatorClassPKs)
      Returns the number of microblogs entries where companyId = ? and creatorClassNameId = ? and creatorClassPK = any ?.
      Parameters:
      companyId - the company ID
      creatorClassNameId - the creator class name ID
      creatorClassPKs - the creator class pks
      Returns:
      the number of matching microblogs entries
    • filterCountByC_CCNI_CCPK

      public static int filterCountByC_CCNI_CCPK(long companyId, long creatorClassNameId, long creatorClassPK)
      Returns the number of microblogs entries that the user has permission to view where companyId = ? and creatorClassNameId = ? and creatorClassPK = ?.
      Parameters:
      companyId - the company ID
      creatorClassNameId - the creator class name ID
      creatorClassPK - the creator class pk
      Returns:
      the number of matching microblogs entries that the user has permission to view
    • filterCountByC_CCNI_CCPK

      public static int filterCountByC_CCNI_CCPK(long companyId, long creatorClassNameId, long[] creatorClassPKs)
      Returns the number of microblogs entries that the user has permission to view where companyId = ? and creatorClassNameId = ? and creatorClassPK = any ?.
      Parameters:
      companyId - the company ID
      creatorClassNameId - the creator class name ID
      creatorClassPKs - the creator class pks
      Returns:
      the number of matching microblogs entries that the user has permission to view
    • findByC_CCNI_T

      public static List<MicroblogsEntry> findByC_CCNI_T(long companyId, long creatorClassNameId, int type)
      Returns all the microblogs entries where companyId = ? and creatorClassNameId = ? and type = ?.
      Parameters:
      companyId - the company ID
      creatorClassNameId - the creator class name ID
      type - the type
      Returns:
      the matching microblogs entries
    • findByC_CCNI_T

      public static List<MicroblogsEntry> findByC_CCNI_T(long companyId, long creatorClassNameId, int type, int start, int end)
      Returns a range of all the microblogs entries where companyId = ? and creatorClassNameId = ? and type = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from MicroblogsEntryModelImpl.

      Parameters:
      companyId - the company ID
      creatorClassNameId - the creator class name ID
      type - the type
      start - the lower bound of the range of microblogs entries
      end - the upper bound of the range of microblogs entries (not inclusive)
      Returns:
      the range of matching microblogs entries
    • findByC_CCNI_T

      public static List<MicroblogsEntry> findByC_CCNI_T(long companyId, long creatorClassNameId, int type, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
      Returns an ordered range of all the microblogs entries where companyId = ? and creatorClassNameId = ? and type = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from MicroblogsEntryModelImpl.

      Parameters:
      companyId - the company ID
      creatorClassNameId - the creator class name ID
      type - the type
      start - the lower bound of the range of microblogs entries
      end - the upper bound of the range of microblogs entries (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching microblogs entries
    • findByC_CCNI_T

      public static List<MicroblogsEntry> findByC_CCNI_T(long companyId, long creatorClassNameId, int type, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the microblogs entries where companyId = ? and creatorClassNameId = ? and type = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from MicroblogsEntryModelImpl.

      Parameters:
      companyId - the company ID
      creatorClassNameId - the creator class name ID
      type - the type
      start - the lower bound of the range of microblogs entries
      end - the upper bound of the range of microblogs entries (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching microblogs entries
    • findByC_CCNI_T_First

      public static MicroblogsEntry findByC_CCNI_T_First(long companyId, long creatorClassNameId, int type, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the first microblogs entry in the ordered set where companyId = ? and creatorClassNameId = ? and type = ?.
      Parameters:
      companyId - the company ID
      creatorClassNameId - the creator class name ID
      type - the type
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching microblogs entry
      Throws:
      NoSuchEntryException - if a matching microblogs entry could not be found
      NoSuchEntryException
    • fetchByC_CCNI_T_First

      public static MicroblogsEntry fetchByC_CCNI_T_First(long companyId, long creatorClassNameId, int type, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
      Returns the first microblogs entry in the ordered set where companyId = ? and creatorClassNameId = ? and type = ?.
      Parameters:
      companyId - the company ID
      creatorClassNameId - the creator class name ID
      type - the type
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching microblogs entry, or null if a matching microblogs entry could not be found
    • findByC_CCNI_T_Last

      public static MicroblogsEntry findByC_CCNI_T_Last(long companyId, long creatorClassNameId, int type, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the last microblogs entry in the ordered set where companyId = ? and creatorClassNameId = ? and type = ?.
      Parameters:
      companyId - the company ID
      creatorClassNameId - the creator class name ID
      type - the type
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching microblogs entry
      Throws:
      NoSuchEntryException - if a matching microblogs entry could not be found
      NoSuchEntryException
    • fetchByC_CCNI_T_Last

      public static MicroblogsEntry fetchByC_CCNI_T_Last(long companyId, long creatorClassNameId, int type, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
      Returns the last microblogs entry in the ordered set where companyId = ? and creatorClassNameId = ? and type = ?.
      Parameters:
      companyId - the company ID
      creatorClassNameId - the creator class name ID
      type - the type
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching microblogs entry, or null if a matching microblogs entry could not be found
    • findByC_CCNI_T_PrevAndNext

      public static MicroblogsEntry[] findByC_CCNI_T_PrevAndNext(long microblogsEntryId, long companyId, long creatorClassNameId, int type, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the microblogs entries before and after the current microblogs entry in the ordered set where companyId = ? and creatorClassNameId = ? and type = ?.
      Parameters:
      microblogsEntryId - the primary key of the current microblogs entry
      companyId - the company ID
      creatorClassNameId - the creator class name ID
      type - the type
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next microblogs entry
      Throws:
      NoSuchEntryException - if a microblogs entry with the primary key could not be found
      NoSuchEntryException
    • filterFindByC_CCNI_T

      public static List<MicroblogsEntry> filterFindByC_CCNI_T(long companyId, long creatorClassNameId, int type)
      Returns all the microblogs entries that the user has permission to view where companyId = ? and creatorClassNameId = ? and type = ?.
      Parameters:
      companyId - the company ID
      creatorClassNameId - the creator class name ID
      type - the type
      Returns:
      the matching microblogs entries that the user has permission to view
    • filterFindByC_CCNI_T

      public static List<MicroblogsEntry> filterFindByC_CCNI_T(long companyId, long creatorClassNameId, int type, int start, int end)
      Returns a range of all the microblogs entries that the user has permission to view where companyId = ? and creatorClassNameId = ? and type = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from MicroblogsEntryModelImpl.

      Parameters:
      companyId - the company ID
      creatorClassNameId - the creator class name ID
      type - the type
      start - the lower bound of the range of microblogs entries
      end - the upper bound of the range of microblogs entries (not inclusive)
      Returns:
      the range of matching microblogs entries that the user has permission to view
    • filterFindByC_CCNI_T

      public static List<MicroblogsEntry> filterFindByC_CCNI_T(long companyId, long creatorClassNameId, int type, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
      Returns an ordered range of all the microblogs entries that the user has permissions to view where companyId = ? and creatorClassNameId = ? and type = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from MicroblogsEntryModelImpl.

      Parameters:
      companyId - the company ID
      creatorClassNameId - the creator class name ID
      type - the type
      start - the lower bound of the range of microblogs entries
      end - the upper bound of the range of microblogs entries (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching microblogs entries that the user has permission to view
    • filterFindByC_CCNI_T_PrevAndNext

      public static MicroblogsEntry[] filterFindByC_CCNI_T_PrevAndNext(long microblogsEntryId, long companyId, long creatorClassNameId, int type, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the microblogs entries before and after the current microblogs entry in the ordered set of microblogs entries that the user has permission to view where companyId = ? and creatorClassNameId = ? and type = ?.
      Parameters:
      microblogsEntryId - the primary key of the current microblogs entry
      companyId - the company ID
      creatorClassNameId - the creator class name ID
      type - the type
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next microblogs entry
      Throws:
      NoSuchEntryException - if a microblogs entry with the primary key could not be found
      NoSuchEntryException
    • removeByC_CCNI_T

      public static void removeByC_CCNI_T(long companyId, long creatorClassNameId, int type)
      Removes all the microblogs entries where companyId = ? and creatorClassNameId = ? and type = ? from the database.
      Parameters:
      companyId - the company ID
      creatorClassNameId - the creator class name ID
      type - the type
    • countByC_CCNI_T

      public static int countByC_CCNI_T(long companyId, long creatorClassNameId, int type)
      Returns the number of microblogs entries where companyId = ? and creatorClassNameId = ? and type = ?.
      Parameters:
      companyId - the company ID
      creatorClassNameId - the creator class name ID
      type - the type
      Returns:
      the number of matching microblogs entries
    • filterCountByC_CCNI_T

      public static int filterCountByC_CCNI_T(long companyId, long creatorClassNameId, int type)
      Returns the number of microblogs entries that the user has permission to view where companyId = ? and creatorClassNameId = ? and type = ?.
      Parameters:
      companyId - the company ID
      creatorClassNameId - the creator class name ID
      type - the type
      Returns:
      the number of matching microblogs entries that the user has permission to view
    • findByCCNI_CCPK_T

      public static List<MicroblogsEntry> findByCCNI_CCPK_T(long creatorClassNameId, long creatorClassPK, int type)
      Returns all the microblogs entries where creatorClassNameId = ? and creatorClassPK = ? and type = ?.
      Parameters:
      creatorClassNameId - the creator class name ID
      creatorClassPK - the creator class pk
      type - the type
      Returns:
      the matching microblogs entries
    • findByCCNI_CCPK_T

      public static List<MicroblogsEntry> findByCCNI_CCPK_T(long creatorClassNameId, long creatorClassPK, int type, int start, int end)
      Returns a range of all the microblogs entries where creatorClassNameId = ? and creatorClassPK = ? and type = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from MicroblogsEntryModelImpl.

      Parameters:
      creatorClassNameId - the creator class name ID
      creatorClassPK - the creator class pk
      type - the type
      start - the lower bound of the range of microblogs entries
      end - the upper bound of the range of microblogs entries (not inclusive)
      Returns:
      the range of matching microblogs entries
    • findByCCNI_CCPK_T

      public static List<MicroblogsEntry> findByCCNI_CCPK_T(long creatorClassNameId, long creatorClassPK, int type, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
      Returns an ordered range of all the microblogs entries where creatorClassNameId = ? and creatorClassPK = ? and type = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from MicroblogsEntryModelImpl.

      Parameters:
      creatorClassNameId - the creator class name ID
      creatorClassPK - the creator class pk
      type - the type
      start - the lower bound of the range of microblogs entries
      end - the upper bound of the range of microblogs entries (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching microblogs entries
    • findByCCNI_CCPK_T

      public static List<MicroblogsEntry> findByCCNI_CCPK_T(long creatorClassNameId, long creatorClassPK, int type, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the microblogs entries where creatorClassNameId = ? and creatorClassPK = ? and type = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from MicroblogsEntryModelImpl.

      Parameters:
      creatorClassNameId - the creator class name ID
      creatorClassPK - the creator class pk
      type - the type
      start - the lower bound of the range of microblogs entries
      end - the upper bound of the range of microblogs entries (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching microblogs entries
    • findByCCNI_CCPK_T_First

      public static MicroblogsEntry findByCCNI_CCPK_T_First(long creatorClassNameId, long creatorClassPK, int type, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the first microblogs entry in the ordered set where creatorClassNameId = ? and creatorClassPK = ? and type = ?.
      Parameters:
      creatorClassNameId - the creator class name ID
      creatorClassPK - the creator class pk
      type - the type
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching microblogs entry
      Throws:
      NoSuchEntryException - if a matching microblogs entry could not be found
      NoSuchEntryException
    • fetchByCCNI_CCPK_T_First

      public static MicroblogsEntry fetchByCCNI_CCPK_T_First(long creatorClassNameId, long creatorClassPK, int type, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
      Returns the first microblogs entry in the ordered set where creatorClassNameId = ? and creatorClassPK = ? and type = ?.
      Parameters:
      creatorClassNameId - the creator class name ID
      creatorClassPK - the creator class pk
      type - the type
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching microblogs entry, or null if a matching microblogs entry could not be found
    • findByCCNI_CCPK_T_Last

      public static MicroblogsEntry findByCCNI_CCPK_T_Last(long creatorClassNameId, long creatorClassPK, int type, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the last microblogs entry in the ordered set where creatorClassNameId = ? and creatorClassPK = ? and type = ?.
      Parameters:
      creatorClassNameId - the creator class name ID
      creatorClassPK - the creator class pk
      type - the type
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching microblogs entry
      Throws:
      NoSuchEntryException - if a matching microblogs entry could not be found
      NoSuchEntryException
    • fetchByCCNI_CCPK_T_Last

      public static MicroblogsEntry fetchByCCNI_CCPK_T_Last(long creatorClassNameId, long creatorClassPK, int type, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
      Returns the last microblogs entry in the ordered set where creatorClassNameId = ? and creatorClassPK = ? and type = ?.
      Parameters:
      creatorClassNameId - the creator class name ID
      creatorClassPK - the creator class pk
      type - the type
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching microblogs entry, or null if a matching microblogs entry could not be found
    • findByCCNI_CCPK_T_PrevAndNext

      public static MicroblogsEntry[] findByCCNI_CCPK_T_PrevAndNext(long microblogsEntryId, long creatorClassNameId, long creatorClassPK, int type, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the microblogs entries before and after the current microblogs entry in the ordered set where creatorClassNameId = ? and creatorClassPK = ? and type = ?.
      Parameters:
      microblogsEntryId - the primary key of the current microblogs entry
      creatorClassNameId - the creator class name ID
      creatorClassPK - the creator class pk
      type - the type
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next microblogs entry
      Throws:
      NoSuchEntryException - if a microblogs entry with the primary key could not be found
      NoSuchEntryException
    • filterFindByCCNI_CCPK_T

      public static List<MicroblogsEntry> filterFindByCCNI_CCPK_T(long creatorClassNameId, long creatorClassPK, int type)
      Returns all the microblogs entries that the user has permission to view where creatorClassNameId = ? and creatorClassPK = ? and type = ?.
      Parameters:
      creatorClassNameId - the creator class name ID
      creatorClassPK - the creator class pk
      type - the type
      Returns:
      the matching microblogs entries that the user has permission to view
    • filterFindByCCNI_CCPK_T

      public static List<MicroblogsEntry> filterFindByCCNI_CCPK_T(long creatorClassNameId, long creatorClassPK, int type, int start, int end)
      Returns a range of all the microblogs entries that the user has permission to view where creatorClassNameId = ? and creatorClassPK = ? and type = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from MicroblogsEntryModelImpl.

      Parameters:
      creatorClassNameId - the creator class name ID
      creatorClassPK - the creator class pk
      type - the type
      start - the lower bound of the range of microblogs entries
      end - the upper bound of the range of microblogs entries (not inclusive)
      Returns:
      the range of matching microblogs entries that the user has permission to view
    • filterFindByCCNI_CCPK_T

      public static List<MicroblogsEntry> filterFindByCCNI_CCPK_T(long creatorClassNameId, long creatorClassPK, int type, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
      Returns an ordered range of all the microblogs entries that the user has permissions to view where creatorClassNameId = ? and creatorClassPK = ? and type = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from MicroblogsEntryModelImpl.

      Parameters:
      creatorClassNameId - the creator class name ID
      creatorClassPK - the creator class pk
      type - the type
      start - the lower bound of the range of microblogs entries
      end - the upper bound of the range of microblogs entries (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching microblogs entries that the user has permission to view
    • filterFindByCCNI_CCPK_T_PrevAndNext

      public static MicroblogsEntry[] filterFindByCCNI_CCPK_T_PrevAndNext(long microblogsEntryId, long creatorClassNameId, long creatorClassPK, int type, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the microblogs entries before and after the current microblogs entry in the ordered set of microblogs entries that the user has permission to view where creatorClassNameId = ? and creatorClassPK = ? and type = ?.
      Parameters:
      microblogsEntryId - the primary key of the current microblogs entry
      creatorClassNameId - the creator class name ID
      creatorClassPK - the creator class pk
      type - the type
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next microblogs entry
      Throws:
      NoSuchEntryException - if a microblogs entry with the primary key could not be found
      NoSuchEntryException
    • filterFindByCCNI_CCPK_T

      public static List<MicroblogsEntry> filterFindByCCNI_CCPK_T(long creatorClassNameId, long[] creatorClassPKs, int type)
      Returns all the microblogs entries that the user has permission to view where creatorClassNameId = ? and creatorClassPK = any ? and type = ?.
      Parameters:
      creatorClassNameId - the creator class name ID
      creatorClassPKs - the creator class pks
      type - the type
      Returns:
      the matching microblogs entries that the user has permission to view
    • filterFindByCCNI_CCPK_T

      public static List<MicroblogsEntry> filterFindByCCNI_CCPK_T(long creatorClassNameId, long[] creatorClassPKs, int type, int start, int end)
      Returns a range of all the microblogs entries that the user has permission to view where creatorClassNameId = ? and creatorClassPK = any ? and type = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from MicroblogsEntryModelImpl.

      Parameters:
      creatorClassNameId - the creator class name ID
      creatorClassPKs - the creator class pks
      type - the type
      start - the lower bound of the range of microblogs entries
      end - the upper bound of the range of microblogs entries (not inclusive)
      Returns:
      the range of matching microblogs entries that the user has permission to view
    • filterFindByCCNI_CCPK_T

      public static List<MicroblogsEntry> filterFindByCCNI_CCPK_T(long creatorClassNameId, long[] creatorClassPKs, int type, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
      Returns an ordered range of all the microblogs entries that the user has permission to view where creatorClassNameId = ? and creatorClassPK = any ? and type = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from MicroblogsEntryModelImpl.

      Parameters:
      creatorClassNameId - the creator class name ID
      creatorClassPKs - the creator class pks
      type - the type
      start - the lower bound of the range of microblogs entries
      end - the upper bound of the range of microblogs entries (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching microblogs entries that the user has permission to view
    • findByCCNI_CCPK_T

      public static List<MicroblogsEntry> findByCCNI_CCPK_T(long creatorClassNameId, long[] creatorClassPKs, int type)
      Returns all the microblogs entries where creatorClassNameId = ? and creatorClassPK = any ? and type = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from MicroblogsEntryModelImpl.

      Parameters:
      creatorClassNameId - the creator class name ID
      creatorClassPKs - the creator class pks
      type - the type
      Returns:
      the matching microblogs entries
    • findByCCNI_CCPK_T

      public static List<MicroblogsEntry> findByCCNI_CCPK_T(long creatorClassNameId, long[] creatorClassPKs, int type, int start, int end)
      Returns a range of all the microblogs entries where creatorClassNameId = ? and creatorClassPK = any ? and type = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from MicroblogsEntryModelImpl.

      Parameters:
      creatorClassNameId - the creator class name ID
      creatorClassPKs - the creator class pks
      type - the type
      start - the lower bound of the range of microblogs entries
      end - the upper bound of the range of microblogs entries (not inclusive)
      Returns:
      the range of matching microblogs entries
    • findByCCNI_CCPK_T

      public static List<MicroblogsEntry> findByCCNI_CCPK_T(long creatorClassNameId, long[] creatorClassPKs, int type, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
      Returns an ordered range of all the microblogs entries where creatorClassNameId = ? and creatorClassPK = any ? and type = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from MicroblogsEntryModelImpl.

      Parameters:
      creatorClassNameId - the creator class name ID
      creatorClassPKs - the creator class pks
      type - the type
      start - the lower bound of the range of microblogs entries
      end - the upper bound of the range of microblogs entries (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching microblogs entries
    • findByCCNI_CCPK_T

      public static List<MicroblogsEntry> findByCCNI_CCPK_T(long creatorClassNameId, long[] creatorClassPKs, int type, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the microblogs entries where creatorClassNameId = ? and creatorClassPK = ? and type = ?, optionally using the finder cache.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from MicroblogsEntryModelImpl.

      Parameters:
      creatorClassNameId - the creator class name ID
      creatorClassPKs - the creator class pks
      type - the type
      start - the lower bound of the range of microblogs entries
      end - the upper bound of the range of microblogs entries (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching microblogs entries
    • removeByCCNI_CCPK_T

      public static void removeByCCNI_CCPK_T(long creatorClassNameId, long creatorClassPK, int type)
      Removes all the microblogs entries where creatorClassNameId = ? and creatorClassPK = ? and type = ? from the database.
      Parameters:
      creatorClassNameId - the creator class name ID
      creatorClassPK - the creator class pk
      type - the type
    • countByCCNI_CCPK_T

      public static int countByCCNI_CCPK_T(long creatorClassNameId, long creatorClassPK, int type)
      Returns the number of microblogs entries where creatorClassNameId = ? and creatorClassPK = ? and type = ?.
      Parameters:
      creatorClassNameId - the creator class name ID
      creatorClassPK - the creator class pk
      type - the type
      Returns:
      the number of matching microblogs entries
    • countByCCNI_CCPK_T

      public static int countByCCNI_CCPK_T(long creatorClassNameId, long[] creatorClassPKs, int type)
      Returns the number of microblogs entries where creatorClassNameId = ? and creatorClassPK = any ? and type = ?.
      Parameters:
      creatorClassNameId - the creator class name ID
      creatorClassPKs - the creator class pks
      type - the type
      Returns:
      the number of matching microblogs entries
    • filterCountByCCNI_CCPK_T

      public static int filterCountByCCNI_CCPK_T(long creatorClassNameId, long creatorClassPK, int type)
      Returns the number of microblogs entries that the user has permission to view where creatorClassNameId = ? and creatorClassPK = ? and type = ?.
      Parameters:
      creatorClassNameId - the creator class name ID
      creatorClassPK - the creator class pk
      type - the type
      Returns:
      the number of matching microblogs entries that the user has permission to view
    • filterCountByCCNI_CCPK_T

      public static int filterCountByCCNI_CCPK_T(long creatorClassNameId, long[] creatorClassPKs, int type)
      Returns the number of microblogs entries that the user has permission to view where creatorClassNameId = ? and creatorClassPK = any ? and type = ?.
      Parameters:
      creatorClassNameId - the creator class name ID
      creatorClassPKs - the creator class pks
      type - the type
      Returns:
      the number of matching microblogs entries that the user has permission to view
    • findByC_CCNI_CCPK_T

      public static List<MicroblogsEntry> findByC_CCNI_CCPK_T(long companyId, long creatorClassNameId, long creatorClassPK, int type)
      Returns all the microblogs entries where companyId = ? and creatorClassNameId = ? and creatorClassPK = ? and type = ?.
      Parameters:
      companyId - the company ID
      creatorClassNameId - the creator class name ID
      creatorClassPK - the creator class pk
      type - the type
      Returns:
      the matching microblogs entries
    • findByC_CCNI_CCPK_T

      public static List<MicroblogsEntry> findByC_CCNI_CCPK_T(long companyId, long creatorClassNameId, long creatorClassPK, int type, int start, int end)
      Returns a range of all the microblogs entries where companyId = ? and creatorClassNameId = ? and creatorClassPK = ? and type = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from MicroblogsEntryModelImpl.

      Parameters:
      companyId - the company ID
      creatorClassNameId - the creator class name ID
      creatorClassPK - the creator class pk
      type - the type
      start - the lower bound of the range of microblogs entries
      end - the upper bound of the range of microblogs entries (not inclusive)
      Returns:
      the range of matching microblogs entries
    • findByC_CCNI_CCPK_T

      public static List<MicroblogsEntry> findByC_CCNI_CCPK_T(long companyId, long creatorClassNameId, long creatorClassPK, int type, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
      Returns an ordered range of all the microblogs entries where companyId = ? and creatorClassNameId = ? and creatorClassPK = ? and type = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from MicroblogsEntryModelImpl.

      Parameters:
      companyId - the company ID
      creatorClassNameId - the creator class name ID
      creatorClassPK - the creator class pk
      type - the type
      start - the lower bound of the range of microblogs entries
      end - the upper bound of the range of microblogs entries (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching microblogs entries
    • findByC_CCNI_CCPK_T

      public static List<MicroblogsEntry> findByC_CCNI_CCPK_T(long companyId, long creatorClassNameId, long creatorClassPK, int type, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the microblogs entries where companyId = ? and creatorClassNameId = ? and creatorClassPK = ? and type = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from MicroblogsEntryModelImpl.

      Parameters:
      companyId - the company ID
      creatorClassNameId - the creator class name ID
      creatorClassPK - the creator class pk
      type - the type
      start - the lower bound of the range of microblogs entries
      end - the upper bound of the range of microblogs entries (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching microblogs entries
    • findByC_CCNI_CCPK_T_First

      public static MicroblogsEntry findByC_CCNI_CCPK_T_First(long companyId, long creatorClassNameId, long creatorClassPK, int type, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the first microblogs entry in the ordered set where companyId = ? and creatorClassNameId = ? and creatorClassPK = ? and type = ?.
      Parameters:
      companyId - the company ID
      creatorClassNameId - the creator class name ID
      creatorClassPK - the creator class pk
      type - the type
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching microblogs entry
      Throws:
      NoSuchEntryException - if a matching microblogs entry could not be found
      NoSuchEntryException
    • fetchByC_CCNI_CCPK_T_First

      public static MicroblogsEntry fetchByC_CCNI_CCPK_T_First(long companyId, long creatorClassNameId, long creatorClassPK, int type, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
      Returns the first microblogs entry in the ordered set where companyId = ? and creatorClassNameId = ? and creatorClassPK = ? and type = ?.
      Parameters:
      companyId - the company ID
      creatorClassNameId - the creator class name ID
      creatorClassPK - the creator class pk
      type - the type
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching microblogs entry, or null if a matching microblogs entry could not be found
    • findByC_CCNI_CCPK_T_Last

      public static MicroblogsEntry findByC_CCNI_CCPK_T_Last(long companyId, long creatorClassNameId, long creatorClassPK, int type, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the last microblogs entry in the ordered set where companyId = ? and creatorClassNameId = ? and creatorClassPK = ? and type = ?.
      Parameters:
      companyId - the company ID
      creatorClassNameId - the creator class name ID
      creatorClassPK - the creator class pk
      type - the type
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching microblogs entry
      Throws:
      NoSuchEntryException - if a matching microblogs entry could not be found
      NoSuchEntryException
    • fetchByC_CCNI_CCPK_T_Last

      public static MicroblogsEntry fetchByC_CCNI_CCPK_T_Last(long companyId, long creatorClassNameId, long creatorClassPK, int type, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
      Returns the last microblogs entry in the ordered set where companyId = ? and creatorClassNameId = ? and creatorClassPK = ? and type = ?.
      Parameters:
      companyId - the company ID
      creatorClassNameId - the creator class name ID
      creatorClassPK - the creator class pk
      type - the type
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching microblogs entry, or null if a matching microblogs entry could not be found
    • findByC_CCNI_CCPK_T_PrevAndNext

      public static MicroblogsEntry[] findByC_CCNI_CCPK_T_PrevAndNext(long microblogsEntryId, long companyId, long creatorClassNameId, long creatorClassPK, int type, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the microblogs entries before and after the current microblogs entry in the ordered set where companyId = ? and creatorClassNameId = ? and creatorClassPK = ? and type = ?.
      Parameters:
      microblogsEntryId - the primary key of the current microblogs entry
      companyId - the company ID
      creatorClassNameId - the creator class name ID
      creatorClassPK - the creator class pk
      type - the type
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next microblogs entry
      Throws:
      NoSuchEntryException - if a microblogs entry with the primary key could not be found
      NoSuchEntryException
    • filterFindByC_CCNI_CCPK_T

      public static List<MicroblogsEntry> filterFindByC_CCNI_CCPK_T(long companyId, long creatorClassNameId, long creatorClassPK, int type)
      Returns all the microblogs entries that the user has permission to view where companyId = ? and creatorClassNameId = ? and creatorClassPK = ? and type = ?.
      Parameters:
      companyId - the company ID
      creatorClassNameId - the creator class name ID
      creatorClassPK - the creator class pk
      type - the type
      Returns:
      the matching microblogs entries that the user has permission to view
    • filterFindByC_CCNI_CCPK_T

      public static List<MicroblogsEntry> filterFindByC_CCNI_CCPK_T(long companyId, long creatorClassNameId, long creatorClassPK, int type, int start, int end)
      Returns a range of all the microblogs entries that the user has permission to view where companyId = ? and creatorClassNameId = ? and creatorClassPK = ? and type = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from MicroblogsEntryModelImpl.

      Parameters:
      companyId - the company ID
      creatorClassNameId - the creator class name ID
      creatorClassPK - the creator class pk
      type - the type
      start - the lower bound of the range of microblogs entries
      end - the upper bound of the range of microblogs entries (not inclusive)
      Returns:
      the range of matching microblogs entries that the user has permission to view
    • filterFindByC_CCNI_CCPK_T

      public static List<MicroblogsEntry> filterFindByC_CCNI_CCPK_T(long companyId, long creatorClassNameId, long creatorClassPK, int type, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
      Returns an ordered range of all the microblogs entries that the user has permissions to view where companyId = ? and creatorClassNameId = ? and creatorClassPK = ? and type = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from MicroblogsEntryModelImpl.

      Parameters:
      companyId - the company ID
      creatorClassNameId - the creator class name ID
      creatorClassPK - the creator class pk
      type - the type
      start - the lower bound of the range of microblogs entries
      end - the upper bound of the range of microblogs entries (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching microblogs entries that the user has permission to view
    • filterFindByC_CCNI_CCPK_T_PrevAndNext

      public static MicroblogsEntry[] filterFindByC_CCNI_CCPK_T_PrevAndNext(long microblogsEntryId, long companyId, long creatorClassNameId, long creatorClassPK, int type, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the microblogs entries before and after the current microblogs entry in the ordered set of microblogs entries that the user has permission to view where companyId = ? and creatorClassNameId = ? and creatorClassPK = ? and type = ?.
      Parameters:
      microblogsEntryId - the primary key of the current microblogs entry
      companyId - the company ID
      creatorClassNameId - the creator class name ID
      creatorClassPK - the creator class pk
      type - the type
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next microblogs entry
      Throws:
      NoSuchEntryException - if a microblogs entry with the primary key could not be found
      NoSuchEntryException
    • filterFindByC_CCNI_CCPK_T

      public static List<MicroblogsEntry> filterFindByC_CCNI_CCPK_T(long companyId, long creatorClassNameId, long[] creatorClassPKs, int type)
      Returns all the microblogs entries that the user has permission to view where companyId = ? and creatorClassNameId = ? and creatorClassPK = any ? and type = ?.
      Parameters:
      companyId - the company ID
      creatorClassNameId - the creator class name ID
      creatorClassPKs - the creator class pks
      type - the type
      Returns:
      the matching microblogs entries that the user has permission to view
    • filterFindByC_CCNI_CCPK_T

      public static List<MicroblogsEntry> filterFindByC_CCNI_CCPK_T(long companyId, long creatorClassNameId, long[] creatorClassPKs, int type, int start, int end)
      Returns a range of all the microblogs entries that the user has permission to view where companyId = ? and creatorClassNameId = ? and creatorClassPK = any ? and type = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from MicroblogsEntryModelImpl.

      Parameters:
      companyId - the company ID
      creatorClassNameId - the creator class name ID
      creatorClassPKs - the creator class pks
      type - the type
      start - the lower bound of the range of microblogs entries
      end - the upper bound of the range of microblogs entries (not inclusive)
      Returns:
      the range of matching microblogs entries that the user has permission to view
    • filterFindByC_CCNI_CCPK_T

      public static List<MicroblogsEntry> filterFindByC_CCNI_CCPK_T(long companyId, long creatorClassNameId, long[] creatorClassPKs, int type, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
      Returns an ordered range of all the microblogs entries that the user has permission to view where companyId = ? and creatorClassNameId = ? and creatorClassPK = any ? and type = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from MicroblogsEntryModelImpl.

      Parameters:
      companyId - the company ID
      creatorClassNameId - the creator class name ID
      creatorClassPKs - the creator class pks
      type - the type
      start - the lower bound of the range of microblogs entries
      end - the upper bound of the range of microblogs entries (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching microblogs entries that the user has permission to view
    • findByC_CCNI_CCPK_T

      public static List<MicroblogsEntry> findByC_CCNI_CCPK_T(long companyId, long creatorClassNameId, long[] creatorClassPKs, int type)
      Returns all the microblogs entries where companyId = ? and creatorClassNameId = ? and creatorClassPK = any ? and type = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from MicroblogsEntryModelImpl.

      Parameters:
      companyId - the company ID
      creatorClassNameId - the creator class name ID
      creatorClassPKs - the creator class pks
      type - the type
      Returns:
      the matching microblogs entries
    • findByC_CCNI_CCPK_T

      public static List<MicroblogsEntry> findByC_CCNI_CCPK_T(long companyId, long creatorClassNameId, long[] creatorClassPKs, int type, int start, int end)
      Returns a range of all the microblogs entries where companyId = ? and creatorClassNameId = ? and creatorClassPK = any ? and type = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from MicroblogsEntryModelImpl.

      Parameters:
      companyId - the company ID
      creatorClassNameId - the creator class name ID
      creatorClassPKs - the creator class pks
      type - the type
      start - the lower bound of the range of microblogs entries
      end - the upper bound of the range of microblogs entries (not inclusive)
      Returns:
      the range of matching microblogs entries
    • findByC_CCNI_CCPK_T

      public static List<MicroblogsEntry> findByC_CCNI_CCPK_T(long companyId, long creatorClassNameId, long[] creatorClassPKs, int type, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
      Returns an ordered range of all the microblogs entries where companyId = ? and creatorClassNameId = ? and creatorClassPK = any ? and type = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from MicroblogsEntryModelImpl.

      Parameters:
      companyId - the company ID
      creatorClassNameId - the creator class name ID
      creatorClassPKs - the creator class pks
      type - the type
      start - the lower bound of the range of microblogs entries
      end - the upper bound of the range of microblogs entries (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching microblogs entries
    • findByC_CCNI_CCPK_T

      public static List<MicroblogsEntry> findByC_CCNI_CCPK_T(long companyId, long creatorClassNameId, long[] creatorClassPKs, int type, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the microblogs entries where companyId = ? and creatorClassNameId = ? and creatorClassPK = ? and type = ?, optionally using the finder cache.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from MicroblogsEntryModelImpl.

      Parameters:
      companyId - the company ID
      creatorClassNameId - the creator class name ID
      creatorClassPKs - the creator class pks
      type - the type
      start - the lower bound of the range of microblogs entries
      end - the upper bound of the range of microblogs entries (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching microblogs entries
    • removeByC_CCNI_CCPK_T

      public static void removeByC_CCNI_CCPK_T(long companyId, long creatorClassNameId, long creatorClassPK, int type)
      Removes all the microblogs entries where companyId = ? and creatorClassNameId = ? and creatorClassPK = ? and type = ? from the database.
      Parameters:
      companyId - the company ID
      creatorClassNameId - the creator class name ID
      creatorClassPK - the creator class pk
      type - the type
    • countByC_CCNI_CCPK_T

      public static int countByC_CCNI_CCPK_T(long companyId, long creatorClassNameId, long creatorClassPK, int type)
      Returns the number of microblogs entries where companyId = ? and creatorClassNameId = ? and creatorClassPK = ? and type = ?.
      Parameters:
      companyId - the company ID
      creatorClassNameId - the creator class name ID
      creatorClassPK - the creator class pk
      type - the type
      Returns:
      the number of matching microblogs entries
    • countByC_CCNI_CCPK_T

      public static int countByC_CCNI_CCPK_T(long companyId, long creatorClassNameId, long[] creatorClassPKs, int type)
      Returns the number of microblogs entries where companyId = ? and creatorClassNameId = ? and creatorClassPK = any ? and type = ?.
      Parameters:
      companyId - the company ID
      creatorClassNameId - the creator class name ID
      creatorClassPKs - the creator class pks
      type - the type
      Returns:
      the number of matching microblogs entries
    • filterCountByC_CCNI_CCPK_T

      public static int filterCountByC_CCNI_CCPK_T(long companyId, long creatorClassNameId, long creatorClassPK, int type)
      Returns the number of microblogs entries that the user has permission to view where companyId = ? and creatorClassNameId = ? and creatorClassPK = ? and type = ?.
      Parameters:
      companyId - the company ID
      creatorClassNameId - the creator class name ID
      creatorClassPK - the creator class pk
      type - the type
      Returns:
      the number of matching microblogs entries that the user has permission to view
    • filterCountByC_CCNI_CCPK_T

      public static int filterCountByC_CCNI_CCPK_T(long companyId, long creatorClassNameId, long[] creatorClassPKs, int type)
      Returns the number of microblogs entries that the user has permission to view where companyId = ? and creatorClassNameId = ? and creatorClassPK = any ? and type = ?.
      Parameters:
      companyId - the company ID
      creatorClassNameId - the creator class name ID
      creatorClassPKs - the creator class pks
      type - the type
      Returns:
      the number of matching microblogs entries that the user has permission to view
    • findByU_C_T_S

      public static List<MicroblogsEntry> findByU_C_T_S(long userId, Date createDate, int type, int socialRelationType)
      Returns all the microblogs entries where userId = ? and createDate = ? and type = ? and socialRelationType = ?.
      Parameters:
      userId - the user ID
      createDate - the create date
      type - the type
      socialRelationType - the social relation type
      Returns:
      the matching microblogs entries
    • findByU_C_T_S

      public static List<MicroblogsEntry> findByU_C_T_S(long userId, Date createDate, int type, int socialRelationType, int start, int end)
      Returns a range of all the microblogs entries where userId = ? and createDate = ? and type = ? and socialRelationType = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from MicroblogsEntryModelImpl.

      Parameters:
      userId - the user ID
      createDate - the create date
      type - the type
      socialRelationType - the social relation type
      start - the lower bound of the range of microblogs entries
      end - the upper bound of the range of microblogs entries (not inclusive)
      Returns:
      the range of matching microblogs entries
    • findByU_C_T_S

      public static List<MicroblogsEntry> findByU_C_T_S(long userId, Date createDate, int type, int socialRelationType, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
      Returns an ordered range of all the microblogs entries where userId = ? and createDate = ? and type = ? and socialRelationType = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from MicroblogsEntryModelImpl.

      Parameters:
      userId - the user ID
      createDate - the create date
      type - the type
      socialRelationType - the social relation type
      start - the lower bound of the range of microblogs entries
      end - the upper bound of the range of microblogs entries (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching microblogs entries
    • findByU_C_T_S

      public static List<MicroblogsEntry> findByU_C_T_S(long userId, Date createDate, int type, int socialRelationType, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the microblogs entries where userId = ? and createDate = ? and type = ? and socialRelationType = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from MicroblogsEntryModelImpl.

      Parameters:
      userId - the user ID
      createDate - the create date
      type - the type
      socialRelationType - the social relation type
      start - the lower bound of the range of microblogs entries
      end - the upper bound of the range of microblogs entries (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching microblogs entries
    • findByU_C_T_S_First

      public static MicroblogsEntry findByU_C_T_S_First(long userId, Date createDate, int type, int socialRelationType, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the first microblogs entry in the ordered set where userId = ? and createDate = ? and type = ? and socialRelationType = ?.
      Parameters:
      userId - the user ID
      createDate - the create date
      type - the type
      socialRelationType - the social relation type
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching microblogs entry
      Throws:
      NoSuchEntryException - if a matching microblogs entry could not be found
      NoSuchEntryException
    • fetchByU_C_T_S_First

      public static MicroblogsEntry fetchByU_C_T_S_First(long userId, Date createDate, int type, int socialRelationType, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
      Returns the first microblogs entry in the ordered set where userId = ? and createDate = ? and type = ? and socialRelationType = ?.
      Parameters:
      userId - the user ID
      createDate - the create date
      type - the type
      socialRelationType - the social relation type
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching microblogs entry, or null if a matching microblogs entry could not be found
    • findByU_C_T_S_Last

      public static MicroblogsEntry findByU_C_T_S_Last(long userId, Date createDate, int type, int socialRelationType, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the last microblogs entry in the ordered set where userId = ? and createDate = ? and type = ? and socialRelationType = ?.
      Parameters:
      userId - the user ID
      createDate - the create date
      type - the type
      socialRelationType - the social relation type
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching microblogs entry
      Throws:
      NoSuchEntryException - if a matching microblogs entry could not be found
      NoSuchEntryException
    • fetchByU_C_T_S_Last

      public static MicroblogsEntry fetchByU_C_T_S_Last(long userId, Date createDate, int type, int socialRelationType, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
      Returns the last microblogs entry in the ordered set where userId = ? and createDate = ? and type = ? and socialRelationType = ?.
      Parameters:
      userId - the user ID
      createDate - the create date
      type - the type
      socialRelationType - the social relation type
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching microblogs entry, or null if a matching microblogs entry could not be found
    • findByU_C_T_S_PrevAndNext

      public static MicroblogsEntry[] findByU_C_T_S_PrevAndNext(long microblogsEntryId, long userId, Date createDate, int type, int socialRelationType, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the microblogs entries before and after the current microblogs entry in the ordered set where userId = ? and createDate = ? and type = ? and socialRelationType = ?.
      Parameters:
      microblogsEntryId - the primary key of the current microblogs entry
      userId - the user ID
      createDate - the create date
      type - the type
      socialRelationType - the social relation type
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next microblogs entry
      Throws:
      NoSuchEntryException - if a microblogs entry with the primary key could not be found
      NoSuchEntryException
    • filterFindByU_C_T_S

      public static List<MicroblogsEntry> filterFindByU_C_T_S(long userId, Date createDate, int type, int socialRelationType)
      Returns all the microblogs entries that the user has permission to view where userId = ? and createDate = ? and type = ? and socialRelationType = ?.
      Parameters:
      userId - the user ID
      createDate - the create date
      type - the type
      socialRelationType - the social relation type
      Returns:
      the matching microblogs entries that the user has permission to view
    • filterFindByU_C_T_S

      public static List<MicroblogsEntry> filterFindByU_C_T_S(long userId, Date createDate, int type, int socialRelationType, int start, int end)
      Returns a range of all the microblogs entries that the user has permission to view where userId = ? and createDate = ? and type = ? and socialRelationType = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from MicroblogsEntryModelImpl.

      Parameters:
      userId - the user ID
      createDate - the create date
      type - the type
      socialRelationType - the social relation type
      start - the lower bound of the range of microblogs entries
      end - the upper bound of the range of microblogs entries (not inclusive)
      Returns:
      the range of matching microblogs entries that the user has permission to view
    • filterFindByU_C_T_S

      public static List<MicroblogsEntry> filterFindByU_C_T_S(long userId, Date createDate, int type, int socialRelationType, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
      Returns an ordered range of all the microblogs entries that the user has permissions to view where userId = ? and createDate = ? and type = ? and socialRelationType = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from MicroblogsEntryModelImpl.

      Parameters:
      userId - the user ID
      createDate - the create date
      type - the type
      socialRelationType - the social relation type
      start - the lower bound of the range of microblogs entries
      end - the upper bound of the range of microblogs entries (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching microblogs entries that the user has permission to view
    • filterFindByU_C_T_S_PrevAndNext

      public static MicroblogsEntry[] filterFindByU_C_T_S_PrevAndNext(long microblogsEntryId, long userId, Date createDate, int type, int socialRelationType, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator) throws NoSuchEntryException
      Returns the microblogs entries before and after the current microblogs entry in the ordered set of microblogs entries that the user has permission to view where userId = ? and createDate = ? and type = ? and socialRelationType = ?.
      Parameters:
      microblogsEntryId - the primary key of the current microblogs entry
      userId - the user ID
      createDate - the create date
      type - the type
      socialRelationType - the social relation type
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next microblogs entry
      Throws:
      NoSuchEntryException - if a microblogs entry with the primary key could not be found
      NoSuchEntryException
    • removeByU_C_T_S

      public static void removeByU_C_T_S(long userId, Date createDate, int type, int socialRelationType)
      Removes all the microblogs entries where userId = ? and createDate = ? and type = ? and socialRelationType = ? from the database.
      Parameters:
      userId - the user ID
      createDate - the create date
      type - the type
      socialRelationType - the social relation type
    • countByU_C_T_S

      public static int countByU_C_T_S(long userId, Date createDate, int type, int socialRelationType)
      Returns the number of microblogs entries where userId = ? and createDate = ? and type = ? and socialRelationType = ?.
      Parameters:
      userId - the user ID
      createDate - the create date
      type - the type
      socialRelationType - the social relation type
      Returns:
      the number of matching microblogs entries
    • filterCountByU_C_T_S

      public static int filterCountByU_C_T_S(long userId, Date createDate, int type, int socialRelationType)
      Returns the number of microblogs entries that the user has permission to view where userId = ? and createDate = ? and type = ? and socialRelationType = ?.
      Parameters:
      userId - the user ID
      createDate - the create date
      type - the type
      socialRelationType - the social relation type
      Returns:
      the number of matching microblogs entries that the user has permission to view
    • cacheResult

      public static void cacheResult(MicroblogsEntry microblogsEntry)
      Caches the microblogs entry in the entity cache if it is enabled.
      Parameters:
      microblogsEntry - the microblogs entry
    • cacheResult

      public static void cacheResult(List<MicroblogsEntry> microblogsEntries)
      Caches the microblogs entries in the entity cache if it is enabled.
      Parameters:
      microblogsEntries - the microblogs entries
    • create

      public static MicroblogsEntry create(long microblogsEntryId)
      Creates a new microblogs entry with the primary key. Does not add the microblogs entry to the database.
      Parameters:
      microblogsEntryId - the primary key for the new microblogs entry
      Returns:
      the new microblogs entry
    • remove

      public static MicroblogsEntry remove(long microblogsEntryId) throws NoSuchEntryException
      Removes the microblogs entry with the primary key from the database. Also notifies the appropriate model listeners.
      Parameters:
      microblogsEntryId - the primary key of the microblogs entry
      Returns:
      the microblogs entry that was removed
      Throws:
      NoSuchEntryException - if a microblogs entry with the primary key could not be found
      NoSuchEntryException
    • updateImpl

      public static MicroblogsEntry updateImpl(MicroblogsEntry microblogsEntry)
    • findByPrimaryKey

      public static MicroblogsEntry findByPrimaryKey(long microblogsEntryId) throws NoSuchEntryException
      Returns the microblogs entry with the primary key or throws a NoSuchEntryException if it could not be found.
      Parameters:
      microblogsEntryId - the primary key of the microblogs entry
      Returns:
      the microblogs entry
      Throws:
      NoSuchEntryException - if a microblogs entry with the primary key could not be found
      NoSuchEntryException
    • fetchByPrimaryKey

      public static MicroblogsEntry fetchByPrimaryKey(long microblogsEntryId)
      Returns the microblogs entry with the primary key or returns null if it could not be found.
      Parameters:
      microblogsEntryId - the primary key of the microblogs entry
      Returns:
      the microblogs entry, or null if a microblogs entry with the primary key could not be found
    • findAll

      public static List<MicroblogsEntry> findAll()
      Returns all the microblogs entries.
      Returns:
      the microblogs entries
    • findAll

      public static List<MicroblogsEntry> findAll(int start, int end)
      Returns a range of all the microblogs entries.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from MicroblogsEntryModelImpl.

      Parameters:
      start - the lower bound of the range of microblogs entries
      end - the upper bound of the range of microblogs entries (not inclusive)
      Returns:
      the range of microblogs entries
    • findAll

      public static List<MicroblogsEntry> findAll(int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator)
      Returns an ordered range of all the microblogs entries.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from MicroblogsEntryModelImpl.

      Parameters:
      start - the lower bound of the range of microblogs entries
      end - the upper bound of the range of microblogs entries (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of microblogs entries
    • findAll

      public static List<MicroblogsEntry> findAll(int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MicroblogsEntry> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the microblogs entries.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from MicroblogsEntryModelImpl.

      Parameters:
      start - the lower bound of the range of microblogs entries
      end - the upper bound of the range of microblogs entries (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of microblogs entries
    • removeAll

      public static void removeAll()
      Removes all the microblogs entries from the database.
    • countAll

      public static int countAll()
      Returns the number of microblogs entries.
      Returns:
      the number of microblogs entries
    • getPersistence

      public static MicroblogsEntryPersistence getPersistence()
    • setPersistence

      public static void setPersistence(MicroblogsEntryPersistence persistence)