@ProviderType
public class ExpandoColumnUtil
extends java.lang.Object
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.
Caching information and settings can be found in portal.properties
ExpandoColumnPersistence,
ExpandoColumnPersistenceImpl| Constructor and Description |
|---|
ExpandoColumnUtil() |
| Modifier and Type | Method and Description |
|---|---|
static void |
cacheResult(ExpandoColumn expandoColumn)
Caches the expando column in the entity cache if it is enabled.
|
static void |
cacheResult(java.util.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()
Returns the number of expando columns.
|
static int |
countByT_N(long tableId,
java.lang.String name)
Returns the number of expando columns where tableId = ? and name = ?.
|
static int |
countByT_N(long tableId,
java.lang.String[] names)
Returns the number of expando columns where tableId = ? and name = any ?.
|
static int |
countByTableId(long tableId)
Returns the number of expando columns where tableId = ?.
|
static long |
countWithDynamicQuery(DynamicQuery dynamicQuery) |
static ExpandoColumn |
create(long columnId)
Creates a new expando column with the primary key.
|
static ExpandoColumn |
fetchByPrimaryKey(long columnId)
Returns the expando column with the primary key or returns
null if it could not be found. |
static ExpandoColumn |
fetchByT_N(long tableId,
java.lang.String name)
Returns the expando column where tableId = ? and name = ? or returns
null if it could not be found. |
static ExpandoColumn |
fetchByT_N(long tableId,
java.lang.String name,
boolean retrieveFromCache)
Returns the expando column where tableId = ? and name = ? or returns
null if it could not be found, optionally using the finder cache. |
static ExpandoColumn |
fetchByTableId_First(long tableId,
OrderByComparator orderByComparator)
Returns the first expando column in the ordered set where tableId = ?.
|
static ExpandoColumn |
fetchByTableId_Last(long tableId,
OrderByComparator orderByComparator)
Returns the last expando column in the ordered set where tableId = ?.
|
static int |
filterCountByT_N(long tableId,
java.lang.String name)
Returns the number of expando columns that the user has permission to view where tableId = ? and name = ?.
|
static int |
filterCountByT_N(long tableId,
java.lang.String[] names)
Returns the number of expando columns that the user has permission to view where tableId = ? and name = any ?.
|
static int |
filterCountByTableId(long tableId)
Returns the number of expando columns that the user has permission to view where tableId = ?.
|
static ExpandoColumn[] |
filterFindByTableId_PrevAndNext(long columnId,
long tableId,
OrderByComparator orderByComparator)
Returns the expando columns before and after the current expando column in the ordered set of expando columns that the user has permission to view where tableId = ?.
|
static java.util.List<ExpandoColumn> |
filterFindByTableId(long tableId)
Returns all the expando columns that the user has permission to view where tableId = ?.
|
static java.util.List<ExpandoColumn> |
filterFindByTableId(long tableId,
int start,
int end)
Returns a range of all the expando columns that the user has permission to view where tableId = ?.
|
static java.util.List<ExpandoColumn> |
filterFindByTableId(long tableId,
int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the expando columns that the user has permissions to view where tableId = ?.
|
static java.util.List<ExpandoColumn> |
findAll()
Returns all the expando columns.
|
static java.util.List<ExpandoColumn> |
findAll(int start,
int end)
Returns a range of all the expando columns.
|
static java.util.List<ExpandoColumn> |
findAll(int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the expando columns.
|
static ExpandoColumn |
findByPrimaryKey(long columnId)
Returns the expando column with the primary key or throws a
NoSuchColumnException if it could not be found. |
static ExpandoColumn |
findByT_N(long tableId,
java.lang.String name)
Returns the expando column where tableId = ? and name = ? or throws a
NoSuchColumnException if it could not be found. |
static java.util.List<ExpandoColumn> |
findByT_N(long tableId,
java.lang.String[] names)
Returns all the expando columns where tableId = ? and name = any ?.
|
static java.util.List<ExpandoColumn> |
findByT_N(long tableId,
java.lang.String[] names,
int start,
int end)
Returns a range of all the expando columns where tableId = ? and name = any ?.
|
static java.util.List<ExpandoColumn> |
findByT_N(long tableId,
java.lang.String[] names,
int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the expando columns where tableId = ? and name = any ?.
|
static ExpandoColumn |
findByTableId_First(long tableId,
OrderByComparator orderByComparator)
Returns the first expando column in the ordered set where tableId = ?.
|
static ExpandoColumn |
findByTableId_Last(long tableId,
OrderByComparator orderByComparator)
Returns the last expando column in the ordered set where tableId = ?.
|
static ExpandoColumn[] |
findByTableId_PrevAndNext(long columnId,
long tableId,
OrderByComparator orderByComparator)
Returns the expando columns before and after the current expando column in the ordered set where tableId = ?.
|
static java.util.List<ExpandoColumn> |
findByTableId(long tableId)
Returns all the expando columns where tableId = ?.
|
static java.util.List<ExpandoColumn> |
findByTableId(long tableId,
int start,
int end)
Returns a range of all the expando columns where tableId = ?.
|
static java.util.List<ExpandoColumn> |
findByTableId(long tableId,
int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the expando columns where tableId = ?.
|
static java.util.List<ExpandoColumn> |
findWithDynamicQuery(DynamicQuery dynamicQuery) |
static java.util.List<ExpandoColumn> |
findWithDynamicQuery(DynamicQuery dynamicQuery,
int start,
int end) |
static java.util.List<ExpandoColumn> |
findWithDynamicQuery(DynamicQuery dynamicQuery,
int start,
int end,
OrderByComparator orderByComparator) |
static ExpandoColumnPersistence |
getPersistence() |
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 ExpandoColumn |
removeByT_N(long tableId,
java.lang.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)
Deprecated.
As of 6.2.0
|
static ExpandoColumn |
update(ExpandoColumn expandoColumn) |
static ExpandoColumn |
update(ExpandoColumn expandoColumn,
ServiceContext serviceContext) |
static ExpandoColumn |
updateImpl(ExpandoColumn expandoColumn) |
public static void clearCache()
BasePersistence.clearCache()public static void clearCache(ExpandoColumn expandoColumn)
public static long countWithDynamicQuery(DynamicQuery dynamicQuery) throws SystemException
SystemExceptionBasePersistence.countWithDynamicQuery(DynamicQuery)public static java.util.List<ExpandoColumn> findWithDynamicQuery(DynamicQuery dynamicQuery) throws SystemException
SystemExceptionBasePersistence.findWithDynamicQuery(DynamicQuery)public static java.util.List<ExpandoColumn> findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end) throws SystemException
public static java.util.List<ExpandoColumn> findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end, OrderByComparator orderByComparator) throws SystemException
public static ExpandoColumn update(ExpandoColumn expandoColumn) throws SystemException
public static ExpandoColumn update(ExpandoColumn expandoColumn, ServiceContext serviceContext) throws SystemException
public static java.util.List<ExpandoColumn> findByTableId(long tableId) throws SystemException
tableId - the table IDSystemException - if a system exception occurredpublic static java.util.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. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil.ALL_POS), then the query will include the default ORDER BY logic from ExpandoColumnModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
tableId - the table IDstart - the lower bound of the range of expando columnsend - the upper bound of the range of expando columns (not inclusive)SystemException - if a system exception occurredpublic static java.util.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. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil.ALL_POS), then the query will include the default ORDER BY logic from ExpandoColumnModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
tableId - the table IDstart - the lower bound of the range of expando columnsend - the upper bound of the range of expando columns (not inclusive)orderByComparator - the comparator to order the results by (optionally null)SystemException - if a system exception occurredpublic static ExpandoColumn findByTableId_First(long tableId, OrderByComparator orderByComparator) throws SystemException, NoSuchColumnException
tableId - the table IDorderByComparator - the comparator to order the set by (optionally null)NoSuchColumnException - if a matching expando column could not be foundSystemException - if a system exception occurredpublic static ExpandoColumn fetchByTableId_First(long tableId, OrderByComparator orderByComparator) throws SystemException
tableId - the table IDorderByComparator - the comparator to order the set by (optionally null)null if a matching expando column could not be foundSystemException - if a system exception occurredpublic static ExpandoColumn findByTableId_Last(long tableId, OrderByComparator orderByComparator) throws SystemException, NoSuchColumnException
tableId - the table IDorderByComparator - the comparator to order the set by (optionally null)NoSuchColumnException - if a matching expando column could not be foundSystemException - if a system exception occurredpublic static ExpandoColumn fetchByTableId_Last(long tableId, OrderByComparator orderByComparator) throws SystemException
tableId - the table IDorderByComparator - the comparator to order the set by (optionally null)null if a matching expando column could not be foundSystemException - if a system exception occurredpublic static ExpandoColumn[] findByTableId_PrevAndNext(long columnId, long tableId, OrderByComparator orderByComparator) throws SystemException, NoSuchColumnException
columnId - the primary key of the current expando columntableId - the table IDorderByComparator - the comparator to order the set by (optionally null)NoSuchColumnException - if a expando column with the primary key could not be foundSystemException - if a system exception occurredpublic static java.util.List<ExpandoColumn> filterFindByTableId(long tableId) throws SystemException
tableId - the table IDSystemException - if a system exception occurredpublic static java.util.List<ExpandoColumn> filterFindByTableId(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. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil.ALL_POS), then the query will include the default ORDER BY logic from ExpandoColumnModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
tableId - the table IDstart - the lower bound of the range of expando columnsend - the upper bound of the range of expando columns (not inclusive)SystemException - if a system exception occurredpublic static java.util.List<ExpandoColumn> filterFindByTableId(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. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil.ALL_POS), then the query will include the default ORDER BY logic from ExpandoColumnModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
tableId - the table IDstart - the lower bound of the range of expando columnsend - the upper bound of the range of expando columns (not inclusive)orderByComparator - the comparator to order the results by (optionally null)SystemException - if a system exception occurredpublic static ExpandoColumn[] filterFindByTableId_PrevAndNext(long columnId, long tableId, OrderByComparator orderByComparator) throws SystemException, NoSuchColumnException
columnId - the primary key of the current expando columntableId - the table IDorderByComparator - the comparator to order the set by (optionally null)NoSuchColumnException - if a expando column with the primary key could not be foundSystemException - if a system exception occurredpublic static void removeByTableId(long tableId)
throws SystemException
tableId - the table IDSystemException - if a system exception occurredpublic static int countByTableId(long tableId)
throws SystemException
tableId - the table IDSystemException - if a system exception occurredpublic static int filterCountByTableId(long tableId)
throws SystemException
tableId - the table IDSystemException - if a system exception occurredpublic static java.util.List<ExpandoColumn> findByT_N(long tableId, java.lang.String[] names) throws SystemException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil.ALL_POS), then the query will include the default ORDER BY logic from ExpandoColumnModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
tableId - the table IDnames - the namesSystemException - if a system exception occurredpublic static java.util.List<ExpandoColumn> findByT_N(long tableId, java.lang.String[] names, int start, int end) throws SystemException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil.ALL_POS), then the query will include the default ORDER BY logic from ExpandoColumnModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
tableId - the table IDnames - the namesstart - the lower bound of the range of expando columnsend - the upper bound of the range of expando columns (not inclusive)SystemException - if a system exception occurredpublic static java.util.List<ExpandoColumn> findByT_N(long tableId, java.lang.String[] names, int start, int end, OrderByComparator orderByComparator) throws SystemException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil.ALL_POS), then the query will include the default ORDER BY logic from ExpandoColumnModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
tableId - the table IDnames - the namesstart - the lower bound of the range of expando columnsend - the upper bound of the range of expando columns (not inclusive)orderByComparator - the comparator to order the results by (optionally null)SystemException - if a system exception occurredpublic static ExpandoColumn findByT_N(long tableId, java.lang.String name) throws SystemException, NoSuchColumnException
NoSuchColumnException if it could not be found.tableId - the table IDname - the nameNoSuchColumnException - if a matching expando column could not be foundSystemException - if a system exception occurredpublic static ExpandoColumn fetchByT_N(long tableId, java.lang.String name) throws SystemException
null if it could not be found. Uses the finder cache.tableId - the table IDname - the namenull if a matching expando column could not be foundSystemException - if a system exception occurredpublic static ExpandoColumn fetchByT_N(long tableId, java.lang.String name, boolean retrieveFromCache) throws SystemException
null if it could not be found, optionally using the finder cache.tableId - the table IDname - the nameretrieveFromCache - whether to use the finder cachenull if a matching expando column could not be foundSystemException - if a system exception occurredpublic static ExpandoColumn removeByT_N(long tableId, java.lang.String name) throws SystemException, NoSuchColumnException
tableId - the table IDname - the nameSystemException - if a system exception occurredNoSuchColumnExceptionpublic static int countByT_N(long tableId,
java.lang.String name)
throws SystemException
tableId - the table IDname - the nameSystemException - if a system exception occurredpublic static int countByT_N(long tableId,
java.lang.String[] names)
throws SystemException
tableId - the table IDnames - the namesSystemException - if a system exception occurredpublic static int filterCountByT_N(long tableId,
java.lang.String name)
throws SystemException
tableId - the table IDname - the nameSystemException - if a system exception occurredpublic static int filterCountByT_N(long tableId,
java.lang.String[] names)
throws SystemException
tableId - the table IDnames - the namesSystemException - if a system exception occurredpublic static void cacheResult(ExpandoColumn expandoColumn)
expandoColumn - the expando columnpublic static void cacheResult(java.util.List<ExpandoColumn> expandoColumns)
expandoColumns - the expando columnspublic static ExpandoColumn create(long columnId)
columnId - the primary key for the new expando columnpublic static ExpandoColumn remove(long columnId) throws SystemException, NoSuchColumnException
columnId - the primary key of the expando columnNoSuchColumnException - if a expando column with the primary key could not be foundSystemException - if a system exception occurredpublic static ExpandoColumn updateImpl(ExpandoColumn expandoColumn) throws SystemException
SystemExceptionpublic static ExpandoColumn findByPrimaryKey(long columnId) throws SystemException, NoSuchColumnException
NoSuchColumnException if it could not be found.columnId - the primary key of the expando columnNoSuchColumnException - if a expando column with the primary key could not be foundSystemException - 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 columnnull if a expando column with the primary key could not be foundSystemException - if a system exception occurredpublic static java.util.List<ExpandoColumn> findAll() throws SystemException
SystemException - if a system exception occurredpublic static java.util.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. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil.ALL_POS), then the query will include the default ORDER BY logic from ExpandoColumnModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
start - the lower bound of the range of expando columnsend - the upper bound of the range of expando columns (not inclusive)SystemException - if a system exception occurredpublic static java.util.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. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil.ALL_POS), then the query will include the default ORDER BY logic from ExpandoColumnModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
start - the lower bound of the range of expando columnsend - the upper bound of the range of expando columns (not inclusive)orderByComparator - the comparator to order the results by (optionally null)SystemException - if a system exception occurredpublic static void removeAll()
throws SystemException
SystemException - if a system exception occurredpublic static int countAll()
throws SystemException
SystemException - if a system exception occurredpublic static ExpandoColumnPersistence getPersistence()
public void setPersistence(ExpandoColumnPersistence persistence)