Class

slick.codegen.AbstractSourceCodeGenerator

TableDef

Related Doc: package AbstractSourceCodeGenerator

Permalink

abstract class TableDef extends AbstractSourceCodeGenerator.TableDef

Source
AbstractSourceCodeGenerator.scala
Linear Supertypes
AbstractSourceCodeGenerator.TableDef, Serializable, Serializable, Product, Equals, AnyRef, Any
Known Subclasses
Type Hierarchy
Ordering
  1. Grouped
  2. Alphabetic
  3. By Inheritance
Inherited
  1. TableDef
  2. TableDef
  3. Serializable
  4. Serializable
  5. Product
  6. Equals
  7. AnyRef
  8. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new TableDef(model: model.Table)

    Permalink

Type Members

  1. abstract type Column <: TableDef.ColumnDef

    Permalink

    Column generator virtual class

    Column generator virtual class

    Definition Classes
    TableDef
  2. class ColumnDef extends TableDef.ColumnDef

    Permalink
  3. trait Def extends AnyRef

    Permalink

    Common interface for any kind of definition within the generated code

    Common interface for any kind of definition within the generated code

    Definition Classes
    TableDef
  4. abstract type EntityType <: TableDef.EntityTypeDef

    Permalink

    Entity case class or type alias generator virtual class

    Entity case class or type alias generator virtual class

    Definition Classes
    TableDef
  5. trait EntityTypeDef extends TableDef.EntityTypeDef

    Permalink
  6. abstract type ForeignKey <: TableDef.ForeignKeyDef

    Permalink

    Foreign key generator virtual class

    Foreign key generator virtual class

    Definition Classes
    TableDef
  7. class ForeignKeyDef extends TableDef.ForeignKeyDef

    Permalink
  8. abstract type Index <: TableDef.IndexDef

    Permalink

    Index generator virtual class

    Index generator virtual class

    Definition Classes
    TableDef
  9. class IndexDef extends TableDef.IndexDef

    Permalink
  10. abstract type PlainSqlMapper <: TableDef.PlainSqlMapperDef

    Permalink

    Plain SQL GetResult mapper generator virtual class

    Plain SQL GetResult mapper generator virtual class

    Definition Classes
    TableDef
  11. trait PlainSqlMapperDef extends TableDef.PlainSqlMapperDef

    Permalink
  12. abstract type PrimaryKey <: TableDef.PrimaryKeyDef

    Permalink

    Primary key generator virtual class

    Primary key generator virtual class

    Definition Classes
    TableDef
  13. class PrimaryKeyDef extends TableDef.PrimaryKeyDef

    Permalink
  14. abstract type TableClass <: TableDef.TableClassDef

    Permalink

    Table class generator virtual class

    Table class generator virtual class

    Definition Classes
    TableDef
  15. trait TableClassDef extends TableDef.TableClassDef

    Permalink
  16. abstract type TableValue <: TableDef.TableValueDef

    Permalink

    Table value generator virtual class

    Table value generator virtual class

    Definition Classes
    TableDef
  17. trait TableValueDef extends TableDef.TableValueDef

    Permalink
  18. trait TermDef extends Def

    Permalink

    Common interface for definitions that define a term (val, def, ...) within the generated code

    Common interface for definitions that define a term (val, def, ...) within the generated code

    Definition Classes
    TableDef
  19. trait TypeDef extends Def

    Permalink

    Common interface for definitions that define a type (class, case class, ...) within the generated code

    Common interface for definitions that define a type (class, case class, ...) within the generated code

    Definition Classes
    TableDef

Abstract Value Members

  1. abstract def Column: (model.Column) ⇒ Column

    Permalink

    Column generator factory.

    Column generator factory. Override for customization.

    Definition Classes
    TableDef
  2. abstract def EntityType: EntityType

    Permalink

    Entity case class or type alias generator factory.

    Entity case class or type alias generator factory. Override for customization.

    Definition Classes
    TableDef
  3. abstract def ForeignKey: (model.ForeignKey) ⇒ ForeignKey

    Permalink

    ForeignKey generator factory.

    ForeignKey generator factory. Override for customization.

    Definition Classes
    TableDef
  4. abstract def Index: (model.Index) ⇒ Index

    Permalink

    Index generator factory.

    Index generator factory. Override for customization.

    Definition Classes
    TableDef
  5. abstract def PlainSqlMapper: PlainSqlMapper

    Permalink

    Plain SQL GetResult mapper generator factory.

    Plain SQL GetResult mapper generator factory. Override for customization.

    Definition Classes
    TableDef
  6. abstract def PrimaryKey: (model.PrimaryKey) ⇒ PrimaryKey

    Permalink

    PrimaryKey generator factory.

    PrimaryKey generator factory. Override for customization.

    Definition Classes
    TableDef
  7. abstract def TableClass: TableClass

    Permalink

    Table class generator factory.

    Table class generator factory. Override for customization.

    Definition Classes
    TableDef
  8. abstract def TableValue: TableValue

    Permalink

    Table value generator factory.

    Table value generator factory. Override for customization.

    Definition Classes
    TableDef

Concrete Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from TableDef to any2stringadd[TableDef] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (TableDef, B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from TableDef to ArrowAssoc[TableDef] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  6. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  7. def autoIncLast: Boolean

    Permalink

    Indicates whether auto increment columns should be put last.

    Indicates whether auto increment columns should be put last. Please set to !hlistEnabled for switching this on.

    Definition Classes
    TableDef
  8. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  9. def code: Seq[String]

    Permalink

    Generates the complete code for this table and its subordinate generators.

    Generates the complete code for this table and its subordinate generators.

    Definition Classes
    TableDef
  10. final lazy val columns: Seq[Column]

    Permalink

    Column code generators in the desired user-facing order.

    Column code generators in the desired user-facing order.

    Definition Classes
    TableDef
  11. final lazy val columnsByName: Map[String, Column]

    Permalink

    Column code generators indexed by db column name

    Column code generators indexed by db column name

    Definition Classes
    TableDef
  12. final lazy val columnsPositional: IndexedSeq[Column]

    Permalink

    Column code generators in the order they appear in the model.

    Column code generators in the order they appear in the model.

    Definition Classes
    TableDef
  13. def compoundType(types: Seq[String]): String

    Permalink

    Creates a compound type from a given sequence of types.

    Creates a compound type from a given sequence of types. Uses HList if hlistEnabled else tuple.

    Definition Classes
    TableDefTableDef
  14. def compoundValue(values: Seq[String]): String

    Permalink

    Creates a compound value from a given sequence of values.

    Creates a compound value from a given sequence of values. Uses HList if hlistEnabled else tuple.

    Definition Classes
    TableDefTableDef
  15. def definitions: Seq[Def]

    Permalink

    Definitions to be generated for this table

    Definitions to be generated for this table

    Definition Classes
    TableDef
  16. lazy val desiredColumnOrder: Seq[Int]

    Permalink

    Database column positions in the desired user-facing order.

    Database column positions in the desired user-facing order. Currently just moves the positions of AutoInc columns to the end if autoIncLastAsOption is enabled.

    Definition Classes
    TableDef
  17. def ensuring(cond: (TableDef) ⇒ Boolean, msg: ⇒ Any): TableDef

    Permalink
    Implicit information
    This member is added by an implicit conversion from TableDef to Ensuring[TableDef] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  18. def ensuring(cond: (TableDef) ⇒ Boolean): TableDef

    Permalink
    Implicit information
    This member is added by an implicit conversion from TableDef to Ensuring[TableDef] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  19. def ensuring(cond: Boolean, msg: ⇒ Any): TableDef

    Permalink
    Implicit information
    This member is added by an implicit conversion from TableDef to Ensuring[TableDef] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  20. def ensuring(cond: Boolean): TableDef

    Permalink
    Implicit information
    This member is added by an implicit conversion from TableDef to Ensuring[TableDef] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  21. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  22. def extractor: String

    Permalink

    Function that extracts the unmapped values from an entity object

    Function that extracts the unmapped values from an entity object

    Definition Classes
    TableDefTableDef
  23. def factory: String

    Permalink

    Function that constructs an entity object from the unmapped values

    Function that constructs an entity object from the unmapped values

    Definition Classes
    TableDefTableDef
  24. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  25. final lazy val foreignKeys: Seq[ForeignKey]

    Permalink

    Foreign key code generators

    Foreign key code generators

    Definition Classes
    TableDef
  26. def formatted(fmtstr: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from TableDef to StringFormat[TableDef] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  27. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  28. def hlistEnabled: Boolean

    Permalink

    If HList should be used as a compound type instead of tuples.

    If HList should be used as a compound type instead of tuples. Default to true for > 22 columns.

    Definition Classes
    TableDef
  29. final lazy val indices: Seq[Index]

    Permalink

    Index code generators

    Index code generators

    Definition Classes
    TableDef
  30. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  31. def mappingEnabled: Boolean

    Permalink

    Indicates if this table should be mapped using factory and extractor or not, in which case tuples are used.

    Indicates if this table should be mapped using factory and extractor or not, in which case tuples are used. (Consider overriding EntityType.enabled instead, which affects this, too.) Disabled by default when using hlists.

    Definition Classes
    TableDef
  32. val model: model.Table

    Permalink

    corresponding Slick meta model component

    corresponding Slick meta model component

    Definition Classes
    TableDef
  33. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  34. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  35. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  36. final lazy val primaryKey: Option[PrimaryKey]

    Permalink

    Primary key code generator, if this table has one

    Primary key code generator, if this table has one

    Definition Classes
    TableDef
  37. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  38. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  39. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  40. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  41. def [B](y: B): (TableDef, B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from TableDef to ArrowAssoc[TableDef] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Deprecated Value Members

  1. def autoIncLastAsOption: Boolean

    Permalink

    Indicates whether auto increment columns should be put last and made an Option with a None default.

    Indicates whether auto increment columns should be put last and made an Option with a None default. Please set to !hlistEnabled for switching this on.

    Definition Classes
    TableDef
    Annotations
    @deprecated
    Deprecated

    (Since version 3.2.0) Use autoIncLast = true and ColumnDef.asOption = autoInc instead.

Inherited from AbstractSourceCodeGenerator.TableDef

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from TableDef to any2stringadd[TableDef]

Inherited by implicit conversion StringFormat from TableDef to StringFormat[TableDef]

Inherited by implicit conversion Ensuring from TableDef to Ensuring[TableDef]

Inherited by implicit conversion ArrowAssoc from TableDef to ArrowAssoc[TableDef]

Basic customization overrides

Ungrouped