play.api.libs.iteratee

Enumeratee

object Enumeratee extends AnyRef

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Hide All
  2. Show all
  1. Enumeratee
  2. AnyRef
  3. Any
Visibility
  1. Public
  2. All

Type Members

  1. trait CheckDone [From, To] extends Enumeratee[From, To]

Value Members

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

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

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

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

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

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

    Attributes
    final
    Definition Classes
    Any
  7. def breakE [E] (p: (E) ⇒ Boolean): Enumeratee[E, E]

  8. def clone (): AnyRef

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  9. def collect [From] : AnyRef { def apply[To](transformer: PartialFunction[From,To]): play.api.libs.iteratee.Enumeratee[From,To] }

  10. def drop [E] (count: Int): Enumeratee[E, E]

  11. def eq (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  12. def equals (arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  13. def filter [E] (predicate: (E) ⇒ Boolean): Enumeratee[E, E]

  14. def finalize (): Unit

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

    Attributes
    final
    Definition Classes
    AnyRef → Any
  16. def grouped [From] : AnyRef { def apply[To](folder: play.api.libs.iteratee.Iteratee[From,To]): play.api.libs.iteratee.Enumeratee[From,To] }

  17. def hashCode (): Int

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

    Attributes
    final
    Definition Classes
    Any
  19. def map [E] : AnyRef { def apply[NE](f: E => NE): play.api.libs.iteratee.Enumeratee[E,NE] }

    Create an Enumeratee which transforms its input using a given function

  20. def mapInput [From] : AnyRef { def apply[To](f: play.api.libs.iteratee.Input[From] => play.api.libs.iteratee.Input[To]): java.lang.Object with play.api.libs.iteratee.Enumeratee.CheckDone[From,To]{def step[A](k: play.api.libs.iteratee.Input[To] => play.api.libs.iteratee.Iteratee[To,A]): play.api.libs.iteratee.Input[From] => play.api.libs.iteratee.Iteratee[From,play.api.libs.iteratee.Iteratee[To,A]]} }

  21. def ne (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  22. def notify (): Unit

    Attributes
    final
    Definition Classes
    AnyRef
  23. def notifyAll (): Unit

    Attributes
    final
    Definition Classes
    AnyRef
  24. def scanLeft [From] : AnyRef { def apply[To](seed: To)(f: (To, From) => To): play.api.libs.iteratee.Enumeratee[From,To] }

  25. def synchronized [T0] (arg0: ⇒ T0): T0

    Attributes
    final
    Definition Classes
    AnyRef
  26. def take [E] (count: Int): Enumeratee[E, E]

  27. def takeWhile [E] (p: (E) ⇒ Boolean): Enumeratee[E, E]

  28. def toString (): String

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

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

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

    Attributes
    final
    Definition Classes
    AnyRef
    Annotations
    @throws()
  32. def zip [E, A, B] (inner1: Iteratee[E, A], inner2: Iteratee[E, B]): Iteratee[E, (A, B)]

  33. def zipWith [E, A, B, C] (inner1: Iteratee[E, A], inner2: Iteratee[E, B])(zipper: (A, B) ⇒ C): Iteratee[E, C]

Inherited from AnyRef

Inherited from Any