object Scaladoc extends java.io.Serializable
The available tokens and their documentation are obtained from:
- See also
http://docs.scala-lang.org/overviews/scaladoc/for-library-authors.html
- Alphabetic
- By Inheritance
- Scaladoc
- Serializable
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Type Members
- final case class CodeBlock(code: Seq[String]) extends Term with Product with Serializable
A block of one or more lines of code
- final case class CodeExpr(code: String, punct: String = "") extends TextPart with Product with Serializable
A single embedded code expression
- final case class EnclosedJavaTag(tag: String, desc: Seq[String] = Nil) extends TextPart with Product with Serializable
Represents an enclosed tagged documentation remark
- final case class Heading(level: Int, title: String) extends Term with Product with Serializable
A heading
- final case class Link(ref: String, anchor: Seq[String], punct: String = "") extends TextPart with Product with Serializable
A reference to a symbol
- final case class ListBlock(listType: ListType, items: Seq[ListItem]) extends Term with Product with Serializable
Represents a list block
- final case class ListItem(prefix: String, text: Text, terms: Seq[Term] = Nil) extends Product with Serializable
Represents a list item
- sealed abstract class ListType extends AnyRef
- final case class MdCodeBlock(info: Seq[String], code: Seq[String], fence: String) extends Term with Product with Serializable
A markdown block of one or more lines of code
- final case class MdCodeSpan(code: String, fence: String, punct: String = "") extends TextPart with Product with Serializable
A markdown code span, an embedded code expression
- final case class Paragraph(terms: Seq[Term]) extends Product with Serializable
A single paragraph of the document
- final case class Table(header: Row, align: Seq[Align], rows: Seq[Row]) extends Term with Product with Serializable
A table https://www.scala-lang.org/blog/2018/10/04/scaladoc-tables.html
- final case class Tag(tag: TagType, label: Option[Word] = None, desc: Seq[Term] = Nil) extends Term with Product with Serializable
Represents a tagged documentation remark
Represents a tagged documentation remark
- label
set iff
tag.hasLabel- desc
set iff
tag.hasDesc
- Note
if label is expected but desc is not, label will contain the entire tag line
- sealed abstract class TagType extends AnyRef
- sealed abstract class Term extends AnyRef
- final case class Text(parts: Seq[TextPart]) extends Term with Product with Serializable
A description or other inline text block
- trait TextPart extends AnyRef
An inline part of a text block
- final case class Word(value: String) extends TextPart with Product with Serializable
A single word, without whitespace
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 clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- 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()
- object ListType
- object Table extends java.io.Serializable
- object TagType