Packages

c

slick.codegen.AbstractSourceCodeGenerator

AbstractSourceCodeTableDef

abstract class AbstractSourceCodeTableDef extends AbstractTableDef

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

Instance Constructors

  1. new AbstractSourceCodeTableDef(model: model.Table)

Type Members

  1. abstract case class AbstractColumnDef(model: model.Column) extends AbstractTermDef with Product with Serializable

    Column related generator definition

    Column related generator definition

    model

    corresponding Slick meta model component

    Definition Classes
    AbstractTableDef
  2. trait AbstractDef extends AnyRef

    Common interface for any kind of definition within the generated code

    Common interface for any kind of definition within the generated code

    Definition Classes
    AbstractTableDef
  3. trait AbstractEntityTypeDef extends AbstractTypeDef

    Entity case class or type alias generator definition (Mapped case class holding a complete row of data of this table).

    Entity case class or type alias generator definition (Mapped case class holding a complete row of data of this table).

    Definition Classes
    AbstractTableDef
  4. abstract case class AbstractForeignKeyDef(model: model.ForeignKey) extends AbstractTermDef with Product with Serializable

    ForeignKey related generator definition

    ForeignKey related generator definition

    model

    corresponding Slick meta model component

    Definition Classes
    AbstractTableDef
  5. abstract case class AbstractIndexDef(model: model.Index) extends AbstractTermDef with Product with Serializable

    Index related generator definition

    Index related generator definition

    model

    corresponding Slick meta model component

    Definition Classes
    AbstractTableDef
  6. trait AbstractPlainSqlMapperDef extends AbstractTermDef

    Plain SQL GetResult mapper generator definition

    Plain SQL GetResult mapper generator definition

    Definition Classes
    AbstractTableDef
  7. abstract case class AbstractPrimaryKeyDef(model: model.PrimaryKey) extends AbstractTermDef with Product with Serializable

    PrimaryKey related generator definition (Currently only used for composite primary keys.)

    PrimaryKey related generator definition (Currently only used for composite primary keys.)

    model

    corresponding Slick meta model component

    Definition Classes
    AbstractTableDef
  8. trait AbstractTableClassDef extends AbstractTypeDef

    Table class generator definition

    Table class generator definition

    Definition Classes
    AbstractTableDef
  9. trait AbstractTableValueDef extends AbstractTermDef

    Table value generator definition (generates a collection-like value representing this database table).

    Table value generator definition (generates a collection-like value representing this database table).

    Definition Classes
    AbstractTableDef
  10. trait AbstractTermDef extends AbstractDef

    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
    AbstractTableDef
  11. trait AbstractTypeDef extends AbstractDef

    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
    AbstractTableDef
  12. class AbstractSourceCodeColumnDef extends AbstractColumnDef
  13. trait AbstractSourceCodeEntityTypeDef extends AbstractEntityTypeDef
  14. class AbstractSourceCodeForeignKeyDef extends AbstractForeignKeyDef
  15. class AbstractSourceCodeIndexDef extends AbstractIndexDef
  16. trait AbstractSourceCodePlainSqlMapperDef extends AbstractPlainSqlMapperDef
  17. class AbstractSourceCodePrimaryKeyDef extends AbstractPrimaryKeyDef
  18. trait AbstractSourceCodeTableClassDef extends AbstractTableClassDef
  19. trait AbstractSourceCodeTableValueDef extends AbstractTableValueDef
  20. abstract type Column <: AbstractColumnDef

    Column generator virtual class

    Column generator virtual class

    Definition Classes
    AbstractTableDef
  21. abstract type EntityType <: AbstractEntityTypeDef

    Entity case class or type alias generator virtual class

    Entity case class or type alias generator virtual class

    Definition Classes
    AbstractTableDef
  22. abstract type ForeignKey <: AbstractForeignKeyDef

    Foreign key generator virtual class

    Foreign key generator virtual class

    Definition Classes
    AbstractTableDef
  23. abstract type Index <: AbstractIndexDef

    Index generator virtual class

    Index generator virtual class

    Definition Classes
    AbstractTableDef
  24. abstract type PlainSqlMapper <: AbstractPlainSqlMapperDef

    Plain SQL GetResult mapper generator virtual class

    Plain SQL GetResult mapper generator virtual class

    Definition Classes
    AbstractTableDef
  25. abstract type PrimaryKey <: AbstractPrimaryKeyDef

    Primary key generator virtual class

    Primary key generator virtual class

    Definition Classes
    AbstractTableDef
  26. abstract type TableClass <: AbstractTableClassDef

    Table class generator virtual class

    Table class generator virtual class

    Definition Classes
    AbstractTableDef
  27. abstract type TableValue <: AbstractTableValueDef

    Table value generator virtual class

    Table value generator virtual class

    Definition Classes
    AbstractTableDef

Abstract Value Members

  1. abstract def Column: (model.Column) => Column

    Column generator factory.

    Column generator factory. Override for customization.

    Definition Classes
    AbstractTableDef
  2. abstract def EntityType: EntityType

    Entity case class or type alias generator factory.

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

    Definition Classes
    AbstractTableDef
  3. abstract def ForeignKey: (model.ForeignKey) => ForeignKey

    ForeignKey generator factory.

    ForeignKey generator factory. Override for customization.

    Definition Classes
    AbstractTableDef
  4. abstract def Index: (model.Index) => Index

    Index generator factory.

    Index generator factory. Override for customization.

    Definition Classes
    AbstractTableDef
  5. abstract def PlainSqlMapper: PlainSqlMapper

    Plain SQL GetResult mapper generator factory.

    Plain SQL GetResult mapper generator factory. Override for customization.

    Definition Classes
    AbstractTableDef
  6. abstract def PrimaryKey: (model.PrimaryKey) => PrimaryKey

    PrimaryKey generator factory.

    PrimaryKey generator factory. Override for customization.

    Definition Classes
    AbstractTableDef
  7. abstract def TableClass: TableClass

    Table class generator factory.

    Table class generator factory. Override for customization.

    Definition Classes
    AbstractTableDef
  8. abstract def TableValue: TableValue

    Table value generator factory.

    Table value generator factory. Override for customization.

    Definition Classes
    AbstractTableDef

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. def ->[B](y: B): (AbstractSourceCodeTableDef, B)
    Implicit
    This member is added by an implicit conversion from AbstractSourceCodeTableDef toArrowAssoc[AbstractSourceCodeTableDef] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  4. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def autoIncLast: Boolean

    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
    AbstractTableDef
  7. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  8. def code: Seq[String]

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

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

    Definition Classes
    AbstractTableDef
  9. final lazy val columns: Seq[Column]

    Column code generators in the desired user-facing order.

    Column code generators in the desired user-facing order.

    Definition Classes
    AbstractTableDef
  10. final lazy val columnsByName: Map[String, Column]

    Column code generators indexed by db column name

    Column code generators indexed by db column name

    Definition Classes
    AbstractTableDef
  11. final lazy val columnsPositional: IndexedSeq[Column]

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

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

    Definition Classes
    AbstractTableDef
  12. def compoundType(types: Seq[String]): String

    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
    AbstractSourceCodeTableDefAbstractTableDef
  13. def compoundValue(values: Seq[String]): String

    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
    AbstractSourceCodeTableDefAbstractTableDef
  14. def definitions: Seq[AbstractDef]

    Definitions to be generated for this table

    Definitions to be generated for this table

    Definition Classes
    AbstractTableDef
  15. lazy val desiredColumnOrder: Seq[Int]

    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
    AbstractTableDef
  16. def ensuring(cond: (AbstractSourceCodeTableDef) => Boolean, msg: => Any): AbstractSourceCodeTableDef
    Implicit
    This member is added by an implicit conversion from AbstractSourceCodeTableDef toEnsuring[AbstractSourceCodeTableDef] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  17. def ensuring(cond: (AbstractSourceCodeTableDef) => Boolean): AbstractSourceCodeTableDef
    Implicit
    This member is added by an implicit conversion from AbstractSourceCodeTableDef toEnsuring[AbstractSourceCodeTableDef] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  18. def ensuring(cond: Boolean, msg: => Any): AbstractSourceCodeTableDef
    Implicit
    This member is added by an implicit conversion from AbstractSourceCodeTableDef toEnsuring[AbstractSourceCodeTableDef] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  19. def ensuring(cond: Boolean): AbstractSourceCodeTableDef
    Implicit
    This member is added by an implicit conversion from AbstractSourceCodeTableDef toEnsuring[AbstractSourceCodeTableDef] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  20. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  21. def extractor: String

    Function that extracts the unmapped values from an entity object

    Function that extracts the unmapped values from an entity object

    Definition Classes
    AbstractSourceCodeTableDefAbstractTableDef
  22. def factory: String

    Function that constructs an entity object from the unmapped values

    Function that constructs an entity object from the unmapped values

    Definition Classes
    AbstractSourceCodeTableDefAbstractTableDef
  23. final lazy val foreignKeys: Seq[ForeignKey]

    Foreign key code generators

    Foreign key code generators

    Definition Classes
    AbstractTableDef
  24. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  25. def hlistEnabled: Boolean

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

    If HList should be used as a compound type instead of tuples. Only if hugeClassEnabled is false.

    Definition Classes
    AbstractTableDef
  26. def hugeClassEnabled: Boolean

    Default is true, i.e.

    Default is true, i.e. a case class will be generated even if column.size > 22. Override to false to get the code as before Slick 3.3, i.e. a HList based type will be generated instead.

    Definition Classes
    AbstractTableDef
  27. final lazy val indices: Seq[Index]

    Index code generators

    Index code generators

    Definition Classes
    AbstractTableDef
  28. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  29. final def isMappedToHugeClass: Boolean

    Indicates if table has more than 22 columns but still has to be mapped to a case class.

    Indicates if table has more than 22 columns but still has to be mapped to a case class.

    Definition Classes
    AbstractTableDef
  30. def mappingEnabled: Boolean

    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
    AbstractTableDef
  31. val model: model.Table
    Definition Classes
    AbstractTableDef
  32. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  33. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  34. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  35. final lazy val primaryKey: Option[PrimaryKey]

    Primary key code generator, if this table has one

    Primary key code generator, if this table has one

    Definition Classes
    AbstractTableDef
  36. def productElementNames: Iterator[String]
    Definition Classes
    Product
  37. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  38. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  39. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  40. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated
  2. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from AbstractSourceCodeTableDef toStringFormat[AbstractSourceCodeTableDef] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.12.16) Use formatString.format(value) instead of value.formatted(formatString), or use the f"" string interpolator. In Java 15 and later, formatted resolves to the new method in String which has reversed parameters.

  3. def [B](y: B): (AbstractSourceCodeTableDef, B)
    Implicit
    This member is added by an implicit conversion from AbstractSourceCodeTableDef toArrowAssoc[AbstractSourceCodeTableDef] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use -> instead. If you still wish to display it as one character, consider using a font with programming ligatures such as Fira Code.

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion StringFormat fromAbstractSourceCodeTableDef to StringFormat[AbstractSourceCodeTableDef]

Inherited by implicit conversion Ensuring fromAbstractSourceCodeTableDef to Ensuring[AbstractSourceCodeTableDef]

Inherited by implicit conversion ArrowAssoc fromAbstractSourceCodeTableDef to ArrowAssoc[AbstractSourceCodeTableDef]

Basic customization now overrides

Basic customization overrides

Ungrouped