类 PrimaryKeyInformationImpl
- java.lang.Object
-
- org.hibernate.tool.schema.extract.internal.PrimaryKeyInformationImpl
-
- 所有已实现的接口:
PrimaryKeyInformation
public class PrimaryKeyInformationImpl extends Object implements PrimaryKeyInformation
- 作者:
- Steve Ebersole
-
-
构造器概要
构造器 构造器 说明 PrimaryKeyInformationImpl(Identifier identifier, Iterable<ColumnInformation> columns)
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 Iterable<ColumnInformation>getColumns()Obtain the columns making up the primary key.IdentifiergetPrimaryKeyIdentifier()Obtain the identifier for this PK.
-
-
-
构造器详细资料
-
PrimaryKeyInformationImpl
public PrimaryKeyInformationImpl(Identifier identifier, Iterable<ColumnInformation> columns)
-
-
方法详细资料
-
getPrimaryKeyIdentifier
public Identifier getPrimaryKeyIdentifier()
从接口复制的说明:PrimaryKeyInformationObtain the identifier for this PK.- 指定者:
getPrimaryKeyIdentifier在接口中PrimaryKeyInformation- 返回:
- The PK identifier.
-
getColumns
public Iterable<ColumnInformation> getColumns()
从接口复制的说明:PrimaryKeyInformationObtain the columns making up the primary key. Returned in sequential order.- 指定者:
getColumns在接口中PrimaryKeyInformation- 返回:
- The columns
-
-