Tabnine Logo
CollectionAliases.getSuffix
Code IndexAdd Tabnine to your IDE (free)

How to use
getSuffix
method
in
org.hibernate.loader.CollectionAliases

Best Java code snippets using org.hibernate.loader.CollectionAliases.getSuffix (Showing top 5 results out of 315)

origin: hibernate/hibernate-orm

printWriter.println(
    TreePrinterHelper.INSTANCE.generateNodePrefix( depth + detailDepthOffset )
        + "alias suffix - " + collectionReferenceAliases.getCollectionColumnAliases().getSuffix()
);
printWriter.println(
origin: hibernate/hibernate-orm

@Override
protected void applyRootReturnSelectFragments(SelectStatementBuilder selectStatementBuilder) {
  selectStatementBuilder.appendSelectClauseFragment(
      getQueryableCollection().selectFragment(
          null,
          null,
          //getCollectionReferenceAliases().getCollectionTableAlias(),
          getElementEntityReferenceAliases().getTableAlias(),
          getElementEntityReferenceAliases().getColumnAliases().getSuffix(),
          getCollectionReferenceAliases().getCollectionColumnAliases().getSuffix(),
          true
      )
  );
  super.applyRootReturnSelectFragments( selectStatementBuilder );
}
origin: hibernate/hibernate-orm

printWriter.println(
    TreePrinterHelper.INSTANCE.generateNodePrefix( depth+3 )
        + "alias suffix - " + collectionReferenceAliases.getCollectionColumnAliases().getSuffix()
);
printWriter.println(
origin: hibernate/hibernate-orm

@Override
protected void applyRootReturnSelectFragments(SelectStatementBuilder selectStatementBuilder) {
  selectStatementBuilder.appendSelectClauseFragment(
    getQueryableCollection().selectFragment(
        getCollectionReferenceAliases().getCollectionTableAlias(),
        getCollectionReferenceAliases().getCollectionColumnAliases().getSuffix()
    )
  );
  if ( getQueryableCollection().isManyToMany() ) {
    final OuterJoinLoadable elementPersister = (OuterJoinLoadable) getQueryableCollection().getElementPersister();
    selectStatementBuilder.appendSelectClauseFragment(
        elementPersister.selectFragment(
            getCollectionReferenceAliases().getElementTableAlias(),
            getCollectionReferenceAliases().getEntityElementAliases().getColumnAliases().getSuffix()
        )
    );
  }
  super.applyRootReturnSelectFragments( selectStatementBuilder );
}
origin: hibernate/hibernate-orm

    aliases.getCollectionColumnAliases().getSuffix(),
    true
queryableCollection.selectFragment(
    aliases.getElementTableAlias(),
    aliases.getCollectionColumnAliases().getSuffix()
org.hibernate.loaderCollectionAliasesgetSuffix

Javadoc

Returns the suffix used to unique the column aliases for this particular alias set.

Popular methods of CollectionAliases

  • getSuffixedElementAliases
    Returns the suffixed result-set column-aliases for the columns making up the collection's elements.
  • getSuffixedIndexAliases
    Returns the suffixed result-set column-aliases for the collumns making up the collection's index (ma
  • getSuffixedKeyAliases
    Returns the suffixed result-set column-aliases for columns making up the key for this collection (i.
  • getSuffixedIdentifierAlias
    Returns the suffixed result-set column-aliases for the column defining the collection's identifier (

Popular in Java

  • Creating JSON documents from java classes using gson
  • compareTo (BigDecimal)
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • getSupportFragmentManager (FragmentActivity)
  • Connection (java.sql)
    A connection represents a link from a Java application to a database. All SQL statements and results
  • Arrays (java.util)
    This class contains various methods for manipulating arrays (such as sorting and searching). This cl
  • Queue (java.util)
    A collection designed for holding elements prior to processing. Besides basic java.util.Collection o
  • UUID (java.util)
    UUID is an immutable representation of a 128-bit universally unique identifier (UUID). There are mul
  • Annotation (javassist.bytecode.annotation)
    The annotation structure.An instance of this class is returned bygetAnnotations() in AnnotationsAttr
  • Response (javax.ws.rs.core)
    Defines the contract between a returned instance and the runtime when an application needs to provid
  • Best plugins for Eclipse
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