Interface LayoutSEOEntryCustomMetaTagPersistence
- All Superinterfaces:
com.liferay.portal.kernel.service.persistence.BasePersistence<LayoutSEOEntryCustomMetaTag>
,com.liferay.portal.kernel.service.persistence.change.tracking.CTPersistence<LayoutSEOEntryCustomMetaTag>
Caching information and settings can be found in portal.properties
- See Also:
- Generated:
-
Method Summary
Modifier and TypeMethodDescriptionvoid
cacheResult
(LayoutSEOEntryCustomMetaTag layoutSEOEntryCustomMetaTag) Caches the layout seo entry custom meta tag in the entity cache if it is enabled.void
cacheResult
(List<LayoutSEOEntryCustomMetaTag> layoutSEOEntryCustomMetaTags) Caches the layout seo entry custom meta tags in the entity cache if it is enabled.int
countAll()
Returns the number of layout seo entry custom meta tags.int
countByG_L
(long groupId, long layoutSEOEntryId) Returns the number of layout seo entry custom meta tags where groupId = ? and layoutSEOEntryId = ?.create
(long layoutSEOEntryCustomMetaTagId) Creates a new layout seo entry custom meta tag with the primary key.fetchByG_L_First
(long groupId, long layoutSEOEntryId, com.liferay.portal.kernel.util.OrderByComparator<LayoutSEOEntryCustomMetaTag> orderByComparator) Returns the first layout seo entry custom meta tag in the ordered set where groupId = ? and layoutSEOEntryId = ?.fetchByG_L_Last
(long groupId, long layoutSEOEntryId, com.liferay.portal.kernel.util.OrderByComparator<LayoutSEOEntryCustomMetaTag> orderByComparator) Returns the last layout seo entry custom meta tag in the ordered set where groupId = ? and layoutSEOEntryId = ?.fetchByPrimaryKey
(long layoutSEOEntryCustomMetaTagId) Returns the layout seo entry custom meta tag with the primary key or returnsnull
if it could not be found.findAll()
Returns all the layout seo entry custom meta tags.findAll
(int start, int end) Returns a range of all the layout seo entry custom meta tags.findAll
(int start, int end, com.liferay.portal.kernel.util.OrderByComparator<LayoutSEOEntryCustomMetaTag> orderByComparator) Returns an ordered range of all the layout seo entry custom meta tags.findAll
(int start, int end, com.liferay.portal.kernel.util.OrderByComparator<LayoutSEOEntryCustomMetaTag> orderByComparator, boolean useFinderCache) Returns an ordered range of all the layout seo entry custom meta tags.findByG_L
(long groupId, long layoutSEOEntryId) Returns all the layout seo entry custom meta tags where groupId = ? and layoutSEOEntryId = ?.findByG_L
(long groupId, long layoutSEOEntryId, int start, int end) Returns a range of all the layout seo entry custom meta tags where groupId = ? and layoutSEOEntryId = ?.findByG_L
(long groupId, long layoutSEOEntryId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<LayoutSEOEntryCustomMetaTag> orderByComparator) Returns an ordered range of all the layout seo entry custom meta tags where groupId = ? and layoutSEOEntryId = ?.findByG_L
(long groupId, long layoutSEOEntryId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<LayoutSEOEntryCustomMetaTag> orderByComparator, boolean useFinderCache) Returns an ordered range of all the layout seo entry custom meta tags where groupId = ? and layoutSEOEntryId = ?.findByG_L_First
(long groupId, long layoutSEOEntryId, com.liferay.portal.kernel.util.OrderByComparator<LayoutSEOEntryCustomMetaTag> orderByComparator) Returns the first layout seo entry custom meta tag in the ordered set where groupId = ? and layoutSEOEntryId = ?.findByG_L_Last
(long groupId, long layoutSEOEntryId, com.liferay.portal.kernel.util.OrderByComparator<LayoutSEOEntryCustomMetaTag> orderByComparator) Returns the last layout seo entry custom meta tag in the ordered set where groupId = ? and layoutSEOEntryId = ?.findByG_L_PrevAndNext
(long layoutSEOEntryCustomMetaTagId, long groupId, long layoutSEOEntryId, com.liferay.portal.kernel.util.OrderByComparator<LayoutSEOEntryCustomMetaTag> orderByComparator) Returns the layout seo entry custom meta tags before and after the current layout seo entry custom meta tag in the ordered set where groupId = ? and layoutSEOEntryId = ?.findByPrimaryKey
(long layoutSEOEntryCustomMetaTagId) Returns the layout seo entry custom meta tag with the primary key or throws aNoSuchEntryCustomMetaTagException
if it could not be found.remove
(long layoutSEOEntryCustomMetaTagId) Removes the layout seo entry custom meta tag with the primary key from the database.void
Removes all the layout seo entry custom meta tags from the database.void
removeByG_L
(long groupId, long layoutSEOEntryId) Removes all the layout seo entry custom meta tags where groupId = ? and layoutSEOEntryId = ? from the database.updateImpl
(LayoutSEOEntryCustomMetaTag layoutSEOEntryCustomMetaTag) Methods inherited from interface com.liferay.portal.kernel.service.persistence.BasePersistence
clearCache, clearCache, clearCache, clearCache, closeSession, countWithDynamicQuery, countWithDynamicQuery, dslQuery, dslQueryCount, fetchByPrimaryKey, fetchByPrimaryKeys, findByPrimaryKey, findWithDynamicQuery, findWithDynamicQuery, findWithDynamicQuery, flush, getBadColumnNames, getCurrentSession, getDataSource, getDB, getDialect, getListeners, getModelClass, openSession, processException, registerListener, remove, remove, removeByFunction, setDataSource, unregisterListener, update, update
Methods inherited from interface com.liferay.portal.kernel.service.persistence.change.tracking.CTPersistence
getCTColumnNames, getMappingTableNames, getTableColumnsMap, getTableName, getUniqueIndexColumnNames
-
Method Details
-
findByG_L
Returns all the layout seo entry custom meta tags where groupId = ? and layoutSEOEntryId = ?.- Parameters:
groupId
- the group IDlayoutSEOEntryId
- the layout seo entry ID- Returns:
- the matching layout seo entry custom meta tags
-
findByG_L
List<LayoutSEOEntryCustomMetaTag> findByG_L(long groupId, long layoutSEOEntryId, int start, int end) Returns a range of all the layout seo entry custom meta tags where groupId = ? and layoutSEOEntryId = ?.Useful when paginating results. Returns a maximum of
end - start
instances.start
andend
are not primary keys, they are indexes in the result set. Thus,0
refers to the first result in the set. Setting bothstart
andend
toQueryUtil#ALL_POS
will return the full result set. IforderByComparator
is specified, then the query will include the given ORDER BY logic. IforderByComparator
is absent, then the query will include the default ORDER BY logic fromLayoutSEOEntryCustomMetaTagModelImpl
.- Parameters:
groupId
- the group IDlayoutSEOEntryId
- the layout seo entry IDstart
- the lower bound of the range of layout seo entry custom meta tagsend
- the upper bound of the range of layout seo entry custom meta tags (not inclusive)- Returns:
- the range of matching layout seo entry custom meta tags
-
findByG_L
List<LayoutSEOEntryCustomMetaTag> findByG_L(long groupId, long layoutSEOEntryId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<LayoutSEOEntryCustomMetaTag> orderByComparator) Returns an ordered range of all the layout seo entry custom meta tags where groupId = ? and layoutSEOEntryId = ?.Useful when paginating results. Returns a maximum of
end - start
instances.start
andend
are not primary keys, they are indexes in the result set. Thus,0
refers to the first result in the set. Setting bothstart
andend
toQueryUtil#ALL_POS
will return the full result set. IforderByComparator
is specified, then the query will include the given ORDER BY logic. IforderByComparator
is absent, then the query will include the default ORDER BY logic fromLayoutSEOEntryCustomMetaTagModelImpl
.- Parameters:
groupId
- the group IDlayoutSEOEntryId
- the layout seo entry IDstart
- the lower bound of the range of layout seo entry custom meta tagsend
- the upper bound of the range of layout seo entry custom meta tags (not inclusive)orderByComparator
- the comparator to order the results by (optionallynull
)- Returns:
- the ordered range of matching layout seo entry custom meta tags
-
findByG_L
List<LayoutSEOEntryCustomMetaTag> findByG_L(long groupId, long layoutSEOEntryId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<LayoutSEOEntryCustomMetaTag> orderByComparator, boolean useFinderCache) Returns an ordered range of all the layout seo entry custom meta tags where groupId = ? and layoutSEOEntryId = ?.Useful when paginating results. Returns a maximum of
end - start
instances.start
andend
are not primary keys, they are indexes in the result set. Thus,0
refers to the first result in the set. Setting bothstart
andend
toQueryUtil#ALL_POS
will return the full result set. IforderByComparator
is specified, then the query will include the given ORDER BY logic. IforderByComparator
is absent, then the query will include the default ORDER BY logic fromLayoutSEOEntryCustomMetaTagModelImpl
.- Parameters:
groupId
- the group IDlayoutSEOEntryId
- the layout seo entry IDstart
- the lower bound of the range of layout seo entry custom meta tagsend
- the upper bound of the range of layout seo entry custom meta tags (not inclusive)orderByComparator
- the comparator to order the results by (optionallynull
)useFinderCache
- whether to use the finder cache- Returns:
- the ordered range of matching layout seo entry custom meta tags
-
findByG_L_First
LayoutSEOEntryCustomMetaTag findByG_L_First(long groupId, long layoutSEOEntryId, com.liferay.portal.kernel.util.OrderByComparator<LayoutSEOEntryCustomMetaTag> orderByComparator) throws NoSuchEntryCustomMetaTagException Returns the first layout seo entry custom meta tag in the ordered set where groupId = ? and layoutSEOEntryId = ?.- Parameters:
groupId
- the group IDlayoutSEOEntryId
- the layout seo entry IDorderByComparator
- the comparator to order the set by (optionallynull
)- Returns:
- the first matching layout seo entry custom meta tag
- Throws:
NoSuchEntryCustomMetaTagException
- if a matching layout seo entry custom meta tag could not be found
-
fetchByG_L_First
LayoutSEOEntryCustomMetaTag fetchByG_L_First(long groupId, long layoutSEOEntryId, com.liferay.portal.kernel.util.OrderByComparator<LayoutSEOEntryCustomMetaTag> orderByComparator) Returns the first layout seo entry custom meta tag in the ordered set where groupId = ? and layoutSEOEntryId = ?.- Parameters:
groupId
- the group IDlayoutSEOEntryId
- the layout seo entry IDorderByComparator
- the comparator to order the set by (optionallynull
)- Returns:
- the first matching layout seo entry custom meta tag, or
null
if a matching layout seo entry custom meta tag could not be found
-
findByG_L_Last
LayoutSEOEntryCustomMetaTag findByG_L_Last(long groupId, long layoutSEOEntryId, com.liferay.portal.kernel.util.OrderByComparator<LayoutSEOEntryCustomMetaTag> orderByComparator) throws NoSuchEntryCustomMetaTagException Returns the last layout seo entry custom meta tag in the ordered set where groupId = ? and layoutSEOEntryId = ?.- Parameters:
groupId
- the group IDlayoutSEOEntryId
- the layout seo entry IDorderByComparator
- the comparator to order the set by (optionallynull
)- Returns:
- the last matching layout seo entry custom meta tag
- Throws:
NoSuchEntryCustomMetaTagException
- if a matching layout seo entry custom meta tag could not be found
-
fetchByG_L_Last
LayoutSEOEntryCustomMetaTag fetchByG_L_Last(long groupId, long layoutSEOEntryId, com.liferay.portal.kernel.util.OrderByComparator<LayoutSEOEntryCustomMetaTag> orderByComparator) Returns the last layout seo entry custom meta tag in the ordered set where groupId = ? and layoutSEOEntryId = ?.- Parameters:
groupId
- the group IDlayoutSEOEntryId
- the layout seo entry IDorderByComparator
- the comparator to order the set by (optionallynull
)- Returns:
- the last matching layout seo entry custom meta tag, or
null
if a matching layout seo entry custom meta tag could not be found
-
findByG_L_PrevAndNext
LayoutSEOEntryCustomMetaTag[] findByG_L_PrevAndNext(long layoutSEOEntryCustomMetaTagId, long groupId, long layoutSEOEntryId, com.liferay.portal.kernel.util.OrderByComparator<LayoutSEOEntryCustomMetaTag> orderByComparator) throws NoSuchEntryCustomMetaTagException Returns the layout seo entry custom meta tags before and after the current layout seo entry custom meta tag in the ordered set where groupId = ? and layoutSEOEntryId = ?.- Parameters:
layoutSEOEntryCustomMetaTagId
- the primary key of the current layout seo entry custom meta taggroupId
- the group IDlayoutSEOEntryId
- the layout seo entry IDorderByComparator
- the comparator to order the set by (optionallynull
)- Returns:
- the previous, current, and next layout seo entry custom meta tag
- Throws:
NoSuchEntryCustomMetaTagException
- if a layout seo entry custom meta tag with the primary key could not be found
-
removeByG_L
void removeByG_L(long groupId, long layoutSEOEntryId) Removes all the layout seo entry custom meta tags where groupId = ? and layoutSEOEntryId = ? from the database.- Parameters:
groupId
- the group IDlayoutSEOEntryId
- the layout seo entry ID
-
countByG_L
int countByG_L(long groupId, long layoutSEOEntryId) Returns the number of layout seo entry custom meta tags where groupId = ? and layoutSEOEntryId = ?.- Parameters:
groupId
- the group IDlayoutSEOEntryId
- the layout seo entry ID- Returns:
- the number of matching layout seo entry custom meta tags
-
cacheResult
Caches the layout seo entry custom meta tag in the entity cache if it is enabled.- Parameters:
layoutSEOEntryCustomMetaTag
- the layout seo entry custom meta tag
-
cacheResult
Caches the layout seo entry custom meta tags in the entity cache if it is enabled.- Parameters:
layoutSEOEntryCustomMetaTags
- the layout seo entry custom meta tags
-
create
Creates a new layout seo entry custom meta tag with the primary key. Does not add the layout seo entry custom meta tag to the database.- Parameters:
layoutSEOEntryCustomMetaTagId
- the primary key for the new layout seo entry custom meta tag- Returns:
- the new layout seo entry custom meta tag
-
remove
LayoutSEOEntryCustomMetaTag remove(long layoutSEOEntryCustomMetaTagId) throws NoSuchEntryCustomMetaTagException Removes the layout seo entry custom meta tag with the primary key from the database. Also notifies the appropriate model listeners.- Parameters:
layoutSEOEntryCustomMetaTagId
- the primary key of the layout seo entry custom meta tag- Returns:
- the layout seo entry custom meta tag that was removed
- Throws:
NoSuchEntryCustomMetaTagException
- if a layout seo entry custom meta tag with the primary key could not be found
-
updateImpl
-
findByPrimaryKey
LayoutSEOEntryCustomMetaTag findByPrimaryKey(long layoutSEOEntryCustomMetaTagId) throws NoSuchEntryCustomMetaTagException Returns the layout seo entry custom meta tag with the primary key or throws aNoSuchEntryCustomMetaTagException
if it could not be found.- Parameters:
layoutSEOEntryCustomMetaTagId
- the primary key of the layout seo entry custom meta tag- Returns:
- the layout seo entry custom meta tag
- Throws:
NoSuchEntryCustomMetaTagException
- if a layout seo entry custom meta tag with the primary key could not be found
-
fetchByPrimaryKey
Returns the layout seo entry custom meta tag with the primary key or returnsnull
if it could not be found.- Parameters:
layoutSEOEntryCustomMetaTagId
- the primary key of the layout seo entry custom meta tag- Returns:
- the layout seo entry custom meta tag, or
null
if a layout seo entry custom meta tag with the primary key could not be found
-
findAll
List<LayoutSEOEntryCustomMetaTag> findAll()Returns all the layout seo entry custom meta tags.- Returns:
- the layout seo entry custom meta tags
-
findAll
Returns a range of all the layout seo entry custom meta tags.Useful when paginating results. Returns a maximum of
end - start
instances.start
andend
are not primary keys, they are indexes in the result set. Thus,0
refers to the first result in the set. Setting bothstart
andend
toQueryUtil#ALL_POS
will return the full result set. IforderByComparator
is specified, then the query will include the given ORDER BY logic. IforderByComparator
is absent, then the query will include the default ORDER BY logic fromLayoutSEOEntryCustomMetaTagModelImpl
.- Parameters:
start
- the lower bound of the range of layout seo entry custom meta tagsend
- the upper bound of the range of layout seo entry custom meta tags (not inclusive)- Returns:
- the range of layout seo entry custom meta tags
-
findAll
List<LayoutSEOEntryCustomMetaTag> findAll(int start, int end, com.liferay.portal.kernel.util.OrderByComparator<LayoutSEOEntryCustomMetaTag> orderByComparator) Returns an ordered range of all the layout seo entry custom meta tags.Useful when paginating results. Returns a maximum of
end - start
instances.start
andend
are not primary keys, they are indexes in the result set. Thus,0
refers to the first result in the set. Setting bothstart
andend
toQueryUtil#ALL_POS
will return the full result set. IforderByComparator
is specified, then the query will include the given ORDER BY logic. IforderByComparator
is absent, then the query will include the default ORDER BY logic fromLayoutSEOEntryCustomMetaTagModelImpl
.- Parameters:
start
- the lower bound of the range of layout seo entry custom meta tagsend
- the upper bound of the range of layout seo entry custom meta tags (not inclusive)orderByComparator
- the comparator to order the results by (optionallynull
)- Returns:
- the ordered range of layout seo entry custom meta tags
-
findAll
List<LayoutSEOEntryCustomMetaTag> findAll(int start, int end, com.liferay.portal.kernel.util.OrderByComparator<LayoutSEOEntryCustomMetaTag> orderByComparator, boolean useFinderCache) Returns an ordered range of all the layout seo entry custom meta tags.Useful when paginating results. Returns a maximum of
end - start
instances.start
andend
are not primary keys, they are indexes in the result set. Thus,0
refers to the first result in the set. Setting bothstart
andend
toQueryUtil#ALL_POS
will return the full result set. IforderByComparator
is specified, then the query will include the given ORDER BY logic. IforderByComparator
is absent, then the query will include the default ORDER BY logic fromLayoutSEOEntryCustomMetaTagModelImpl
.- Parameters:
start
- the lower bound of the range of layout seo entry custom meta tagsend
- the upper bound of the range of layout seo entry custom meta tags (not inclusive)orderByComparator
- the comparator to order the results by (optionallynull
)useFinderCache
- whether to use the finder cache- Returns:
- the ordered range of layout seo entry custom meta tags
-
removeAll
void removeAll()Removes all the layout seo entry custom meta tags from the database. -
countAll
int countAll()Returns the number of layout seo entry custom meta tags.- Returns:
- the number of layout seo entry custom meta tags
-