Class

longevity.subdomain

DerivedPType

Related Doc: package subdomain

Permalink

abstract class DerivedPType[P <: Persistent, Poly >: P <: Persistent] extends PType[P]

one of the derived types in a family of persistent types. mix this in to youe persistent type when it represents a concrete subtype of a PolyPType.

Source
DerivedPType.scala
Linear Supertypes
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. DerivedPType
  2. PType
  3. AnyRef
  4. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new DerivedPType()(implicit arg0: TypeKey[P], arg1: TypeKey[Poly])

    Permalink

Value Members

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from DerivedPType[P, Poly] to any2stringadd[DerivedPType[P, Poly]] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (DerivedPType[P, Poly], B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from DerivedPType[P, Poly] to ArrowAssoc[DerivedPType[P, Poly]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean

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

    Permalink
    Definition Classes
    Any
  7. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. def ensuring(cond: (DerivedPType[P, Poly]) ⇒ Boolean, msg: ⇒ Any): DerivedPType[P, Poly]

    Permalink
    Implicit information
    This member is added by an implicit conversion from DerivedPType[P, Poly] to Ensuring[DerivedPType[P, Poly]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  9. def ensuring(cond: (DerivedPType[P, Poly]) ⇒ Boolean): DerivedPType[P, Poly]

    Permalink
    Implicit information
    This member is added by an implicit conversion from DerivedPType[P, Poly] to Ensuring[DerivedPType[P, Poly]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  10. def ensuring(cond: Boolean, msg: ⇒ Any): DerivedPType[P, Poly]

    Permalink
    Implicit information
    This member is added by an implicit conversion from DerivedPType[P, Poly] to Ensuring[DerivedPType[P, Poly]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  11. def ensuring(cond: Boolean): DerivedPType[P, Poly]

    Permalink
    Implicit information
    This member is added by an implicit conversion from DerivedPType[P, Poly] to Ensuring[DerivedPType[P, Poly]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  12. final def eq(arg0: AnyRef): Boolean

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

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  15. def formatted(fmtstr: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from DerivedPType[P, Poly] to StringFormat[DerivedPType[P, Poly]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  16. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  17. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  18. def index(propsHead: Prop[P, _], propsTail: Prop[P, _]*): Index[P]

    Permalink

    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
  19. lazy val indexSet: Set[Index[P]]

    Permalink

    the indexes for this persistent type

    the indexes for this persistent type

    Definition Classes
    PType
  20. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  21. def key[V <: KeyVal[P, V]](keyValProp: Prop[P, V])(implicit arg0: TypeKey[V]): Key[P, V]

    Permalink

    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
  22. lazy val keySet: Set[AnyKey[P]]

    Permalink

    the keys for this persistent type

    the keys for this persistent type

    Definition Classes
    PType
  23. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  24. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  25. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  26. val pTypeKey: TypeKey[P]

    Permalink

    the type key for the persistent type

    the type key for the persistent type

    Definition Classes
    PType
  27. def prop[A](path: String)(implicit arg0: TypeKey[A]): Prop[P, A]

    Permalink

    constructs a Prop of type A from the provided property path.

    constructs a Prop of type A from the provided property path.

    the provided type A should match the type of the actual property in the Persistent. type A should not contain any collections, or terminate with polymorphic embeddable. violations will cause an exception to be thrown on Subdomain construction.

    A

    the type of the property

    path

    the property path

    Definition Classes
    PType
  28. lazy val propSet: Set[Prop[P, _]]

    Permalink

    the [Prop properties] for this persistent type

    the [Prop properties] for this persistent type

    Definition Classes
    PType
  29. lazy val queryDsl: QueryDsl[P]

    Permalink

    contains implicit imports to make the query DSL work

    contains implicit imports to make the query DSL work

    Definition Classes
    PType
  30. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  31. def toString(): String

    Permalink
    Definition Classes
    PType → AnyRef → Any
  32. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  35. def [B](y: B): (DerivedPType[P, Poly], B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from DerivedPType[P, Poly] to ArrowAssoc[DerivedPType[P, Poly]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Inherited from PType[P]

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from DerivedPType[P, Poly] to any2stringadd[DerivedPType[P, Poly]]

Inherited by implicit conversion StringFormat from DerivedPType[P, Poly] to StringFormat[DerivedPType[P, Poly]]

Inherited by implicit conversion Ensuring from DerivedPType[P, Poly] to Ensuring[DerivedPType[P, Poly]]

Inherited by implicit conversion ArrowAssoc from DerivedPType[P, Poly] to ArrowAssoc[DerivedPType[P, Poly]]

Ungrouped