All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.fintrospect.parameters.PathParameter.scala Maven / Gradle / Ivy

There is a newer version: 12.21.1
Show newest version
package io.fintrospect.parameters

abstract class PathParameter[T](spec: ParameterSpec[_], val isFixed: Boolean) extends Parameter with Iterable[PathParameter[_]] {
  override val name = spec.name
  override val description = spec.description
  override val paramType = spec.paramType
  override val where = "path"
  def unapply(str: String): Option[T]
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy