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

ciris.decoders.JavaNetConfigDecoders.scala Maven / Gradle / Ivy

There is a newer version: 0.12.1
Show newest version
package ciris.decoders

import java.net._

import ciris.ConfigDecoder

trait JavaNetConfigDecoders {
  implicit val inetAddressConfigDecoder: ConfigDecoder[String, InetAddress] =
    ConfigDecoder.catchNonFatal("InetAddress")(InetAddress.getByName)

  implicit val uriConfigDecoder: ConfigDecoder[String, URI] =
    ConfigDecoder.catchNonFatal("URI")(new URI(_))
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy