Codota Logo
PkDrivenByDefaultMapsIdSecondPass
Code IndexAdd Codota to your IDE (free)

How to use
PkDrivenByDefaultMapsIdSecondPass
in
org.hibernate.cfg

Best Java code snippets using org.hibernate.cfg.PkDrivenByDefaultMapsIdSecondPass (Showing top 5 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
SimpleDateFormat s =
  • Codota IconString pattern;new SimpleDateFormat(pattern)
  • Codota IconString template;Locale locale;new SimpleDateFormat(template, locale)
  • Codota Iconnew SimpleDateFormat()
  • Smart code suggestions by Codota
}
origin: hibernate/hibernate-orm

public void linkWithValue() {
  if ( columns[0].isNameDeferred() && !buildingContext.getMetadataCollector().isInSecondPass() && referencedEntityName != null ) {
    buildingContext.getMetadataCollector().addSecondPass(
        new PkDrivenByDefaultMapsIdSecondPass(
            referencedEntityName, (Ejb3JoinColumn[]) columns, simpleValue
        )
    );
  }
  else {
    for ( Ejb3Column column : columns ) {
      column.linkWithValue( simpleValue );
    }
  }
}
origin: org.hibernate/hibernate-annotations

public void linkWithValue() {
  if ( columns[0].isNameDeferred() && ! mappings.isInSecondPass() && referencedEntityName != null) {
    mappings.addSecondPass(
        new PkDrivenByDefaultMapsIdSecondPass( referencedEntityName, ( Ejb3JoinColumn[]) columns, simpleValue)
    );
  }
  else {
    for ( Ejb3Column column : columns) {
      column.linkWithValue( simpleValue );
    }
  }
}
origin: org.hibernate/com.springsource.org.hibernate

public void linkWithValue() {
  if ( columns[0].isNameDeferred() && !mappings.isInSecondPass() && referencedEntityName != null ) {
    mappings.addSecondPass(
        new PkDrivenByDefaultMapsIdSecondPass(
            referencedEntityName, ( Ejb3JoinColumn[] ) columns, simpleValue
        )
    );
  }
  else {
    for ( Ejb3Column column : columns ) {
      column.linkWithValue( simpleValue );
    }
  }
}
origin: org.hibernate/com.springsource.org.hibernate.core

public void linkWithValue() {
  if ( columns[0].isNameDeferred() && !mappings.isInSecondPass() && referencedEntityName != null ) {
    mappings.addSecondPass(
        new PkDrivenByDefaultMapsIdSecondPass(
            referencedEntityName, ( Ejb3JoinColumn[] ) columns, simpleValue
        )
    );
  }
  else {
    for ( Ejb3Column column : columns ) {
      column.linkWithValue( simpleValue );
    }
  }
}
origin: org.hibernate.orm/hibernate-core

public void linkWithValue() {
  if ( columns[0].isNameDeferred() && !buildingContext.getMetadataCollector().isInSecondPass() && referencedEntityName != null ) {
    buildingContext.getMetadataCollector().addSecondPass(
        new PkDrivenByDefaultMapsIdSecondPass(
            referencedEntityName, (Ejb3JoinColumn[]) columns, basicValue
        )
    );
  }
  else {
    for ( Ejb3Column column : columns ) {
      column.linkWithValue( basicValue );
    }
  }
}
org.hibernate.cfgPkDrivenByDefaultMapsIdSecondPass

Most used methods

  • <init>

Popular in Java

  • Parsing JSON documents to java classes using gson
  • scheduleAtFixedRate (ScheduledExecutorService)
  • findViewById (Activity)
  • requestLocationUpdates (LocationManager)
  • Table (com.google.common.collect)
    A collection that associates an ordered pair of keys, called a row key and a column key, with a sing
  • Menu (java.awt)
  • Charset (java.nio.charset)
    A charset is a named mapping between Unicode characters and byte sequences. Every Charset can decode
  • ResultSet (java.sql)
    An interface for an object which represents a database table entry, returned as the result of the qu
  • Queue (java.util)
    A collection designed for holding elements prior to processing. Besides basic java.util.Collection o
  • Executors (java.util.concurrent)
    Factory and utility methods for Executor, ExecutorService, ScheduledExecutorService, ThreadFactory,
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