Class QualifiedNameParser
- java.lang.Object
-
- org.hibernate.boot.model.relational.QualifiedNameParser
-
public class QualifiedNameParser extends Object
Parses a qualified name.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
QualifiedNameParser.NameParts
-
Field Summary
Fields Modifier and Type Field Description static QualifiedNameParser
INSTANCE
Singleton access
-
Constructor Summary
Constructors Constructor Description QualifiedNameParser()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description QualifiedNameParser.NameParts
parse(String text)
Parses a textual representation of a qualified name into a NameParts representation.QualifiedNameParser.NameParts
parse(String text, Identifier defaultCatalog, Identifier defaultSchema)
Parses a textual representation of a qualified name into a NameParts representation.
-
-
-
Field Detail
-
INSTANCE
public static final QualifiedNameParser INSTANCE
Singleton access
-
-
Method Detail
-
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
.- Parameters:
text
- The simple text representation of the qualified name.- Returns:
- 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
.- Parameters:
text
- The simple text representation of the qualified name.- Returns:
- The wrapped QualifiedName
-
-