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

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

Best Java code snippets using org.hibernate.cfg.Ejb3Column.linkWithValue (Showing top 11 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: hibernate/hibernate-orm

column.linkWithValue( value );
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/hibernate-annotations

column.linkWithValue( value );
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 );
    }
  }
}
origin: jboss.jboss-embeddable-ejb3/hibernate-all

  public SimpleValue fillSimpleValue(SimpleValue simpleValue) {
    String type = BinderHelper.isDefault( explicitType ) ? returnedClassName : explicitType;
    org.hibernate.mapping.TypeDef typeDef = mappings.getTypeDef( type );
    if ( typeDef != null ) {
      type = typeDef.getTypeClass();
      simpleValue.setTypeParameters( typeDef.getParameters() );
    }
    if ( typeParameters != null && typeParameters.size() != 0 ) {
      //explicit type params takes precedence over type def params
      simpleValue.setTypeParameters( typeParameters );
    }
    simpleValue.setTypeName( type );
    if ( persistentClassName != null ) {
      simpleValue.setTypeUsingReflection( persistentClassName, propertyName );
    }
    for ( Ejb3Column column : columns ) {
      column.linkWithValue( simpleValue );
    }
    return simpleValue;
  }
}
origin: org.hibernate/com.springsource.org.hibernate

column.linkWithValue( value );
origin: org.hibernate/com.springsource.org.hibernate.core

column.linkWithValue( value );
origin: org.hibernate.orm/hibernate-core

column.linkWithValue( value );
org.hibernate.cfgEjb3ColumnlinkWithValue

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,
  • redefineColumnName,
  • setFormula,
  • setImplicit,
  • setInsertable,
  • setJoins

Popular in Java

  • Updating database using SQL prepared statement
  • putExtra (Intent)
  • getSupportFragmentManager (FragmentActivity)
  • scheduleAtFixedRate (Timer)
  • Rectangle (java.awt)
    A Rectangle specifies an area in a coordinate space that is enclosed by the Rectangle object's top-
  • URLEncoder (java.net)
    This class is used to encode a string using the format required by application/x-www-form-urlencoded
  • TimeZone (java.util)
    TimeZone represents a time zone offset, and also figures out daylight savings. Typically, you get a
  • CountDownLatch (java.util.concurrent)
    A synchronization aid that allows one or more threads to wait until a set of operations being perfor
  • HttpServlet (javax.servlet.http)
    Provides an abstract class to be subclassed to create an HTTP servlet suitable for a Web site. A sub
  • Option (scala)
  • Top 17 Free Sublime Text Plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

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