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

How to use
Exportable
in
org.hibernate.boot.model.relational

Best Java code snippets using org.hibernate.boot.model.relational.Exportable (Showing top 3 results out of 315)

origin: hibernate/hibernate-orm

private static void checkExportIdentifier(Exportable exportable, Set<String> exportIdentifiers) {
  final String exportIdentifier = exportable.getExportIdentifier();
  if ( exportIdentifiers.contains( exportIdentifier ) ) {
    throw new SchemaManagementException( "SQL strings added more than once for: " + exportIdentifier );
  }
  exportIdentifiers.add( exportIdentifier );
}
origin: hibernate/hibernate-orm

private static void checkExportIdentifier(Exportable exportable, Set<String> exportIdentifiers) {
  final String exportIdentifier = exportable.getExportIdentifier();
  if ( exportIdentifiers.contains( exportIdentifier ) ) {
    throw new SchemaManagementException( "SQL strings added more than once for: " + exportIdentifier );
  }
  exportIdentifiers.add( exportIdentifier );
}
origin: hibernate/hibernate-orm

protected void checkExportIdentifier(Exportable exportable, Set<String> exportIdentifiers) {
  final String exportIdentifier = exportable.getExportIdentifier();
  if ( exportIdentifiers.contains( exportIdentifier ) ) {
    throw new SchemaManagementException(
        String.format(
            "Export identifier [%s] encountered more than once",
            exportIdentifier
        )
    );
  }
  exportIdentifiers.add( exportIdentifier );
}
org.hibernate.boot.model.relationalExportable

Most used methods

  • getExportIdentifier
    Get a unique identifier to make sure we are not exporting the same database structure multiple times

Popular in Java

  • Running tasks concurrently on multiple threads
  • scheduleAtFixedRate (ScheduledExecutorService)
  • getExternalFilesDir (Context)
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • Graphics2D (java.awt)
    This Graphics2D class extends the Graphics class to provide more sophisticated control overgraphics
  • Window (java.awt)
    A Window object is a top-level window with no borders and no menubar. The default layout for a windo
  • InputStreamReader (java.io)
    A class for turning a byte stream into a character stream. Data read from the source input stream is
  • Collection (java.util)
    Collection is the root of the collection hierarchy. It defines operations on data collections and t
  • GregorianCalendar (java.util)
    GregorianCalendar is a concrete subclass of Calendarand provides the standard calendar used by most
  • Stream (java.util.stream)
    A sequence of elements supporting sequential and parallel aggregate operations. The following exampl
  • Top 12 Jupyter Notebook extensions
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