Packages

object Extractor

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Extractor
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. implicit val anyListExtractor: Extractor[Seq[Any]]
  5. implicit val anyMapExtractor: Extractor[Map[String, Any]]
  6. def apply[T](implicit T: Extractor[T]): Extractor[T]
    Annotations
    @implicitNotFound( ... )
  7. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  8. implicit val booleanExtractor: Extractor[Boolean]
  9. implicit val booleanListExtractor: Extractor[Seq[Boolean]]
  10. implicit val booleanMapExtractor: Extractor[Map[String, Boolean]]
  11. implicit val characterExtractor: Extractor[Character]
  12. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  13. implicit val configListExtractor: Extractor[Seq[Config]]
  14. implicit val dateExtractor: Extractor[Date]

    Expected format: yyyy-[m]m-[d]d

  15. implicit val doubleExtractor: Extractor[Double]
  16. implicit val doubleListExtractor: Extractor[Seq[Double]]
  17. implicit val doubleMapExtractor: Extractor[Map[String, Double]]
  18. implicit val durationExtractor: Extractor[Duration]
  19. implicit def eitherExtractor[A, B](implicit leftExtractor: Extractor[A], rightExtractor: Extractor[B]): Extractor[Either[A, B]]

    Extract an Either[A, B] for every A or B that we've defined an extractor for.

    Extract an Either[A, B] for every A or B that we've defined an extractor for.

    A

    the extracted Left value

    B

    the extracted Right value

    leftExtractor

    an implicit Extractor[T] that needs to be in scope

    rightExtractor

    an implicit Extractor[T] that needs to be in scope

    returns

    A Left(A) if we could extract the A type, or a Right(B) if we could extract the right type or throw an Exception

  20. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  21. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  22. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  23. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  24. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  25. implicit val intExtractor: Extractor[Int]
  26. implicit val intListExtractor: Extractor[Seq[Int]]
  27. implicit val intMapExtractor: Extractor[Map[String, Int]]
  28. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  29. implicit def listExtractor[T](implicit extractor: Extractor[T]): Extractor[Seq[T]]

    Extract a list of composite types for every T that there is an extractor defined for

    Extract a list of composite types for every T that there is an extractor defined for

    T

    the extracted value

    extractor

    an implicit Extractor[T] that needs to be in scope

    returns

    A Seq(T) if we can extract a valid property of the given type or throw an Exception

  30. implicit val localDateExtractor: Extractor[LocalDate]
  31. implicit val localDateTimeExtractor: Extractor[LocalDateTime]
  32. implicit val longExtractor: Extractor[Long]
  33. implicit val longListExtractor: Extractor[Seq[Long]]
  34. implicit val longMapExtractor: Extractor[Map[String, Long]]
  35. implicit def mapExtractor[T](implicit extractor: Extractor[T]): Extractor[Map[String, T]]

    Extract a Map with String keys and composite value types for every T that there is an extractor defined for

    Extract a Map with String keys and composite value types for every T that there is an extractor defined for

    T

    the extracted value

    extractor

    an implicit Extractor[T] that needs to be in scope

    returns

    A Seq(T) if we can extract a valid property of the given type or throw an Exception

  36. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  37. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  38. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  39. implicit def optionExtractor[T](implicit extractor: Extractor[T]): Extractor[Option[T]]

    Extract an Option[T] for every T that we've defined an extractor for.

    Extract an Option[T] for every T that we've defined an extractor for.

    T

    the extracted value

    extractor

    an implicit Extractor[T] that needs to be in scope

    returns

    A Some(T) if we can extract a valid property of the given type or a None otherwise.

  40. implicit val rangeExtractor: Extractor[Range] { ... /* 2 definitions in type refinement */ }
  41. implicit val stringExtractor: Extractor[String]
  42. implicit val stringListExtractor: Extractor[Seq[String]]
  43. implicit val stringMapExtractor: Extractor[Map[String, String]]
  44. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  45. implicit val timestampExtractor: Extractor[Timestamp]

    Expected format: yyyy-[m]m-[d]d hh:mm:ss[.f...]

  46. def toString(): String
    Definition Classes
    AnyRef → Any
  47. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  48. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  49. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()

Inherited from AnyRef

Inherited from Any

Ungrouped