object Renderable

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Renderable
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. case class Leaf(s: String) extends RenderTree with Product with Serializable

    A leaf, contains a string without newlines.

  2. sealed trait RenderTree extends AnyRef

    Describes the way something is rendered.

  3. case class RenderableWrapper(tree: RenderTree) extends Product with Serializable

    Helper to get key-value lists working.

  4. case class SubTree(items: IndexedSeq[RenderTree], prefix: String = "- ", title: Option[String] = None) extends RenderTree with Product with Serializable

    A Subtree with elements.

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 asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def buildRenderTree[T](value: T)(implicit renderer: Renderable[T]): RenderTree
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  7. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  8. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  9. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  10. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  11. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  12. def keyValueList(title: String, values: (String, RenderableWrapper)*): RenderTree

    Build a Tree for Key value lists

  13. implicit def makeOptionRenderable[T](implicit arg0: Renderable[T]): Renderable[Option[T]]
  14. def makeRenderable[T](f: (T) => RenderTree): Renderable[T]

    Helper for making renderable instances.

  15. implicit def makeRenderableWrapper[T](x: T)(implicit arg0: Renderable[T]): RenderableWrapper
  16. implicit def makeTraversableRenderable[T](implicit elementRenderable: Renderable[T]): Renderable[Seq[T]]

    Renderable for iterable things

  17. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  18. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  19. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  20. def renderAsString[T](value: T)(implicit arg0: Renderable[T]): String

    Render something renderable.

  21. implicit val renderBoolean: Renderable[Boolean]
  22. implicit val renderInt: Renderable[Int]
  23. def renderPotentialJson(json: String): RenderTree
  24. implicit val renderString: Renderable[String]
  25. implicit val selfTree: Renderable[RenderTree]
  26. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  27. def toString(): String
    Definition Classes
    AnyRef → Any
  28. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  29. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  30. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

Inherited from AnyRef

Inherited from Any

Ungrouped