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

io.fintrospect.configuration.Port.scala Maven / Gradle / Ivy

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

case class Port(value: Int) extends AnyVal {
  override def toString = value.toString
}

object Port {
  def apply(value: String): Port = Port(value.toInt)
}







© 2015 - 2025 Weber Informatics LLC | Privacy Policy