Save This Page
Home » hibernate-distribution-3.3.1.GA-dist » org.hibernate » engine » [javadoc | source]
org.hibernate.engine
public class: LoadQueryInfluencers [javadoc | source]
java.lang.Object
   org.hibernate.engine.LoadQueryInfluencers

All Implemented Interfaces:
    Serializable

Centralize all options which can influence the SQL query needed to load an entity. Currently such influencers are defined as:
Field Summary
public static  LoadQueryInfluencers NONE    Static reference useful for cases where we are creating load SQL outside the context of any influencers. One such example is anything created by the session factory. 
Constructor:
 public LoadQueryInfluencers() 
 public LoadQueryInfluencers(SessionFactoryImplementor sessionFactory) 
Method from org.hibernate.engine.LoadQueryInfluencers Summary:
disableFetchProfile,   disableFilter,   enableFetchProfile,   enableFilter,   getEnabledFetchProfileNames,   getEnabledFilter,   getEnabledFilters,   getFilterParameterType,   getFilterParameterValue,   getInternalFetchProfile,   getSessionFactory,   hasEnabledFetchProfiles,   hasEnabledFilters,   isFetchProfileEnabled,   parseFilterParameterName,   setInternalFetchProfile
Methods from java.lang.Object:
equals,   getClass,   hashCode,   notify,   notifyAll,   toString,   wait,   wait,   wait
Method from org.hibernate.engine.LoadQueryInfluencers Detail:
 public  void disableFetchProfile(String name) throws UnknownProfileException 
 public  void disableFilter(String filterName) 
 public  void enableFetchProfile(String name) throws UnknownProfileException 
 public Filter enableFilter(String filterName) 
 public Set getEnabledFetchProfileNames() 
 public Filter getEnabledFilter(String filterName) 
 public Map getEnabledFilters() 
 public Type getFilterParameterType(String filterParameterName) 
 public Object getFilterParameterValue(String filterParameterName) 
 public String getInternalFetchProfile() 
 public SessionFactoryImplementor getSessionFactory() 
 public boolean hasEnabledFetchProfiles() 
 public boolean hasEnabledFilters() 
 public boolean isFetchProfileEnabled(String name) throws UnknownProfileException 
 public static String[] parseFilterParameterName(String filterParameterName) 
 public  void setInternalFetchProfile(String internalFetchProfile)