congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
SimpleValueBinder.setColumns
Code IndexAdd Tabnine to your IDE (free)

How to use
setColumns
method
in
org.hibernate.cfg.annotations.SimpleValueBinder

Best Java code snippets using org.hibernate.cfg.annotations.SimpleValueBinder.setColumns (Showing top 20 results out of 315)

origin: hibernate/hibernate-orm

private Property makePropertyAndValue() {
  validateBind();
  LOG.debugf( "MetadataSourceProcessor property %s with lazy=%s", name, lazy );
  final String containerClassName = holder.getClassName();
  holder.startingProperty( property );
  simpleValueBinder = new SimpleValueBinder();
  simpleValueBinder.setBuildingContext( buildingContext );
  simpleValueBinder.setPropertyName( name );
  simpleValueBinder.setReturnedClassName( returnedClassName );
  simpleValueBinder.setColumns( columns );
  simpleValueBinder.setPersistentClassName( containerClassName );
  simpleValueBinder.setType(
      property,
      returnedClass,
      containerClassName,
      holder.resolveAttributeConverterDescriptor( property )
  );
  simpleValueBinder.setReferencedEntityName( referencedEntityName );
  simpleValueBinder.setAccessType( accessType );
  SimpleValue propertyValue = simpleValueBinder.make();
  setValue( propertyValue );
  return makeProperty();
}
origin: hibernate/hibernate-orm

simpleValue.setColumns( idColumns );
Type typeAnn = collectionIdAnn.type();
if ( typeAnn != null && !BinderHelper.isEmptyAnnotationValue( typeAnn.type() ) ) {
origin: hibernate/hibernate-orm

  column.setTable( mapValue.getCollectionTable() );
elementBinder.setColumns( elementColumns );
origin: hibernate/hibernate-orm

indexColumn.setPropertyHolder( valueHolder );
SimpleValueBinder value = new SimpleValueBinder();
value.setColumns( new Ejb3Column[] { indexColumn } );
value.setExplicitType( "integer" );
value.setBuildingContext( getBuildingContext() );
origin: hibernate/hibernate-orm

value.setPropertyName( propertyName );
value.setReturnedClassName( inferredData.getTypeName() );
value.setColumns( columns );
value.setPersistentClassName( persistentClassName );
value.setBuildingContext( buildingContext );
origin: hibernate/hibernate-orm

  column.setTable( collValue.getCollectionTable() );
elementBinder.setColumns( elementColumns );
elementBinder.setType(
    property,
origin: org.hibernate/hibernate-annotations

private Property makePropertyAndValue() {
  validateBind();
  log.debug( "binding property {} with lazy={}", name, lazy );
  String containerClassName = holder == null ?
      null :
      holder.getClassName();
  simpleValueBinder = new SimpleValueBinder();
  simpleValueBinder.setMappings( mappings );
  simpleValueBinder.setPropertyName( name );
  simpleValueBinder.setReturnedClassName( returnedClassName );
  simpleValueBinder.setColumns( columns );
  simpleValueBinder.setPersistentClassName( containerClassName );
  simpleValueBinder.setType( property, returnedClass );
  simpleValueBinder.setMappings( mappings );
  simpleValueBinder.setReferencedEntityName( referencedEntityName );
  SimpleValue propertyValue = simpleValueBinder.make();
  setValue( propertyValue );
  return makeProperty();
}
origin: org.hibernate/hibernate-annotations

simpleValue.setColumns( idColumns );
Type typeAnn = collectionIdAnn.type();
if ( typeAnn != null && !BinderHelper.isDefault( typeAnn.type() ) ) {
origin: org.hibernate/hibernate-annotations

  column.setTable( collValue.getCollectionTable() );
elementBinder.setColumns( elementColumns );
elementBinder.setType( property, elementClass );
collValue.setElement( elementBinder.make() );
origin: org.hibernate/hibernate-annotations

  column.setTable( mapValue.getCollectionTable() );
elementBinder.setColumns( elementColumns );
origin: org.hibernate/hibernate-annotations

value.setPropertyName( propertyName );
value.setReturnedClassName( inferredData.getTypeName() );
value.setColumns( columns );
value.setPersistentClassName( persistentClassName );
value.setMappings( mappings );
origin: org.hibernate/hibernate-annotations

indexColumn.setPropertyHolder( valueHolder );
SimpleValueBinder value = new SimpleValueBinder();
value.setColumns( new Ejb3Column[] { indexColumn } );
value.setExplicitType( "integer" );
value.setMappings( mappings );
origin: jboss.jboss-embeddable-ejb3/hibernate-all

public Property bind() {
  validateBind();
  if ( log.isDebugEnabled() ) {
    log.debug( "binding property " + name + " with lazy=" + lazy );
  }
  String containerClassName = holder == null ? null : holder.getClassName();
  SimpleValueBinder value = new SimpleValueBinder();
  value.setMappings( mappings );
  value.setPropertyName( name );
  value.setReturnedClassName( returnedClassName );
  value.setColumns( columns );
  value.setPersistentClassName( containerClassName );
  value.setType( property, returnedClass );
  value.setMappings( mappings );
  SimpleValue propertyValue = value.make();
  setValue( propertyValue );
  Property prop = make();
  holder.addProperty( prop, columns );
  return prop;
}
origin: org.hibernate/com.springsource.org.hibernate.core

simpleValue.setColumns( idColumns );
Type typeAnn = collectionIdAnn.type();
if ( typeAnn != null && !BinderHelper.isEmptyAnnotationValue( typeAnn.type() ) ) {
origin: org.hibernate/com.springsource.org.hibernate

simpleValue.setColumns( idColumns );
Type typeAnn = collectionIdAnn.type();
if ( typeAnn != null && !BinderHelper.isEmptyAnnotationValue( typeAnn.type() ) ) {
origin: org.hibernate/com.springsource.org.hibernate

private Property makePropertyAndValue() {
  validateBind();
  LOG.debugf( "MetadataSourceProcessor property %s with lazy=%s", name, lazy );
  String containerClassName = holder == null ?
      null :
      holder.getClassName();
  simpleValueBinder = new SimpleValueBinder();
  simpleValueBinder.setMappings( mappings );
  simpleValueBinder.setPropertyName( name );
  simpleValueBinder.setReturnedClassName( returnedClassName );
  simpleValueBinder.setColumns( columns );
  simpleValueBinder.setPersistentClassName( containerClassName );
  simpleValueBinder.setType( property, returnedClass );
  simpleValueBinder.setMappings( mappings );
  simpleValueBinder.setReferencedEntityName( referencedEntityName );
  SimpleValue propertyValue = simpleValueBinder.make();
  setValue( propertyValue );
  return makeProperty();
}
origin: org.hibernate/com.springsource.org.hibernate.core

private Property makePropertyAndValue() {
  validateBind();
  LOG.debugf( "MetadataSourceProcessor property %s with lazy=%s", name, lazy );
  String containerClassName = holder == null ?
      null :
      holder.getClassName();
  simpleValueBinder = new SimpleValueBinder();
  simpleValueBinder.setMappings( mappings );
  simpleValueBinder.setPropertyName( name );
  simpleValueBinder.setReturnedClassName( returnedClassName );
  simpleValueBinder.setColumns( columns );
  simpleValueBinder.setPersistentClassName( containerClassName );
  simpleValueBinder.setType( property, returnedClass );
  simpleValueBinder.setMappings( mappings );
  simpleValueBinder.setReferencedEntityName( referencedEntityName );
  SimpleValue propertyValue = simpleValueBinder.make();
  setValue( propertyValue );
  return makeProperty();
}
origin: jboss.jboss-embeddable-ejb3/hibernate-all

indexColumn.setPropertyHolder( valueHolder );
SimpleValueBinder value = new SimpleValueBinder();
value.setColumns( new Ejb3Column[]{indexColumn} );
value.setExplicitType( "integer" );
value.setMappings( mappings );
origin: org.hibernate/com.springsource.org.hibernate

indexColumn.setPropertyHolder( valueHolder );
SimpleValueBinder value = new SimpleValueBinder();
value.setColumns( new Ejb3Column[] { indexColumn } );
value.setExplicitType( "integer" );
value.setMappings( mappings );
origin: org.hibernate/com.springsource.org.hibernate.core

indexColumn.setPropertyHolder( valueHolder );
SimpleValueBinder value = new SimpleValueBinder();
value.setColumns( new Ejb3Column[] { indexColumn } );
value.setExplicitType( "integer" );
value.setMappings( mappings );
org.hibernate.cfg.annotationsSimpleValueBindersetColumns

Popular methods of SimpleValueBinder

  • <init>
  • fillSimpleValue
  • make
  • setExplicitType
  • setPersistentClassName
  • setPropertyName
  • setReturnedClassName
  • setType
  • validate
  • getTemporalType
  • isVersion
  • linkWithValue
  • isVersion,
  • linkWithValue,
  • setKey,
  • setMappings,
  • setReferencedEntityName,
  • setTable,
  • setVersion,
  • getEnumType,
  • setTimestampVersionType

Popular in Java

  • Reactive rest calls using spring rest template
  • runOnUiThread (Activity)
  • getApplicationContext (Context)
  • getSupportFragmentManager (FragmentActivity)
  • Menu (java.awt)
  • SocketTimeoutException (java.net)
    This exception is thrown when a timeout expired on a socket read or accept operation.
  • DecimalFormat (java.text)
    A concrete subclass of NumberFormat that formats decimal numbers. It has a variety of features desig
  • Executor (java.util.concurrent)
    An object that executes submitted Runnable tasks. This interface provides a way of decoupling task s
  • JOptionPane (javax.swing)
  • JPanel (javax.swing)
  • Top plugins for WebStorm
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