p

org.yaml

model

package model

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. All

Type Members

  1. abstract class IllegalTypeHandler extends AnyRef

    Handles IllegalType requests from nodes

  2. class YAnchor extends YTokens

    A YReference is either an anchor or an alias

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

    Yaml Comment Part

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

    Yaml Directive

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

    A Yaml Document

  6. class YError extends AnyRef

    An Error Message usually associated with a failure

  7. class YException extends RuntimeException

    An Exception that contains an YError

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

    Represents a failure when trying to access a particular Node

  9. abstract class YIgnorable extends YTokens

    Ignorable content

  10. class YMap extends YValue

    A Yaml Map

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

    A Yaml Node, it has a Value plus Properties

  13. abstract class YNodeLike extends YValueLike

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

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

    Non Content (Whitespace, Indentation and Indicators)

  15. 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

  16. trait YPart extends AnyRef

    A Part of a Yaml Document

  17. class YScalar extends YValue

    A Yaml Scalar

  18. class YSequence extends YValue

    A Yaml Sequence

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

    A Yaml Tag

  21. abstract class YTokens extends YPart

    A Set of Yaml Tokens

  22. class YType extends AnyRef

    Tag Types

  23. abstract class YValue extends YValueLike with YPart

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

  24. 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 YAnchor
  3. object YDocument extends Serializable
  4. object YError
  5. object YFail extends Serializable
  6. object YMap
  7. object YMapEntry
  8. object YNode
  9. object YNodeLike
  10. object YScalar
  11. object YSequence
  12. object YTag extends Serializable
  13. object YType

Ungrouped