trait Types extends AnyRef
Ordering
- Alphabetic
- By Inheritance
Inherited
- Types
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Type Members
- type EitherNel[a] = \/[NonEmptyList[Error], a]
- sealed abstract class Error extends Product with Serializable
- trait JSON[A] extends JSONR[A] with JSONW[A]
- trait JSONR[A] extends AnyRef
- trait JSONW[A] extends AnyRef
- case class NoSuchFieldError(name: String, json: JValue) extends Error with Product with Serializable
- type Result[A] = Validation[NonEmptyList[Error], A]
- case class UncategorizedError(key: String, desc: String, args: List[Any]) extends Error with Product with Serializable
- case class UnexpectedJSONError(was: JValue, expected: Class[_ <: JValue]) extends Error with Product with Serializable
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- implicit val JValueEqual: Equal[JValue]
- implicit val JValueMonoid: Monoid[JValue]
- implicit def Result2JSONR[A](f: (JValue) => Result[A]): JSONR[A]
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def field[A](name: String)(json: JValue)(implicit arg0: JSONR[A]): Result[A]
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- def fromJSON[A](json: JValue)(implicit arg0: JSONR[A]): Result[A]
- implicit def function2EitherNel[A](f: (A) => Result[A]): (A) => EitherNel[A]
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- implicit def kleisli2Result[A](v: Kleisli[EitherNel, JValue, A]): (JValue) => Result[A]
- def makeObj(fields: Iterable[(String, JValue)]): JObject
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toJSON[A](value: A)(implicit arg0: JSONW[A]): JValue
- def toString(): String
- Definition Classes
- AnyRef → Any
- def validate[A](name: String)(implicit arg0: JSONR[A]): Kleisli[EitherNel, JValue, A]
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- case object Fail extends Product with Serializable