Class/Object

com.tersesystems.blindsight

Message

Related Docs: object Message | package blindsight

Permalink

final class Message extends AnyVal

This class represents the message portion of a logging statement.

A Message is immutable, and so composing a message is a concatenation of Message + Message.

There is an implicit conversion of string to message, but for general purpose, ToMessage should be used to convert objects.

val message = Message("foo")
logger.info(message)
Source
Message.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Message
  2. AnyVal
  3. 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 Message(raw: String)

    Permalink

Value Members

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

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

    Permalink
    Definition Classes
    Any
  3. def +(message: Message): Message

    Permalink
  4. def ->[B](y: B): (Message, B)

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

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

    Permalink
    Definition Classes
    Any
  7. def ensuring(cond: (Message) ⇒ Boolean, msg: ⇒ Any): Message

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

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

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

    Permalink
    Implicit information
    This member is added by an implicit conversion from Message to Ensuring[Message] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  11. def formatted(fmtstr: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from Message to StringFormat[Message] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  12. def getClass(): Class[_ <: AnyVal]

    Permalink
    Definition Classes
    AnyVal → Any
  13. def isEmpty: Boolean

    Permalink
  14. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  15. def nonEmpty: Boolean

    Permalink
  16. def toStatement: Statement

    Permalink
  17. def toString(): String

    Permalink
    Definition Classes
    Message → Any
  18. def withPlaceHolders(args: Arguments): Message

    Permalink
  19. def [B](y: B): (Message, B)

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

Shadowed Implicit Value Members

  1. def +(other: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from Message to any2stringadd[Message] performed by method any2stringadd in scala.Predef.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (message: any2stringadd[Message]).+(other)
    Definition Classes
    any2stringadd

Inherited from AnyVal

Inherited from Any

Inherited by implicit conversion any2stringadd from Message to any2stringadd[Message]

Inherited by implicit conversion StringFormat from Message to StringFormat[Message]

Inherited by implicit conversion Ensuring from Message to Ensuring[Message]

Inherited by implicit conversion ArrowAssoc from Message to ArrowAssoc[Message]

Ungrouped