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. case class LexerException (text: String, cause: Exception = null) extends SyamlException with Product with Serializable
  3. trait ParseErrorHandler extends AnyRef
  4. case class ParseException (tag: YType, text: String, cause: Exception = null) extends SyamlException with Product with Serializable
  5. abstract class SyamlException extends RuntimeException
  6. class YAnchor extends YTokens

    A YReference is either an anchor or an alias

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

    Yaml Comment Part

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

    Yaml Directive

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

    A Yaml Document

  10. class YError extends AnyRef

    An Error Message usually associated with a failure

  11. class YException extends RuntimeException

    An Exception that contains an YError

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

    Represents a failure when trying to access a particular Node

  13. abstract class YIgnorable extends YTokens

    Ignorable content

  14. class YMap extends YValue

    A Yaml Map

  15. class YMapEntry extends YPart
  16. abstract class YNode extends YNodeLike with YPart

    A Yaml Node, it has a Value plus Properties

  17. abstract class YNodeLike extends YValueLike

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

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

    Non Content (Whitespace, Indentation and Indicators)

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

  20. trait YPart extends AnyRef

    A Part of a Yaml Document

  21. class YScalar extends YValue

    A Yaml Scalar

  22. class YSequence extends YValue

    A Yaml Sequence

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

    A Yaml Tag

  25. abstract class YTokens extends YPart

    A Set of Yaml Tokens

  26. class YType extends AnyRef

    Tag Types

  27. abstract class YValue extends YValueLike with YPart

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

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