类 QualifiedNameParser
- java.lang.Object
-
- org.hibernate.boot.model.relational.QualifiedNameParser
-
public class QualifiedNameParser extends Object
Parses a qualified name.- 作者:
- Steve Ebersole
-
-
嵌套类概要
嵌套类 修饰符和类型 类 说明 static classQualifiedNameParser.NameParts
-
字段概要
字段 修饰符和类型 字段 说明 static QualifiedNameParserINSTANCESingleton access
-
构造器概要
构造器 构造器 说明 QualifiedNameParser()
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 QualifiedNameParser.NamePartsparse(String text)Parses a textual representation of a qualified name into a NameParts representation.QualifiedNameParser.NamePartsparse(String text, Identifier defaultCatalog, Identifier defaultSchema)Parses a textual representation of a qualified name into a NameParts representation.
-
-
-
字段详细资料
-
INSTANCE
public static final QualifiedNameParser INSTANCE
Singleton access
-
-
方法详细资料
-
parse
public QualifiedNameParser.NameParts parse(String text, Identifier defaultCatalog, Identifier defaultSchema)
Parses a textual representation of a qualified name into a NameParts representation. Explicitly looks for the formcatalog.schema.name.- 参数:
text- The simple text representation of the qualified name.- 返回:
- The wrapped QualifiedName
-
parse
public QualifiedNameParser.NameParts parse(String text)
Parses a textual representation of a qualified name into a NameParts representation. Explicitly looks for the formcatalog.schema.name.- 参数:
text- The simple text representation of the qualified name.- 返回:
- The wrapped QualifiedName
-
-