Codota Logo
SessionImplementor.iterateFilter
Code IndexAdd Codota to your IDE (free)

How to use
iterateFilter
method
in
org.hibernate.engine.spi.SessionImplementor

Best Java code snippets using org.hibernate.engine.spi.SessionImplementor.iterateFilter (Showing top 6 results out of 315)

  • Common ways to obtain SessionImplementor
private void myMethod () {
SessionImplementor s =
  • Codota IconEntityManager entityManager;entityManager.unwrap(SessionImplementor.class)
  • Codota IconFlushEntityEvent flushEntityEvent;flushEntityEvent.getSession()
  • Codota IconLazyInitializer lazyInitializer;lazyInitializer.getSession()
  • Smart code suggestions by Codota
}
origin: hibernate/hibernate-orm

@Override
public Iterator iterateFilter(Object collection, String filter, QueryParameters queryParameters) throws HibernateException {
  return delegate.iterateFilter( collection, filter, queryParameters );
}
origin: org.jboss.seam/jboss-seam

public Iterator iterateFilter(Object paramObject, String paramString, QueryParameters paramQueryParameters) throws HibernateException
{
 return ((SessionImplementor) delegate).iterateFilter(paramObject, paramString, paramQueryParameters);
}
origin: riotfamily/riot

public Iterator<?> iterateFilter(Object collection, String filter,
    QueryParameters queryParameters) throws HibernateException {
  return session.iterateFilter(collection, filter, queryParameters);
}
origin: com.atlassian.hibernate/hibernate.adapter

@Override
public Iterator iterateFilter(final Object collection, final String filter, final QueryParameters queryParameters)
    throws HibernateException {
  return getSessionImplementor().iterateFilter(collection, filter, queryParameters);
}
origin: org.hibernate/com.springsource.org.hibernate

/**
 * @see org.hibernate.Query#iterate()
 */
public Iterator iterate() throws HibernateException {
  verifyParameters();
  Map namedParams = getNamedParams();
  return getSession().iterateFilter( 
      collection, 
      expandParameterLists(namedParams),
      getQueryParameters(namedParams) 
  );
}
origin: org.hibernate/com.springsource.org.hibernate.core

/**
 * @see org.hibernate.Query#iterate()
 */
public Iterator iterate() throws HibernateException {
  verifyParameters();
  Map namedParams = getNamedParams();
  return getSession().iterateFilter( 
      collection, 
      expandParameterLists(namedParams),
      getQueryParameters(namedParams) 
  );
}
org.hibernate.engine.spiSessionImplementoriterateFilter

Javadoc

Iterate a filter

Popular methods of SessionImplementor

  • getFactory
    Get the creating SessionFactoryImplementor
  • getTransactionCoordinator
  • connection
  • getPersistenceContext
    Get the persistence context for this session
  • getLoadQueryInfluencers
    Get the load query influencers associated with this session.
  • isTransactionInProgress
    Does this Session have an active Hibernate transaction or is there a JTA transaction in progress?
  • getEntityPersister
    Get the EntityPersister for any instance
  • getJdbcCoordinator
  • isClosed
    Determine whether the session is closed. Provided separately from #isOpen() as this method does not
  • flush
  • getTenantIdentifier
    Match te method on org.hibernate.Session and org.hibernate.StatelessSession
  • generateEntityKey
  • getTenantIdentifier,
  • generateEntityKey,
  • getContextEntityIdentifier,
  • isOpen,
  • bestGuessEntityName,
  • getFlushMode,
  • getSessionFactory,
  • guessEntityName,
  • immediateLoad,
  • initializeCollection

Popular in Java

  • Making http requests using okhttp
  • onRequestPermissionsResult (Fragment)
  • onCreateOptionsMenu (Activity)
  • setRequestProperty (URLConnection)
    Sets the general request property. If a property with the key already exists, overwrite its value wi
  • BorderLayout (java.awt)
    A border layout lays out a container, arranging and resizing its components to fit in five regions:
  • OutputStream (java.io)
    A writable sink for bytes.Most clients will use output streams that write data to the file system (
  • BigInteger (java.math)
    Immutable arbitrary-precision integers. All operations behave as if BigIntegers were represented in
  • ArrayList (java.util)
    Resizable-array implementation of the List interface. Implements all optional list operations, and p
  • Map (java.util)
    A Map is a data structure consisting of a set of keys and values in which each key is mapped to a si
  • JPanel (javax.swing)
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now