Tabnine Logo
HibernateEntityManagerFactory.getMetamodel
Code IndexAdd Tabnine to your IDE (free)

How to use
getMetamodel
method
in
org.hibernate.jpa.HibernateEntityManagerFactory

Best Java code snippets using org.hibernate.jpa.HibernateEntityManagerFactory.getMetamodel (Showing top 1 results out of 315)

origin: hibernate/hibernate-orm

  /**
   * Find an entity type by name
   *
   * @param entityName entity name
   *
   * @return the {@code EntityType} for the specified name
   *
   * @deprecated Use org.hibernate.MetamodelImplementor#getEntityTypeByName instead.
   */
  @Deprecated
  default EntityType getEntityTypeByName(String entityName) {
    final EntityType entityType = getMetamodel().getEntityTypeByName( entityName );
    if ( entityType == null ) {
      throw new IllegalArgumentException( "[" + entityName + "] did not refer to EntityType" );
    }
    return entityType;
  }
}
org.hibernate.jpaHibernateEntityManagerFactorygetMetamodel

Popular methods of HibernateEntityManagerFactory

  • getSessionFactory
  • close
  • createEntityManager
  • getProperties

Popular in Java

  • Making http post requests using okhttp
  • addToBackStack (FragmentTransaction)
  • startActivity (Activity)
  • getSystemService (Context)
  • InetAddress (java.net)
    An Internet Protocol (IP) address. This can be either an IPv4 address or an IPv6 address, and in pra
  • URLConnection (java.net)
    A connection to a URL for reading or writing. For HTTP connections, see HttpURLConnection for docume
  • Semaphore (java.util.concurrent)
    A counting semaphore. Conceptually, a semaphore maintains a set of permits. Each #acquire blocks if
  • Filter (javax.servlet)
    A filter is an object that performs filtering tasks on either the request to a resource (a servlet o
  • HttpServletRequest (javax.servlet.http)
    Extends the javax.servlet.ServletRequest interface to provide request information for HTTP servlets.
  • LoggerFactory (org.slf4j)
    The LoggerFactory is a utility class producing Loggers for various logging APIs, most notably for lo
  • Top PhpStorm plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now