p

org.yaml

model

package model

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. All

Type Members

  1. case class DuplicateKeyException(key: String, cause: Exception = null) extends SyamlException with Product with Serializable
  2. trait IllegalTypeHandler extends AnyRef

    Handles IllegalType requests from nodes

  3. case class LexerException(text: String, cause: Exception = null) extends SyamlException with Product with Serializable
  4. trait ParseErrorHandler extends AnyRef
  5. case class ParseException(tag: YType, text: String, cause: Exception = null) extends SyamlException with Product with Serializable
  6. case class ParserException(text: String, cause: Exception = null) extends SyamlException with Product with Serializable
  7. trait QuotedMark extends ScalarMark
  8. trait ScalarMark extends AnyRef
  9. abstract class SyamlException extends RuntimeException
  10. case class UndefinedAnchorException(anchor: String, cause: Exception = null) extends SyamlException with Product with Serializable
  11. class YAnchor extends YTokens

    A YReference is either an anchor or an alias

  12. class YComment extends YIgnorable

    Yaml Comment Part

  13. class YDirective extends YPart

    Yaml Directive

  14. class YDocument extends YPart with YNodeLike

    A Yaml Document

  15. class YError extends AnyRef

    An Error Message usually associated with a failure

  16. class YException extends RuntimeException

    An Exception that contains an YError

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

    Represents a failure when trying to access a particular Node

  18. abstract class YIgnorable extends YTokens

    Ignorable content

  19. class YMap extends YValue

    A Yaml Map

  20. class YMapEntry extends YPart
  21. abstract class YNode extends YPart with YNodeLike

    A Yaml Node, it has a Value plus Properties

  22. trait YNodeLike extends YValueLike

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

  23. class YNodePlain extends YNode
  24. class YNonContent extends YIgnorable

    Non Content (Whitespace, Indentation and Indicators)

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

  26. abstract class YPart extends AnyRef

    A Part of a Yaml Document

  27. class YScalar extends YValue

    A Yaml Scalar

  28. class YSequence extends YValue

    A Yaml Sequence

  29. case class YSuccess(node: YNode) extends YObj with Product with Serializable
  30. class YTag extends YTokens

    A Yaml Tag

  31. abstract class YTokens extends YPart

    A Set of Yaml Tokens

  32. class YType extends AnyRef

    Tag Types

  33. abstract class YValue extends YPart with YValueLike

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

  34. trait 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

Ungrouped