XmlDecoder

harness.xml.XmlDecoder$
See theXmlDecoder companion trait
object XmlDecoder

Attributes

Companion
trait
Graph
Supertypes
class Object
trait Matchable
class Any
Self type
XmlDecoder.type

Members list

Type members

Classlikes

final class ListNodeDecoder[T](nodeName: String, innerDecoder: XmlDecoder[T]) extends XmlDecoder[List[T]]

Attributes

Supertypes
trait XmlDecoder[List[T]]
class Object
trait Matchable
class Any
final class NonEmptyListNodeDecoder[T](nodeName: String, innerDecoder: XmlDecoder[T]) extends XmlDecoder[NonEmptyList[T]]

Attributes

Supertypes
trait XmlDecoder[NonEmptyList[T]]
class Object
trait Matchable
class Any
final class OptionalNodeDecoder[T](nodeName: String, innerDecoder: XmlDecoder[T]) extends XmlDecoder[Option[T]]

Attributes

Supertypes
trait XmlDecoder[Option[T]]
class Object
trait Matchable
class Any
final class SingleNodeDecoder[T](nodeName: String, innerDecoder: XmlDecoder[T]) extends XmlDecoder[T]

Attributes

Supertypes
trait XmlDecoder[T]
class Object
trait Matchable
class Any
Self type
final class TextDecoder[T](_decode: String => EitherNel[String, T]) extends XmlDecoder[T]

Attributes

Supertypes
trait XmlDecoder[T]
class Object
trait Matchable
class Any

Value members

Concrete methods

def node[T](nodeName: String)(innerDecoder: XmlDecoder[T]): SingleNodeDecoder[T]
def pure[T](value: T): XmlDecoder[T]
def text[T](f: String => EitherNel[String, T]): TextDecoder[T]
def textFromStringDecoder[T](implicit decoder: StringDecoder[T]): TextDecoder[T]