Uses of Class
org.hippoecm.hst.content.beans.query.exceptions.QueryException

Packages that use QueryException
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.exceptions The org.hippoecm.hst.content.beans.query.exceptions package defines the API for the HST Content Beans Query Exceptions 
org.hippoecm.hst.util The org.hippoecm.hst.content.util package defines the API for the HST Util 
org.hippoecm.hst.utils   
 

Uses of QueryException in org.hippoecm.hst.content.beans.query
 

Methods in org.hippoecm.hst.content.beans.query that throw QueryException
 HstQuery HstQueryManagerImpl.createQuery(HippoBean scope)
          Creates a empty query, with the scope HippoBean
 HstQuery HstQueryManager.createQuery(HippoBean scope)
          Creates a empty query, with scope
 HstQuery HstQueryManagerImpl.createQuery(HippoBean scope, Class<? extends HippoBean>... filterBeans)
           
 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> filterBean, boolean includeSubTypes)
          Creates a query, with scope HippoBean and Filter for types of filterBean.
 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, String... primaryNodeTypes)
           
 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(javax.jcr.Node scope)
           
 HstQuery HstQueryManager.createQuery(javax.jcr.Node scope)
          Creates a empty query, with scope
 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>... 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> filterBean, boolean includeSubTypes)
          Creates a query, with scope and Filter for types of filterBean.
 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, String... primaryNodeTypes)
           
 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 nodeType, boolean includeSubTypes)
           
 HstQuery HstQueryManager.createQuery(javax.jcr.Node scope, String nodeType, boolean includeSubTypes)
          Creates a query, with scope and Filter for node types.
 HstQueryResult HstQueryImpl.execute()
           
 HstQueryResult HstQuery.execute()
          The actual execution of the HstQuery.
 String HstQueryImpl.getQuery()
           
 String HstQueryImpl.getQueryAsString(boolean skipDefaultOrderBy)
           
 String HstQuery.getQueryAsString(boolean skipDefaultOrderBy)
          Returns the query as string.
 

Uses of QueryException in org.hippoecm.hst.content.beans.query.exceptions
 

Subclasses of QueryException in org.hippoecm.hst.content.beans.query.exceptions
 class FilterException
           
 class ScopeException
           
 

Uses of QueryException in org.hippoecm.hst.util
 

Methods in org.hippoecm.hst.util that throw QueryException
static HstQuery ContentBeanUtils.createIncomingBeansQuery(HippoDocumentBean bean, HippoBean scope, int depth, ObjectConverter converter, 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)
          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)
          Returns a HstQuery for incoming beans (incoming beans within scope scope).
static
<T extends HippoBean>
List<T>
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.
 

Uses of QueryException in org.hippoecm.hst.utils
 

Methods in org.hippoecm.hst.utils that throw QueryException
static HstQuery BeanUtils.createIncomingBeansQuery(HippoDocumentBean bean, HippoBean scope, int depth, BaseHstComponent component, Class<? extends HippoBean> beanMappingClass, boolean includeSubTypes)
          Deprecated. use ContentBeanUtils.createIncomingBeansQuery(HippoDocumentBean, HippoBean, int, ObjectConverter, Class, boolean) instead. The objectConverter can be fetched from BaseHstComponent.getObjectConverter()
static HstQuery BeanUtils.createIncomingBeansQuery(HippoDocumentBean bean, HippoBean scope, List<String> linkPaths, BaseHstComponent component, Class<? extends HippoBean> beanMappingClass, boolean includeSubTypes)
          Deprecated. use ContentBeanUtils.createIncomingBeansQuery(HippoDocumentBean, HippoBean, List, ObjectConverter, Class, boolean) instead. The objectConverter can be fetched from BaseHstComponent.getObjectConverter()
static HstQuery BeanUtils.createIncomingBeansQuery(HippoDocumentBean bean, HippoBean scope, String linkPath, BaseHstComponent component, Class<? extends HippoBean> beanMappingClass, boolean includeSubTypes)
          Deprecated. use ContentBeanUtils.createIncomingBeansQuery(HippoDocumentBean, HippoBean, String, ObjectConverter, Class, boolean) instead. The objectConverter can be fetched from BaseHstComponent.getObjectConverter()
static
<T extends HippoBean>
List<T>
BeanUtils.getIncomingBeans(HstQuery query, Class<? extends HippoBean> beanMappingClass)
          Deprecated. use ContentBeanUtils.getIncomingBeans(HstQuery, Class) instead
 



Copyright © 2008-2012 Hippo. All Rights Reserved.