abstract class DerivedPType[M, P, Poly >: P] extends PType[M, P]
one of the derived types in a family of persistent classes. mix this in to your persistent type when it represents a concrete subtype of a PolyPType.
- M
the domain model
- P
the persistent class
- Poly
the parent persistent class
- Source
- DerivedPType.scala
- Alphabetic
- By Inheritance
- DerivedPType
- PType
- AnyRef
- Any
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
- Public
- All
Instance Constructors
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
- Implicit
- This member is added by an implicit conversion from DerivedPType[M, P, Poly] to any2stringadd[DerivedPType[M, P, Poly]] performed by method any2stringadd in scala.Predef.
- Definition Classes
- any2stringadd
-
def
->[B](y: B): (DerivedPType[M, P, Poly], B)
- Implicit
- This member is added by an implicit conversion from DerivedPType[M, P, Poly] to ArrowAssoc[DerivedPType[M, P, Poly]] performed by method ArrowAssoc in scala.Predef.
- Definition Classes
- ArrowAssoc
- Annotations
- @inline()
-
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: (DerivedPType[M, P, Poly]) ⇒ Boolean, msg: ⇒ Any): DerivedPType[M, P, Poly]
- Implicit
- This member is added by an implicit conversion from DerivedPType[M, P, Poly] to Ensuring[DerivedPType[M, P, Poly]] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
-
def
ensuring(cond: (DerivedPType[M, P, Poly]) ⇒ Boolean): DerivedPType[M, P, Poly]
- Implicit
- This member is added by an implicit conversion from DerivedPType[M, P, Poly] to Ensuring[DerivedPType[M, P, Poly]] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
-
def
ensuring(cond: Boolean, msg: ⇒ Any): DerivedPType[M, P, Poly]
- Implicit
- This member is added by an implicit conversion from DerivedPType[M, P, Poly] to Ensuring[DerivedPType[M, P, Poly]] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
-
def
ensuring(cond: Boolean): DerivedPType[M, P, Poly]
- Implicit
- This member is added by an implicit conversion from DerivedPType[M, P, Poly] to Ensuring[DerivedPType[M, P, Poly]] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
-
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
- Implicit
- This member is added by an implicit conversion from DerivedPType[M, P, Poly] to StringFormat[DerivedPType[M, P, Poly]] performed by method StringFormat in scala.Predef.
- Definition Classes
- StringFormat
- Annotations
- @inline()
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
index(propsHead: Prop[P, _], propsTail: Prop[P, _]*): Index[P]
constructs an index for this persistent type based on the supplied set of index props
constructs an index for this persistent type based on the supplied set of index props
- propsHead
the first of the properties that define this index
- propsTail
any remaining properties that define this index
- Definition Classes
- PType
-
val
indexSet: Set[Index[P]]
the indexes for this persistent type.
the indexes for this persistent type. defaults to the empty set
- Definition Classes
- PType
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
def
key[V](keyValProp: Prop[P, V])(implicit arg0: KVEv[M, P, V]): Key[M, P, V]
constructs a key for this persistent type
constructs a key for this persistent type
- V
the type of the key value
- keyValProp
a property for the key
- Definition Classes
- PType
-
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()
-
def
partition(props: Prop[P, _]*): Partition[P]
a series of properties that determines the partitioning used by the underlying database to distribute data across multiple nodes.
a series of properties that determines the partitioning used by the underlying database to distribute data across multiple nodes. used to form a primary key
- props
the properties that determine the partition
- Definition Classes
- PType
-
def
primaryKey[V](keyValProp: Prop[P, V], partition: Partition[P])(implicit arg0: KVEv[M, P, V]): Key[M, P, V]
constructs a primary key for this persistent type
constructs a primary key for this persistent type
- V
the type of the key value
- keyValProp
a property for the primary key
- partition
describes the portion of the key value to use to determine which node in the partition the data belongs to. this must form a prefix of the
keyValProp
- Definition Classes
- PType
-
def
primaryKey[V](keyValProp: Prop[P, V], hashed: Boolean = false)(implicit arg0: KVEv[M, P, V]): Key[M, P, V]
constructs a primary key for this persistent type.
constructs a primary key for this persistent type. the full key value is used to determine the partition
- V
the type of the key value
- keyValProp
a property for the primary key
- hashed
if
true
, then used a hashed partition (as opposed to a ranged partition) when possible. defaults tofalse
.
- Definition Classes
- PType
-
lazy val
queryDsl: QueryDsl[P]
contains implicit imports to make the query DSL work
contains implicit imports to make the query DSL work
- Definition Classes
- PType
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- DerivedPType → PType → 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): (DerivedPType[M, P, Poly], B)
- Implicit
- This member is added by an implicit conversion from DerivedPType[M, P, Poly] to ArrowAssoc[DerivedPType[M, P, Poly]] performed by method ArrowAssoc in scala.Predef.
- Definition Classes
- ArrowAssoc