object JsonScalaz extends Types with Lifting with Base with Tuples
- Source
- JsonScalaz.scala
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- JsonScalaz
- Tuples
- Base
- Lifting
- Types
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Type Members
- type EitherNel[a] = \/[NonEmptyList[Error], a]
- Definition Classes
- Types
- type Result[A] = Validation[NonEmptyList[Error], A]
- Definition Classes
- Types
- implicit class Func1ToJSON[A, R] extends AnyRef
- Definition Classes
- Lifting
- implicit class Func2ToJSON[A, B, R] extends AnyRef
- Definition Classes
- Lifting
- implicit class Func3ToJSON[A, B, C, R] extends AnyRef
- Definition Classes
- Lifting
- implicit class Func4ToJSON[A, B, C, D, R] extends AnyRef
- Definition Classes
- Lifting
- implicit class Func5ToJSON[A, B, C, D, E, R] extends AnyRef
- Definition Classes
- Lifting
- implicit class Func6ToJSON[A, B, C, D, E, F, R] extends AnyRef
- Definition Classes
- Lifting
- implicit class Func7ToJSON[A, B, C, D, E, F, G, R] extends AnyRef
- Definition Classes
- Lifting
- implicit class Func8ToJSON[A, B, C, D, E, F, G, H, R] extends AnyRef
- Definition Classes
- Lifting
- sealed abstract class Error extends Product with Serializable
- Definition Classes
- Types
- trait JSON[A] extends JSONR[A] with JSONW[A]
- Definition Classes
- Types
- trait JSONR[A] extends AnyRef
- Definition Classes
- Types
- trait JSONW[A] extends AnyRef
- Definition Classes
- Types
- case class NoSuchFieldError(name: String, json: JValue) extends Error with Product with Serializable
- Definition Classes
- Types
- case class UncategorizedError(key: String, desc: String, args: List[Any]) extends Error with Product with Serializable
- Definition Classes
- Types
- case class UnexpectedJSONError(was: JValue, expected: Class[_ <: JValue]) extends Error with Product with Serializable
- Definition Classes
- Types
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]
- Definition Classes
- Types
- implicit val JValueMonoid: Monoid[JValue]
- Definition Classes
- Types
- implicit def Result2JSONR[A](f: (JValue) => Result[A]): JSONR[A]
- Definition Classes
- Types
- implicit def Tuple2JSON[A, B](implicit arg0: JSON[A], arg1: JSON[B]): JSON[(A, B)]
- Definition Classes
- Tuples
- implicit def Tuple3JSON[A, B, C](implicit arg0: JSON[A], arg1: JSON[B], arg2: JSON[C]): JSON[(A, B, C)]
- Definition Classes
- Tuples
- implicit def Tuple4JSON[A, B, C, D](implicit arg0: JSON[A], arg1: JSON[B], arg2: JSON[C], arg3: JSON[D]): JSON[(A, B, C, D)]
- Definition Classes
- Tuples
- implicit def Tuple5JSON[A, B, C, D, E](implicit arg0: JSON[A], arg1: JSON[B], arg2: JSON[C], arg3: JSON[D], arg4: JSON[E]): JSON[(A, B, C, D, E)]
- Definition Classes
- Tuples
- implicit def Tuple6JSON[A, B, C, D, E, F](implicit arg0: JSON[A], arg1: JSON[B], arg2: JSON[C], arg3: JSON[D], arg4: JSON[E], arg5: JSON[F]): JSON[(A, B, C, D, E, F)]
- Definition Classes
- Tuples
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- implicit def bigintJSON: JSON[BigInt]
- Definition Classes
- Base
- implicit def boolJSON: JSON[Boolean]
- Definition Classes
- Base
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- implicit def doubleJSON: JSON[Double]
- Definition Classes
- Base
- 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]
- Definition Classes
- Types
- 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]
- Definition Classes
- Types
- implicit def function2EitherNel[A](f: (A) => Result[A]): (A) => EitherNel[A]
- Definition Classes
- Types
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- implicit def intJSON: JSON[Int]
- Definition Classes
- Base
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- implicit def jvalueJSON: JSON[JValue]
- Definition Classes
- Base
- implicit def kleisli2Result[A](v: Kleisli[EitherNel, JValue, A]): (JValue) => Result[A]
- Definition Classes
- Types
- implicit def listJSONR[A](implicit arg0: JSONR[A]): JSONR[List[A]]
- Definition Classes
- Base
- implicit def listJSONW[A](implicit arg0: JSONW[A]): JSONW[List[A]]
- Definition Classes
- Base
- implicit def longJSON: JSON[Long]
- Definition Classes
- Base
- def makeObj(fields: Iterable[(String, JValue)]): JObject
- Definition Classes
- Types
- implicit def mapJSONR[A](implicit arg0: JSONR[A]): JSONR[Map[String, A]]
- Definition Classes
- Base
- implicit def mapJSONW[A](implicit arg0: JSONW[A]): JSONW[Map[String, A]]
- Definition Classes
- Base
- 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()
- implicit def optionJSONR[A](implicit arg0: JSONR[A]): JSONR[Option[A]]
- Definition Classes
- Base
- implicit def optionJSONW[A](implicit arg0: JSONW[A]): JSONW[Option[A]]
- Definition Classes
- Base
- implicit def stringJSON: JSON[String]
- Definition Classes
- Base
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toJSON[A](value: A)(implicit arg0: JSONW[A]): JValue
- Definition Classes
- Types
- def toString(): String
- Definition Classes
- AnyRef → Any
- def validate[A](name: String)(implicit arg0: JSONR[A]): Kleisli[EitherNel, JValue, A]
- Definition Classes
- Types
- 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
- Definition Classes
- Types