Module storm
Package st.orm.spi

Interface Name

All Known Implementing Classes:
ColumnName, TableName

public interface Name
Represents a name of a database object.
Since:
1.2
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns the qualified name of the database object.
    Returns the name of the database object.
  • Method Details

    • name

      String name()
      Returns the name of the database object.
      Returns:
      the name of the database object.
    • getQualifiedName

      String getQualifiedName(@Nonnull SqlDialect dialect)
      Returns the qualified name of the database object. Depending on the object type, the qualified name may include the schema and escape characters.
      Parameters:
      dialect - the SQL dialect.
      Returns:
      the qualified name of the database object.