接口 CollectionAliases
-
public interface CollectionAliasesType definition of CollectionAliases.- 作者:
- Steve Ebersole
-
-
方法概要
所有方法 实例方法 抽象方法 修饰符和类型 方法 说明 StringgetSuffix()Returns the suffix used to unique the column aliases for this particular alias set.String[]getSuffixedElementAliases()Returns the suffixed result-set column-aliases for the columns making up the collection's elements.StringgetSuffixedIdentifierAlias()Returns the suffixed result-set column-aliases for the column defining the collection's identifier (if any).String[]getSuffixedIndexAliases()Returns the suffixed result-set column-aliases for the columns making up the collection's index (map or list).String[]getSuffixedKeyAliases()Returns the suffixed result-set column-aliases for columns making up the key for this collection (i.e., its FK to its owner).
-
-
-
方法详细资料
-
getSuffixedKeyAliases
String[] getSuffixedKeyAliases()
Returns the suffixed result-set column-aliases for columns making up the key for this collection (i.e., its FK to its owner).- 返回:
- The key result-set column aliases.
-
getSuffixedIndexAliases
String[] getSuffixedIndexAliases()
Returns the suffixed result-set column-aliases for the columns making up the collection's index (map or list).- 返回:
- The index result-set column aliases.
-
getSuffixedElementAliases
String[] getSuffixedElementAliases()
Returns the suffixed result-set column-aliases for the columns making up the collection's elements.- 返回:
- The element result-set column aliases.
-
getSuffixedIdentifierAlias
String getSuffixedIdentifierAlias()
Returns the suffixed result-set column-aliases for the column defining the collection's identifier (if any).- 返回:
- The identifier result-set column aliases.
-
getSuffix
String getSuffix()
Returns the suffix used to unique the column aliases for this particular alias set.- 返回:
- The uniqued column alias suffix.
-
-