Tabnine Logo
SimpleValueBinder.setMappings
Code IndexAdd Tabnine to your IDE (free)

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

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

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

      + StringHelper.qualify( propertyHolder.getPath(), propertyName ) );
simpleValue.setMappings( mappings );
SimpleValue id = simpleValue.make();
( (IdentifierCollection) collection ).setIdentifier( id );
origin: org.hibernate/hibernate-annotations

elementBinder.setMappings( mappings );
elementBinder.setReturnedClassName( collType.getName() );
if ( elementColumns == null || elementColumns.length == 0 ) {
origin: org.hibernate/hibernate-annotations

elementBinder.setMappings( mappings );
elementBinder.setReturnedClassName( mapKeyType );
origin: org.hibernate/hibernate-annotations

value.setColumns( columns );
value.setPersistentClassName( persistentClassName );
value.setMappings( mappings );
value.setType( inferredData.getProperty(), inferredData.getClassOrElement() );
id = value.make();
origin: org.hibernate/hibernate-annotations

value.setColumns( new Ejb3Column[] { indexColumn } );
value.setExplicitType( "integer" );
value.setMappings( mappings );
SimpleValue indexValue = value.make();
indexColumn.linkWithValue( indexValue );
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

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: org.hibernate/com.springsource.org.hibernate

      + StringHelper.qualify( propertyHolder.getPath(), propertyName ) );
simpleValue.setMappings( mappings );
SimpleValue id = simpleValue.make();
( (IdentifierCollection) collection ).setIdentifier( id );
origin: org.hibernate/com.springsource.org.hibernate.core

      + StringHelper.qualify( propertyHolder.getPath(), propertyName ) );
simpleValue.setMappings( mappings );
SimpleValue id = simpleValue.make();
( (IdentifierCollection) collection ).setIdentifier( id );
origin: org.hibernate/com.springsource.org.hibernate.core

elementBinder.setMappings( mappings );
elementBinder.setReturnedClassName( mapKeyType );
origin: org.hibernate/com.springsource.org.hibernate.core

elementBinder.setMappings( mappings );
elementBinder.setReturnedClassName( collType.getName() );
if ( elementColumns == null || elementColumns.length == 0 ) {
origin: org.hibernate/com.springsource.org.hibernate

elementBinder.setMappings( mappings );
elementBinder.setReturnedClassName( mapKeyType );
origin: org.hibernate/com.springsource.org.hibernate

elementBinder.setMappings( mappings );
elementBinder.setReturnedClassName( collType.getName() );
if ( elementColumns == null || elementColumns.length == 0 ) {
origin: jboss.jboss-embeddable-ejb3/hibernate-all

value.setColumns( new Ejb3Column[]{indexColumn} );
value.setExplicitType( "integer" );
value.setMappings( mappings );
SimpleValue indexValue = value.make();
indexColumn.linkWithValue( indexValue );
origin: org.hibernate/com.springsource.org.hibernate.core

value.setColumns( columns );
value.setPersistentClassName( persistentClassName );
value.setMappings( mappings );
value.setType( inferredData.getProperty(), inferredData.getClassOrElement() );
id = value.make();
origin: org.hibernate/com.springsource.org.hibernate

value.setColumns( columns );
value.setPersistentClassName( persistentClassName );
value.setMappings( mappings );
value.setType( inferredData.getProperty(), inferredData.getClassOrElement() );
id = value.make();
origin: org.hibernate/com.springsource.org.hibernate

value.setColumns( new Ejb3Column[] { indexColumn } );
value.setExplicitType( "integer" );
value.setMappings( mappings );
SimpleValue indexValue = value.make();
indexColumn.linkWithValue( indexValue );
origin: org.hibernate/com.springsource.org.hibernate.core

value.setColumns( new Ejb3Column[] { indexColumn } );
value.setExplicitType( "integer" );
value.setMappings( mappings );
SimpleValue indexValue = value.make();
indexColumn.linkWithValue( indexValue );
org.hibernate.cfg.annotationsSimpleValueBindersetMappings

Popular methods of SimpleValueBinder

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

Popular in Java

  • Making http post requests using okhttp
  • setScale (BigDecimal)
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • getContentResolver (Context)
  • GridBagLayout (java.awt)
    The GridBagLayout class is a flexible layout manager that aligns components vertically and horizonta
  • Window (java.awt)
    A Window object is a top-level window with no borders and no menubar. The default layout for a windo
  • UnknownHostException (java.net)
    Thrown when a hostname can not be resolved.
  • ResultSet (java.sql)
    An interface for an object which represents a database table entry, returned as the result of the qu
  • Dictionary (java.util)
    Note: Do not use this class since it is obsolete. Please use the Map interface for new implementatio
  • Timer (java.util)
    Timers schedule one-shot or recurring TimerTask for execution. Prefer java.util.concurrent.Scheduled
  • Top plugins for Android Studio
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