![JAR search and dependency download from the Maven repository](/logo.png)
org.scalatra.util.conversion.package.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scalatra_2.10 Show documentation
Show all versions of scalatra_2.10 Show documentation
The core Scalatra framework
The newest version!
package org.scalatra
package util
import scala.annotation.implicitNotFound
package object conversion {
@implicitNotFound(msg = "Cannot find a TypeConverter type class from ${S} to ${T}")
trait TypeConverter[S, T] { def apply(s: S): Option[T] }
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy