Packages

t

excelreads

ExcelReadsInstances

trait ExcelReadsInstances extends ExcelReadsGenericInstances with ExcelReadsLowPriorityInstance

Basic instances

Note

This parser uses HList to parse the case class which do not contain data types like neither Either nor ADT. Either and ADT are required Coproduct but the parser sometimes cannot determine which type it should parse. That's the why I don't make Coproduct instances. If you use ADT in the type representing a Excel row, you have to implement a instance to parse it.

Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ExcelReadsInstances
  2. ExcelReadsLowPriorityInstance
  3. ExcelReadsGenericInstances
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

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 def aInstance[R, A](implicit reads: ExcelReads[R, Option[A]]): ExcelReads[R, A]
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. implicit def booleanInstance[R](implicit sym: ExcelBasicSYM[[β$5$]Eff[R, β$5$]]): ExcelReads[R, Option[Boolean]]
  7. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  8. implicit def doubleInstance[R](implicit sym: ExcelBasicSYM[[β$3$]Eff[R, β$3$]]): ExcelReads[R, Option[Double]]
  9. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  10. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  11. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  12. implicit def hConsInstances[R, H, T <: HList](implicit head: ExcelReads[R, H], tail: ExcelReads[R, T]): ExcelReads[R, ::[H, T]]
    Definition Classes
    ExcelReadsGenericInstances
  13. implicit def hListInstance[R, A, L <: HList](implicit gen: Aux[A, L], instance: Lazy[ExcelReads[R, L]]): ExcelReads[R, A]
    Definition Classes
    ExcelReadsGenericInstances
  14. implicit def hNilInstance[R]: ExcelReads[R, HNil]
    Definition Classes
    ExcelReadsGenericInstances
  15. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  16. implicit def intInstance[R](implicit sym: ExcelBasicSYM[[β$4$]Eff[R, β$4$]]): ExcelReads[R, Option[Int]]
  17. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  18. implicit def listInstance[R, A](implicit reads: ExcelReads[R, Option[A]]): ExcelReads[R, List[A]]

    This instance only can parse the type whose sequence is at the end.

    This instance only can parse the type whose sequence is at the end. If we want to parse any place on the type, it requires backtrack like regular-expression matcher. It's hard to implement so I haven't implemented it yet for now.

  19. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  20. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  21. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  22. implicit def stringInstance[R](implicit sym: ExcelBasicSYM[[β$2$]Eff[R, β$2$]]): ExcelReads[R, Option[String]]
  23. implicit def styleInstance[R, Style](implicit sym: ExcelStyleSYM[Style, [β$6$]Eff[R, β$6$]]): ExcelReads[R, Option[Style]]
  24. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  25. def toString(): String
    Definition Classes
    AnyRef → Any
  26. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  27. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  28. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

Inherited from AnyRef

Inherited from Any

Ungrouped