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

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

Best Java code snippets using org.hibernate.cfg.annotations.SimpleValueBinder.make (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 id = simpleValue.make();
( (IdentifierCollection) collection ).setIdentifier( id );
String generator = collectionIdAnn.generator();
origin: hibernate/hibernate-orm

elementBinder.setPersistentClassName( propertyHolder.getEntityName() );
elementBinder.setAccessType( accessType );
mapValue.setIndex( elementBinder.make() );
origin: hibernate/hibernate-orm

value.setExplicitType( "integer" );
value.setBuildingContext( getBuildingContext() );
SimpleValue indexValue = value.make();
indexColumn.linkWithValue( indexValue );
list.setIndex( indexValue );
origin: hibernate/hibernate-orm

value.setType( inferredData.getProperty(), inferredData.getClassOrElement(), persistentClassName, null );
value.setAccessType( propertyAccessor );
id = value.make();
origin: hibernate/hibernate-orm

elementBinder.setPersistentClassName( propertyHolder.getEntityName() );
elementBinder.setAccessType( accessType );
collValue.setElement( elementBinder.make() );
String orderBy = adjustUserSuppliedValueCollectionOrderingFragment( hqlOrderBy );
if ( orderBy != null ) {
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 id = simpleValue.make();
( (IdentifierCollection) collection ).setIdentifier( id );
String generator = collectionIdAnn.generator();
origin: org.hibernate/hibernate-annotations

collValue.setElement( elementBinder.make() );
origin: org.hibernate/hibernate-annotations

  elementBinder.setType( property, elementClass );
mapValue.setIndex( elementBinder.make() );
origin: org.hibernate/hibernate-annotations

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

value.setExplicitType( "integer" );
value.setMappings( mappings );
SimpleValue indexValue = value.make();
indexColumn.linkWithValue( indexValue );
list.setIndex( 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.core

SimpleValue id = simpleValue.make();
( (IdentifierCollection) collection ).setIdentifier( id );
String generator = collectionIdAnn.generator();
origin: org.hibernate/com.springsource.org.hibernate

SimpleValue id = simpleValue.make();
( (IdentifierCollection) collection ).setIdentifier( id );
String generator = collectionIdAnn.generator();
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

value.setExplicitType( "integer" );
value.setMappings( mappings );
SimpleValue indexValue = value.make();
indexColumn.linkWithValue( indexValue );
list.setIndex( indexValue );
origin: org.hibernate/com.springsource.org.hibernate

value.setExplicitType( "integer" );
value.setMappings( mappings );
SimpleValue indexValue = value.make();
indexColumn.linkWithValue( indexValue );
list.setIndex( indexValue );
origin: org.hibernate/com.springsource.org.hibernate.core

value.setExplicitType( "integer" );
value.setMappings( mappings );
SimpleValue indexValue = value.make();
indexColumn.linkWithValue( indexValue );
list.setIndex( indexValue );
org.hibernate.cfg.annotationsSimpleValueBindermake

Popular methods of SimpleValueBinder

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

Popular in Java

  • Running tasks concurrently on multiple threads
  • addToBackStack (FragmentTransaction)
  • getSupportFragmentManager (FragmentActivity)
  • getContentResolver (Context)
  • Kernel (java.awt.image)
  • IOException (java.io)
    Signals a general, I/O-related error. Error details may be specified when calling the constructor, a
  • BigInteger (java.math)
    An immutable arbitrary-precision signed integer.FAST CRYPTOGRAPHY This implementation is efficient f
  • DecimalFormat (java.text)
    A concrete subclass of NumberFormat that formats decimal numbers. It has a variety of features desig
  • JComboBox (javax.swing)
  • Loader (org.hibernate.loader)
    Abstract superclass of object loading (and querying) strategies. This class implements useful common
  • Top Vim plugins
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