p

org.yaml

model

package model

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. All

Type Members

  1. trait IllegalTypeHandler extends AnyRef

    Handles IllegalType requests from nodes

  2. trait ParseErrorHandler extends AnyRef
  3. class YAnchor extends YTokens

    A YReference is either an anchor or an alias

  4. case class YComment (metaText: String, range: InputRange = InputRange.Zero, tokens: IndexedSeq[AstToken] = IndexedSeq.empty) extends YIgnorable with Product with Serializable

    Yaml Comment Part

  5. case class YDirective (name: String, args: IndexedSeq[String], children: IndexedSeq[YPart] = IndexedSeq.empty) extends YPart with Product with Serializable

    Yaml Directive

  6. case class YDocument (children: IndexedSeq[YPart]) extends YNodeLike with YPart with Product with Serializable

    A Yaml Document

  7. class YError extends AnyRef

    An Error Message usually associated with a failure

  8. class YException extends RuntimeException

    An Exception that contains an YError

  9. case class YFail (error: YError) extends YObj with Product with Serializable

    Represents a failure when trying to access a particular Node

  10. abstract class YIgnorable extends YTokens

    Ignorable content

  11. class YMap extends YValue

    A Yaml Map

  12. class YMapEntry extends YPart
  13. abstract class YNode extends YNodeLike with YPart

    A Yaml Node, it has a Value plus Properties

  14. abstract class YNodeLike extends YValueLike

    A trait that represents Node like values that can be converted using YRead

  15. case class YNonContent (range: InputRange, tokens: IndexedSeq[AstToken]) extends YIgnorable with Product with Serializable

    Non Content (Whitespace, Indentation and Indicators)

  16. sealed abstract class YObj extends YNodeLike with Dynamic

    Represents a value of one of two possible types (a disjoint union.) An instance of YObj is an instance of either YFail or YSuccess that is a wrapper of a YNode.

    Represents a value of one of two possible types (a disjoint union.) An instance of YObj is an instance of either YFail or YSuccess that is a wrapper of a YNode. It extends Dynamic to 'simulate' a Dynamic Object

  17. trait YPart extends AnyRef

    A Part of a Yaml Document

  18. class YScalar extends YValue

    A Yaml Scalar

  19. class YSequence extends YValue

    A Yaml Sequence

  20. case class YSuccess (node: YNode) extends YObj with Product with Serializable
  21. case class YTag (text: String, tagType: YType, range: InputRange = Zero, tokens: IndexedSeq[AstToken] = IndexedSeq.empty) extends YTokens with Product with Serializable

    A Yaml Tag

  22. abstract class YTokens extends YPart

    A Set of Yaml Tokens

  23. class YType extends AnyRef

    Tag Types

  24. abstract class YValue extends YValueLike with YPart

    A YamlValue is either a Scalar, a Sequence or a Map

  25. abstract class YValueLike extends AnyRef

    Root class of all YamlElements that contains a Value That is either an YValue or any YNodeLike It defines the == and != methods to avoid warnings from Intellij

Value Members

  1. object IllegalTypeHandler
  2. object ParseErrorHandler
  3. object YAnchor
  4. object YDocument extends Serializable
  5. object YError
  6. object YFail extends Serializable
  7. object YMap
  8. object YMapEntry
  9. object YNode
  10. object YNodeLike
  11. object YScalar
  12. object YSequence
  13. object YTag extends Serializable
  14. object YType

Ungrouped