|
Liferay 6.0.4 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
public interface ExpandoColumnPersistence
The persistence interface for the expando column service.
Never modify this interface directly. Modify service.xml and rerun ServiceBuilder to regnerate this interface.
ExpandoColumnPersistenceImpl,
ExpandoColumnUtil| Method Summary | |
|---|---|
void |
cacheResult(ExpandoColumn expandoColumn)
Caches the expando column in the entity cache if it is enabled. |
void |
cacheResult(List<ExpandoColumn> expandoColumns)
Caches the expando columns in the entity cache if it is enabled. |
int |
countAll()
Counts all the expando columns. |
int |
countByT_N(long tableId,
String name)
Counts all the expando columns where tableId = ? and name = ?. |
int |
countByTableId(long tableId)
Counts all the expando columns where tableId = ?. |
ExpandoColumn |
create(long columnId)
Creates a new expando column with the primary key. |
ExpandoColumn |
fetchByPrimaryKey(long columnId)
Finds the expando column with the primary key or returns null if it could not be found. |
ExpandoColumn |
fetchByT_N(long tableId,
String name)
Finds the expando column where tableId = ? and name = ? or returns null if it could not be found. |
ExpandoColumn |
fetchByT_N(long tableId,
String name,
boolean retrieveFromCache)
Finds the expando column where tableId = ? and name = ? or returns null if it could not be found, optionally using the finder cache. |
List<ExpandoColumn> |
findAll()
Finds all the expando columns. |
List<ExpandoColumn> |
findAll(int start,
int end)
Finds a range of all the expando columns. |
List<ExpandoColumn> |
findAll(int start,
int end,
OrderByComparator orderByComparator)
Finds an ordered range of all the expando columns. |
ExpandoColumn |
findByPrimaryKey(long columnId)
Finds the expando column with the primary key or throws a NoSuchColumnException if it could not be found. |
ExpandoColumn |
findByT_N(long tableId,
String name)
Finds the expando column where tableId = ? and name = ? or throws a NoSuchColumnException if it could not be found. |
ExpandoColumn |
findByTableId_First(long tableId,
OrderByComparator orderByComparator)
Finds the first expando column in the ordered set where tableId = ?. |
ExpandoColumn |
findByTableId_Last(long tableId,
OrderByComparator orderByComparator)
Finds the last expando column in the ordered set where tableId = ?. |
ExpandoColumn[] |
findByTableId_PrevAndNext(long columnId,
long tableId,
OrderByComparator orderByComparator)
Finds the expando columns before and after the current expando column in the ordered set where tableId = ?. |
List<ExpandoColumn> |
findByTableId(long tableId)
Finds all the expando columns where tableId = ?. |
List<ExpandoColumn> |
findByTableId(long tableId,
int start,
int end)
Finds a range of all the expando columns where tableId = ?. |
List<ExpandoColumn> |
findByTableId(long tableId,
int start,
int end,
OrderByComparator orderByComparator)
Finds an ordered range of all the expando columns where tableId = ?. |
ExpandoColumn |
remove(long columnId)
Removes the expando column with the primary key from the database. |
void |
removeAll()
Removes all the expando columns from the database. |
void |
removeByT_N(long tableId,
String name)
Removes the expando column where tableId = ? and name = ? from the database. |
void |
removeByTableId(long tableId)
Removes all the expando columns where tableId = ? from the database. |
ExpandoColumn |
updateImpl(ExpandoColumn expandoColumn,
boolean merge)
|
| Methods inherited from interface com.liferay.portal.service.persistence.BasePersistence |
|---|
clearCache, clearCache, countWithDynamicQuery, fetchByPrimaryKey, findByPrimaryKey, findWithDynamicQuery, findWithDynamicQuery, findWithDynamicQuery, getDataSource, getListeners, registerListener, remove, remove, setDataSource, unregisterListener, update, update |
| Method Detail |
|---|
void cacheResult(ExpandoColumn expandoColumn)
expandoColumn - the expando column to cachevoid cacheResult(List<ExpandoColumn> expandoColumns)
expandoColumns - the expando columns to cacheExpandoColumn create(long columnId)
columnId - the primary key for the new expando column
ExpandoColumn remove(long columnId)
throws SystemException,
NoSuchColumnException
columnId - the primary key of the expando column to remove
NoSuchColumnException - if a expando column with the primary key could not be found
SystemException - if a system exception occurred
ExpandoColumn updateImpl(ExpandoColumn expandoColumn,
boolean merge)
throws SystemException
SystemException
ExpandoColumn findByPrimaryKey(long columnId)
throws SystemException,
NoSuchColumnException
NoSuchColumnException if it could not be found.
columnId - the primary key of the expando column to find
NoSuchColumnException - if a expando column with the primary key could not be found
SystemException - if a system exception occurred
ExpandoColumn fetchByPrimaryKey(long columnId)
throws SystemException
null if it could not be found.
columnId - the primary key of the expando column to find
null if a expando column with the primary key could not be found
SystemException - if a system exception occurred
List<ExpandoColumn> findByTableId(long tableId)
throws SystemException
tableId - the table id to search with
SystemException - if a system exception occurred
List<ExpandoColumn> findByTableId(long tableId,
int start,
int end)
throws SystemException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.
tableId - the table id to search withstart - the lower bound of the range of expando columns to returnend - the upper bound of the range of expando columns to return (not inclusive)
SystemException - if a system exception occurred
List<ExpandoColumn> findByTableId(long tableId,
int start,
int end,
OrderByComparator orderByComparator)
throws SystemException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.
tableId - the table id to search withstart - the lower bound of the range of expando columns to returnend - the upper bound of the range of expando columns to return (not inclusive)orderByComparator - the comparator to order the results by
SystemException - if a system exception occurred
ExpandoColumn findByTableId_First(long tableId,
OrderByComparator orderByComparator)
throws SystemException,
NoSuchColumnException
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.
tableId - the table id to search withorderByComparator - the comparator to order the set by
NoSuchColumnException - if a matching expando column could not be found
SystemException - if a system exception occurred
ExpandoColumn findByTableId_Last(long tableId,
OrderByComparator orderByComparator)
throws SystemException,
NoSuchColumnException
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.
tableId - the table id to search withorderByComparator - the comparator to order the set by
NoSuchColumnException - if a matching expando column could not be found
SystemException - if a system exception occurred
ExpandoColumn[] findByTableId_PrevAndNext(long columnId,
long tableId,
OrderByComparator orderByComparator)
throws SystemException,
NoSuchColumnException
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.
columnId - the primary key of the current expando columntableId - the table id to search withorderByComparator - the comparator to order the set by
NoSuchColumnException - if a expando column with the primary key could not be found
SystemException - if a system exception occurred
ExpandoColumn findByT_N(long tableId,
String name)
throws SystemException,
NoSuchColumnException
NoSuchColumnException if it could not be found.
tableId - the table id to search withname - the name to search with
NoSuchColumnException - if a matching expando column could not be found
SystemException - if a system exception occurred
ExpandoColumn fetchByT_N(long tableId,
String name)
throws SystemException
null if it could not be found. Uses the finder cache.
tableId - the table id to search withname - the name to search with
null if a matching expando column could not be found
SystemException - if a system exception occurred
ExpandoColumn fetchByT_N(long tableId,
String name,
boolean retrieveFromCache)
throws SystemException
null if it could not be found, optionally using the finder cache.
tableId - the table id to search withname - the name to search with
null if a matching expando column could not be found
SystemException - if a system exception occurred
List<ExpandoColumn> findAll()
throws SystemException
SystemException - if a system exception occurred
List<ExpandoColumn> findAll(int start,
int end)
throws SystemException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.
start - the lower bound of the range of expando columns to returnend - the upper bound of the range of expando columns to return (not inclusive)
SystemException - if a system exception occurred
List<ExpandoColumn> findAll(int start,
int end,
OrderByComparator orderByComparator)
throws SystemException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.
start - the lower bound of the range of expando columns to returnend - the upper bound of the range of expando columns to return (not inclusive)orderByComparator - the comparator to order the results by
SystemException - if a system exception occurred
void removeByTableId(long tableId)
throws SystemException
tableId - the table id to search with
SystemException - if a system exception occurred
void removeByT_N(long tableId,
String name)
throws SystemException,
NoSuchColumnException
tableId - the table id to search withname - the name to search with
SystemException - if a system exception occurred
NoSuchColumnException
void removeAll()
throws SystemException
SystemException - if a system exception occurred
int countByTableId(long tableId)
throws SystemException
tableId - the table id to search with
SystemException - if a system exception occurred
int countByT_N(long tableId,
String name)
throws SystemException
tableId - the table id to search withname - the name to search with
SystemException - if a system exception occurred
int countAll()
throws SystemException
SystemException - if a system exception occurred
|
Liferay 6.0.4 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||