Packages

final case class Parser(maxAliasesForCollections: Int = common.Parser.defaultMaxAliasesForCollections, nestingDepthLimit: Int = Parser.defaultNestingDepthLimit, codePointLimit: Int = common.Parser.defaultCodePointLimit) extends yaml.common.Parser with Product with Serializable

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Parser
  2. Product
  3. Equals
  4. Parser
  5. Parser
  6. Serializable
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new Parser(maxAliasesForCollections: Int)
  2. new Parser(maxAliasesForCollections: Int = common.Parser.defaultMaxAliasesForCollections, nestingDepthLimit: Int = Parser.defaultNestingDepthLimit, codePointLimit: Int = common.Parser.defaultCodePointLimit)

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  6. val codePointLimit: Int
  7. def copy(maxAliasesForCollections: Int): Parser
  8. def copy(maxAliasesForCollections: Int = this.maxAliasesForCollections, nestingDepthLimit: Int = this.nestingDepthLimit, codePointLimit: Int = this.codePointLimit): Parser
  9. final def decode[A](input: Reader)(implicit arg0: Decoder[A]): Either[Error, A]
    Definition Classes
    Parser → Parser
  10. final def decode[A](input: String)(implicit arg0: Decoder[A]): Either[Error, A]
    Definition Classes
    Parser
  11. final def decodeAccumulating[A](input: Reader)(implicit arg0: Decoder[A]): ValidatedNel[Error, A]
    Definition Classes
    Parser → Parser
  12. final def decodeAccumulating[A](input: String)(implicit arg0: Decoder[A]): ValidatedNel[Error, A]
    Definition Classes
    Parser
  13. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  14. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  15. final def finishDecode[A](input: Either[ParsingFailure, Json])(implicit decoder: Decoder[A]): Either[Error, A]
    Attributes
    protected[this]
    Definition Classes
    Parser
  16. final def finishDecodeAccumulating[A](input: Either[ParsingFailure, Json])(implicit decoder: Decoder[A]): ValidatedNel[Error, A]
    Attributes
    protected[this]
    Definition Classes
    Parser
  17. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  18. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  19. val maxAliasesForCollections: Int
  20. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  21. val nestingDepthLimit: Int
  22. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  23. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  24. def parse(yaml: String): Either[ParsingFailure, Json]
    Definition Classes
    Parser → Parser
  25. def parse(yaml: Reader): Either[ParsingFailure, Json]

    Parse YAML from the given Reader, returning either ParsingFailure or Json

    Parse YAML from the given Reader, returning either ParsingFailure or Json

    Definition Classes
    Parser → Parser
  26. def parseDocuments(yaml: String): Stream[Either[ParsingFailure, Json]]
    Definition Classes
    Parser → Parser
  27. def parseDocuments(yaml: Reader): Stream[Either[ParsingFailure, Json]]
    Definition Classes
    Parser → Parser
  28. def productElementNames: Iterator[String]
    Definition Classes
    Product
  29. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  30. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  31. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  32. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from Product

Inherited from Equals

Inherited from common.Parser

Inherited from circe.Parser

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped