object EmailHeaderCodec
- Source
- EmailHeaderCodec.scala
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- EmailHeaderCodec
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
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(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
- def codec(maxHeaderLength: Int, otherHeaders: (String, Codec[EmailHeaderField])*): Codec[EmailHeader]
Creates a header codec accoring to specified parameteres
Creates a header codec accoring to specified parameteres
- maxHeaderLength
Max length of the header. If header is larger than this value, then the encoding // decoding will fail.
- otherHeaders
Apart from default headers, theses supplied headers may be used when decoeing // encoding. For exmaple supply any custom headers here.
- val defaultEmailHeaders: Map[String, Codec[EmailHeaderField]]
Headers used in Email *
- val defaultMIMEHeaders: Map[String, Codec[ContentHeaderField]]
headers used im MIME Parts *
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def fieldCodec[H <: EmailHeaderField](maxHeaderLength: Int, allHeaders: Map[String, Codec[H]])(implicit T: Typeable[H]): Codec[List[H]]
Codec for header fields in the email.
Codec for header fields in the email.
- maxHeaderLength
Max length of the header
- allHeaders
All supported header fields not listed here will be decoded as GenericField
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def mimeCodec(maxHeaderLength: Int, otherHeaders: (String, Codec[ContentHeaderField])*): Codec[MIMEHeader]
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- object impl