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

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

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

origin: hibernate/hibernate-orm

redefineColumnName( columnName, propertyName, applyNamingStrategy );
this.mappingColumn.setLength( length );
if ( precision > 0 ) {  //revelent precision
origin: org.hibernate/hibernate-annotations

protected void initMappingColumn(
    String columnName,
    String propertyName,
    int length,
    int precision,
    int scale,
    boolean nullable,
    String sqlType,
    boolean unique,
    boolean applyNamingStrategy) {
  if ( StringHelper.isNotEmpty( formulaString ) ) {
    this.formula = new Formula();
    this.formula.setFormula( formulaString );
  }
  else {
    this.mappingColumn = new Column();
    redefineColumnName( columnName, propertyName, applyNamingStrategy );
    this.mappingColumn.setLength( length );
    if ( precision > 0 ) {  //revelent precision
      this.mappingColumn.setPrecision( precision );
      this.mappingColumn.setScale( scale );
    }
    this.mappingColumn.setNullable( nullable );
    this.mappingColumn.setSqlType( sqlType );
    this.mappingColumn.setUnique( unique );
  }
}
origin: jboss.jboss-embeddable-ejb3/hibernate-all

protected void initMappingColumn(
    String columnName, String propertyName, int length, int precision, int scale, boolean nullable,
    String sqlType, boolean unique, boolean applyNamingStrategy
) {
  this.mappingColumn = new Column();
  redefineColumnName( columnName, propertyName, applyNamingStrategy );
  this.mappingColumn.setLength( length );
  if ( precision > 0 ) {  //revelent precision
    this.mappingColumn.setPrecision( precision );
    this.mappingColumn.setScale( scale );
  }
  this.mappingColumn.setNullable( nullable );
  this.mappingColumn.setSqlType( sqlType );
  this.mappingColumn.setUnique( unique );
}
origin: org.hibernate.orm/hibernate-core

    redefineColumnName( columnName, propertyName, applyNamingStrategy ),
    unique
);
origin: org.hibernate/com.springsource.org.hibernate

redefineColumnName( columnName, propertyName, applyNamingStrategy );
this.mappingColumn.setLength( length );
if ( precision > 0 ) {  //revelent precision
origin: org.hibernate/com.springsource.org.hibernate.core

redefineColumnName( columnName, propertyName, applyNamingStrategy );
this.mappingColumn.setLength( length );
if ( precision > 0 ) {  //revelent precision
org.hibernate.cfgEjb3ColumnredefineColumnName

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

Popular in Java

  • Making http requests using okhttp
  • setScale (BigDecimal)
  • scheduleAtFixedRate (Timer)
  • addToBackStack (FragmentTransaction)
  • BufferedImage (java.awt.image)
    The BufferedImage subclass describes an java.awt.Image with an accessible buffer of image data. All
  • BufferedReader (java.io)
    Wraps an existing Reader and buffers the input. Expensive interaction with the underlying reader is
  • URLEncoder (java.net)
    This class is used to encode a string using the format required by application/x-www-form-urlencoded
  • Date (java.util)
    A specific moment in time, with millisecond precision. Values typically come from System#currentTime
  • Handler (java.util.logging)
    A Handler object accepts a logging request and exports the desired messages to a target, for example
  • Location (org.springframework.beans.factory.parsing)
    Class that models an arbitrary location in a Resource.Typically used to track the location of proble
  • From CI to AI: The AI layer in your organization
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