trait Recurring extends Extractable
Represents a header key whose multiple headers can be combined by joining their values with a comma. See RFC 2616, Section 4.2.
- Source
- HeaderKey.scala
Linear Supertypes
Known Subclasses
Ordering
- Alphabetic
- By Inheritance
Inherited
- Recurring
- Extractable
- HeaderKey
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Type Members
- abstract type HeaderT <: Header.Recurring
-
type
GetT = Option[HeaderT]
- Annotations
- @deprecated
- Deprecated
(Since version 0.21.19) Unused. Will be removed in 0.22.
Abstract Value Members
- abstract def apply(values: NonEmptyList[HeaderT.Value]): HeaderT
-
abstract
def
matchHeader(header: Header): Option[HeaderT]
- Definition Classes
- HeaderKey
-
abstract
def
name: CaseInsensitiveString
- Definition Classes
- HeaderKey
-
abstract
def
parse(s: String): ParseResult[HeaderT]
- Definition Classes
- HeaderKey
Concrete Value Members
- def apply(first: HeaderT.Value, more: HeaderT.Value*): HeaderT
-
def
from(headers: Headers): Option[HeaderT]
- Definition Classes
- Recurring → Extractable
-
def
toString(): String
- Definition Classes
- HeaderKey → AnyRef → Any
-
final
def
unapply(headers: Headers): Option[HeaderT]
- Definition Classes
- Extractable
-
final
def
unapply(header: Header): Option[HeaderT]
- Definition Classes
- HeaderKey