com.liferay.portlet.expando.service.persistence
Interface ExpandoRowPersistence

All Superinterfaces:
BasePersistence<ExpandoRow>

public interface ExpandoRowPersistence
extends BasePersistence<ExpandoRow>

View Source

ServiceBuilder generated this class. Modifications in this class will be overwritten the next time is generated.

Author:
Brian Wing Shun Chan
See Also:
ExpandoRowPersistenceImpl, ExpandoRowUtil
Generated:

Method Summary
 void cacheResult(ExpandoRow expandoRow)
           
 void cacheResult(java.util.List<ExpandoRow> expandoRows)
           
 int countAll()
           
 int countByT_C(long tableId, long classPK)
           
 int countByTableId(long tableId)
           
 ExpandoRow create(long rowId)
           
 ExpandoRow fetchByPrimaryKey(long rowId)
           
 ExpandoRow fetchByT_C(long tableId, long classPK)
           
 ExpandoRow fetchByT_C(long tableId, long classPK, boolean retrieveFromCache)
           
 java.util.List<ExpandoRow> findAll()
           
 java.util.List<ExpandoRow> findAll(int start, int end)
           
 java.util.List<ExpandoRow> findAll(int start, int end, com.liferay.portal.kernel.util.OrderByComparator obc)
           
 ExpandoRow findByPrimaryKey(long rowId)
           
 ExpandoRow findByT_C(long tableId, long classPK)
           
 ExpandoRow findByTableId_First(long tableId, com.liferay.portal.kernel.util.OrderByComparator obc)
           
 ExpandoRow findByTableId_Last(long tableId, com.liferay.portal.kernel.util.OrderByComparator obc)
           
 ExpandoRow[] findByTableId_PrevAndNext(long rowId, long tableId, com.liferay.portal.kernel.util.OrderByComparator obc)
           
 java.util.List<ExpandoRow> findByTableId(long tableId)
           
 java.util.List<ExpandoRow> findByTableId(long tableId, int start, int end)
           
 java.util.List<ExpandoRow> findByTableId(long tableId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator obc)
           
 ExpandoRow remove(long rowId)
           
 void removeAll()
           
 void removeByT_C(long tableId, long classPK)
           
 void removeByTableId(long tableId)
           
 ExpandoRow updateImpl(ExpandoRow expandoRow, boolean merge)
           
 
Methods inherited from interface com.liferay.portal.service.persistence.BasePersistence
clearCache, fetchByPrimaryKey, findByPrimaryKey, findWithDynamicQuery, findWithDynamicQuery, getListeners, registerListener, remove, remove, unregisterListener, update
 

Method Detail

cacheResult

void cacheResult(ExpandoRow expandoRow)

cacheResult

void cacheResult(java.util.List<ExpandoRow> expandoRows)

create

ExpandoRow create(long rowId)

remove

ExpandoRow remove(long rowId)
                  throws com.liferay.portal.kernel.exception.SystemException,
                         NoSuchRowException
Throws:
com.liferay.portal.kernel.exception.SystemException
NoSuchRowException

updateImpl

ExpandoRow updateImpl(ExpandoRow expandoRow,
                      boolean merge)
                      throws com.liferay.portal.kernel.exception.SystemException
Throws:
com.liferay.portal.kernel.exception.SystemException

findByPrimaryKey

ExpandoRow findByPrimaryKey(long rowId)
                            throws com.liferay.portal.kernel.exception.SystemException,
                                   NoSuchRowException
Throws:
com.liferay.portal.kernel.exception.SystemException
NoSuchRowException

fetchByPrimaryKey

ExpandoRow fetchByPrimaryKey(long rowId)
                             throws com.liferay.portal.kernel.exception.SystemException
Throws:
com.liferay.portal.kernel.exception.SystemException

findByTableId

java.util.List<ExpandoRow> findByTableId(long tableId)
                                         throws com.liferay.portal.kernel.exception.SystemException
Throws:
com.liferay.portal.kernel.exception.SystemException

findByTableId

java.util.List<ExpandoRow> findByTableId(long tableId,
                                         int start,
                                         int end)
                                         throws com.liferay.portal.kernel.exception.SystemException
Throws:
com.liferay.portal.kernel.exception.SystemException

findByTableId

java.util.List<ExpandoRow> findByTableId(long tableId,
                                         int start,
                                         int end,
                                         com.liferay.portal.kernel.util.OrderByComparator obc)
                                         throws com.liferay.portal.kernel.exception.SystemException
Throws:
com.liferay.portal.kernel.exception.SystemException

findByTableId_First

ExpandoRow findByTableId_First(long tableId,
                               com.liferay.portal.kernel.util.OrderByComparator obc)
                               throws com.liferay.portal.kernel.exception.SystemException,
                                      NoSuchRowException
Throws:
com.liferay.portal.kernel.exception.SystemException
NoSuchRowException

findByTableId_Last

ExpandoRow findByTableId_Last(long tableId,
                              com.liferay.portal.kernel.util.OrderByComparator obc)
                              throws com.liferay.portal.kernel.exception.SystemException,
                                     NoSuchRowException
Throws:
com.liferay.portal.kernel.exception.SystemException
NoSuchRowException

findByTableId_PrevAndNext

ExpandoRow[] findByTableId_PrevAndNext(long rowId,
                                       long tableId,
                                       com.liferay.portal.kernel.util.OrderByComparator obc)
                                       throws com.liferay.portal.kernel.exception.SystemException,
                                              NoSuchRowException
Throws:
com.liferay.portal.kernel.exception.SystemException
NoSuchRowException

findByT_C

ExpandoRow findByT_C(long tableId,
                     long classPK)
                     throws com.liferay.portal.kernel.exception.SystemException,
                            NoSuchRowException
Throws:
com.liferay.portal.kernel.exception.SystemException
NoSuchRowException

fetchByT_C

ExpandoRow fetchByT_C(long tableId,
                      long classPK)
                      throws com.liferay.portal.kernel.exception.SystemException
Throws:
com.liferay.portal.kernel.exception.SystemException

fetchByT_C

ExpandoRow fetchByT_C(long tableId,
                      long classPK,
                      boolean retrieveFromCache)
                      throws com.liferay.portal.kernel.exception.SystemException
Throws:
com.liferay.portal.kernel.exception.SystemException

findAll

java.util.List<ExpandoRow> findAll()
                                   throws com.liferay.portal.kernel.exception.SystemException
Throws:
com.liferay.portal.kernel.exception.SystemException

findAll

java.util.List<ExpandoRow> findAll(int start,
                                   int end)
                                   throws com.liferay.portal.kernel.exception.SystemException
Throws:
com.liferay.portal.kernel.exception.SystemException

findAll

java.util.List<ExpandoRow> findAll(int start,
                                   int end,
                                   com.liferay.portal.kernel.util.OrderByComparator obc)
                                   throws com.liferay.portal.kernel.exception.SystemException
Throws:
com.liferay.portal.kernel.exception.SystemException

removeByTableId

void removeByTableId(long tableId)
                     throws com.liferay.portal.kernel.exception.SystemException
Throws:
com.liferay.portal.kernel.exception.SystemException

removeByT_C

void removeByT_C(long tableId,
                 long classPK)
                 throws com.liferay.portal.kernel.exception.SystemException,
                        NoSuchRowException
Throws:
com.liferay.portal.kernel.exception.SystemException
NoSuchRowException

removeAll

void removeAll()
               throws com.liferay.portal.kernel.exception.SystemException
Throws:
com.liferay.portal.kernel.exception.SystemException

countByTableId

int countByTableId(long tableId)
                   throws com.liferay.portal.kernel.exception.SystemException
Throws:
com.liferay.portal.kernel.exception.SystemException

countByT_C

int countByT_C(long tableId,
               long classPK)
               throws com.liferay.portal.kernel.exception.SystemException
Throws:
com.liferay.portal.kernel.exception.SystemException

countAll

int countAll()
             throws com.liferay.portal.kernel.exception.SystemException
Throws:
com.liferay.portal.kernel.exception.SystemException