object Renderable
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- Renderable
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Type Members
- case class Leaf(s: String) extends RenderTree with Product with Serializable
A leaf, contains a string without newlines.
- sealed trait RenderTree extends AnyRef
Describes the way something is rendered.
- case class RenderableWrapper(tree: RenderTree) extends Product with Serializable
Helper to get key-value lists working.
- case class SubTree(items: IndexedSeq[RenderTree], prefix: String = "- ", title: Option[String] = None) extends RenderTree with Product with Serializable
A Subtree with elements.
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def buildRenderTree[T](value: T)(implicit renderer: Renderable[T]): RenderTree
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def keyValueList(title: String, values: (String, RenderableWrapper)*): RenderTree
Build a Tree for Key value lists
- implicit def makeOptionRenderable[T](implicit arg0: Renderable[T]): Renderable[Option[T]]
- def makeRenderable[T](f: (T) => RenderTree): Renderable[T]
Helper for making renderable instances.
- implicit def makeRenderableWrapper[T](x: T)(implicit arg0: Renderable[T]): RenderableWrapper
- implicit def makeTraversableRenderable[T](implicit elementRenderable: Renderable[T]): Renderable[Seq[T]]
Renderable for iterable things
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- def renderAsString[T](value: T)(implicit arg0: Renderable[T]): String
Render something renderable.
- implicit val renderBoolean: Renderable[Boolean]
- implicit val renderInt: Renderable[Int]
- def renderPotentialJson(json: String): RenderTree
- implicit val renderString: Renderable[String]
- implicit val selfTree: Renderable[RenderTree]
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])