Tabnine Logo
ObjectNameSource.getExplicitName
Code IndexAdd Tabnine to your IDE (free)

How to use
getExplicitName
method
in
org.hibernate.cfg.ObjectNameSource

Best Java code snippets using org.hibernate.cfg.ObjectNameSource.getExplicitName (Showing top 5 results out of 315)

origin: hibernate/hibernate-orm

private static class AssociationTableNameSource implements ObjectNameSource {
  private final String explicitName;
  private final String logicalName;
  private AssociationTableNameSource(String explicitName, String logicalName) {
    this.explicitName = explicitName;
    this.logicalName = logicalName;
  }
  public String getExplicitName() {
    return explicitName;
  }
  public String getLogicalName() {
    return logicalName;
  }
}
origin: org.hibernate/hibernate-annotations

    nameSource.getExplicitName(),
    namingStrategyHelper
);
origin: org.hibernate.orm/hibernate-core

private static class AssociationTableNameSource implements ObjectNameSource {
  private final String explicitName;
  private final String logicalName;
  private AssociationTableNameSource(String explicitName, String logicalName) {
    this.explicitName = explicitName;
    this.logicalName = logicalName;
  }
  public String getExplicitName() {
    return explicitName;
  }
  public String getLogicalName() {
    return logicalName;
  }
}
origin: org.hibernate/com.springsource.org.hibernate.core

    nameSource.getExplicitName(),
    namingStrategyHelper
);
origin: org.hibernate/com.springsource.org.hibernate

    nameSource.getExplicitName(),
    namingStrategyHelper
);
org.hibernate.cfgObjectNameSourcegetExplicitName

Javadoc

Retrieve the name explicitly provided by the user.

Popular methods of ObjectNameSource

  • getLogicalName
    Retrieve the logical name for this object. Usually this is the name under which the "thing" is regis

Popular in Java

  • Updating database using SQL prepared statement
  • runOnUiThread (Activity)
  • getSharedPreferences (Context)
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • Color (java.awt)
    The Color class is used to encapsulate colors in the default sRGB color space or colors in arbitrary
  • Point (java.awt)
    A point representing a location in (x,y) coordinate space, specified in integer precision.
  • HttpURLConnection (java.net)
    An URLConnection for HTTP (RFC 2616 [http://tools.ietf.org/html/rfc2616]) used to send and receive d
  • TreeSet (java.util)
    TreeSet is an implementation of SortedSet. All optional operations (adding and removing) are support
  • Executor (java.util.concurrent)
    An object that executes submitted Runnable tasks. This interface provides a way of decoupling task s
  • Get (org.apache.hadoop.hbase.client)
    Used to perform Get operations on a single row. To get everything for a row, instantiate a Get objec
  • 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