Package org.apache.calcite.sql.validate
Interface SqlMoniker
- All Known Implementing Classes:
SqlIdentifierMoniker
,SqlMonikerImpl
public interface SqlMoniker
An interface of an object identifier that represents a SqlIdentifier.
-
Field Summary
-
Method Summary
Modifier and TypeMethodDescriptionReturns the array of component names.getType()
Returns the type of object referred to by this moniker.id()
Creates aSqlIdentifier
containing the fully-qualified name.
-
Field Details
-
COMPARATOR
-
-
Method Details
-
getType
SqlMonikerType getType()Returns the type of object referred to by this moniker. Never null. -
getFullyQualifiedNames
Returns the array of component names. -
toIdentifier
SqlIdentifier toIdentifier()Creates aSqlIdentifier
containing the fully-qualified name. -
id
String id()
-