trait HeaderCodec[A] extends HeaderEncoder[A] with HeaderDecoder[A]
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- HeaderCodec
- HeaderDecoder
- HeaderEncoder
- Serializable
- Serializable
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Abstract Value Members
-
abstract
def
fromHeader(header: Seq[String]): DecodeResult[RowDecoder[A]]
- Definition Classes
- HeaderDecoder
-
abstract
def
header: Option[Seq[String]]
- Definition Classes
- HeaderEncoder
-
abstract
def
noHeader: RowDecoder[A]
- Definition Classes
- HeaderDecoder
-
abstract
def
rowEncoder: RowEncoder[A]
- Definition Classes
- HeaderEncoder
Concrete 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
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
def
map[B](f: (A) ⇒ B): HeaderDecoder[B]
- Definition Classes
- HeaderDecoder
-
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()
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
def
~[B](that: HeaderDecoder[B])(implicit zippable: Zippable[A, B]): HeaderDecoder[Out]
Combines two header decoders creating a tupled version that will decode the results from both.
Combines two header decoders creating a tupled version that will decode the results from both. The combination will preserve the order of the merge in the case that no headers are detected.
- Definition Classes
- HeaderDecoder