Tabnine Logo
InFlightMetadataCollectorImpl.addSecondPass
Code IndexAdd Tabnine to your IDE (free)

How to use
addSecondPass
method
in
org.hibernate.boot.internal.InFlightMetadataCollectorImpl

Best Java code snippets using org.hibernate.boot.internal.InFlightMetadataCollectorImpl.addSecondPass (Showing top 20 results out of 315)

origin: hibernate/hibernate-orm

@Override
public void addSecondPass(SecondPass secondPass) {
  addSecondPass( secondPass, false );
}
origin: hibernate/hibernate-orm

private void addPkDrivenByDefaultMapsIdSecondPass(
    PkDrivenByDefaultMapsIdSecondPass secondPass,
    boolean onTopOfTheQueue) {
  if ( pkDrivenByDefaultMapsIdSecondPassList == null ) {
    pkDrivenByDefaultMapsIdSecondPassList = new ArrayList<>();
  }
  addSecondPass( secondPass, pkDrivenByDefaultMapsIdSecondPassList, onTopOfTheQueue );
}
origin: hibernate/hibernate-orm

private void addSetSimpleValueTypeSecondPass(SetSimpleValueTypeSecondPass secondPass, boolean onTopOfTheQueue) {
  if ( setSimpleValueTypeSecondPassList == null ) {
    setSimpleValueTypeSecondPassList = new ArrayList<>();
  }
  addSecondPass( secondPass, setSimpleValueTypeSecondPassList, onTopOfTheQueue );
}
origin: hibernate/hibernate-orm

private void addCopyIdentifierComponentSecondPass(
    CopyIdentifierComponentSecondPass secondPass,
    boolean onTopOfTheQueue) {
  if ( copyIdentifierComponentSecondPasList == null ) {
    copyIdentifierComponentSecondPasList = new ArrayList<>();
  }
  addSecondPass( secondPass, copyIdentifierComponentSecondPasList, onTopOfTheQueue );
}
origin: hibernate/hibernate-orm

private void addCreateKeySecondPass(CreateKeySecondPass secondPass, boolean onTopOfTheQueue) {
  if ( createKeySecondPasList == null ) {
    createKeySecondPasList = new ArrayList<>();
  }
  addSecondPass( secondPass, createKeySecondPasList, onTopOfTheQueue );
}
origin: hibernate/hibernate-orm

private void addSecondaryTableSecondPass(SecondaryTableSecondPass secondPass, boolean onTopOfTheQueue) {
  if ( secondaryTableSecondPassList == null ) {
    secondaryTableSecondPassList = new ArrayList<>();
  }
  addSecondPass( secondPass, secondaryTableSecondPassList, onTopOfTheQueue );
}
origin: hibernate/hibernate-orm

private void addIdGeneratorResolverSecondPass(IdGeneratorResolverSecondPass secondPass, boolean onTopOfTheQueue) {
  if ( idGeneratorResolverSecondPassList == null ) {
    idGeneratorResolverSecondPassList = new ArrayList<>();
  }
  addSecondPass( secondPass, idGeneratorResolverSecondPassList, onTopOfTheQueue );
}
origin: hibernate/hibernate-orm

private void addFkSecondPass(FkSecondPass secondPass, boolean onTopOfTheQueue) {
  if ( fkSecondPassList == null ) {
    fkSecondPassList = new ArrayList<>();
  }
  addSecondPass( secondPass, fkSecondPassList, onTopOfTheQueue );
}
origin: hibernate/hibernate-orm

private void addQuerySecondPass(QuerySecondPass secondPass, boolean onTopOfTheQueue) {
  if ( querySecondPassList == null ) {
    querySecondPassList = new ArrayList<>();
  }
  addSecondPass( secondPass, querySecondPassList, onTopOfTheQueue );
}
origin: hibernate/hibernate-orm

  generalSecondPassList = new ArrayList<>();
addSecondPass( secondPass, generalSecondPassList, onTopOfTheQueue );
origin: org.hibernate.orm/hibernate-core

@Override
public void addSecondPass(SecondPass secondPass) {
  addSecondPass( secondPass, false );
}
origin: org.hibernate.orm/hibernate-core

private void addCopyIdentifierComponentSecondPass(
    CopyIdentifierComponentSecondPass secondPass,
    boolean onTopOfTheQueue) {
  if ( copyIdentifierComponentSecondPasList == null ) {
    copyIdentifierComponentSecondPasList = new ArrayList<>();
  }
  addSecondPass( secondPass, copyIdentifierComponentSecondPasList, onTopOfTheQueue );
}
origin: org.hibernate.orm/hibernate-core

private void addCreateKeySecondPass(CreateKeySecondPass secondPass, boolean onTopOfTheQueue) {
  if ( createKeySecondPasList == null ) {
    createKeySecondPasList = new ArrayList<>();
  }
  addSecondPass( secondPass, createKeySecondPasList, onTopOfTheQueue );
}
origin: org.hibernate.orm/hibernate-core

private void addSecondaryTableSecondPass(SecondaryTableSecondPass secondPass, boolean onTopOfTheQueue) {
  if ( secondaryTableSecondPassList == null ) {
    secondaryTableSecondPassList = new ArrayList<>();
  }
  addSecondPass( secondPass, secondaryTableSecondPassList, onTopOfTheQueue );
}
origin: org.hibernate.orm/hibernate-core

private void addPkDrivenByDefaultMapsIdSecondPass(
    PkDrivenByDefaultMapsIdSecondPass secondPass,
    boolean onTopOfTheQueue) {
  if ( pkDrivenByDefaultMapsIdSecondPassList == null ) {
    pkDrivenByDefaultMapsIdSecondPassList = new ArrayList<>();
  }
  addSecondPass( secondPass, pkDrivenByDefaultMapsIdSecondPassList, onTopOfTheQueue );
}
origin: org.hibernate.orm/hibernate-core

private void addSetSimpleValueTypeSecondPass(SetSimpleValueTypeSecondPass secondPass, boolean onTopOfTheQueue) {
  if ( setSimpleValueTypeSecondPassList == null ) {
    setSimpleValueTypeSecondPassList = new ArrayList<>();
  }
  addSecondPass( secondPass, setSimpleValueTypeSecondPassList, onTopOfTheQueue );
}
origin: org.hibernate.orm/hibernate-core

private void addIdGeneratorResolverSecondPass(IdGeneratorResolverSecondPass secondPass, boolean onTopOfTheQueue) {
  if ( idGeneratorResolverSecondPassList == null ) {
    idGeneratorResolverSecondPassList = new ArrayList<>();
  }
  addSecondPass( secondPass, idGeneratorResolverSecondPassList, onTopOfTheQueue );
}
origin: org.hibernate.orm/hibernate-core

private void addFkSecondPass(FkSecondPass secondPass, boolean onTopOfTheQueue) {
  if ( fkSecondPassList == null ) {
    fkSecondPassList = new ArrayList<>();
  }
  addSecondPass( secondPass, fkSecondPassList, onTopOfTheQueue );
}
origin: org.hibernate.orm/hibernate-core

private void addQuerySecondPass(QuerySecondPass secondPass, boolean onTopOfTheQueue) {
  if ( querySecondPassList == null ) {
    querySecondPassList = new ArrayList<>();
  }
  addSecondPass( secondPass, querySecondPassList, onTopOfTheQueue );
}
origin: org.hibernate.orm/hibernate-core

  generalSecondPassList = new ArrayList<>();
addSecondPass( secondPass, generalSecondPassList, onTopOfTheQueue );
org.hibernate.boot.internalInFlightMetadataCollectorImpladdSecondPass

Popular methods of InFlightMetadataCollectorImpl

  • <init>
  • buildMetadataInstance
    Builds the complete and immutable Metadata instance from the collected info.
  • processSecondPasses
    Ugh! But we need this done before we ask Envers to produce its entities.
  • addClassType
  • addCopyIdentifierComponentSecondPass
  • addCreateKeySecondPass
  • addDelayedPropertyReferenceHandler
  • addFkSecondPass
  • addIdGeneratorResolverSecondPass
  • addIdentifierGenerator
  • addImplicitColumnNamingSecondPass
  • addNamedProcedureCallDefinition
  • addImplicitColumnNamingSecondPass,
  • addNamedProcedureCallDefinition,
  • addPkDrivenByDefaultMapsIdSecondPass,
  • addQuerySecondPass,
  • addSecondaryTableSecondPass,
  • addSetSimpleValueTypeSecondPass,
  • addUniqueConstraintHolders,
  • applyNamedNativeQuery,
  • applyResultSetMapping

Popular in Java

  • Running tasks concurrently on multiple threads
  • getSystemService (Context)
  • findViewById (Activity)
  • runOnUiThread (Activity)
  • Graphics2D (java.awt)
    This Graphics2D class extends the Graphics class to provide more sophisticated control overgraphics
  • Runnable (java.lang)
    Represents a command that can be executed. Often used to run code in a different Thread.
  • SimpleDateFormat (java.text)
    Formats and parses dates in a locale-sensitive manner. Formatting turns a Date into a String, and pa
  • LinkedHashMap (java.util)
    LinkedHashMap is an implementation of Map that guarantees iteration order. All optional operations a
  • SSLHandshakeException (javax.net.ssl)
    The exception that is thrown when a handshake could not be completed successfully.
  • Scheduler (org.quartz)
    This is the main interface of a Quartz Scheduler. A Scheduler maintains a registry of org.quartz.Job
  • Top PhpStorm 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