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

How to use
render
method
in
org.hibernate.boot.model.relational.QualifiedName

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

origin: hibernate/hibernate-orm

/**
 * The name of the table in which we store this generator's persistent state.
 *
 * @return The table name.
 */
public final String getTableName() {
  return qualifiedTableName.render();
}
origin: hibernate/hibernate-orm

@Override
public Object generatorKey() {
  return qualifiedTableName.render();
}
origin: hibernate/hibernate-orm

/**
 * Used in the cases where {@link #determineSegmentValue} is unable to
 * determine the value to use.
 *
 * @param params The params supplied in the generator config (plus some standard useful extras).
 * @return The default segment value to use.
 */
@SuppressWarnings("WeakerAccess")
protected String determineDefaultSegmentValue(Properties params) {
  final boolean preferSegmentPerEntity = ConfigurationHelper.getBoolean( CONFIG_PREFER_SEGMENT_PER_ENTITY, params, false );
  final String defaultToUse = preferSegmentPerEntity ? params.getProperty( TABLE ) : DEF_SEGMENT_VALUE;
  LOG.usingDefaultIdGeneratorSegmentValue( qualifiedTableName.render(), segmentColumnName, defaultToUse );
  return defaultToUse;
}
org.hibernate.boot.model.relationalQualifiedNamerender

Javadoc

Returns a String-form of the qualified name.

Depending on intention, may not be appropriate. May want org.hibernate.engine.jdbc.env.spi.QualifiedObjectNameFormatter#formatinstead. See org.hibernate.engine.jdbc.env.spi.JdbcEnvironment#getQualifiedObjectNameFormatter

Popular methods of QualifiedName

  • getCatalogName
  • getObjectName
  • getSchemaName

Popular in Java

  • Finding current android device location
  • onRequestPermissionsResult (Fragment)
  • getContentResolver (Context)
  • getExternalFilesDir (Context)
  • FileWriter (java.io)
    A specialized Writer that writes to a file in the file system. All write requests made by calling me
  • InputStreamReader (java.io)
    A class for turning a byte stream into a character stream. Data read from the source input stream is
  • String (java.lang)
  • Collection (java.util)
    Collection is the root of the collection hierarchy. It defines operations on data collections and t
  • TreeMap (java.util)
    Walk the nodes of the tree left-to-right or right-to-left. Note that in descending iterations, next
  • ServletException (javax.servlet)
    Defines a general exception a servlet can throw when it encounters difficulty.
  • 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