|
Liferay 6.0.5 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object com.liferay.portlet.expando.service.persistence.ExpandoColumnUtil
public class ExpandoColumnUtil
The persistence utility for the expando column service. This utility wraps ExpandoColumnPersistenceImpl
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.
Never modify this class directly. Modify service.xml
and rerun ServiceBuilder to regenerate this class.
Caching information and settings can be found in portal.properties
ExpandoColumnPersistence
,
ExpandoColumnPersistenceImpl
Constructor Summary | |
---|---|
ExpandoColumnUtil()
|
Method Summary | |
---|---|
static void |
cacheResult(ExpandoColumn expandoColumn)
Caches the expando column in the entity cache if it is enabled. |
static void |
cacheResult(List<ExpandoColumn> expandoColumns)
Caches the expando columns in the entity cache if it is enabled. |
static void |
clearCache()
|
static void |
clearCache(ExpandoColumn expandoColumn)
|
static int |
countAll()
Counts all the expando columns. |
static int |
countByT_N(long tableId,
String name)
Counts all the expando columns where tableId = ? and name = ?. |
static int |
countByTableId(long tableId)
Counts all the expando columns where tableId = ?. |
long |
countWithDynamicQuery(DynamicQuery dynamicQuery)
|
static ExpandoColumn |
create(long columnId)
Creates a new expando column with the primary key. |
static ExpandoColumn |
fetchByPrimaryKey(long columnId)
Finds the expando column with the primary key or returns null if it could not be found. |
static ExpandoColumn |
fetchByT_N(long tableId,
String name)
Finds the expando column where tableId = ? and name = ? or returns null if it could not be found. |
static 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. |
static List<ExpandoColumn> |
findAll()
Finds all the expando columns. |
static List<ExpandoColumn> |
findAll(int start,
int end)
Finds a range of all the expando columns. |
static List<ExpandoColumn> |
findAll(int start,
int end,
OrderByComparator orderByComparator)
Finds an ordered range of all the expando columns. |
static ExpandoColumn |
findByPrimaryKey(long columnId)
Finds the expando column with the primary key or throws a NoSuchColumnException if it could not be found. |
static 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. |
static ExpandoColumn |
findByTableId_First(long tableId,
OrderByComparator orderByComparator)
Finds the first expando column in the ordered set where tableId = ?. |
static ExpandoColumn |
findByTableId_Last(long tableId,
OrderByComparator orderByComparator)
Finds the last expando column in the ordered set where tableId = ?. |
static 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 = ?. |
static List<ExpandoColumn> |
findByTableId(long tableId)
Finds all the expando columns where tableId = ?. |
static List<ExpandoColumn> |
findByTableId(long tableId,
int start,
int end)
Finds a range of all the expando columns where tableId = ?. |
static List<ExpandoColumn> |
findByTableId(long tableId,
int start,
int end,
OrderByComparator orderByComparator)
Finds an ordered range of all the expando columns where tableId = ?. |
static List<ExpandoColumn> |
findWithDynamicQuery(DynamicQuery dynamicQuery)
|
static List<ExpandoColumn> |
findWithDynamicQuery(DynamicQuery dynamicQuery,
int start,
int end)
|
static List<ExpandoColumn> |
findWithDynamicQuery(DynamicQuery dynamicQuery,
int start,
int end,
OrderByComparator orderByComparator)
|
static ExpandoColumnPersistence |
getPersistence()
|
static ExpandoColumn |
remove(ExpandoColumn expandoColumn)
|
static ExpandoColumn |
remove(long columnId)
Removes the expando column with the primary key from the database. |
static void |
removeAll()
Removes all the expando columns from the database. |
static void |
removeByT_N(long tableId,
String name)
Removes the expando column where tableId = ? and name = ? from the database. |
static void |
removeByTableId(long tableId)
Removes all the expando columns where tableId = ? from the database. |
void |
setPersistence(ExpandoColumnPersistence persistence)
|
static ExpandoColumn |
update(ExpandoColumn expandoColumn,
boolean merge)
|
static ExpandoColumn |
update(ExpandoColumn expandoColumn,
boolean merge,
ServiceContext serviceContext)
|
static ExpandoColumn |
updateImpl(ExpandoColumn expandoColumn,
boolean merge)
|
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public ExpandoColumnUtil()
Method Detail |
---|
public static void clearCache()
BasePersistence.clearCache()
public static void clearCache(ExpandoColumn expandoColumn)
BasePersistence.clearCache(com.liferay.portal.model.BaseModel)
public long countWithDynamicQuery(DynamicQuery dynamicQuery) throws SystemException
SystemException
BasePersistence.countWithDynamicQuery(DynamicQuery)
public static List<ExpandoColumn> findWithDynamicQuery(DynamicQuery dynamicQuery) throws SystemException
SystemException
BasePersistence.findWithDynamicQuery(DynamicQuery)
public static List<ExpandoColumn> findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end) throws SystemException
SystemException
BasePersistence.findWithDynamicQuery(DynamicQuery, int, int)
public static List<ExpandoColumn> findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end, OrderByComparator orderByComparator) throws SystemException
SystemException
BasePersistence.findWithDynamicQuery(DynamicQuery, int, int, OrderByComparator)
public static ExpandoColumn remove(ExpandoColumn expandoColumn) throws SystemException
SystemException
BasePersistence.remove(com.liferay.portal.model.BaseModel)
public static ExpandoColumn update(ExpandoColumn expandoColumn, boolean merge) throws SystemException
SystemException
BasePersistence.update(com.liferay.portal.model.BaseModel, boolean)
public static ExpandoColumn update(ExpandoColumn expandoColumn, boolean merge, ServiceContext serviceContext) throws SystemException
SystemException
BasePersistence.update(com.liferay.portal.model.BaseModel, boolean, ServiceContext)
public static void cacheResult(ExpandoColumn expandoColumn)
expandoColumn
- the expando column to cachepublic static void cacheResult(List<ExpandoColumn> expandoColumns)
expandoColumns
- the expando columns to cachepublic static ExpandoColumn create(long columnId)
columnId
- the primary key for the new expando column
public static 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 occurredpublic static ExpandoColumn updateImpl(ExpandoColumn expandoColumn, boolean merge) throws SystemException
SystemException
public static 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 occurredpublic static 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 occurredpublic static List<ExpandoColumn> findByTableId(long tableId) throws SystemException
tableId
- the table id to search with
SystemException
- if a system exception occurredpublic static 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 occurredpublic static 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 occurredpublic static 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 occurredpublic static 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 occurredpublic static 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 occurredpublic static 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 occurredpublic static 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 occurredpublic static 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 occurredpublic static List<ExpandoColumn> findAll() throws SystemException
SystemException
- if a system exception occurredpublic static 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 occurredpublic static 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 occurredpublic static void removeByTableId(long tableId) throws SystemException
tableId
- the table id to search with
SystemException
- if a system exception occurredpublic static 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
public static void removeAll() throws SystemException
SystemException
- if a system exception occurredpublic static int countByTableId(long tableId) throws SystemException
tableId
- the table id to search with
SystemException
- if a system exception occurredpublic static 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 occurredpublic static int countAll() throws SystemException
SystemException
- if a system exception occurredpublic static ExpandoColumnPersistence getPersistence()
public void setPersistence(ExpandoColumnPersistence persistence)
|
Liferay 6.0.5 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |