Class/Object

emblem

Emblem

Related Docs: object Emblem | package emblem

Permalink

case class Emblem[T <: HasEmblem] extends Product with Serializable

a reflective signature for a type. provides name information, properties, and a tool used to build new instances. the underlying type is treated as immutable, so each property provides a setter that returns a new instance. new instances can be built using a HasEmblemBuilder returned by method builder.

T

the type that this emblem reflects upon

Source
Emblem.scala
Linear Supertypes
Type Hierarchy Learn more about scaladoc diagrams
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Emblem
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. 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

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 Emblem[T] to any2stringadd[Emblem[T]] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (Emblem[T], B)

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

    Permalink
    Definition Classes
    AnyRef → Any
  6. def apply(name: String): EmblemProp[T, _]

    Permalink

    retrieves an EmblemProp by name

  7. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  8. def builder(): HasEmblemBuilder[T]

    Permalink

    creates and returns a new builder for constructing new instances

  9. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  10. val creator: (Map[String, Any]) ⇒ T

    Permalink

    a function used by the builder to instantiate the new object

  11. lazy val debugInfo: String

    Permalink

    a string describing the emblem in full detail

  12. def ensuring(cond: (Emblem[T]) ⇒ Boolean, msg: ⇒ Any): Emblem[T]

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

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

    Permalink
    Implicit information
    This member is added by an implicit conversion from Emblem[T] to Ensuring[Emblem[T]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  15. def ensuring(cond: Boolean): Emblem[T]

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

    Permalink
    Definition Classes
    AnyRef
  17. def finalize(): Unit

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

    Permalink
    Implicit information
    This member is added by an implicit conversion from Emblem[T] to StringFormat[Emblem[T]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  19. lazy val fullname: String

    Permalink

    the fully qualified type name

  20. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  21. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  22. val name: String

    Permalink

    the unqualified type name

  23. val namePrefix: String

    Permalink

    a dot-separated identifier of the enclosing scope of the type

  24. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  27. def prop[U](name: String)(implicit arg0: TypeKey[U]): EmblemProp[T, U]

    Permalink

    retrieves an EmblemProp with the specified property type by name

  28. val propMap: Map[String, EmblemProp[T, _]]

    Permalink

    a map of the props, keyed by name

  29. val props: Seq[EmblemProp[T, _]]

    Permalink

    the emblem properties

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

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

    Permalink
    Definition Classes
    Emblem → AnyRef → Any
  32. lazy val typeKey: TypeKey[T]

    Permalink

    A type key for the type that this emblem reflects upon

  33. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  36. def [B](y: B): (Emblem[T], B)

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

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from Emblem[T] to any2stringadd[Emblem[T]]

Inherited by implicit conversion StringFormat from Emblem[T] to StringFormat[Emblem[T]]

Inherited by implicit conversion Ensuring from Emblem[T] to Ensuring[Emblem[T]]

Inherited by implicit conversion ArrowAssoc from Emblem[T] to ArrowAssoc[Emblem[T]]

Ungrouped