class PathBindableExtractor[T] extends AnyRef
Ordering
- Alphabetic
- By Inheritance
Inherited
- PathBindableExtractor
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new PathBindableExtractor()(implicit pb: PathBindable[T])
Value Members
- def unapply(s: Seq[String]): Option[Seq[T]]
Extract Seq[T] only if ever element of s can be bound, otherwise don't match.
- def unapply(s: Option[String]): Option[Option[T]]
Extract Option[T] only if s is None, Some value that can be bound, otherwise don't match.
- def unapply(s: String): Option[T]
Extract s to T if it can be bound, otherwise don't match.
An extractor that extracts from a String using a play.api.mvc.PathBindable.