scala.slick.driver.BasicTableComponent

Table

abstract class Table[T] extends AbstractTable[T]

Self Type
BasicDriver.Table[T]
Linear Supertypes
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Table
  2. AbstractTable
  3. NullaryNode
  4. SimpleNode
  5. ColumnBase
  6. RecordLinearizer
  7. ValueLinearizer
  8. Rep
  9. WithOp
  10. Cloneable
  11. Cloneable
  12. TableNode
  13. Node
  14. NodeGenerator
  15. AnyRef
  16. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Table(_tableName: String)

  2. new Table(_schemaName: Option[String], _tableName: String)

Abstract Value Members

  1. abstract def *: ColumnBase[T]

    Definition Classes
    AbstractTable

Concrete Value Members

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

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. val O: BasicDriver.columnOptions.type

  7. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  8. def clone(): Table.this.type

    Definition Classes
    WithOp → AnyRef
  9. def column[C](n: String, options: ColumnOption[C]*)(implicit tm: TypeMapper[C]): Column[C]

  10. def createFinderBy[P](f: (Table.this.type) ⇒ Column[P])(implicit tm: TypeMapper[P]): BasicQueryTemplate[P, T]

  11. def create_*: Iterable[FieldSymbol]

    Definition Classes
    AbstractTable
  12. def ddl: DDL

  13. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  14. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  15. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  16. def foreignKey[P, PU, TT <: TableNode, U](name: String, sourceColumns: P, targetTable: TT)(targetColumns: (TT) ⇒ P, onUpdate: ForeignKeyAction, onDelete: ForeignKeyAction)(implicit unpack: Shape[TT, U, _], unpackp: Shape[P, PU, _]): ForeignKeyQuery[TT, U]

    Definition Classes
    AbstractTable
  17. final def foreignKeys: Iterable[ForeignKey[_ <: TableNode, _]]

    Definition Classes
    AbstractTable
  18. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  19. def getLinearizedNodes: IndexedSeq[Node]

    Definition Classes
    AbstractTableRecordLinearizer
  20. def getResult(profile: BasicProfile, rs: PositionedResult): T

    Definition Classes
    AbstractTableRecordLinearizer
  21. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  22. def index[T](name: String, on: T, unique: Boolean)(implicit shape: Shape[T, _, _]): Index

    Definition Classes
    AbstractTable
  23. def indexes: Iterable[Index]

    Definition Classes
    AbstractTable
  24. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  25. def mapOp(f: (Node, List[Int]) ⇒ Node, positions: List[Int] = Nil): Table.this.type

    Definition Classes
    WithOp
  26. final def narrowedLinearizer: RecordLinearizer[T]

    Definition Classes
    RecordLinearizerValueLinearizer
  27. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  28. def nodeChildNames: Iterable[String]

    Names for the child nodes to show in AST dumps.

    Names for the child nodes to show in AST dumps. Defaults to a numbered sequence starting at 0 but can be overridden by subclasses to produce more suitable names.

    Definition Classes
    Node
  29. val nodeChildren: collection.immutable.Nil.type

    All child nodes of this node.

    All child nodes of this node. Must be implemented by subclasses.

    Definition Classes
    NullaryNodeNode
  30. def nodeDelegate: Node

    Definition Classes
    NodeNodeGenerator
  31. def nodeIntrinsicSymbol: IntrinsicSymbol

    The intrinsic symbol that points to this Node object.

    The intrinsic symbol that points to this Node object.

    Definition Classes
    Node
  32. def nodeMapChildren(f: (Node) ⇒ Node): Node

    Apply a mapping function to all children of this node and recreate the node with the new children.

    Apply a mapping function to all children of this node and recreate the node with the new children. If all new children are identical to the old ones, this node is returned.

    Definition Classes
    SimpleNodeNode
  33. final def nodeMapNodes(s: Iterable[Node], f: (Node) ⇒ Node): Option[IndexedSeq[Node]]

    Attributes
    protected[this]
    Definition Classes
    Node
  34. final def nodeRebuild(ch: IndexedSeq[Node]): Node

    Attributes
    protected[this]
    Definition Classes
    NullaryNodeSimpleNode
  35. def nodeShaped_*: ShapedValue[_, _]

    Definition Classes
    AbstractTableTableNode
  36. def nodeTableSymbol: TableSymbol

    Definition Classes
    TableNode
  37. final def notify(): Unit

    Definition Classes
    AnyRef
  38. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  39. final def op: Node

    Definition Classes
    WithOp
  40. def primaryKey[T](name: String, sourceColumns: T)(implicit unpack: Shape[T, _, _]): PrimaryKey

    Definition Classes
    AbstractTable
  41. final def primaryKeys: Iterable[PrimaryKey]

    Definition Classes
    AbstractTable
  42. val schemaName: Option[String]

    Definition Classes
    AbstractTable
  43. def setParameter(profile: BasicProfile, ps: PositionedParameters, value: Option[T]): Unit

    Definition Classes
    AbstractTableRecordLinearizer
  44. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  45. def tableConstraints: Iterator[Constraint]

    Definition Classes
    AbstractTable
  46. val tableName: String

    Definition Classes
    AbstractTableTableNode
  47. def toString(): String

    Definition Classes
    TableNodeNode → AnyRef → Any
  48. def updateResult(profile: BasicProfile, rs: PositionedResult, value: T): Unit

    Definition Classes
    AbstractTableRecordLinearizer
  49. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws()

Inherited from AbstractTable[T]

Inherited from NullaryNode

Inherited from SimpleNode

Inherited from ColumnBase[T]

Inherited from RecordLinearizer[T]

Inherited from ValueLinearizer[T]

Inherited from Rep[T]

Inherited from WithOp

Inherited from Cloneable

Inherited from java.lang.Cloneable

Inherited from TableNode

Inherited from Node

Inherited from NodeGenerator

Inherited from AnyRef

Inherited from Any

Ungrouped