play.extras.iteratees

JsonIteratees

object JsonIteratees

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. JsonIteratees
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  9. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  10. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  11. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  12. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  13. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  14. def jsBoolean: Iteratee[CharString, JsBoolean]

    Parse a boolean

  15. def jsIndexedValues[A](valueParser: Iteratee[CharString, A]): (Int) ⇒ Iteratee[CharString, (Int, A)]

    Use to parse all the values of an array into indexed pairs, using the given parser to parse the value.

    Use to parse all the values of an array into indexed pairs, using the given parser to parse the value.

    For use with JsEnumeratee.jsArray.

  16. def jsKeyValues[A](valueParser: Iteratee[CharString, A]): (String) ⇒ Iteratee[CharString, (String, A)]

    Use to parse all the values of a map into key value pairs, using the given parser to parse the value.

    Use to parse all the values of a map into key value pairs, using the given parser to parse the value.

    For use with JsEnumeratee.jsObject.

  17. def jsNull: Iteratee[CharString, JsNull.type]

    Parse a null

  18. def jsNullOr[A](valueParser: Iteratee[CharString, A]): Iteratee[CharString, Option[A]]

    Parse a null or something else.

    Parse a null or something else. If null is found, it returns None, otherwise, it returns Some(A)

  19. def jsNumber: Iteratee[CharString, JsNumber]

    Parse a number

  20. def jsSimpleArray: Iteratee[CharString, JsArray]

    Parse an array

  21. def jsSimpleObject: Iteratee[CharString, JsObject]

    Parse an object

  22. def jsString: Iteratee[CharString, JsString]

    Parse a string

  23. def jsValue: Iteratee[CharString, JsValue]

    Parse a generic value

  24. def jsValues[A, I](valueParser: Iteratee[CharString, A]): (I) ⇒ Iteratee[CharString, A]

    Use to parse all the values of a map or array as a single type, as determined by the passed in parser.

    Use to parse all the values of a map or array as a single type, as determined by the passed in parser.

    For use with JsEnumeratee.jsObject and JsEnumaretee.jsArray.

  25. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  26. final def notify(): Unit

    Definition Classes
    AnyRef
  27. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  28. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  29. def toString(): String

    Definition Classes
    AnyRef → Any
  30. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  31. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  32. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped