c

magnolia

ReadOnlyCaseClass

abstract class ReadOnlyCaseClass[Typeclass[_], Type] extends Serializable

ReadOnlyCaseClass represents a case class or case object. It provides access to all of the parameters of the case class, the full name of the case class type, and a boolean to determine whether the type is a case class or case object.

Typeclass

type constructor for the typeclass being derived

Type

generic type of this parameter

Linear Supertypes
Serializable, AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ReadOnlyCaseClass
  2. Serializable
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new ReadOnlyCaseClass(typeName: TypeName, isObject: Boolean, isValueClass: Boolean, parametersArray: Array[ReadOnlyParam[Typeclass, Type]], annotationsArray: Array[Any], typeAnnotationsArray: Array[Any])

    typeName

    the name of the case class

    isObject

    true only if this represents a case object rather than a case class

    parametersArray

    an array of Param values for this case class

    annotationsArray

    an array of instantiated annotations applied to this case class

    typeAnnotationsArray

    an array of instantiated type annotations applied to this case class

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 annotations: Seq[Any]

    a sequence of objects representing all of the annotations on the case class

    a sequence of objects representing all of the annotations on the case class

    For efficiency, this sequence is implemented by an Array, but upcast to a scala.collection.Seq to hide the mutable collection API.

  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  7. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  8. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  9. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  10. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  11. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  12. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  13. val isObject: Boolean
  14. val isValueClass: Boolean
  15. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  16. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  17. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  18. def parameters: Seq[ReadOnlyParam[Typeclass, Type]]

    a sequence of ReadOnlyParam objects representing all of the parameters in the case class

    a sequence of ReadOnlyParam objects representing all of the parameters in the case class

    For efficiency, this sequence is implemented by an Array, but upcast to a scala.collection.Seq to hide the mutable collection API.

  19. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  20. def toString(): String
    Definition Classes
    ReadOnlyCaseClass → AnyRef → Any
  21. final def typeAnnotations: Seq[Any]

    a sequence of objects representing all of the type annotations on the case class

    a sequence of objects representing all of the type annotations on the case class

    For efficiency, this sequence is implemented by an Array, but upcast to a scala.collection.Seq to hide the mutable collection API.

  22. val typeName: TypeName
  23. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  24. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  25. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped