com.atomizesoftware.spin.data.dao.SpinDataModel.Tables

OrderTable

case class OrderTable(pathCoord: String) extends Table[Order] with Product with Serializable

Linear Supertypes
Serializable, Serializable, Product, Equals, Table[Order], AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. OrderTable
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. Table
  7. AnyRef
  8. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new OrderTable(pathCoord: String)

Value Members

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

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

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

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

    Definition Classes
    Any
  5. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. val columns: List[Column]

    The list of Columns in the database

    The list of Columns in the database

    Definition Classes
    OrderTableTable
  7. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  8. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  9. val fromModel: (Order) ⇒ Seq[Any]

    Function that transforms an instance of T into list of values to be used in SELECT and INSERT operations.

    Function that transforms an instance of T into list of values to be used in SELECT and INSERT operations.

    Definition Classes
    OrderTableTable
  10. val fullTextSearchColumn: String

    Name of the fulltext search column.

    Name of the fulltext search column. It defaults to _search

    Definition Classes
    Table
  11. def get[A](label: String)(implicit r: PositionedResult, alias: String): A

    Retrieves a value of type A from the implicit PositionedResult, from the field with the given label

    Retrieves a value of type A from the implicit PositionedResult, from the field with the given label

    This was developed to help in defining the toModel function.

    label

    label of the value in the ResultSet. It should be the simple column name and gets converted to the standard alias . Example: if getting the Id column, label parameter should be Id and not TableNameId

    Definition Classes
    Table
  12. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  13. def getOption[A](label: String)(implicit r: PositionedResult, alias: String): Option[A]

    Retrieves the value of type A from the implicit PositionedResult with the given label, but where the value night be NULL

    Retrieves the value of type A from the implicit PositionedResult with the given label, but where the value night be NULL

    Definition Classes
    Table
  14. def innerType[R](implicit tag: ClassTag[R]): ClassTag[R]

    Gets the type of R

    Gets the type of R

    This is an helper method that is used by modelType to help get around the JVM type erasure

    Definition Classes
    Table
  15. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  16. val mandatoryReferences: List[Reference]

    List of mandatory references for the table.

    List of mandatory references for the table.

    Definition Classes
    Table
  17. def modelType: ClassTag[Order]

    Retrieves the inner type of Table

    Retrieves the inner type of Table

    Example: for Table[Container] this method returns the type Container

    Definition Classes
    Table
  18. val name: String

    The name of the table, as defined in the database.

    The name of the table, as defined in the database.

    It should be a simple string without quotes. Example, if using SQL Server and there is a table named Users, this value should be Users and not [Users]

    Definition Classes
    OrderTableTable
  19. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  20. final def notify(): Unit

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

    Definition Classes
    AnyRef
  22. val pathCoord: String

  23. val pathCoordinate: String

    Representation used when constructing/reading the alias

    Representation used when constructing/reading the alias

    Definition Classes
    OrderTableTable
  24. val pk: String

    Name of the primary key column.

    Name of the primary key column. It defaults to Id

    Definition Classes
    Table
  25. val references: List[Reference]

    The list of references the table contains

    The list of references the table contains

    Definition Classes
    OrderTableTable
  26. val searchColumns: List[String]

    List of column names that are used for search in sql server

    List of column names that are used for search in sql server

    Definition Classes
    OrderTableTable
  27. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  28. def toModel(implicit r: PositionedResult, alias: String = pathCoordinate): Option[Order]

    Function that transforms a [scala.slick.Session.PositionedResult] into an instance of T.

    Function that transforms a [scala.slick.Session.PositionedResult] into an instance of T. If it fails, returns None

    Definition Classes
    OrderTableTable
  29. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from Table[Order]

Inherited from AnyRef

Inherited from Any

Ungrouped