Tabnine Logo
Ejb3Column.isNameDeferred
Code IndexAdd Tabnine to your IDE (free)

How to use
isNameDeferred
method
in
org.hibernate.cfg.Ejb3Column

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

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.cfgEjb3ColumnisNameDeferred

Popular methods of Ejb3Column

  • <init>
  • bind
  • buildColumnFromAnnotation
  • buildImplicitColumn
  • checkPropertyConsistency
  • forceNotNull
  • getJoin
  • getMappingColumn
  • getTable
    Find appropriate table of the column. It can come from a secondary table or from the main table of t
  • initMappingColumn
  • isInsertable
  • isNullable
  • isInsertable,
  • isNullable,
  • isSecondary,
  • isUpdatable,
  • linkWithValue,
  • redefineColumnName,
  • setFormula,
  • setImplicit,
  • setInsertable,
  • setJoins

Popular in Java

  • Making http requests using okhttp
  • getSharedPreferences (Context)
  • findViewById (Activity)
  • setScale (BigDecimal)
  • ResultSet (java.sql)
    An interface for an object which represents a database table entry, returned as the result of the qu
  • ArrayList (java.util)
    ArrayList is an implementation of List, backed by an array. All optional operations including adding
  • Date (java.util)
    A specific moment in time, with millisecond precision. Values typically come from System#currentTime
  • StringTokenizer (java.util)
    Breaks a string into tokens; new code should probably use String#split.> // Legacy code: StringTo
  • Options (org.apache.commons.cli)
    Main entry-point into the library. Options represents a collection of Option objects, which describ
  • IOUtils (org.apache.commons.io)
    General IO stream manipulation utilities. This class provides static utility methods for input/outpu
  • Github Copilot alternatives
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