Tabnine Logo
Mappings.getClassType
Code IndexAdd Tabnine to your IDE (free)

How to use
getClassType
method
in
org.hibernate.cfg.Mappings

Best Java code snippets using org.hibernate.cfg.Mappings.getClassType (Showing top 8 results out of 315)

origin: org.hibernate/com.springsource.org.hibernate

private static void bindFilters(XClass annotatedClass, EntityBinder entityBinder,
                Mappings mappings) {
  bindFilters( annotatedClass, entityBinder );
  XClass classToProcess = annotatedClass.getSuperclass();
  while ( classToProcess != null ) {
    AnnotatedClassType classType = mappings.getClassType( classToProcess );
    if ( AnnotatedClassType.EMBEDDABLE_SUPERCLASS.equals( classType ) ) {
      bindFilters( classToProcess, entityBinder );
    }
    classToProcess = classToProcess.getSuperclass();
  }
}
origin: org.hibernate/com.springsource.org.hibernate.core

private static void bindFilters(XClass annotatedClass, EntityBinder entityBinder,
                Mappings mappings) {
  bindFilters( annotatedClass, entityBinder );
  XClass classToProcess = annotatedClass.getSuperclass();
  while ( classToProcess != null ) {
    AnnotatedClassType classType = mappings.getClassType( classToProcess );
    if ( AnnotatedClassType.EMBEDDABLE_SUPERCLASS.equals( classType ) ) {
      bindFilters( classToProcess, entityBinder );
    }
    classToProcess = classToProcess.getSuperclass();
  }
}
origin: org.hibernate/com.springsource.org.hibernate

classType = mappings.getClassType( elementClass );
origin: org.hibernate/com.springsource.org.hibernate.core

  throw new AnnotationException( "Unable to find class: " + mapKeyType, e );
classType = mappings.getClassType( elementClass );
origin: org.hibernate/com.springsource.org.hibernate.core

classType = mappings.getClassType( elementClass );
origin: org.hibernate/com.springsource.org.hibernate

  throw new AnnotationException( "Unable to find class: " + mapKeyType, e );
classType = mappings.getClassType( elementClass );
origin: org.hibernate/com.springsource.org.hibernate

AnnotatedClassType classType = mappings.getClassType( clazzToProcess );
origin: org.hibernate/com.springsource.org.hibernate.core

AnnotatedClassType classType = mappings.getClassType( clazzToProcess );
org.hibernate.cfgMappingsgetClassType

Javadoc

Get and maintain a cache of class type.

Popular methods of Mappings

  • addClass
    Add entity mapping metadata.
  • addImport
    Adds an import (HQL entity rename) to the repository.
  • addTable
    Adds table metadata to this repository returning the created metadata instance.
  • getCatalogName
    Returns the currently bound default catalog name.
  • getClass
    Retrieves the entity mapping metadata for the given entity name.
  • getSchemaName
    Returns the currently bound default schema name.
  • addCollection
    Add collection mapping metadata to this repository.
  • addSecondPass
    Adds a second pass.
  • addTableBinding
    Adds a table binding to this repository.
  • getDefaultAccess
    Get the current default property access style.
  • isAutoImport
    Determine whether auto importing of entity names is currently enabled.
  • addDenormalizedTable
    Adds a 'denormalized table' to this repository.
  • isAutoImport,
  • addDenormalizedTable,
  • addFilterDefinition,
  • addTypeDef,
  • addUniquePropertyReference,
  • getObjectNameNormalizer,
  • setAutoImport,
  • addColumnBinding,
  • addPropertyReference,
  • addQuery

Popular in Java

  • Making http requests using okhttp
  • addToBackStack (FragmentTransaction)
  • requestLocationUpdates (LocationManager)
  • getSharedPreferences (Context)
  • GridBagLayout (java.awt)
    The GridBagLayout class is a flexible layout manager that aligns components vertically and horizonta
  • Path (java.nio.file)
  • CountDownLatch (java.util.concurrent)
    A synchronization aid that allows one or more threads to wait until a set of operations being perfor
  • DateTimeFormat (org.joda.time.format)
    Factory that creates instances of DateTimeFormatter from patterns and styles. Datetime formatting i
  • LoggerFactory (org.slf4j)
    The LoggerFactory is a utility class producing Loggers for various logging APIs, most notably for lo
  • Location (org.springframework.beans.factory.parsing)
    Class that models an arbitrary location in a Resource.Typically used to track the location of proble
  • Best IntelliJ 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