Package | Description |
---|---|
org.hippoecm.hst.content.beans.query |
The org.hippoecm.hst.content.beans.query package defines the API for the HST Content Beans Query
|
org.hippoecm.hst.content.beans.query.builder | |
org.hippoecm.hst.util |
The org.hippoecm.hst.content.util package defines the API for the HST Util
|
Modifier and Type | Class and Description |
---|---|
class |
HstQueryImpl |
Modifier and Type | Method and Description |
---|---|
HstQuery |
HstQueryManager.createQuery(HippoBean scope)
Creates a empty query, with scope
|
HstQuery |
HstQueryManagerImpl.createQuery(HippoBean scope)
Creates a empty query, with the scope HippoBean
|
HstQuery |
HstQueryManager.createQuery(HippoBean scope,
boolean includeSubTypes,
Class<? extends HippoBean>... filterBean) |
HstQuery |
HstQueryManagerImpl.createQuery(HippoBean scope,
boolean includeSubTypes,
Class<? extends HippoBean>... filterBeans) |
HstQuery |
HstQueryManager.createQuery(HippoBean scope,
boolean includeSubTypes,
String... primaryNodeTypes) |
HstQuery |
HstQueryManagerImpl.createQuery(HippoBean scope,
boolean includeSubTypes,
String... primaryNodeTypes) |
HstQuery |
HstQueryManager.createQuery(HippoBean scope,
Class<? extends HippoBean>... filterBean)
Creates a query, with a scope and with a Filter that filters to only return HippoBeans of the types that are
added as variable arguments.
|
HstQuery |
HstQueryManagerImpl.createQuery(HippoBean scope,
Class<? extends HippoBean>... filterBeans) |
HstQuery |
HstQueryManager.createQuery(HippoBean scope,
Class<? extends HippoBean> filterBean,
boolean includeSubTypes)
Creates a query, with scope HippoBean and Filter for types of filterBean.
|
HstQuery |
HstQueryManagerImpl.createQuery(HippoBean scope,
Class<? extends HippoBean> filterBean,
boolean includeSubTypes)
Creates a query, with scope HippoBean and Filter for types of filterBean.
|
HstQuery |
HstQueryManager.createQuery(HippoBean scope,
String... primaryNodeTypes)
Creates a query, with a scope and with a Filter that filters to only return HippoBeans of the types that are
added as variable arguments.
|
HstQuery |
HstQueryManagerImpl.createQuery(HippoBean scope,
String... primaryNodeTypes) |
HstQuery |
HstQueryManager.createQuery(javax.jcr.Node scope)
Creates a empty query, with scope
|
HstQuery |
HstQueryManagerImpl.createQuery(javax.jcr.Node scope) |
HstQuery |
HstQueryManager.createQuery(javax.jcr.Node scope,
boolean includeSubTypes,
Class<? extends HippoBean>... filterBeans) |
HstQuery |
HstQueryManagerImpl.createQuery(javax.jcr.Node scope,
boolean includeSubTypes,
Class<? extends HippoBean>... filterBeans) |
HstQuery |
HstQueryManager.createQuery(javax.jcr.Node scope,
boolean includeSubTypes,
String... primaryNodeTypes) |
HstQuery |
HstQueryManagerImpl.createQuery(javax.jcr.Node scope,
boolean includeSubTypes,
String... primaryNodeTypes) |
HstQuery |
HstQueryManager.createQuery(javax.jcr.Node scope,
Class<? extends HippoBean>... filterBeans)
Creates a query, with the scope HippoBean and with a Filter that filters to only return HippoBeans of the types that are
added as variable arguments.
|
HstQuery |
HstQueryManagerImpl.createQuery(javax.jcr.Node scope,
Class<? extends HippoBean>... filterBeans)
Creates a query, with the scope HippoBean and with a Filter that filters to only return HippoBeans of the types that are
added as variable arguments.
|
HstQuery |
HstQueryManager.createQuery(javax.jcr.Node scope,
Class<? extends HippoBean> filterBean,
boolean includeSubTypes)
Creates a query, with scope and Filter for types of filterBean.
|
HstQuery |
HstQueryManagerImpl.createQuery(javax.jcr.Node scope,
Class<? extends HippoBean> filterBean,
boolean includeSubTypes)
Creates a query, with scope and Filter for types of filterBean.
|
HstQuery |
HstQueryManager.createQuery(javax.jcr.Node scope,
String... primaryNodeTypes)
Creates a query, with the scope HippoBean and with a Filter that filters to only return HippoBeans of the types that are
added as variable arguments.
|
HstQuery |
HstQueryManagerImpl.createQuery(javax.jcr.Node scope,
String... primaryNodeTypes) |
HstQuery |
HstQueryManager.createQuery(javax.jcr.Node scope,
String nodeType,
boolean includeSubTypes)
Creates a query, with scope and Filter for node types.
|
HstQuery |
HstQueryManagerImpl.createQuery(javax.jcr.Node scope,
String nodeType,
boolean includeSubTypes) |
Modifier and Type | Method and Description |
---|---|
HstQuery |
HstQueryBuilder.build() |
abstract HstQuery |
HstQueryBuilder.build(HstQueryManager queryManager) |
Modifier and Type | Method and Description |
---|---|
static HstQuery |
ContentBeanUtils.createIncomingBeansQuery(HippoDocumentBean bean,
HippoBean scope,
int depth,
Class<? extends HippoBean> beanMappingClass,
boolean includeSubTypes)
Returns a HstQuery for incoming beans (incoming beans within scope
scope ). |
static HstQuery |
ContentBeanUtils.createIncomingBeansQuery(HippoDocumentBean bean,
HippoBean scope,
int depth,
ObjectConverter converter,
Class<? extends HippoBean> beanMappingClass,
boolean includeSubTypes)
Deprecated.
since 7.9.0 : objectConverter not used any more.
use
ContentBeanUtils.createIncomingBeansQuery(HippoDocumentBean, HippoBean, int, Class, boolean) instead |
static HstQuery |
ContentBeanUtils.createIncomingBeansQuery(HippoDocumentBean bean,
HippoBean scope,
List<String> linkPaths,
Class<? extends HippoBean> beanMappingClass,
boolean includeSubTypes)
Returns a HstQuery for incoming beans (incoming beans within scope
scope ). |
static HstQuery |
ContentBeanUtils.createIncomingBeansQuery(HippoDocumentBean bean,
HippoBean scope,
List<String> linkPaths,
ObjectConverter converter,
Class<? extends HippoBean> beanMappingClass,
boolean includeSubTypes)
Deprecated.
since 7.9.0 : objectConverter not used any more.
use
ContentBeanUtils.createIncomingBeansQuery(HippoDocumentBean, HippoBean, List, Class, boolean) instead |
static HstQuery |
ContentBeanUtils.createIncomingBeansQuery(HippoDocumentBean bean,
HippoBean scope,
String linkPath,
Class<? extends HippoBean> beanMappingClass,
boolean includeSubTypes)
Returns a HstQuery for incoming beans (incoming beans within scope
scope ). |
static HstQuery |
ContentBeanUtils.createIncomingBeansQuery(HippoDocumentBean bean,
HippoBean scope,
String linkPath,
ObjectConverter converter,
Class<? extends HippoBean> beanMappingClass,
boolean includeSubTypes)
Deprecated.
since 7.9.0 : objectConverter not used any more.
use
ContentBeanUtils.createIncomingBeansQuery(HippoDocumentBean, HippoBean, String, Class, boolean) instead |
Modifier and Type | Method and Description |
---|---|
static <T extends HippoBean> |
ContentBeanUtils.getFacetedNavigationResultDocument(HstQuery query,
Class<T> beanMappingClass)
Tries to return a bean that is located in a faceted navigation tree below a result set.
|
static <T extends HippoBean> |
ContentBeanUtils.getFacetedNavigationResultDocument(HstQuery query,
String relPath,
Class<T> beanMappingClass)
Tries to return a bean that is located in a faceted navigation tree below a result set.
|
static <T extends HippoBean> |
ContentBeanUtils.getFacetedNavigationResultDocument(HstQuery query,
String absBasePath,
String relPath,
Class<T> beanMappingClass)
Tries to return a bean that is located in a faceted navigation tree below a result set.
|
static HippoFacetNavigationBean |
ContentBeanUtils.getFacetNavigationBean(HstQuery query)
Same as
ContentBeanUtils.getFacetNavigationBean(String) only now instead of a String query we
pass in a HstQuery |
static HippoFacetNavigationBean |
ContentBeanUtils.getFacetNavigationBean(HstQuery query,
String relPath)
Same as
ContentBeanUtils.getFacetNavigationBean(HstQuery) only now instead of having the faceted navigation
node from the ResolvedSiteMapItem we add a relPath where it should be found |
static HippoFacetNavigationBean |
ContentBeanUtils.getFacetNavigationBean(HstQuery query,
String absBasePath,
String relPath)
Same as
ContentBeanUtils.getFacetNavigationBean(HstQuery) only now instead of having the faceted navigation
node from the ResolvedSiteMapItem we add absBasePath and relPath where it should be found |
static <T extends HippoBean> |
ContentBeanUtils.getIncomingBeans(HstQuery query,
Class<? extends HippoBean> beanMappingClass)
Returns a list of beans of type T (the same type as
beanMappingClass ) that have a (facet)link to the HippoDocumentBean bean . |
Copyright © 2008–2016 Hippo B.V. (http://www.onehippo.com). All rights reserved.