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

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

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

origin: hibernate/hibernate-orm

column.setPropertyName(
    BinderHelper.getRelativePath( propertyHolder, propertyName )
);
origin: hibernate/hibernate-orm

column.setPropertyName(
    BinderHelper.getRelativePath( propertyHolder, inferredData.getPropertyName() )
);
origin: org.hibernate/hibernate-annotations

column.setPropertyName(
    BinderHelper.getRelativePath( propertyHolder, propertyName )
);
origin: org.hibernate/hibernate-annotations

column.setPropertyName(
    BinderHelper.getRelativePath( propertyHolder, inferredData.getPropertyName() )
);
origin: jboss.jboss-embeddable-ejb3/hibernate-all

private static Ejb3Column[] buildImplicitColumn(
    PropertyData inferredData, Map<String, Join> secondaryTables, PropertyHolder propertyHolder,
    Nullability nullability, ExtendedMappings mappings
) {
  Ejb3Column[] columns;
  columns = new Ejb3Column[1];
  Ejb3Column column = new Ejb3Column();
  column.setImplicit( false );
  //not following the spec but more clean
  if ( nullability != Nullability.FORCED_NULL
      && inferredData.getClassOrElement().isPrimitive()
      && ! inferredData.getProperty().isArray() ) {
    column.setNullable( false );
  }
  column.setLength( DEFAULT_COLUMN_LENGTH );
  column.setPropertyName(
      BinderHelper.getRelativePath( propertyHolder, inferredData.getPropertyName() )
  );
  column.setPropertyHolder( propertyHolder );
  column.setJoins( secondaryTables );
  column.setMappings( mappings );
  column.bind();
  columns[0] = column;
  return columns;
}
origin: org.hibernate/com.springsource.org.hibernate

column.setPropertyName(
    BinderHelper.getRelativePath( propertyHolder, propertyName )
);
origin: org.hibernate/com.springsource.org.hibernate.core

column.setPropertyName(
    BinderHelper.getRelativePath( propertyHolder, propertyName )
);
origin: org.hibernate.orm/hibernate-core

column.setPropertyName(
    BinderHelper.getRelativePath( propertyHolder, propertyName )
);
origin: jboss.jboss-embeddable-ejb3/hibernate-all

column.setScale( col.scale() );
column.setLogicalColumnName( col.name() );
column.setPropertyName(
    BinderHelper.getRelativePath( propertyHolder, inferredData.getPropertyName() )
);
origin: org.hibernate.orm/hibernate-core

column.setPropertyName(
    BinderHelper.getRelativePath( propertyHolder, inferredData.getPropertyName() )
);
origin: org.hibernate/com.springsource.org.hibernate.core

column.setPropertyName(
    BinderHelper.getRelativePath( propertyHolder, inferredData.getPropertyName() )
);
origin: org.hibernate/com.springsource.org.hibernate

column.setPropertyName(
    BinderHelper.getRelativePath( propertyHolder, inferredData.getPropertyName() )
);
org.hibernate.cfgEjb3ColumnsetPropertyName

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 post requests using okhttp
  • getResourceAsStream (ClassLoader)
  • setScale (BigDecimal)
  • findViewById (Activity)
  • 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
  • FileOutputStream (java.io)
    An output stream that writes bytes to a file. If the output file exists, it can be replaced or appen
  • SQLException (java.sql)
    An exception that indicates a failed JDBC operation. It provides the following information about pro
  • DecimalFormat (java.text)
    A concrete subclass of NumberFormat that formats decimal numbers. It has a variety of features desig
  • Random (java.util)
    This class provides methods that return pseudo-random values.It is dangerous to seed Random with the
  • ConcurrentHashMap (java.util.concurrent)
    A plug-in replacement for JDK1.5 java.util.concurrent.ConcurrentHashMap. This version is based on or
  • 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