trait Rep[T] extends AnyRef
Common base trait for all lifted values, including columns.
All column operations are added with extension methods that depend on the type inside the Rep
.
These are defined in:
- slick.lifted.AnyExtensionMethods and slick.lifted.ColumnExtensionMethods for columns of all types
- slick.lifted.OptionColumnExtensionMethods for columns of all
Option
types - slick.lifted.BaseColumnExtensionMethods for columns of all non-
Option
types - slick.lifted.NumericColumnExtensionMethods for columns of numeric types (and Options thereof)
- slick.lifted.BooleanColumnExtensionMethods for columns of
Boolean
/Option[Boolean]
- slick.lifted.StringColumnExtensionMethods for columns of
String
/Option[String]
- slick.lifted.ColumnOrdered for using columns in
sortBy
calls
A Rep[T : TypedType]
is always Typed
, so that the TypedType
can be retrieved directly
from the Rep
value.
- Source
- Rep.scala
Linear Supertypes
Known Subclasses
Type Hierarchy
Ordering
- Alphabetic
- By Inheritance
Inherited
- Rep
- AnyRef
- Any
Implicitly
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
Visibility
- Public
- All
Abstract Value Members
Concrete Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
- def +(other: String): String
- def ->[B](y: B): (Rep[T], B)
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
- def ensuring(cond: (Rep[T]) ⇒ Boolean, msg: ⇒ Any): Rep[T]
- def ensuring(cond: (Rep[T]) ⇒ Boolean): Rep[T]
- def ensuring(cond: Boolean, msg: ⇒ Any): Rep[T]
- def ensuring(cond: Boolean): Rep[T]
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
- def formatted(fmtstr: String): String
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- Rep → AnyRef → Any
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
- def →[B](y: B): (Rep[T], B)
edit this text on github
Scala Language-Integrated Connection Kit
This is the API documentation for the Slick database library. It should be used as an additional resource to the user manual.
Further documentation for Slick can be found on the documentation pages.
To the slick package list...