trait
MappedTo[T] extends MappedToBase
Type Members
-
type
Underlying = T
Abstract Value Members
-
abstract
def
getClass(): Class[_]
-
abstract
def
value: T
Concrete Value Members
-
final
def
!=(arg0: Any): Boolean
-
final
def
##(): Int
-
def
+(other: String): String
-
def
->[B](y: B): (MappedTo[T], B)
-
final
def
==(arg0: Any): Boolean
-
final
def
asInstanceOf[T0]: T0
-
def
ensuring(cond: (MappedTo[T]) ⇒ Boolean, msg: ⇒ Any): MappedTo[T]
-
def
ensuring(cond: (MappedTo[T]) ⇒ Boolean): MappedTo[T]
-
def
ensuring(cond: Boolean, msg: ⇒ Any): MappedTo[T]
-
def
ensuring(cond: Boolean): MappedTo[T]
-
def
equals(arg0: Any): Boolean
-
def
formatted(fmtstr: String): String
-
def
hashCode(): Int
-
final
def
isInstanceOf[T0]: Boolean
-
def
toString(): String
-
def
→[B](y: B): (MappedTo[T], B)
Shadowed Implicit Value Members
-
val
self: Any
-
val
self: Any
Inherited from Any
Inherited by implicit conversion any2stringadd from
MappedTo[T] to StringAdd
Inherited by implicit conversion any2stringfmt from
MappedTo[T] to StringFormat
Inherited by implicit conversion any2ArrowAssoc from
MappedTo[T] to ArrowAssoc[MappedTo[T]]
Inherited by implicit conversion any2Ensuring from
MappedTo[T] to Ensuring[MappedTo[T]]
The base type for automatically mapped column types. Extending this type (with a type parameter
which is already a supported column type) lets you use your custom type as a column type in the Lifted Embedding. You must provide a constructor that takes a single value of the underlying type (same restriction as for value classes).T