org.eigenbase.sql.validate
Interface SqlMoniker

All Known Implementing Classes:
SqlIdentifierMoniker, SqlMonikerImpl

public interface SqlMoniker

An interface of an object identifier that represents a SqlIdentifier

Since:
May 24, 2005
Version:
$Id: //open/dev/farrago/src/org/eigenbase/sql/validate/SqlMoniker.java#7 $
Author:
tleung

Method Summary
 String[] getFullyQualifiedNames()
          Returns the array of component names.
 SqlMonikerType getType()
          Returns the type of object referred to by this moniker.
 String id()
           
 SqlIdentifier toIdentifier()
          Creates a SqlIdentifier containing the fully-qualified name.
 

Method Detail

getType

SqlMonikerType getType()
Returns the type of object referred to by this moniker. Never null.


getFullyQualifiedNames

String[] getFullyQualifiedNames()
Returns the array of component names.


toIdentifier

SqlIdentifier toIdentifier()
Creates a SqlIdentifier containing the fully-qualified name.


id

String id()