p

org.yaml

model

package model

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. All

Type Members

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

    Handles IllegalType requests from nodes

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

    A YReference is either an anchor or an alias

  13. class YComment extends YIgnorable

    Yaml Comment Part

  14. class YDirective extends YPart

    Yaml Directive

  15. class YDocument extends YPart with YNodeLike

    A Yaml Document

  16. class YError extends AnyRef

    An Error Message usually associated with a failure

  17. class YException extends RuntimeException

    An Exception that contains an YError

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

    Represents a failure when trying to access a particular Node

  19. abstract class YIgnorable extends YTokens

    Ignorable content

  20. class YMap extends YValue

    A Yaml Map

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

    A Yaml Node, it has a Value plus Properties

  23. trait YNodeLike extends YValueLike

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

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

    Non Content (Whitespace, Indentation and Indicators)

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

  27. abstract class YPart extends AnyRef

    A Part of a Yaml Document

  28. class YScalar extends YValue

    A Yaml Scalar

  29. class YSequence extends YValue

    A Yaml Sequence

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

    A Yaml Tag

  32. abstract class YTokens extends YPart

    A Set of Yaml Tokens

  33. class YType extends AnyRef

    Tag Types

  34. abstract class YValue extends YPart with YValueLike

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

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