@ProviderType public interface ExpandoColumnPersistence extends BasePersistence<ExpandoColumn>
Caching information and settings can be found in portal.properties
ExpandoColumnPersistenceImpl
,
ExpandoColumnUtil
Modifier and Type | Method and Description |
---|---|
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()
Returns the number of expando columns.
|
int |
countByT_N(long tableId,
String name)
Returns the number of expando columns where tableId = ? and name = ?.
|
int |
countByT_N(long tableId,
String[] names)
Returns the number of expando columns where tableId = ? and name = any ?.
|
int |
countByTableId(long tableId)
Returns the number of expando columns where tableId = ?.
|
ExpandoColumn |
create(long columnId)
Creates a new expando column with the primary key.
|
ExpandoColumn |
fetchByPrimaryKey(long columnId)
Returns the expando column with the primary key or returns
null if it could not be found. |
Map<Serializable,ExpandoColumn> |
fetchByPrimaryKeys(Set<Serializable> primaryKeys) |
ExpandoColumn |
fetchByT_N(long tableId,
String name)
Returns 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)
Returns the expando column where tableId = ? and name = ? or returns
null if it could not be found, optionally using the finder cache. |
ExpandoColumn |
fetchByTableId_First(long tableId,
OrderByComparator<ExpandoColumn> orderByComparator)
Returns the first expando column in the ordered set where tableId = ?.
|
ExpandoColumn |
fetchByTableId_Last(long tableId,
OrderByComparator<ExpandoColumn> orderByComparator)
Returns the last expando column in the ordered set where tableId = ?.
|
int |
filterCountByT_N(long tableId,
String name)
Returns the number of expando columns that the user has permission to view where tableId = ? and name = ?.
|
int |
filterCountByT_N(long tableId,
String[] names)
Returns the number of expando columns that the user has permission to view where tableId = ? and name = any ?.
|
int |
filterCountByTableId(long tableId)
Returns the number of expando columns that the user has permission to view where tableId = ?.
|
ExpandoColumn[] |
filterFindByTableId_PrevAndNext(long columnId,
long tableId,
OrderByComparator<ExpandoColumn> 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 = ?.
|
List<ExpandoColumn> |
filterFindByTableId(long tableId)
Returns all the expando columns that the user has permission to view where tableId = ?.
|
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 = ?.
|
List<ExpandoColumn> |
filterFindByTableId(long tableId,
int start,
int end,
OrderByComparator<ExpandoColumn> orderByComparator)
Returns an ordered range of all the expando columns that the user has permissions to view where tableId = ?.
|
List<ExpandoColumn> |
findAll()
Returns all the expando columns.
|
List<ExpandoColumn> |
findAll(int start,
int end)
Returns a range of all the expando columns.
|
List<ExpandoColumn> |
findAll(int start,
int end,
OrderByComparator<ExpandoColumn> orderByComparator)
Returns an ordered range of all the expando columns.
|
List<ExpandoColumn> |
findAll(int start,
int end,
OrderByComparator<ExpandoColumn> orderByComparator,
boolean retrieveFromCache)
Returns an ordered range of all the expando columns.
|
ExpandoColumn |
findByPrimaryKey(long columnId)
Returns the expando column with the primary key or throws a
NoSuchColumnException if it could not be found. |
ExpandoColumn |
findByT_N(long tableId,
String name)
Returns the expando column where tableId = ? and name = ? or throws a
NoSuchColumnException if it could not be found. |
List<ExpandoColumn> |
findByT_N(long tableId,
String[] names)
Returns all the expando columns where tableId = ? and name = any ?.
|
List<ExpandoColumn> |
findByT_N(long tableId,
String[] names,
int start,
int end)
Returns a range of all the expando columns where tableId = ? and name = any ?.
|
List<ExpandoColumn> |
findByT_N(long tableId,
String[] names,
int start,
int end,
OrderByComparator<ExpandoColumn> orderByComparator)
Returns an ordered range of all the expando columns where tableId = ? and name = any ?.
|
List<ExpandoColumn> |
findByT_N(long tableId,
String[] names,
int start,
int end,
OrderByComparator<ExpandoColumn> orderByComparator,
boolean retrieveFromCache)
Returns an ordered range of all the expando columns where tableId = ? and name = ?, optionally using the finder cache.
|
ExpandoColumn |
findByTableId_First(long tableId,
OrderByComparator<ExpandoColumn> orderByComparator)
Returns the first expando column in the ordered set where tableId = ?.
|
ExpandoColumn |
findByTableId_Last(long tableId,
OrderByComparator<ExpandoColumn> orderByComparator)
Returns the last expando column in the ordered set where tableId = ?.
|
ExpandoColumn[] |
findByTableId_PrevAndNext(long columnId,
long tableId,
OrderByComparator<ExpandoColumn> orderByComparator)
Returns the expando columns before and after the current expando column in the ordered set where tableId = ?.
|
List<ExpandoColumn> |
findByTableId(long tableId)
Returns all the expando columns where tableId = ?.
|
List<ExpandoColumn> |
findByTableId(long tableId,
int start,
int end)
Returns a range of all the expando columns where tableId = ?.
|
List<ExpandoColumn> |
findByTableId(long tableId,
int start,
int end,
OrderByComparator<ExpandoColumn> orderByComparator)
Returns an ordered range of all the expando columns where tableId = ?.
|
List<ExpandoColumn> |
findByTableId(long tableId,
int start,
int end,
OrderByComparator<ExpandoColumn> orderByComparator,
boolean retrieveFromCache)
Returns an ordered range of all the expando columns where tableId = ?.
|
Set<String> |
getBadColumnNames() |
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.
|
ExpandoColumn |
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) |
clearCache, clearCache, clearCache, closeSession, countWithDynamicQuery, countWithDynamicQuery, fetchByPrimaryKey, findByPrimaryKey, findWithDynamicQuery, findWithDynamicQuery, findWithDynamicQuery, flush, getCurrentSession, getDataSource, getListeners, getModelClass, openSession, processException, registerListener, remove, remove, setDataSource, unregisterListener, update, update
List<ExpandoColumn> findByTableId(long tableId)
tableId
- the table IDList<ExpandoColumn> findByTableId(long tableId, int start, int end)
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)List<ExpandoColumn> findByTableId(long tableId, int start, int end, OrderByComparator<ExpandoColumn> orderByComparator)
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
)List<ExpandoColumn> findByTableId(long tableId, int start, int end, OrderByComparator<ExpandoColumn> orderByComparator, boolean retrieveFromCache)
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
)retrieveFromCache
- whether to retrieve from the finder cacheExpandoColumn findByTableId_First(long tableId, OrderByComparator<ExpandoColumn> orderByComparator) throws NoSuchColumnException
tableId
- the table IDorderByComparator
- the comparator to order the set by (optionally null
)NoSuchColumnException
- if a matching expando column could not be foundExpandoColumn fetchByTableId_First(long tableId, OrderByComparator<ExpandoColumn> orderByComparator)
tableId
- the table IDorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching expando column could not be foundExpandoColumn findByTableId_Last(long tableId, OrderByComparator<ExpandoColumn> orderByComparator) throws NoSuchColumnException
tableId
- the table IDorderByComparator
- the comparator to order the set by (optionally null
)NoSuchColumnException
- if a matching expando column could not be foundExpandoColumn fetchByTableId_Last(long tableId, OrderByComparator<ExpandoColumn> orderByComparator)
tableId
- the table IDorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching expando column could not be foundExpandoColumn[] findByTableId_PrevAndNext(long columnId, long tableId, OrderByComparator<ExpandoColumn> orderByComparator) throws 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 foundList<ExpandoColumn> filterFindByTableId(long tableId)
tableId
- the table IDList<ExpandoColumn> filterFindByTableId(long tableId, int start, int end)
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)List<ExpandoColumn> filterFindByTableId(long tableId, int start, int end, OrderByComparator<ExpandoColumn> orderByComparator)
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
)ExpandoColumn[] filterFindByTableId_PrevAndNext(long columnId, long tableId, OrderByComparator<ExpandoColumn> orderByComparator) throws 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 foundvoid removeByTableId(long tableId)
tableId
- the table IDint countByTableId(long tableId)
tableId
- the table IDint filterCountByTableId(long tableId)
tableId
- the table IDList<ExpandoColumn> findByT_N(long tableId, String[] names)
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 namesList<ExpandoColumn> findByT_N(long tableId, String[] names, int start, int end)
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)List<ExpandoColumn> findByT_N(long tableId, String[] names, int start, int end, OrderByComparator<ExpandoColumn> orderByComparator)
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
)List<ExpandoColumn> findByT_N(long tableId, String[] names, int start, int end, OrderByComparator<ExpandoColumn> orderByComparator, boolean retrieveFromCache)
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 IDname
- the namestart
- 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
)retrieveFromCache
- whether to retrieve from the finder cacheExpandoColumn findByT_N(long tableId, String name) throws NoSuchColumnException
NoSuchColumnException
if it could not be found.tableId
- the table IDname
- the nameNoSuchColumnException
- if a matching expando column could not be foundExpandoColumn fetchByT_N(long tableId, String name)
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 foundExpandoColumn fetchByT_N(long tableId, String name, boolean retrieveFromCache)
null
if it could not be found, optionally using the finder cache.tableId
- the table IDname
- the nameretrieveFromCache
- whether to retrieve from the finder cachenull
if a matching expando column could not be foundExpandoColumn removeByT_N(long tableId, String name) throws NoSuchColumnException
tableId
- the table IDname
- the nameNoSuchColumnException
int countByT_N(long tableId, String name)
tableId
- the table IDname
- the nameint countByT_N(long tableId, String[] names)
tableId
- the table IDnames
- the namesint filterCountByT_N(long tableId, String name)
tableId
- the table IDname
- the nameint filterCountByT_N(long tableId, String[] names)
tableId
- the table IDnames
- the namesvoid cacheResult(ExpandoColumn expandoColumn)
expandoColumn
- the expando columnvoid cacheResult(List<ExpandoColumn> expandoColumns)
expandoColumns
- the expando columnsExpandoColumn create(long columnId)
columnId
- the primary key for the new expando columnExpandoColumn remove(long columnId) throws NoSuchColumnException
columnId
- the primary key of the expando columnNoSuchColumnException
- if a expando column with the primary key could not be foundExpandoColumn updateImpl(ExpandoColumn expandoColumn)
ExpandoColumn findByPrimaryKey(long columnId) throws 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 foundExpandoColumn fetchByPrimaryKey(long columnId)
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 foundMap<Serializable,ExpandoColumn> fetchByPrimaryKeys(Set<Serializable> primaryKeys)
fetchByPrimaryKeys
in interface BasePersistence<ExpandoColumn>
List<ExpandoColumn> findAll()
List<ExpandoColumn> findAll(int start, int end)
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)List<ExpandoColumn> findAll(int start, int end, OrderByComparator<ExpandoColumn> orderByComparator)
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
)List<ExpandoColumn> findAll(int start, int end, OrderByComparator<ExpandoColumn> orderByComparator, boolean retrieveFromCache)
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
)retrieveFromCache
- whether to retrieve from the finder cachevoid removeAll()
int countAll()
Set<String> getBadColumnNames()
getBadColumnNames
in interface BasePersistence<ExpandoColumn>